:root {
  --indigo: #17243a;
  --indigo-2: #23334f;
  --celadon: #b8d5c2;
  --celadon-deep: #6f9b82;
  --coral: #e66b5b;
  --saffron: #f0bd4f;
  --rice: #f7f4ec;
  --paper: #fffdf7;
  --ink: #151d1b;
  --muted: #66706c;
  --line: rgba(21, 29, 27, 0.14);
  --display: "Pridi", Georgia, serif;
  --body: "IBM Plex Sans Thai", system-ui, sans-serif;
  --utility: "Sarabun", system-ui, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 0 24px 70px rgba(23, 36, 58, 0.13);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--rice);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 16px;
  color: white;
  background: var(--indigo);
  border-radius: 4px;
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.demo-bar {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 6px 20px;
  color: var(--indigo);
  background: var(--saffron);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.demo-dot {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border: 1px solid rgba(23, 36, 58, .35);
  border-radius: 50%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 236, .86);
  backdrop-filter: blur(14px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 36, 58, .06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark { width: 40px; height: 40px; color: var(--celadon); }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--display); font-size: 20px; font-weight: 600; }
.brand small { margin-top: 5px; color: var(--muted); font: 700 9px/1 var(--utility); letter-spacing: .18em; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.site-nav a { position: relative; font-size: 14px; font-weight: 500; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--coral);
  transition: right .25s ease;
}
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  padding: 10px 17px;
  color: white;
  background: var(--indigo);
  border: 1px solid var(--indigo);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-cta:hover { color: var(--indigo); background: transparent; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--rice);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(23, 36, 58, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 58, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  min-height: 700px;
  padding-block: 74px 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--muted);
  font: 700 12px/1.3 var(--utility);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow > span { width: 34px; height: 2px; background: var(--coral); }
.eyebrow.light { color: rgba(255, 255, 255, .66); }
.eyebrow.light > span { background: var(--saffron); }

.hero h1,
.section-heading h2,
.journey-title h2,
.visit h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

.hero h1 { font-size: clamp(68px, 8.2vw, 124px); }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 540px; margin: 30px 0; color: #46514d; font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--indigo); box-shadow: 8px 8px 0 var(--celadon); }
.button-primary:hover { box-shadow: 4px 4px 0 var(--celadon); }
.button-dark { color: white; background: var(--indigo); }
.button-dark:hover { box-shadow: 6px 6px 0 var(--saffron); }
.button-coral { color: white; background: var(--coral); }
.button-coral:hover { box-shadow: 6px 6px 0 rgba(240, 189, 79, .8); }

.text-link { display: inline-flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--ink); font-weight: 600; }
.text-link span { font-size: 20px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 560px;
  margin: 58px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-facts div { display: grid; gap: 3px; }
.hero-facts dt { color: var(--muted); font: 600 11px/1.2 var(--utility); letter-spacing: .08em; }
.hero-facts dd { margin: 0; font-size: 14px; font-weight: 600; }

.hero-visual {
  position: relative;
  min-height: 610px;
}

.photo { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-main { inset: 0 5% 4% 20%; border-radius: 50% 50% 6px 6px / 35% 35% 6px 6px; }
.photo-craft { left: 0; bottom: 5%; width: 42%; aspect-ratio: 1; border: 10px solid var(--rice); border-radius: 50%; }

.hero-seal {
  position: absolute;
  top: 8%;
  right: 0;
  display: grid;
  place-content: center;
  width: 146px;
  aspect-ratio: 1;
  color: var(--indigo);
  background: var(--saffron);
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
}
.hero-seal span { font: 700 10px/1 var(--utility); letter-spacing: .12em; }
.hero-seal strong { margin-top: 5px; font-family: var(--display); font-size: 25px; line-height: 1.05; }
.image-caption { position: absolute; right: 7%; bottom: 0; padding: 9px 14px; color: white; background: var(--indigo); font: 600 10px/1.3 var(--utility); letter-spacing: .08em; }
.image-caption span { color: var(--saffron); }

.intro-strip { color: white; background: var(--coral); }
.strip-grid { display: grid; grid-template-columns: 1fr 2fr 180px; align-items: center; gap: 30px; min-height: 118px; }
.strip-grid p { margin: 0; }
.strip-grid > p:first-child { color: rgba(255,255,255,.72); font-size: 14px; }
.strip-main { font-family: var(--display); font-size: clamp(24px, 3vw, 39px); line-height: 1.2; }
.strip-grid svg { width: 100%; color: var(--saffron); }

.section { padding-block: 130px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 70px; }
.section-heading h2, .journey-title h2, .visit h2, .faq h2, .contact h2 { font-size: clamp(50px, 6vw, 84px); }
.section-heading > p { max-width: 510px; margin: 0 0 8px; color: var(--muted); font-size: 18px; }

.experiences { background: var(--paper); }
.experience-list { border-top: 1px solid var(--line); }
.experience-card {
  display: grid;
  grid-template-columns: 62px minmax(290px, .9fr) 1.1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-block: 48px;
  border-bottom: 1px solid var(--line);
}
.card-number { align-self: start; padding-top: 7px; color: var(--coral); font: 700 14px/1 var(--utility); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 1.32; border-radius: 3px; background: var(--celadon); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.experience-card:hover .card-media img { transform: scale(1.035); }
.media-label { position: absolute; left: 0; bottom: 0; padding: 8px 12px; color: var(--indigo); background: var(--saffron); font: 700 11px/1 var(--utility); }
.card-kicker { margin: 0 0 10px; color: var(--celadon-deep); font: 700 10px/1 var(--utility); letter-spacing: .16em; }
.card-copy h3 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(34px, 4vw, 55px); font-weight: 500; line-height: 1.05; letter-spacing: -.025em; }
.card-copy > p:not(.card-kicker) { max-width: 560px; margin: 0; color: var(--muted); }
.service-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 26px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-meta li { display: grid; gap: 4px; }
.service-meta span { color: var(--muted); font-size: 12px; }
.service-meta strong { font-size: 14px; }

.journey { color: white; background: var(--indigo); overflow: hidden; }
.journey-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(70px, 10vw, 150px); }
.journey-title { position: sticky; top: 130px; align-self: start; }
.journey-title p:last-child { max-width: 350px; margin: 28px 0 0; color: rgba(255,255,255,.62); }
.journey-rail { position: relative; margin: 0; padding: 0; list-style: none; }
.journey-rail::before { content: ""; position: absolute; top: 10px; bottom: 20px; left: 79px; width: 2px; background: linear-gradient(var(--saffron), var(--celadon), var(--coral)); }
.journey-rail li { position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 38px; min-height: 128px; }
.journey-rail li::before { content: ""; position: absolute; left: 72px; top: 8px; width: 13px; height: 13px; background: var(--indigo); border: 3px solid var(--saffron); border-radius: 50%; }
.journey-rail time { color: var(--saffron); font: 600 13px/1.4 var(--utility); }
.journey-rail div { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.journey-rail strong { display: block; margin-bottom: 6px; font-family: var(--display); font-size: 27px; font-weight: 500; }
.journey-rail span { color: rgba(255,255,255,.58); font-size: 15px; }

.pricing { background: var(--rice); }
.pricing-heading { margin-bottom: 54px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 510px; padding: 38px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(23,36,58,.04); }
.price-card.featured { color: white; background: var(--indigo); transform: translateY(-14px); box-shadow: var(--shadow); }
.featured-tag { position: absolute; top: 0; right: 0; padding: 8px 13px; color: var(--indigo); background: var(--saffron); font: 700 10px/1 var(--utility); }
.price-label { margin: 0 0 36px; color: var(--coral); font: 700 11px/1 var(--utility); letter-spacing: .14em; }
.featured .price-label { color: var(--saffron); }
.price-card h3 { margin: 0; font-family: var(--display); font-size: 31px; font-weight: 500; }
.price { margin: 18px 0 30px; font-family: var(--display); font-size: 50px; line-height: 1; }
.price span { display: block; margin-bottom: 7px; color: var(--muted); font: 500 12px/1 var(--body); }
.featured .price span { color: rgba(255,255,255,.55); }
.price small { font: 500 17px/1 var(--body); }
.price-card ul { display: grid; gap: 12px; margin: 0 0 34px; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.featured ul { border-color: rgba(255,255,255,.14); }
.price-card li { position: relative; padding-left: 20px; color: var(--muted); font-size: 14px; }
.featured li { color: rgba(255,255,255,.7); }
.price-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; background: var(--celadon); border-radius: 50%; }
.price-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 600; }
.featured > a { border-color: rgba(255,255,255,.14); }
.price-card > a span { transition: transform .2s ease; }
.price-card > a:hover span { transform: translateX(5px); }

.gallery-section { padding-block: 35px 120px; overflow: hidden; background: var(--rice); }
.gallery-track { display: grid; grid-template-columns: 1fr 1.35fr 1fr 1.35fr; gap: 16px; width: min(1500px, calc(100vw - 24px)); margin-inline: auto; align-items: end; }
.gallery-track figure { margin: 0; }
.gallery-track figure:nth-child(odd) { transform: translateY(32px); }
.gallery-track img { width: 100%; height: 370px; object-fit: cover; }
.gallery-track figure:nth-child(even) img { height: 300px; }
.gallery-track figcaption { padding-top: 10px; color: var(--muted); font-size: 12px; }

.visit { background: var(--celadon); }
.visit-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.visit-copy > p:not(.eyebrow) { max-width: 470px; margin: 27px 0 0; color: #42534a; }
.visit-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 38px 0; padding-block: 22px; border-block: 1px solid rgba(23,36,58,.15); }
.visit-details div { display: grid; gap: 5px; }
.visit-details dt { color: #52685c; font-size: 11px; font-weight: 600; }
.visit-details dd { margin: 0; font-size: 14px; font-weight: 600; line-height: 1.45; }
.map-card { position: relative; min-height: 540px; overflow: hidden; background-color: #edf1e8; background-image: radial-gradient(circle at 20% 20%, rgba(111,155,130,.2), transparent 30%), radial-gradient(circle at 80% 75%, rgba(230,107,91,.13), transparent 24%); box-shadow: var(--shadow); }
.map-roads, .map-roads i { position: absolute; inset: 0; }
.map-roads i { height: 8px; margin: auto -20%; background: white; box-shadow: 0 0 0 1px rgba(23,36,58,.07); transform: rotate(var(--r)); }
.map-roads i:nth-child(1) { --r: 24deg; top: -42%; }
.map-roads i:nth-child(2) { --r: -37deg; top: 34%; }
.map-roads i:nth-child(3) { --r: 67deg; left: -35%; }
.map-roads i:nth-child(4) { --r: 8deg; top: 71%; }
.map-pin { position: absolute; top: 48%; left: 56%; display: grid; justify-items: center; transform: translate(-50%,-50%); }
.map-pin > span { width: 46px; height: 46px; margin-bottom: 9px; background: var(--coral); border: 9px solid var(--paper); border-radius: 50% 50% 50% 0; box-shadow: 0 10px 30px rgba(23,36,58,.2); transform: rotate(-45deg); }
.map-pin strong { padding: 6px 10px; color: white; background: var(--indigo); font-family: var(--display); font-weight: 500; }
.map-pin small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.map-note { position: absolute; right: 18px; bottom: 18px; padding: 7px 10px; color: var(--muted); background: rgba(255,255,255,.85); font-size: 10px; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 10vw, 150px); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0; cursor: pointer; font-family: var(--display); font-size: 22px; font-weight: 500; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--coral); font-family: var(--body); font-size: 25px; font-weight: 300; transition: transform .25s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; margin: -5px 0 25px; color: var(--muted); font-size: 15px; }

.contact { padding-block: 125px; color: white; background: var(--indigo); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 460px; margin: 28px 0; color: rgba(255,255,255,.62); }
.contact-channels { display: grid; max-width: 460px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-channels a { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-weight: 600; }
.contact-channels span { color: var(--saffron); font: 600 11px/1.8 var(--utility); }

.demo-form { padding: 38px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.demo-form label { display: grid; gap: 7px; margin-bottom: 18px; color: var(--muted); font-size: 12px; font-weight: 600; }
.demo-form input, .demo-form textarea, .demo-form select { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--rice); border: 1px solid transparent; border-bottom-color: rgba(23,36,58,.25); border-radius: 0; outline: none; }
.demo-form input:focus, .demo-form textarea:focus, .demo-form select:focus { border-color: var(--coral); }
.demo-form textarea { resize: vertical; }
.demo-form .button { width: 100%; border: 0; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-success { margin-top: 15px; padding: 12px; color: #244534; background: #dff1e5; border-left: 4px solid var(--celadon-deep); font-size: 13px; }

.site-footer { color: white; background: #0f1928; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: .7fr 1.6fr .7fr; align-items: center; gap: 55px; min-height: 180px; }
.footer-brand .brand-mark { color: var(--celadon); }
.footer-brand small { color: rgba(255,255,255,.45); }
.footer-grid > p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.7; }
.studio-credit { display: grid; gap: 7px; text-align: right; }
.studio-credit span { color: var(--saffron); font: 700 9px/1 var(--utility); letter-spacing: .16em; }
.studio-credit strong { font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 40px, 820px); }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: 50%; }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--indigo); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 116px 0 auto; display: grid; gap: 0; padding: 16px 20px 28px; background: var(--rice); border-bottom: 1px solid var(--line); box-shadow: 0 25px 50px rgba(23,36,58,.12); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; padding: 13px 18px; text-align: center; border: 0; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { min-height: 650px; }
  .strip-grid { grid-template-columns: 1fr 2fr; }
  .strip-grid svg { display: none; }
  .section-heading { gap: 40px; }
  .experience-card { grid-template-columns: 45px 1fr; }
  .experience-card .card-copy { grid-column: 2; }
  .journey-grid, .visit-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .journey-title { position: static; }
  .price-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .price-card { min-height: 420px; }
  .price-card.featured { transform: none; }
  .gallery-track { grid-template-columns: repeat(2, 1fr); }
  .gallery-track figure:nth-child(odd) { transform: none; }
  .gallery-track img, .gallery-track figure:nth-child(even) img { height: 300px; }
  .map-card { min-height: 450px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 16px; }
  .demo-bar { min-height: 40px; font-size: 10px; }
  .header-inner { min-height: 72px; }
  .site-nav { inset: 112px 0 auto; }
  .brand-mark { width: 35px; height: 35px; }
  .brand strong { font-size: 18px; }
  .hero { min-height: auto; }
  .hero-grid { gap: 40px; min-height: auto; padding-block: 48px 70px; }
  .hero h1 { font-size: clamp(62px, 21vw, 90px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-facts { grid-template-columns: 1fr; gap: 10px; margin-top: 42px; }
  .hero-facts div { grid-template-columns: 70px 1fr; align-items: center; }
  .hero-visual { min-height: 470px; }
  .photo-main { inset: 0 0 4% 13%; }
  .photo-craft { width: 43%; border-width: 7px; }
  .hero-seal { top: 4%; width: 110px; }
  .hero-seal strong { font-size: 20px; }
  .image-caption { right: 0; }
  .strip-grid { grid-template-columns: 1fr; gap: 4px; min-height: 120px; padding-block: 20px; }
  .strip-main { font-size: 25px; }
  .section { padding-block: 88px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 46px; }
  .section-heading h2, .journey-title h2, .visit h2, .faq h2, .contact h2 { font-size: 50px; }
  .section-heading > p { font-size: 16px; }
  .experience-card { grid-template-columns: 1fr; gap: 18px; padding-block: 35px; }
  .card-number { padding: 0; }
  .experience-card .card-copy { grid-column: auto; }
  .card-copy h3 { font-size: 39px; }
  .service-meta { grid-template-columns: 1fr; }
  .journey-grid { gap: 55px; }
  .journey-rail::before { left: 56px; }
  .journey-rail li { grid-template-columns: 58px 1fr; gap: 25px; }
  .journey-rail li::before { left: 49px; }
  .journey-rail strong { font-size: 22px; }
  .price-card { min-height: auto; padding: 30px 25px; }
  .gallery-section { padding-block: 10px 88px; }
  .gallery-track { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-track img, .gallery-track figure:nth-child(even) img { height: 220px; }
  .gallery-track figcaption { font-size: 10px; }
  .visit-grid { gap: 50px; }
  .visit-details { grid-template-columns: 1fr; }
  .map-card { min-height: 350px; }
  .faq-grid, .contact-grid { gap: 48px; }
  .accordion summary { font-size: 19px; }
  .contact { padding-block: 88px; }
  .demo-form { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-block: 45px; }
  .studio-credit { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
