/* ==========================================================================
   MK Travels & Tours (Pvt.) Ltd. — Design System
   Warm sand + deep teal + gold. Hand-written CSS, no framework.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-base: #FAF6F0;
  --bg-sand: #F4ECE1;
  --bg-sand-deep: #E8DCCC;
  --surface: #FFFFFF;
  --surface-alt: #FFFCF8;

  /* Borders */
  --border: #E4D9C8;
  --border-strong: #9C8560;

  /* Text */
  --text: #12211F;
  --text-2: #4F615E;
  --text-mute: #7A8785;

  /* Primary teal */
  --teal: #0F5C5A;
  --teal-hover: #0A4644;
  --teal-soft: #E3EDEB;

  /* Gold */
  --gold: #C9A227;
  --gold-text: #8A6D12;
  --gold-lite: #E8C56A;

  /* Ink / dark */
  --ink: #0B2B2A;
  --ink-2: #143836;
  --on-ink-2: #C6D6D3;

  /* Semantic */
  --error: #B3261E;
  --ok: #1B6B45;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fs-xs: .75rem;
  --fs-sm: .875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;

  --lh-tight: 1.12;
  --lh-head: 1.2;
  --lh-body: 1.6;
  --measure: 68ch;

  /* Spacing */
  --s1: .25rem; --s2: .5rem;  --s3: .75rem; --s4: 1rem;  --s5: 1.5rem;
  --s6: 2rem;   --s7: 3rem;   --s8: 4rem;   --s9: 6rem;  --s10: 8rem;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1200px;
  --nav-h: 76px;

  /* Warm-tinted elevation — one scale */
  --sh-1: 0 1px 2px rgba(59,40,20,.05), 0 2px 6px rgba(59,40,20,.05);
  --sh-2: 0 2px 4px rgba(59,40,20,.05), 0 10px 24px -6px rgba(59,40,20,.10);
  --sh-3: 0 4px 8px rgba(59,40,20,.06), 0 24px 48px -12px rgba(15,92,90,.16);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-head);
  letter-spacing: -.015em;
  color: var(--text);
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); line-height: var(--lh-tight); }
h2 { font-size: clamp(1.875rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: var(--fs-lg); }
p  { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible, .hero :focus-visible, footer :focus-visible {
  outline-color: var(--gold-lite);
}

::selection { background: var(--teal); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--ink); color: #fff;
  padding: var(--s3) var(--s5); border-radius: 0 0 var(--radius) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Layout helpers -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s5);
}
@media (min-width: 768px) { .container { padding-inline: var(--s6); } }

.section { padding-block: var(--s8); position: relative; }
@media (min-width: 768px)  { .section { padding-block: var(--s9); } }
@media (min-width: 1024px) { .section { padding-block: var(--s10); } }

.section--tight { padding-block: var(--s7); }
@media (min-width: 768px) { .section--tight { padding-block: var(--s8); } }

.bg-sand { background: var(--bg-sand); }
.bg-band { background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-sand) 26%, var(--bg-sand) 74%, var(--bg-base) 100%); }
.bg-ink  { background: var(--ink); color: #fff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.measure { max-width: var(--measure); }
.center  { margin-inline: auto; text-align: center; }
.center .measure { margin-inline: auto; }

.grid { display: grid; gap: var(--s5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: var(--s6); }
}

.split {
  display: grid; gap: var(--s6); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .split--wide-left  { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
}

.stack > * + * { margin-top: var(--s4); }
.stack-lg > * + * { margin-top: var(--s5); }

/* Paper grain overlay */
.grain { position: relative; }
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .035; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/></filter><rect width='120' height='120' filter='url(%23n)'/></svg>");
}
.grain > * { position: relative; z-index: 1; }

/* ---------- 4. Type utilities -------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8125rem; font-weight: 600; line-height: 1;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-text);
}
.eyebrow::after {
  content: ""; display: block; width: 44px; height: 2px; margin-top: var(--s3);
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0));
}
.center .eyebrow::after { margin-inline: auto; }
.on-dark .eyebrow { color: var(--gold-lite); }

.lede {
  font-size: var(--fs-lg);
  color: var(--text-2);
  max-width: var(--measure);
}
@media (min-width: 768px) { .lede { font-size: var(--fs-xl); } }
.on-dark .lede, .bg-ink .lede { color: var(--on-ink-2); }

.muted { color: var(--text-2); }
.small { font-size: var(--fs-sm); }
.tabular, .price { font-variant-numeric: tabular-nums; }

.section-head { margin-bottom: var(--s7); }
.section-head .eyebrow { margin-bottom: var(--s4); }
.section-head p { margin-top: var(--s4); }

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 48px; padding: .875rem 1.75rem;
  border: 1px solid transparent; border-radius: var(--radius-pill);
  font-weight: 600; font-size: var(--fs-base); line-height: 1;
  text-decoration: none; cursor: pointer; touch-action: manipulation;
  transition: background .2s ease-out, color .2s ease-out,
              border-color .2s ease-out, transform .15s ease-out, box-shadow .2s ease-out;
}
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: inset 0 1px 0 rgba(232,197,106,.35), 0 6px 16px -6px rgba(15,92,90,.45);
}
.btn-primary:hover { background: var(--teal-hover); color: #fff; }

.btn-gold { background: var(--gold); color: var(--text); box-shadow: 0 6px 16px -6px rgba(201,162,39,.5); }
.btn-gold:hover { background: var(--gold-lite); color: var(--text); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--teal-soft); border-color: var(--teal); color: var(--teal-hover); }

.btn-on-photo { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(232,197,106,.6); backdrop-filter: blur(6px); }
.btn-on-photo:hover { background: rgba(255,255,255,.2); color: #fff; border-color: var(--gold-lite); }

.btn-sm { min-height: 42px; padding: .625rem 1.25rem; font-size: var(--fs-sm); }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--teal); text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform .2s ease-out; }
.link-arrow:hover { color: var(--teal-hover); text-decoration: underline; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- 6. Header / nav ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,240,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease-out, background .25s ease-out;
}
.site-header.is-scrolled { box-shadow: var(--sh-2); background: rgba(250,246,240,.96); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s5); min-height: var(--nav-h);
}

.brand { display: flex; align-items: center; gap: var(--s3); text-decoration: none; color: var(--text); }
.brand__mark {
  width: 42px; height: 42px; flex: none; border-radius: 11px;
  background: linear-gradient(145deg, var(--teal), var(--ink));
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(232,197,106,.4), var(--sh-1);
}
.brand__mark svg { width: 23px; height: 23px; color: var(--gold-lite); }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; line-height: 1.05; letter-spacing: -.02em; }
.brand__tag { display: block; font-family: var(--font-body); font-size: .625rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-text); margin-top: 3px; }

.nav__links { display: none; }
@media (min-width: 1024px) {
  .nav__links { display: flex; align-items: center; gap: var(--s2); list-style: none; padding: 0; }
  .nav__links a {
    position: relative; display: block;
    padding: var(--s3) var(--s4);
    font-size: .9375rem; font-weight: 500; color: var(--text-2);
    text-decoration: none; border-radius: var(--radius-sm);
    transition: color .2s ease-out, background .2s ease-out;
  }
  .nav__links a:hover { color: var(--teal); background: var(--teal-soft); }
  .nav__links a[aria-current="page"] { color: var(--text); font-weight: 600; }
  .nav__links a[aria-current="page"]::after {
    content: ""; position: absolute; left: var(--s4); right: var(--s4); bottom: 4px;
    height: 2px; border-radius: 2px; background: var(--gold);
  }
}

.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: none;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); cursor: pointer; touch-action: manipulation;
}
.nav__toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) { .nav__toggle { display: none; } }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 300;
  display: grid; grid-template-columns: 1fr min(86vw, 380px);
  visibility: hidden; opacity: 0;
  transition: opacity .25s ease-out, visibility .25s;
}
.drawer.is-open { visibility: visible; opacity: 1; }
.drawer__scrim { background: rgba(11,43,42,.55); backdrop-filter: blur(3px); border: 0; padding: 0; cursor: pointer; }
.drawer__panel {
  background: var(--bg-base); height: 100dvh; overflow-y: auto;
  padding: var(--s5) var(--s5) var(--s8);
  box-shadow: -20px 0 60px -20px rgba(11,43,42,.4);
  transform: translateX(100%);
  transition: transform .28s ease-out;
  display: flex; flex-direction: column; gap: var(--s5);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); }
.drawer__close {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); cursor: pointer;
}
.drawer__close svg { width: 20px; height: 20px; }
.drawer__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.drawer__links a {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s4) var(--s3); min-height: 52px;
  font-size: var(--fs-lg); font-weight: 500; color: var(--text);
  text-decoration: none; border-radius: var(--radius);
  border-bottom: 1px solid var(--border);
}
.drawer__links a svg { width: 20px; height: 20px; color: var(--teal); flex: none; }
.drawer__links a:hover { background: var(--teal-soft); }
.drawer__links a[aria-current="page"] { font-weight: 600; box-shadow: inset 3px 0 0 var(--gold); }
body.no-scroll { overflow: hidden; }

/* ---------- 7. Hero ------------------------------------------------------ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 78dvh, 780px);
  display: grid; align-items: center;
  background: var(--ink);
}
.hero--short { min-height: clamp(380px, 46dvh, 480px); }

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,43,42,.62) 0%, rgba(11,43,42,.28) 45%, rgba(11,43,42,.78) 100%),
    linear-gradient(90deg, rgba(11,43,42,.55) 0%, rgba(11,43,42,0) 66%);
}
.hero__inner { padding-block: var(--s9) var(--s8); color: #fff; }
.hero__inner .eyebrow { color: var(--gold-lite); margin-bottom: var(--s5); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero h1 + p { margin-top: var(--s5); }
.hero p { color: rgba(255,255,255,.92); max-width: 54ch; }
.hero .btn-row { margin-top: var(--s6); }
.hero--short .hero__inner { padding-block: var(--s8) var(--s7); }
.hero--short h1 { max-width: 20ch; }

@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.hero__media img { animation: kenburns 24s ease-out both; }

/* Hero trust strip */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--s4) var(--s6);
  margin-top: var(--s7); padding-top: var(--s5);
  border-top: 1px solid rgba(232,197,106,.3);
  list-style: none; padding-left: 0;
}
.hero__trust li {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--fs-sm); font-weight: 500; color: rgba(255,255,255,.92);
}
.hero__trust svg { width: 17px; height: 17px; color: var(--gold-lite); flex: none; }

/* ---------- 8. Cards ----------------------------------------------------- */
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--sh-1);
  overflow: hidden;
  transition: box-shadow .25s ease-out, transform .25s ease-out;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  opacity: 0; transition: opacity .2s ease-out;
}
@media (hover: hover) {
  .card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
  .card:hover::before { opacity: 1; }
  .card:hover .card__media img { transform: scale(1.05); }
}
.card:focus-within { box-shadow: var(--sh-3); }

.card__media { position: relative; overflow: hidden; background: var(--bg-sand-deep); }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease-out; }
.card__media--arch { border-radius: 200px 200px 0 0; margin: var(--s4) var(--s4) 0; }
.card__media--arch img { aspect-ratio: 4 / 3.4; }

.card__badge {
  position: absolute; top: var(--s4); left: var(--s4); z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .375rem .75rem; border-radius: var(--radius-pill);
  background: rgba(11,43,42,.82); backdrop-filter: blur(6px);
  color: var(--gold-lite);
  font-size: .6875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.card__body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.card__body > h3 { margin-bottom: 0; }
.card__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s4);
  font-size: var(--fs-sm); color: var(--text-2); font-weight: 500;
}
.card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.card__meta svg { width: 15px; height: 15px; color: var(--teal); flex: none; }
.card__foot {
  margin-top: auto; padding-top: var(--s4);
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s3);
}
.card__foot { flex-wrap: nowrap; }
.card__note { flex: 1 1 auto; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold-text); line-height: 1.35; }
.card__foot .link-arrow { flex: none; font-size: .9375rem; }
.card a.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* Wide package card: image beside content on desktop, alternating sides */
.pkg { display: grid; grid-template-columns: 1fr; height: 100%; }
.pkg .card__media img { aspect-ratio: 16 / 10; }
@media (min-width: 900px) {
  .pkg { grid-template-columns: .82fr 1.18fr; }
  .pkg .card__media { height: 100%; }
  .pkg .card__media img { height: 100%; aspect-ratio: auto; min-height: 420px; }
  .grid > .card:nth-child(even) .pkg { grid-template-columns: 1.18fr .82fr; }
  .grid > .card:nth-child(even) .pkg .card__media { order: 2; }
}

/* Feature / service card */
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--s6);
  box-shadow: var(--sh-1);
  display: flex; flex-direction: column; gap: var(--s3);
  transition: box-shadow .25s ease-out, transform .25s ease-out, border-color .25s ease-out;
}
@media (hover: hover) {
  .feature:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--gold); }
}
.feature__icon {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: var(--s2);
  background: var(--teal-soft); color: var(--teal);
  border: 1px solid rgba(15,92,90,.14);
}
.feature__icon svg { width: 25px; height: 25px; }
.feature h3 { font-size: var(--fs-xl); }
.feature p { color: var(--text-2); font-size: .9375rem; }
.feature .link-arrow { margin-top: auto; padding-top: var(--s2); font-size: .9375rem; }

/* Numbered step card */
.step { position: relative; padding-left: 0; }
.step__num {
  font-family: var(--font-display); font-size: var(--fs-4xl); font-weight: 700;
  line-height: 1; color: var(--gold); opacity: .55;
  display: block; margin-bottom: var(--s3);
}
.step h3 { font-size: var(--fs-xl); margin-bottom: var(--s2); }
.step p { color: var(--text-2); font-size: .9375rem; }

/* ---------- 9. Stat band ------------------------------------------------- */
.stats { display: grid; gap: var(--s6); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1;
  color: var(--gold-lite); font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: var(--s3); font-size: var(--fs-sm); color: var(--on-ink-2); letter-spacing: .02em; }

/* ---------- 10. Lists ---------------------------------------------------- */
.ticks { list-style: none; padding: 0; display: grid; gap: var(--s3); }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--text-2); font-size: .9375rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F5C5A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px no-repeat;
}
.ticks--gold li::before {
  background: rgba(201,162,39,.16) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A6D12' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px no-repeat;
}
.crosses { list-style: none; padding: 0; display: grid; gap: var(--s3); }
.crosses li { position: relative; padding-left: 1.9rem; color: var(--text-2); font-size: .9375rem; }
.crosses li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(179,38,30,.09) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B3261E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") center / 11px no-repeat;
}

/* ---------- 11. Notice / callout ----------------------------------------- */
.notice {
  display: flex; gap: var(--s4);
  padding: var(--s5); border-radius: var(--radius);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  box-shadow: var(--sh-1);
}
.notice svg { width: 22px; height: 22px; flex: none; color: var(--gold-text); margin-top: 2px; }
.notice p { font-size: .9375rem; color: var(--text-2); }
.notice strong { color: var(--text); }
.notice--teal { border-left-color: var(--teal); }
.notice--teal svg { color: var(--teal); }

/* ---------- 12. Tables --------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--sh-1); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
caption { text-align: left; padding: var(--s4) var(--s5); font-size: var(--fs-sm); color: var(--text-2); border-bottom: 1px solid var(--border); }
th, td { text-align: left; padding: var(--s4) var(--s5); font-size: .9375rem; border-bottom: 1px solid var(--border); vertical-align: top; }
thead th { background: var(--bg-sand); font-weight: 600; color: var(--text); font-size: var(--fs-sm); letter-spacing: .02em; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: var(--surface-alt); }
td { color: var(--text-2); }
td:first-child { color: var(--text); font-weight: 500; }

/* ---------- 13. Accordion / FAQ ------------------------------------------ */
.faq { display: grid; gap: var(--s3); max-width: 820px; margin-inline: auto; text-align: left; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--sh-1);
  transition: box-shadow .2s ease-out, border-color .2s ease-out;
}
.faq details[open] { box-shadow: var(--sh-2); border-color: var(--gold); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4);
  padding: var(--s5);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-lg);
  color: var(--text); min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F5C5A' stroke-width='2.4' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / contain no-repeat;
  transition: transform .25s ease-out;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 var(--s5) var(--s5); }
.faq .faq__a p { color: var(--text-2); font-size: .9375rem; max-width: var(--measure); }
.faq .faq__a p + p { margin-top: var(--s3); }

/* ---------- 14. Testimonials --------------------------------------------- */
.quote {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--s6);
  box-shadow: var(--sh-1);
  display: flex; flex-direction: column; gap: var(--s4);
}
.quote::before {
  content: "\201C"; font-family: var(--font-display); font-size: 4.5rem; line-height: .62;
  color: var(--gold); opacity: .3; display: block;
}
.quote blockquote { font-size: 1.0625rem; color: var(--text); line-height: 1.65; }
.quote figcaption { margin-top: auto; padding-top: var(--s4); border-top: 1px solid var(--border); }
.quote figcaption b { display: block; font-weight: 600; font-size: .9375rem; }
.quote figcaption span { display: block; font-size: var(--fs-sm); color: var(--text-2); margin-top: 2px; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }

/* ---------- 15. Forms ---------------------------------------------------- */
.form { display: grid; gap: var(--s5); }
.form-row { display: grid; gap: var(--s5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: var(--s2); }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--text); }
.field .req { color: var(--error); margin-left: 2px; }
.field .hint { font-size: var(--fs-xs); color: var(--text-2); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px;
  padding: .75rem var(--s4);
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F615E' stroke-width='2.2' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right var(--s4) center; background-size: 18px;
  padding-right: var(--s8);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,92,90,.16);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field .error-msg { font-size: var(--fs-xs); color: var(--error); font-weight: 500; min-height: 0; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--error); }
.field[data-invalid="true"] input:focus { box-shadow: 0 0 0 3px rgba(179,38,30,.16); }

.form__status {
  display: none; padding: var(--s4) var(--s5); border-radius: var(--radius);
  background: rgba(27,107,69,.08); border: 1px solid rgba(27,107,69,.3);
  color: var(--ok); font-size: .9375rem; font-weight: 500;
}
.form__status.is-visible { display: block; }

/* ---------- 16. Breadcrumbs ---------------------------------------------- */
.crumbs { padding-block: var(--s4); border-bottom: 1px solid var(--border); background: var(--bg-sand); }
.crumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); font-size: var(--fs-sm); }
.crumbs li { display: flex; align-items: center; gap: var(--s2); color: var(--text-2); }
.crumbs li + li::before { content: "/"; color: var(--border-strong); }
.crumbs a { color: var(--text-2); text-decoration: none; }
.crumbs a:hover { color: var(--teal); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ---------- 17. CTA band ------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .18;
  background: radial-gradient(1000px 400px at 15% 0%, var(--teal), transparent 62%),
              radial-gradient(700px 340px at 88% 100%, var(--gold), transparent 66%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-ink-2); }

/* ---------- 18. Footer --------------------------------------------------- */
.site-footer { background: var(--ink); color: #fff; padding-block: var(--s8) var(--s6); }
.site-footer a { color: var(--on-ink-2); text-decoration: none; }
.site-footer a:hover { color: var(--gold-lite); text-decoration: underline; }
.footer__grid { display: grid; gap: var(--s7); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: var(--s6); } }
.footer__grid h3 { font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-lite); margin-bottom: var(--s4); }
.footer__grid ul { list-style: none; padding: 0; display: grid; gap: var(--s3); font-size: .9375rem; }
.footer__about p { color: var(--on-ink-2); font-size: .9375rem; max-width: 40ch; }
.site-footer .brand { color: #fff; margin-bottom: var(--s4); }
.site-footer .brand__mark { background: linear-gradient(145deg, var(--ink-2), #06201F); border: 1px solid rgba(232,197,106,.25); }
.site-footer .brand__tag { color: var(--gold-lite); }
.footer__contact li { display: flex; gap: var(--s3); color: var(--on-ink-2); align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; flex: none; color: var(--gold-lite); margin-top: 3px; }
.socials { display: flex; gap: var(--s3); margin-top: var(--s5); }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(232,197,106,.28); border-radius: var(--radius-sm);
  color: var(--on-ink-2); transition: background .2s ease-out, color .2s ease-out, border-color .2s;
}
.socials a:hover { background: rgba(232,197,106,.14); color: var(--gold-lite); border-color: var(--gold-lite); }
.socials svg { width: 19px; height: 19px; }
.footer__bar {
  margin-top: var(--s8); padding-top: var(--s5);
  border-top: 1px solid rgba(232,197,106,.22);
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); justify-content: space-between; align-items: center;
  font-size: var(--fs-sm); color: var(--on-ink-2);
}

/* ---------- 19. Sticky mobile action bar --------------------------------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--surface); border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px -8px rgba(59,40,20,.22);
  padding-bottom: env(safe-area-inset-bottom);
}
.action-bar a {
  display: flex; align-items: center; justify-content: center; gap: var(--s2);
  min-height: 58px; font-weight: 600; font-size: .9375rem;
  text-decoration: none; color: var(--text);
}
.action-bar a + a { border-left: 1px solid var(--border); }
.action-bar a svg { width: 19px; height: 19px; }
.action-bar .ab-call { color: var(--teal); }
.action-bar .ab-wa { color: #128C7E; }
@media (min-width: 1024px) { .action-bar { display: none; } }
@media (max-width: 1023px) { body { padding-bottom: 58px; } }

/* ---------- 20. Reveal on scroll ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease-out, transform .5s ease-out; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 21. Misc ----------------------------------------------------- */
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--sh-3); border: 1px solid var(--border);
}
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-frame--arch { border-radius: 190px 190px var(--radius-lg) var(--radius-lg); }
.media-frame--arch img { aspect-ratio: 4 / 4.4; }
.media-frame--tall img { aspect-ratio: 3 / 4; }
.media-frame--wide img { aspect-ratio: 16 / 10; }

.badge-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .375rem .8rem; border-radius: var(--radius-pill);
  background: var(--teal-soft); color: var(--teal-hover);
  border: 1px solid rgba(15,92,90,.18);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em;
}
.badge-pill--gold { background: rgba(201,162,39,.14); color: var(--gold-text); border-color: rgba(201,162,39,.35); }

.divider-gold { width: 56px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), rgba(201,162,39,.15)); }

.logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s5) var(--s8);
}
.logo-strip span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem;
  color: var(--text-2); opacity: .72; letter-spacing: .01em;
}

.hr-soft { border: 0; height: 1px; background: var(--border); margin-block: var(--s7); }

.prose > * + * { margin-top: var(--s4); }
.prose h2 { margin-top: var(--s7); }
.prose h3 { margin-top: var(--s6); }
.prose p, .prose li { color: var(--text-2); max-width: var(--measure); }
.prose strong { color: var(--text); font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.25rem; display: grid; gap: var(--s2); }

/* ---------- 22. Reduced motion ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__media img { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 23. Print ---------------------------------------------------- */
@media print {
  .site-header, .action-bar, .drawer, .cta-band, .site-footer { display: none !important; }
  body { background: #fff; padding: 0; }
  .hero { min-height: auto; background: #fff; color: #000; }
  .hero::after, .hero__media { display: none; }
  .hero h1, .hero p { color: #000; text-shadow: none; }
}
