/* =========================================================
   Chestnut Travel — Bold & Adventurous
   Palette: deep emerald + chestnut + sunset accent
   Type:    Fraunces (display) + Inter (body)
========================================================= */

:root {
  /* Brand colors */
  --ink:        #0f1d1a;       /* near-black emerald */
  --forest:     #163a32;       /* deep emerald */
  --moss:       #2a5a4a;
  --sage:       #a8c2b5;
  --cream:      #f5efe4;       /* warm off-white background */
  --paper:      #fbf8f1;       /* card background */
  --chestnut:   #7a3b1e;       /* chestnut accent */
  --sunset:     #2a5a4a;       /* primary CTA */
  --sunset-2:   #a8c2b5;
  --sunset-3:   #b94715;       /* deeper sunset for accessible text */
  --dragon:     #7AD0F5;
  --sand:       #e9dcc3;
  --muted:      #5e6b66;
  --line:       rgba(15, 29, 26, 0.12);
  --line-soft:  rgba(15, 29, 26, 0.07);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --max:   1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,29,26,.06), 0 4px 12px rgba(15,29,26,.05);
  --shadow-md: 0 10px 30px rgba(15,29,26,.12);
  --shadow-lg: 0 24px 60px rgba(15,29,26,.18);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); letter-spacing: -0.01em; }
p  { color: #2b3833; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sunset-3);
  display: inline-block;
}

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: clamp(60px, 9vw, 120px) 0; }

/* =====================  NAVBAR  ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,228,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-brand svg { width: 30px; height: 30px; }
.nav-brand span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-links a:hover { background: rgba(22,58,50,.08); }
.nav-links a.active { background: var(--ink); color: var(--cream); }
.nav-cta {
  background: var(--sunset);
  color: #fff !important;
  padding: 11px 18px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--sunset-2) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,29,26,.25) 0%, rgba(15,29,26,.15) 40%, rgba(15,29,26,.85) 100%),
              url('images/index-1.jpg') center/cover no-repeat;
  z-index: -1;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 90px;
}
.hero .eyebrow { color: var(--sand); }
.hero h1 {
  color: #fff;
  margin: 18px 0 22px;
  max-width: 14ch;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--dragon);
}
.hero-lede {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-align: center;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px; height: 32px;
  background: rgba(255,255,255,.5);
  margin: 10px auto 0;
  animation: cuePulse 2s ease-in-out infinite;
}
@keyframes cuePulse {
  0%,100% { transform: scaleY(1); opacity:.5; }
  50%     { transform: scaleY(.5); opacity:1; }
}

/* Subpage hero */
.subpage-hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.subpage-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,29,26,.45), rgba(15,29,26,.7));
  z-index: -1;
}
.subpage-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
.subpage-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 28px 60px;
  width: 100%;
}
.subpage-hero h1 { color: #fff; max-width: 18ch; margin-top: 14px; }
.subpage-hero .lede { color: rgba(255,255,255,.85); max-width: 60ch; margin-top: 18px; font-size: 1.15rem; }
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.crumbs a { text-decoration: none; color: inherit; }
.crumbs a:hover { color: var(--sunset); }

/* =====================  BUTTONS  ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.005em;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary {
  background: var(--sunset);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232,116,59,.35);
}
.btn-primary:hover { background: var(--sunset-2); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232,116,59,.45); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--forest); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* =====================  SECTION HEADERS  ===================== */
.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* =====================  PILLARS GRID  ===================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillars.pillars-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
  gap: 28px;
}
.pillars.pillars-2 .pillar { padding: 36px 32px; }
.pillar {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.pillar .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--sand);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.pillar h3 { margin-bottom: 8px; font-size: 1.2rem; }
.pillar p { font-size: .95rem; color: var(--muted); }

/* =====================  DESTINATIONS GRID  ===================== */
.dest-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 18px;
}
.dest {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #222;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 26px;
}
.dest::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
  z-index: -2;
}
.dest::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,29,26,0) 30%, rgba(15,29,26,.8) 100%);
  z-index: -1;
}
.dest:hover::before { transform: scale(1.06); }
.dest .label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.dest .tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.8);
  display: block;
  margin-bottom: 6px;
}
.dest.big { grid-row: span 2; }
.dest.big .label { font-size: 2.3rem; }
/* Featured destination imagery — stable, well-known Unsplash photos */
.dest:nth-child(1)::before { background-image: url('images/index-2.jpg'); } /* Paris */
.dest:nth-child(2)::before { background-image: url('images/index-3.jpg'); } /* Santorini whitewashed */
.dest:nth-child(3)::before { background-image: url('images/index-4.jpg'); } /* Kyoto pagoda */
.dest:nth-child(4)::before { background-image: url('images/index-5.jpg'); } /* Norwegian fjord */
.dest:nth-child(5)::before { background-image: url('images/index-6.jpg'); } /* Tuscany / Venice canal-villa vibe */

/* =====================  EXPERIENCES (services strip)  ===================== */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.exp {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.exp:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-4px);
}
.exp:hover .exp-icon { background: var(--sunset); color: #fff; }
.exp:hover p { color: rgba(245,239,228,.8); }
.exp-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sand);
  color: var(--forest);
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.exp h3 { font-size: 1.15rem; }
.exp p { font-size: .9rem; color: var(--muted); }
.exp .more {
  margin-top: auto;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}

/* =====================  PROCESS (numbered)  ===================== */
.process {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
}
.process .section-head h2 { color: var(--cream); }
.process .section-head p { color: rgba(245,239,228,.7); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.step .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sunset);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
  font-style: italic;
}
.step h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.2rem; }
.step p  { color: rgba(245,239,228,.7); font-size: .95rem; }

/* =====================  TESTIMONIALS  ===================== */
.testimonials {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.t-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.t-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
}
.t-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--sunset);
  position: absolute;
  top: 8px; right: 22px;
  line-height: 1;
  opacity: .4;
}
.t-meta { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
.t-name { font-weight: 600; font-size: .95rem; }
.t-loc  { font-size: .85rem; color: var(--muted); }

/* =====================  CTA BAND  ===================== */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(50px, 7vw, 100px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,29,26,.7), rgba(122,59,30,.6)),
              url('images/index-7.jpg') center/cover;
  z-index: -1;
}
.cta-band h2 { color: #fff; margin: 12px auto 18px; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 30px; font-size: 1.1rem; }

/* =====================  SERVICE PAGE LAYOUT  ===================== */
.service-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-text h2 { margin-bottom: 20px; }
.service-text p { font-size: 1.08rem; margin-bottom: 18px; color: #2b3833; }
.service-text ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.service-text ul li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.service-text ul li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 14px;
  color: var(--sunset);
  font-size: 1.1rem;
}
.service-side {
  position: sticky;
  top: 100px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px;
}
.service-side h3 { margin-bottom: 14px; font-size: 1.3rem; }
.service-side p { font-size: .95rem; color: var(--muted); margin-bottom: 18px; }
.service-side .stat {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: .9rem;
}
.service-side .stat strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); }

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
}
.service-gallery img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: var(--radius);
}

/* =====================  FORM  ===================== */
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.form-aside {
  position: sticky;
  top: 100px;
}
.form-aside .eyebrow { margin-bottom: 14px; }
.form-aside h2 { margin-bottom: 18px; }
.form-aside p { color: var(--muted); margin-bottom: 26px; }
.form-aside .feature {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.form-aside .feature:last-child { border-bottom: 1px solid var(--line-soft); }
.form-aside .feature .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sand);
  color: var(--forest);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.form-aside .feature h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.form-aside .feature p { font-size: .9rem; color: var(--muted); margin: 0; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sunset);
  box-shadow: 0 0 0 4px rgba(232,116,59,.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 17px 26px;
}

/* =====================  FAQ  ===================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sunset);
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 65ch;
}

/* =====================  FOOTER  ===================== */
footer.site-footer {
  background: var(--ink);
  color: var(--cream);
  margin-top: 100px;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand svg { width: 36px; height: 36px; }
.footer-brand h3 { font-family: var(--font-display); color: var(--cream); font-size: 1.6rem; margin: 14px 0 12px; }
.footer-brand p { color: rgba(245,239,228,.7); max-width: 36ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(245,239,228,.75);
  text-decoration: none;
  font-size: .95rem;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--sunset); }
.footer-bottom {
  border-top: 1px solid rgba(245,239,228,.12);
  padding: 22px 28px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(245,239,228,.55);
}

/* =====================  REVEAL ANIMATIONS  ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* =====================  SUCCESS PAGE  ===================== */
.success-wrap {
  min-height: 70vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 60px 28px;
}
.success-wrap .check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--sand);
  display: grid; place-items: center;
  margin: 0 auto 26px;
}
.success-wrap h1 { margin-bottom: 18px; }
.success-wrap p { font-size: 1.15rem; color: var(--muted); max-width: 50ch; margin: 0 auto 30px; }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 12px 14px; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillars.pillars-2 { grid-template-columns: 1fr; max-width: 560px; }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest.big { grid-row: auto; grid-column: span 2; min-height: 320px; }
  .dest { min-height: 240px; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .t-grid { grid-template-columns: 1fr; }
  .service-layout, .form-shell { grid-template-columns: 1fr; gap: 40px; }
  .service-side, .form-aside { position: static; }
  .service-gallery { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero { min-height: 80vh; }
  .hero-inner { padding-bottom: 60px; }
}
@media (max-width: 560px) {
  .pillars, .exp-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest.big { grid-column: auto; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-gallery { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
.nav-brand .site-logo {
  height: 160px;
  width: auto;
  max-width: 90vw;
}

/* Match the site backgrounds to the logo's off-white canvas */
body, 
.navbar, 
.hero {
  background-color: #ffffff !important; /* Off-white paper hex code */
}