/* ============================================================
   Osaka Local Vibes Tours | Japan DMC — shared stylesheet
   ============================================================ */

:root {
  --ink: #141414;
  --ink-soft: #2c2c2c;
  --muted: #555555;
  --line: #e6e1d8;
  --ivory: #f7f3eb;
  --paper: #fcfaf5;

  /* RED brand palette */
  --red: #b81d22;          /* primary red — buttons, accents */
  --red-dark: #7d1216;     /* hover & strong accents */
  --red-soft: #e85a5e;     /* highlights, eyebrows on dark bg */
  --red-tint: #fbe9ea;     /* very light red — backgrounds, tags */

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
  font-size: 17.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--red); }
strong, b { font-weight: 600; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); line-height: 1.05; font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; font-weight: 500; }
h3 { font-size: 1.55rem; line-height: 1.3; font-weight: 500; }
h4 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
}
p { font-size: 1.02rem; }
p.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 660px; line-height: 1.65; font-weight: 400; }

/* ---------- Inline highlights & emphasis ---------- */
.highlight {
  background: var(--red);
  color: #fff !important;
  padding: 2px 12px;
  font-weight: 600;
  display: inline-block;
  line-height: 1.35;
}
.text-red { color: var(--red); font-weight: 600; }
mark {
  background: var(--red);
  color: #fff;
  padding: 2px 10px;
  font-weight: 600;
  border-radius: 0;
}
.underline-red {
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
  font-weight: 500;
}
/* Optional: marker-style underline highlight (subtle alternative) */
.highlight-marker {
  background: linear-gradient(180deg, transparent 60%, rgba(184,29,34,0.22) 60%);
  padding: 0 2px;
  font-weight: 500;
}

/* ---------- Header ---------- */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(252, 250, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1480px;
  margin: 0 auto;
}
.brand-link { display: flex; align-items: center; gap: 16px; }
.brand-link:hover { opacity: 1; color: inherit; }
.brand-logo {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.brand-text .accent { color: #d4a574; font-style: italic; }
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-top: 3px;
}

nav.primary ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
nav.primary a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  display: inline-block;
  transition: transform .25s ease, color .25s ease;
  transform-origin: center bottom;
}
nav.primary a:hover {
  color: var(--red);
  transform: scale(1.18);
}
nav.primary a.active {
  color: var(--red);
  font-weight: 600;
}
nav.primary a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s ease;
  font-weight: 500;
}
.btn:hover { background: var(--ink); color: var(--paper); opacity: 1; }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn-light { border-color: #fff; color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* Single static background (used on sub-pages) */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
}

/* Auto-rotating slideshow (used on Home) */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out, transform 8s ease-out;
  transform: scale(1);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.06); /* subtle Ken Burns zoom while visible */
}
/* Video version of hero-slide */
video.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  transition: opacity 1.8s ease-in-out;
}
video.hero-slide.active { transform: none !important; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Slideshow indicator dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, width .3s ease;
}
.hero-dot.active {
  background: var(--red);
  width: 44px;
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 0 100px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 28px;
  max-width: 900px;
  line-height: 1.25;
}
.hero h1 strong { color: #fff; }
.hero h1 .highlight { margin: 6px 0; }
.hero .eyebrow {
  color: var(--red-soft);
  margin-bottom: 28px;
}
.hero p.lead {
  color: #fff;
  margin-bottom: 44px;
  max-width: 620px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.hero p.lead strong { color: #fff; font-weight: 600; }
.hero h1 { text-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Smaller hero for sub-pages */
.hero-sub {
  min-height: 60vh;
}
.hero-sub .hero-content { padding: 180px 0 80px; }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
section.alt { background: var(--ivory); }
section.dark { background: var(--ink); color: #fff; }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: #fff; }
section.dark .eyebrow { color: var(--red-soft); }
section.dark p { color: rgba(255,255,255,0.85); }

.section-head { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head p.lead { margin-left: auto; margin-right: auto; }

/* ---------- 3-Card customer entry ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -80px;
  position: relative;
  z-index: 5;
}
.audience-card {
  background: var(--paper);
  padding: 44px 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
  display: block;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  color: inherit;
  opacity: 1;
}
.audience-card .num {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 600;
}
.audience-card h3 { margin-bottom: 14px; }
.audience-card p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 22px; line-height: 1.6; }
.audience-card .arrow {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  font-weight: 500;
}

/* ---------- About preview ---------- */
.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split h2 { margin-bottom: 28px; }
.split p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.7; }

/* ---------- Services grid (used on Home + Services page) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-item {
  padding: 52px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
  cursor: pointer;
  display: block;
}
.service-item:hover { background: var(--red-tint); color: inherit; opacity: 1; }
.service-item .label {
  font-family: var(--serif);
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.service-item h3 { margin-bottom: 12px; }
.service-item p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 20px; line-height: 1.65; }
.service-item .more {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  padding-bottom: 3px;
  color: var(--red);
  font-weight: 500;
}

/* ---------- 3x3 Photo Mosaic (Home Destinations preview) ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 360px);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.mosaic .mosaic-cell {
  position: relative;
  overflow: hidden;
}
.mosaic .mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.mosaic .mosaic-cell:hover img {
  transform: scale(1.08);
}
@media (max-width: 1024px) {
  .mosaic { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 240px); gap: 12px; }
}
@media (max-width: 640px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, 180px); }
  .mosaic .mosaic-cell:last-child { grid-column: span 2; }
}

/* ---------- Process Flow (About page) ---------- */
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 36px 18px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 56px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
  z-index: 2;
}
.process-step:last-child::after { display: none; }
.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 3;
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  line-height: 1.3;
  color: var(--ink);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
/* Connecting line behind step numbers */
.process-flow::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,29,34,0.25) 8%, rgba(184,29,34,0.25) 92%, transparent 100%);
  z-index: 1;
}
@media (max-width: 1024px) {
  .process-flow { grid-template-columns: 1fr; gap: 14px; }
  .process-step { padding: 24px 18px; }
  .process-step::after {
    top: auto;
    bottom: -14px;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
  }
  .process-flow::before { display: none; }
}

/* ---------- Day-by-day itinerary list ---------- */
.day-list {
  list-style: none;
  margin: 28px 0 0;
}
.day-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: start;
  font-size: 1rem;
  line-height: 1.65;
}
.day-list li:first-child { padding-top: 0; }
.day-list li:last-child { border-bottom: none; }
.day-list .day-num {
  font-family: var(--serif);
  color: var(--red);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.day-list .day-num small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.day-list .day-content { color: var(--ink-soft); }
.day-list .day-content strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 1.05rem; }

/* ---------- Photo gallery (4-up) ---------- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px;
}
.photo-gallery .photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.photo-gallery .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.photo-gallery .photo:hover img { transform: scale(1.08); }
.photo-gallery .photo .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Itinerary hero stats ---------- */
.itinerary-hero {
  background: var(--ink);
  color: #fff;
  padding: 130px 0 100px;
  position: relative;
  overflow: hidden;
}
.itinerary-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100px; height: 4px;
  background: var(--red);
  transform: translateX(-50%);
}
.itinerary-hero h2 { color: #fff; max-width: 900px; margin: 0 auto 24px; text-align: center; }
.itinerary-hero .region-headline { color: #fff; text-align: center; margin-left: auto; margin-right: auto; }
.itinerary-hero .region-tagline { color: rgba(255,255,255,0.85); text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.itinerary-hero p.lead { color: rgba(255,255,255,0.85); text-align: center; margin: 30px auto 0; max-width: 720px; }
.itinerary-hero .eyebrow { color: var(--red-soft); display: block; text-align: center; }
.itinerary-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 56px auto 0;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.itinerary-stats .stat-item {
  text-align: center;
}
.itinerary-stats .stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--red-soft);
  font-weight: 600;
  line-height: 1;
}
.itinerary-stats .stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-weight: 500;
}

/* ---------- Included/Not Included ---------- */
.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}
.inclusion-box {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.inclusion-box.included { border-top: 4px solid var(--red); }
.inclusion-box h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inclusion-box ul { list-style: none; margin: 0; }
.inclusion-box li {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.inclusion-box li:last-child { border-bottom: none; }

@media (max-width: 1024px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .itinerary-stats { grid-template-columns: repeat(2, 1fr); }
  .inclusion-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .day-list li { grid-template-columns: 1fr; gap: 6px; }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
}

/* ---------- Why Us grid (Trade page) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
  max-width: 1100px;
  margin: 60px auto 0;
}
.why-item {
  position: relative;
}
.why-item.full { grid-column: 1 / -1; max-width: 720px; margin: 0 auto; text-align: center; }
.why-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--red);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.why-item h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.3;
}
.why-item p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-item.full { text-align: left; max-width: none; }
}

/* ---------- Region headline & tagline (Destinations) ---------- */
.region-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 600;
  line-height: 1;
  margin: 6px 0 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.region-tagline {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 30px;
}
.region-tagline .highlight {
  font-style: normal;
}

/* ---------- Interactive Japan Map ---------- */
.japan-map-section {
  background: var(--paper);
  padding: 90px 0 120px;
}
.japan-map-wrap {
  max-width: 760px;
  margin: 50px auto 0;
  position: relative;
  background: linear-gradient(180deg, #e7eff5 0%, #d8e5ee 100%);
  border: 1px solid #c5d4de;
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 30px 60px -20px rgba(50, 80, 100, 0.18);
}
/* Decorative inner frame */
.japan-map-wrap::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.6);
  pointer-events: none;
}
/* Corner labels (JAPAN top-right, compass) */
.japan-map-wrap .map-corner-label {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(50, 80, 100, 0.55);
  font-weight: 500;
  z-index: 2;
}
.japan-map-wrap .map-compass {
  position: absolute;
  bottom: 24px;
  right: 30px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: rgba(50, 80, 100, 0.55);
  z-index: 2;
}
.japan-map-wrap .map-compass svg { width: 100%; height: 100%; }

.japan-map {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.region {
  fill: #f3ecdf;
  stroke: #fff;
  stroke-width: 2.5;
  cursor: pointer;
  transition: fill .3s ease, transform .3s ease, filter .3s ease;
  transform-origin: center;
  filter: drop-shadow(0 2px 4px rgba(50, 80, 100, 0.15));
}
.region-link { outline: none; }
.region-link:hover { opacity: 1; }
.region-link:hover .region {
  fill: var(--red);
  filter: drop-shadow(0 4px 8px rgba(184, 29, 34, 0.35));
}
.region-link:hover .region-label {
  fill: #fff;
  font-weight: 600;
}
.region-kansai {
  fill: var(--red);
  filter: drop-shadow(0 3px 6px rgba(184, 29, 34, 0.3));
}
.region-link:hover .region-kansai {
  fill: var(--red-dark);
  filter: drop-shadow(0 6px 12px rgba(125, 18, 22, 0.45));
}
.region-label {
  fill: #2a3940;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  pointer-events: none;
  text-anchor: middle;
  transition: fill .3s ease, font-weight .3s ease;
  letter-spacing: 0.02em;
}
.region-label-kansai { fill: #fff; font-weight: 600; }
.region-sublabel {
  fill: rgba(20,20,20,0.55);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  text-anchor: middle;
}
.region-link:hover .region-sublabel { fill: rgba(255,255,255,0.85); }
.region-link:hover .region-sublabel-kansai { fill: #fff; }
.region-sublabel-kansai { fill: rgba(255,255,255,0.85); }

.map-legend {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}
.map-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-legend .swatch {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.map-legend .swatch-kansai { background: var(--red); }
.map-legend .swatch-other { background: #e8e0d3; }

/* ---------- Destination feature + list ---------- */
.destinations-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.destination-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
}
.destination-feature img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.destination-feature:hover img { transform: scale(1.05); }
.destination-feature:hover { opacity: 1; }
.destination-feature .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
}
.destination-feature .tag {
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  align-self: flex-start;
  margin-bottom: 16px;
  font-weight: 500;
}
.destination-feature h3 { color: #fff; font-size: 2.2rem; margin-bottom: 8px; }
.destination-feature p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

.destinations-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-self: center;
}
.destination-mini {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: block;
}
.destination-mini:hover { color: var(--red); opacity: 1; }
.destination-mini h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.destination-mini p { font-size: 0.85rem; color: var(--muted); }

/* ---------- Journey card grid ---------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.journey-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
  display: block;
}
.journey-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  color: inherit;
  opacity: 1;
}
.journey-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.journey-card .body { padding: 26px 24px 30px; }
.journey-card .duration {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 600;
}
.journey-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.journey-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Signature (split dark) ---------- */
.signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--ink);
  color: #fff;
}
.signature-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.signature-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Multi-image collage — uses dedicated .sig-collage class to avoid inheritance conflicts */
.sig-collage {
  background: var(--ink);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.sig-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.4fr 1fr;
  gap: 8px;
  height: 400px;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
}
.sig-collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 0;
  min-height: 0;
}
.sig-collage-grid img:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
.sig-collage-grid img:nth-child(2) { grid-column: 1; grid-row: 2; }
.sig-collage-grid img:nth-child(3) { grid-column: 2; grid-row: 2; }
/* 4-image variant */
.sig-collage-grid.four { grid-template-columns: 1fr 1fr 1fr; }
.sig-collage-grid.four img:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
.sig-collage-grid.four img:nth-child(2) { grid-column: 1; grid-row: 2; }
.sig-collage-grid.four img:nth-child(3) { grid-column: 2; grid-row: 2; }
.sig-collage-grid.four img:nth-child(4) { grid-column: 3; grid-row: 2; }
.signature-content {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signature-content .eyebrow { color: var(--red-soft); }
.signature-content h2 { color: #fff; margin-bottom: 26px; }
.signature-content p { color: rgba(255,255,255,0.85); margin-bottom: 18px; font-size: 1rem; }
.signature-content ul {
  list-style: none;
  margin: 24px 0 36px;
}
.signature-content li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.signature-content li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--red-soft);
}

/* ---------- Reviews grid (Google Testimonials) ---------- */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-header h2 { margin-bottom: 10px; }
.rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease;
}
.rating-badge:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  opacity: 1;
}
.rating-score {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--red);
  font-weight: 600;
  line-height: 1;
}
.rating-info { display: flex; flex-direction: column; gap: 2px; }
.rating-info .stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 1px; }
.rating-info .count {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.review-card::before {
  content: '“';
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--red);
  position: absolute;
  top: 6px; left: 22px;
  line-height: 1;
  opacity: 0.7;
}
.review-card.cta::before { display: none; }
.review-card.cta {
  background: var(--red) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.review-card.cta:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark);
}
.review-text {
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 36px 0 24px;
  position: relative;
  z-index: 1;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.reviewer-info { flex: 1; }
.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.reviewer-meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.review-stars { color: #f5a623; font-size: 0.85rem; }

.reviews-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- Auto-rotating review carousel ---------- */
.review-rotator {
  position: relative;
  max-width: 920px;
  margin: 50px auto 0;
  display: grid;
}
.review-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  padding: 72px 64px 56px;
  text-align: center;
  position: relative;
}
.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.review-slide::before {
  content: '“';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 5.5rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.6;
  font-weight: 600;
}
.review-slide .quote-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 auto 36px;
  max-width: 720px;
  font-weight: 400;
}
.review-slide .reviewer-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 380px;
  margin: 0 auto;
}
.review-slide .reviewer-info { text-align: left; }
.review-slide .reviewer-name {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.review-slide .reviewer-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.review-slide .review-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 1px; }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.review-dot {
  width: 32px;
  height: 2px;
  background: rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, width .3s ease;
}
.review-dot.active {
  background: var(--red);
  width: 56px;
}
.review-dot:hover { background: rgba(0,0,0,0.4); }

/* ---------- Guest moments marquee ---------- */
.guest-moments {
  margin-top: 70px;
  position: relative;
  text-align: center;
}
.guest-moments-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 32px;
}
.guest-moments-label::before,
.guest-moments-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
  margin: 0 16px;
}
.guest-moments {
  width: 100%;
  min-width: 0;
}
.guest-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.guest-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}
.guest-marquee:hover .guest-marquee-track {
  animation-play-state: paused;
}
.guest-marquee-item {
  flex: 0 0 300px;
  height: 360px;
  overflow: hidden;
  position: relative;
  background: var(--ivory);
}
.guest-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.guest-marquee-item:hover img { transform: scale(1.06); }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

@media (max-width: 768px) {
  .guest-marquee-item { flex: 0 0 220px; height: 280px; }
  .guest-marquee-track { animation-duration: 45s; }
}

@media (max-width: 768px) {
  .review-slide { padding: 64px 32px 48px; }
}

/* ---------- Testimonial (single quote — kept for other uses) ---------- */
.testimonial-block { text-align: center; max-width: 820px; margin: 0 auto; }
.testimonial-block .quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 36px;
  font-style: italic;
}
.testimonial-block .quote::before { content: '“'; font-size: 1.5em; color: var(--red); margin-right: 6px; vertical-align: -0.15em; }
.testimonial-block .quote::after { content: '”'; font-size: 1.5em; color: var(--red); margin-left: 6px; vertical-align: -0.15em; }
.testimonial-block .attrib {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 4px;
}
.stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 80px; height: 4px;
  background: var(--red);
  transform: translateX(-50%);
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  line-height: 1.1;
}
.final-cta p {
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 44px;
  font-size: 1.2rem;
  line-height: 1.7;
}
.final-cta .eyebrow {
  font-size: 0.88rem;
  margin-bottom: 24px;
}

/* ---------- Direct contact (under final CTA) ---------- */
.contact-direct {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.contact-item {
  text-align: center;
}
.contact-item .contact-label {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-soft);
  font-weight: 600;
  margin-bottom: 14px;
}
.contact-item .contact-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: inline-block;
}
a.contact-value { transition: color .25s ease; }
a.contact-value:hover { color: var(--red-soft); opacity: 1; }
.contact-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .contact-direct { flex-direction: column; gap: 28px; }
  .contact-divider { width: 60px; height: 1px; }
}

/* ---------- Footer ---------- */
footer {
  background: #0f0f0f;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a:hover { color: var(--red-soft); opacity: 1; }
footer .brand-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
footer .brand-footer img {
  height: 68px;
  width: 68px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
footer .ft-name { font-size: 1.75rem; line-height: 1.2; }
footer .ft-name small { font-size: 0.85rem !important; }
footer .ft-name .accent { color: #d4a574; font-style: italic; }

/* Social media icon buttons */
.social-icons {
  display: flex;
  gap: 10px;
  margin: 20px 0 24px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: transform .25s ease, opacity .25s ease;
  text-decoration: none;
}
.social-icon:hover { transform: scale(1.1); opacity: 1; }
.social-icon svg { width: 22px; height: 22px; fill: #fff; }
.social-icon.insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icon.yt { background: #FF0000; }
.social-icon.yt svg { width: 24px; height: 24px; }
.social-icon.tiktok { background: #010101; }
.social-icon.whatsapp { background: #25D366; }
footer .brand-footer .ft-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Content blocks (used on sub-pages) ---------- */
.content-rich h2 { margin: 64px 0 20px; }
.content-rich h3 { margin: 36px 0 14px; }
.content-rich p { margin-bottom: 16px; color: var(--ink-soft); }
.content-rich ul { margin: 16px 0 24px 20px; }
.content-rich li { margin-bottom: 8px; color: var(--ink-soft); }

.feature-list {
  list-style: none;
  margin: 30px 0;
}
.feature-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: start;
  font-size: 1.02rem;
  line-height: 1.65;
}
.feature-list li::before {
  content: '';
  flex: 0 0 14px;
  height: 1px;
  background: var(--red);
  margin-top: 14px;
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-top: 32px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.audience-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 24px;
}
.audience-toggle button {
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  font-weight: 400;
  transition: all .25s ease;
}
.audience-toggle button:hover { border-color: var(--red); }
.audience-toggle button.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.audience-toggle button .lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.7;
}

/* ---------- Page intro ---------- */
.page-intro {
  text-align: center;
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-intro h1 { margin-bottom: 24px; }
.page-intro p.lead { margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  nav.primary ul { gap: 18px; }
  nav.primary a { font-size: 0.72rem; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse > :first-child { order: 0; }
  .signature { grid-template-columns: 1fr; }
  .signature-content { padding: 70px 40px; }
  .destinations-wrap { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 22px; }
  section { padding: 80px 0; }
  nav.primary { display: none; }
  .header-cta-desktop { display: none; }
  .menu-toggle { display: block; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); padding: 6px 10px; position: relative; z-index: 110; }
  .site-header.nav-open nav.primary {
    display: block;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--paper);
    padding: 16px 32px 40px;
    z-index: 90;
    overflow-y: auto;
  }
  .site-header.nav-open nav.primary ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .site-header.nav-open nav.primary li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open nav.primary a {
    display: block;
    padding: 22px 4px;
    font-size: 1.15rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
  }
  .site-header.nav-open nav.primary a.active { color: var(--red); }
  .site-header.nav-open .menu-toggle { font-size: 2rem; line-height: 1; }
  .audience-grid { grid-template-columns: 1fr; margin-top: -40px; }
  .services-grid { grid-template-columns: 1fr; }
  .destinations-list { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-stats { gap: 40px; flex-wrap: wrap; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .signature-media { min-height: 360px; }
  .form-grid { grid-template-columns: 1fr; }
  .audience-toggle { grid-template-columns: 1fr; }
  .brand-text { font-size: 0.95rem; }
  .brand-logo { height: 36px; }
}
