/* ==========================================================================
   AVSA HOSPITALITY — Design System
   "The Route Book" — a travel operator's field notebook, made digital.
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
:root {
  /* Color */
  --ink:       #0E2A2E;   /* Kashmir night — primary surface for contrast blocks */
  --ink-2:     #16383D;   /* Slightly lifted teal */
  --ground:    #F5EFE4;   /* Unbleached paper — page ground */
  --ground-2:  #EFE7D8;   /* Deeper ground for section shifts */
  --snow:      #FDFCF9;   /* Elevated surfaces (cards) */
  --ochre:     #C9843C;   /* Chai — the single accent */
  --ochre-2:   #A96B27;   /* Ochre hover */
  --slate:     #5F6B6B;   /* Body-secondary */
  --slate-2:   #3A4547;   /* Body-primary on ground */
  --line:      rgba(14,42,46,0.14);
  --line-strong: rgba(14,42,46,0.28);
  --line-ink:  rgba(245,239,228,0.16);

  /* Type */
  --f-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "JetBrains Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;

  /* Scale — modular, deliberate */
  --fs-eyebrow: 0.72rem;
  --fs-body:    1rem;
  --fs-lead:    1.125rem;
  --fs-h4:      1.25rem;
  --fs-h3:      1.75rem;
  --fs-h2:      clamp(2rem, 1.4rem + 2vw, 3rem);
  --fs-h1:      clamp(2.75rem, 2rem + 3.6vw, 5rem);

  /* Space */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6.5rem;

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 880px;
  --radius: 4px;   /* deliberately small — this isn't a soft-pill site */
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 240ms;
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--slate-2);
  background: var(--ground);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
:focus-visible { outline: 2px solid var(--ochre); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* --- 3. Typography ------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 var(--sp-3);
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
h1 { font-size: var(--fs-h1); font-variation-settings: "SOFT" 20, "opsz" 144; }
h2 { font-size: var(--fs-h2); font-variation-settings: "SOFT" 40, "opsz" 96; }
h3 { font-size: var(--fs-h3); font-variation-settings: "SOFT" 50, "opsz" 48; line-height: 1.2; }
h4 { font-size: var(--fs-h4); line-height: 1.3; font-variation-settings: "SOFT" 60, "opsz" 24; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.lead { font-size: var(--fs-lead); color: var(--slate-2); max-width: 62ch; }
p { margin: 0 0 var(--sp-3); }
p:last-child { margin-bottom: 0; }

/* --- 4. Layout primitives ----------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--sp-3); }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 var(--sp-3); }
.section { padding: var(--sp-7) 0; }
.section-sm { padding: var(--sp-6) 0; }
.section-alt { background: var(--ground-2); }
.section-dark { background: var(--ink); color: #D8CFC0; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--snow); }
.section-dark .lead { color: #C7BFB1; }
.section-dark .eyebrow { color: #E4B37E; }

/* --- 5. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.5em;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--snow); }
.btn-primary:hover { background: var(--ochre); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover { border-color: var(--ink); background: var(--ink); color: var(--snow); }
.section-dark .btn-secondary { color: var(--snow); border-color: var(--line-ink); }
.section-dark .btn-secondary:hover { background: var(--snow); color: var(--ink); }
.btn-ghost {
  padding: 0.5em 0;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--ochre); border-color: var(--ochre); }
.btn .arr { transition: transform var(--dur) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* --- 6. Header / Nav ---------------------------------------------------- */
.site-top {
  background: var(--ink);
  color: #D8CFC0;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-top .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 0.6rem; padding-bottom: 0.6rem; }
.site-top a:hover { color: var(--ochre); }
.site-top .sep { opacity: 0.35; margin: 0 0.75em; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px -20px rgba(14,42,46,0.35); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.brand-word { display: inline-block; }
.brand small { font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.2em; color: var(--slate); display: block; text-transform: uppercase; margin-top: 1px; }
@media (max-width: 480px) {
  .brand { font-size: 1.1rem; }
  .brand small { font-size: 0.5rem; }
}
.brand-img {
  display: none;
}
/* Footer brand-img on dark background — add subtle chip */
.foot-brand .brand-img {
  background: var(--snow);
  padding: 4px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.9rem;
  color: var(--slate-2);
  font-weight: 500;
  padding: 0.5rem 0;
  display: inline-flex; align-items: center; gap: 0.35em;
}
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--ink); }
.nav-links .caret { font-size: 0.6rem; opacity: 0.6; }
.dropdown {
  position: absolute; top: 100%; left: -1rem;
  min-width: 240px;
  background: var(--snow);
  border: 1px solid var(--line);
  padding: 0.5rem 0;
  list-style: none; margin: 0.5rem 0 0;
  box-shadow: 0 20px 40px -20px rgba(14,42,46,0.25);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: all var(--dur) var(--ease);
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  color: var(--slate-2);
}
.dropdown a:hover { background: var(--ground-2); color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--ink);
  border-left: 1px solid var(--line);
  padding-left: 1rem;
  display: none;
}
@media (min-width: 1080px) { .nav-phone { display: block; } }

.burger {
  width: 40px; height: 40px; display: none;
  align-items: center; justify-content: center;
}
.burger span {
  width: 22px; height: 1.5px; background: var(--ink);
  position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 1.5px; background: var(--ink);
  transition: transform var(--dur) var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .nav-links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--snow);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  .nav-links.is-open > li { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
  .nav-links.is-open > li:last-child { border: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0.25rem 0 0.5rem 1rem; margin: 0; background: transparent; }
  .dropdown a { padding: 0.35rem 0; }
}

/* --- 7. Hero ------------------------------------------------------------ */
.hero {
  padding: var(--sp-6) 0 var(--sp-7);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: var(--sp-5); } }

.hero h1 { margin-bottom: var(--sp-4); }
.hero h1 em { font-style: italic; color: var(--ochre); font-variation-settings: "SOFT" 100, "opsz" 144; }
.hero .lead { margin-bottom: var(--sp-4); font-size: 1.15rem; }

.hero-ctas { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-5); }

.route-line { margin-top: var(--sp-4); }
.route-line svg { width: 100%; height: auto; max-width: 520px; }

/* Ticket card (hero right) */
.ticket {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(14,42,46,0.25);
  position: relative;
}
.ticket-top {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px dashed var(--line-strong);
  position: relative;
}
.ticket-top::before, .ticket-top::after {
  content: "";
  position: absolute; bottom: -8px;
  width: 16px; height: 16px;
  background: var(--ground);
  border-radius: 50%;
}
.ticket-top::before { left: -8px; }
.ticket-top::after { right: -8px; }

.ticket-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--f-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate);
  margin-bottom: 1rem;
}
.ticket-route {
  display: flex; align-items: baseline; gap: 0.75rem;
  font-family: var(--f-display); font-size: 1.75rem;
  color: var(--ink); line-height: 1.1; margin-bottom: 0.5rem;
}
.ticket-route .to { color: var(--ochre); font-size: 1.2rem; }
.ticket-sub { font-size: 0.9rem; color: var(--slate); }

.ticket-body {
  padding: 1.75rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.ticket-cell dt { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.25rem; }
.ticket-cell dd { margin: 0; font-family: var(--f-display); font-size: 1.35rem; color: var(--ink); }
.ticket-cell dd small { font-family: var(--f-body); font-size: 0.75rem; color: var(--slate); }
.ticket-cta { grid-column: 1 / -1; margin-top: 0.5rem; }
.ticket-cta .btn { width: 100%; justify-content: center; }

/* --- 8. Route board (signature strip) ----------------------------------- */
.board {
  background: var(--ink);
  color: #D8CFC0;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  overflow: hidden;
}
.board-inner {
  display: flex; align-items: center; gap: var(--sp-5);
  padding: 1.1rem 0;
  font-family: var(--f-mono); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  white-space: nowrap;
}
.board-label {
  color: var(--ochre);
  padding-right: 1rem;
  border-right: 1px solid var(--line-ink);
  flex-shrink: 0;
}
.board-track {
  display: flex; gap: var(--sp-5);
  animation: board-scroll 40s linear infinite;
}
.board-track > span { display: inline-flex; align-items: center; gap: 0.75rem; }
.board-track .dot { width: 5px; height: 5px; background: var(--ochre); border-radius: 50%; display: inline-block; }
.board-track b { color: var(--snow); font-weight: 500; }
@keyframes board-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- 9. Cards ----------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--sp-4); margin-bottom: var(--sp-5);
}
.section-head h2 { margin: 0; max-width: 22ch; }
.section-head .lead { max-width: 42ch; margin: 0; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* Destination / tour card */
.card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(14,42,46,0.3);
}
.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--ground-2);
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--snow); color: var(--ink);
  padding: 0.35rem 0.7rem;
  font-family: var(--f-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius);
}
.card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-kicker {
  font-family: var(--f-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 0.4rem;
}
.card-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card-title a:hover { color: var(--ochre); }
.card-meta {
  display: flex; gap: 1rem; margin-top: auto; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 0.72rem;
  color: var(--slate); text-transform: uppercase; letter-spacing: 0.1em;
}
.card-meta .price { color: var(--ink); font-weight: 500; }
.card p { font-size: 0.92rem; color: var(--slate-2); }

/* Fleet card (car listing) */
.fleet-card { position: relative; }
.fleet-card .card-media { aspect-ratio: 16 / 10; }
.fleet-specs {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 0.72rem;
  color: var(--slate); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.fleet-specs span::before { content: "· "; color: var(--ochre); }
.fleet-specs span:first-child::before { content: ""; }

/* --- 10. About split ---------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-6); align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--sp-4); } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); width: 100%; }
.split-media .stat {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--ink); color: var(--snow);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  max-width: 240px;
}
.split-media .stat b {
  font-family: var(--f-display); font-size: 2.5rem;
  color: var(--ochre); display: block; line-height: 1;
  margin-bottom: 0.35rem;
}
.split-media .stat span {
  font-family: var(--f-mono); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #C7BFB1;
}

/* Feature list (about) */
.features { list-style: none; padding: 0; margin: var(--sp-4) 0 var(--sp-4); }
.features li {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.features li:last-child { border-bottom: 1px solid var(--line); }
.features .num {
  font-family: var(--f-mono); font-size: 0.75rem;
  color: var(--ochre); letter-spacing: 0.08em;
  flex-shrink: 0; padding-top: 0.35rem;
}
.features h4 { font-family: var(--f-body); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--ink); }
.features p { font-size: 0.92rem; color: var(--slate); margin: 0; }

/* --- 11. Testimonials --------------------------------------------------- */
.testi { position: relative; }
.testi-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
}
.testi-card::before {
  content: "\201C";
  position: absolute; top: 0.5rem; left: 1.25rem;
  font-family: var(--f-display); font-size: 5rem;
  color: var(--ochre); opacity: 0.25; line-height: 1;
}
.testi-card p {
  font-family: var(--f-display);
  font-size: 1.05rem; line-height: 1.55;
  color: var(--slate-2);
  font-variation-settings: "SOFT" 60;
  margin-bottom: 1.5rem;
  position: relative;
}
.testi-who {
  margin-top: auto; padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 0.75rem;
  color: var(--slate); text-transform: uppercase; letter-spacing: 0.1em;
}
.testi-who b { color: var(--ink); font-weight: 500; }

/* --- 12. Itinerary detail ---------------------------------------------- */
.tour-hero {
  padding: var(--sp-5) 0 var(--sp-6);
  background: var(--ink); color: #D8CFC0;
}
.tour-hero .breadcrumbs { color: #A8A196; }
.tour-hero h1 { color: var(--snow); margin-bottom: var(--sp-3); }
.tour-hero .lead { color: #C7BFB1; }
.tour-meta {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-ink);
}
.tour-meta > div .k {
  font-family: var(--f-mono); font-size: 0.7rem;
  color: #A8A196; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 0.25rem;
}
.tour-meta > div .v {
  font-family: var(--f-display); font-size: 1.5rem;
  color: var(--snow);
}
.tour-meta > div .v small { color: var(--ochre); font-size: 0.8rem; font-family: var(--f-body); }

.itin { display: grid; grid-template-columns: 1fr 340px; gap: var(--sp-5); align-items: start; }
@media (max-width: 900px) { .itin { grid-template-columns: 1fr; } }

.day {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.day:first-of-type { border-top: 0; padding-top: 0; }
.day-num {
  font-family: var(--f-mono); font-size: 0.7rem;
  color: var(--ochre); letter-spacing: 0.14em; text-transform: uppercase;
}
.day-num b { display: block; font-family: var(--f-display); font-size: 2.5rem; color: var(--ink); margin-top: 0.25rem; line-height: 1; }
.day h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.day-includes {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 0.72rem;
  color: var(--slate); letter-spacing: 0.08em; text-transform: uppercase;
}
.day-includes li::before { content: "▸"; color: var(--ochre); margin-right: 0.4em; }

/* Sticky booking sidecar */
.sidecar {
  position: sticky; top: 100px;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.sidecar h4 { margin-bottom: 1rem; }
.sidecar .price {
  font-family: var(--f-display); font-size: 2.25rem; color: var(--ink);
  line-height: 1; margin-bottom: 0.25rem;
}
.sidecar .price small { font-size: 0.85rem; font-family: var(--f-mono); color: var(--slate); }
.sidecar .btn { width: 100%; justify-content: center; margin-bottom: 0.6rem; }
.sidecar hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }
.sidecar ul { list-style: none; padding: 0; margin: 0; font-size: 0.88rem; }
.sidecar li { padding: 0.4rem 0; display: flex; justify-content: space-between; color: var(--slate); }
.sidecar li b { color: var(--ink); font-weight: 500; }

/* --- 13. FAQ (for AEO) -------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq summary {
  font-family: var(--f-display); font-size: 1.3rem;
  color: var(--ink); cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--f-mono); font-size: 1.5rem;
  color: var(--ochre); transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 1rem 0 0; color: var(--slate-2); }

/* --- 14. CTA band ------------------------------------------------------- */
.cta-band {
  background: var(--ink); color: var(--snow);
  padding: var(--sp-6) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201,132,60,0.15) 0%, transparent 45%);
}
.cta-band .wrap { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-5); align-items: center; }
@media (max-width: 800px) { .cta-band .wrap { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--snow); margin: 0; }
.cta-band .lead { color: #C7BFB1; margin-top: var(--sp-3); }
.cta-band .actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* --- 15. Footer --------------------------------------------------------- */
.site-foot {
  background: var(--ink);
  color: #C7BFB1;
  padding: var(--sp-6) 0 var(--sp-4);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand p { font-size: 0.92rem; color: #A8A196; max-width: 32ch; }
.foot-brand .brand { color: var(--snow); margin-bottom: 1rem; }
.foot-brand .brand small { color: #A8A196; }
.foot-col h5 {
  font-family: var(--f-mono); font-size: 0.7rem;
  color: var(--snow); letter-spacing: 0.16em;
  text-transform: uppercase; margin: 0 0 1.25rem;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { padding: 0.35rem 0; font-size: 0.9rem; }
.foot-col a:hover { color: var(--ochre); }
.foot-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.foot-contact .lab { font-family: var(--f-mono); font-size: 0.65rem; color: #A8A196; letter-spacing: 0.14em; text-transform: uppercase; min-width: 60px; padding-top: 3px; }

.foot-base {
  border-top: 1px solid var(--line-ink);
  padding-top: var(--sp-3);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 0.72rem;
  color: #A8A196; letter-spacing: 0.06em; text-transform: uppercase;
  flex-wrap: wrap; gap: 1rem;
}
.foot-socials { display: flex; gap: 0.75rem; }
.foot-socials a {
  width: 34px; height: 34px; border-radius: var(--radius);
  border: 1px solid var(--line-ink);
  display: grid; place-items: center;
}
.foot-socials a:hover { background: var(--ochre); border-color: var(--ochre); color: var(--ink); }

/* --- 16. Page hero (interior pages) ------------------------------------ */
.page-hero {
  background: var(--ground-2);
  padding: var(--sp-5) 0 var(--sp-5);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  font-family: var(--f-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate); margin-bottom: var(--sp-3);
  display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
}
.breadcrumbs a:hover { color: var(--ochre); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .cur { color: var(--ink); }
.page-hero h1 { margin-bottom: var(--sp-3); max-width: 20ch; }

/* --- 17. Utility -------------------------------------------------------- */
.hide-mobile { display: initial; }
.hide-desktop { display: none; }
@media (max-width: 720px) {
  .hide-mobile { display: none; }
  .hide-desktop { display: initial; }
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Reveal on scroll — subtle */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* --- 18. Enquiry form (contact page) ----------------------------------- */
.enquiry-form { display: grid; gap: 1.1rem; }
.enquiry-form .ef-note {
  background: var(--ink); color: #D8CFC0;
  padding: 1rem 1.25rem; border-radius: var(--radius-lg);
  font-size: 0.88rem; line-height: 1.55;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.ef-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  align-self: flex-start;
  background: #25D366; color: #001a05;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  font-family: var(--f-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.ef-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ef-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) {
  .ef-grid-2, .ef-grid-3 { grid-template-columns: 1fr; }
}
.ef-field { display: grid; gap: 0.4rem; }
.ef-label {
  font-family: var(--f-mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-2); font-weight: 500;
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem;
}
.ef-label em { color: var(--ochre); font-style: normal; }
.ef-hint {
  text-transform: none; letter-spacing: 0; font-family: var(--f-body);
  font-size: 0.72rem; color: var(--slate); font-weight: 400;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  background: var(--snow);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(201, 132, 60, 0.15);
}
.enquiry-form textarea { resize: vertical; min-height: 100px; }
.enquiry-form input:invalid:not(:placeholder-shown) { border-color: #B14B3C; }
.ef-consent { padding: 0.5rem 0; }
.ef-check {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--slate-2); cursor: pointer;
}
.ef-check input {
  width: auto; margin: 0.2rem 0 0 0;
  accent-color: var(--ochre); flex-shrink: 0;
}
.ef-check em { color: var(--ochre); font-style: normal; }
.ef-submit {
  justify-self: start;
  background: #25D366 !important; color: #001a05 !important;
  font-weight: 600;
}
.ef-submit:hover { background: #1DAA51 !important; color: white !important; }
.ef-fine { font-size: 0.78rem; color: var(--slate); margin: 0; }

/* --- 19. Floating actions (mobile) ------------------------------------- */
.float-actions {
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  z-index: 40;
}
.float-actions a {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--snow);
  box-shadow: 0 10px 25px -8px rgba(14,42,46,0.4);
  transition: transform var(--dur) var(--ease);
}
.float-actions a.wa { background: #25D366; color: white; }
.float-actions a:hover { transform: scale(1.08); }
@media (min-width: 900px) {
  .float-actions { bottom: 2rem; right: 2rem; }
}
