/* ============================================================
   ROADROLLS — Hospitality / Road Trips / Events
   Type: Newsreader (display serif) · Hanken Grotesk (sans)
         Space Mono (labels — echoes the logo wordmark)
   Palette: warm monochrome + restrained terracotta accent
   ============================================================ */

:root {
  --ink:        #10162a;   /* deep cool navy-charcoal */
  --ink-2:      #313a55;   /* cool dark slate */
  --ink-3:      #69718f;   /* muted cool grey */
  --paper:      #f2f5fd;   /* bright cool white */
  --paper-2:    #e5ebf9;   /* cool panel */
  --paper-3:    #d5def3;   /* deepest paper */
  --line:       rgba(16,22,42,0.12);
  --line-soft:  rgba(16,22,42,0.07);
  --accent:     #2563ff;   /* electric cobalt */
  --accent-deep:#1745d6;
  --accent-tint:#cfdcff;
  --white:      #ffffff;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  /* tweakable: atmosphere (headline weight + geometry) & pace (rhythm) */
  --wt-display: 460;
  --wt-h: 500;
  --sec-pad: clamp(64px, 9vw, 132px);

  --ease: cubic-bezier(.22,.61,.36,1);

  --maxw: 1240px;
  --pad:  clamp(20px, 5vw, 72px);

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- layout helpers ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec-pad); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: var(--wt-h); margin: 0; }
.display {
  font-size: clamp(2.9rem, 6.4vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  font-weight: var(--wt-display);
}
.h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
}
.h3 { font-size: 1.5rem; line-height: 1.2; letter-spacing: -0.01em; }
em, .ital { font-style: italic; }
.accent-ink { color: var(--accent-deep); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 54ch;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.92em 1.5em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(27,23,20,0.03); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }

.text-link {
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .25s var(--ease);
}
.text-link:hover { color: var(--accent-deep); border-color: var(--accent); gap: 0.85em; }

/* ---- placeholder imagery ---- */
.ph {
  position: relative;
  background-color: var(--paper-3);
  background-image:
    repeating-linear-gradient(135deg, rgba(27,23,20,0.045) 0 1px, transparent 1px 13px);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: var(--r-md);
}
.ph.dark {
  background-color: #2a2420;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 13px);
  border-color: rgba(255,255,255,0.12);
}
.ph .cap {
  position: absolute; left: 12px; bottom: 11px;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em;
  color: var(--ink-3);
  background: rgba(247,243,236,0.82);
  padding: 4px 8px; border-radius: 4px;
  backdrop-filter: blur(2px);
}
.ph.dark .cap { color: #c9bfb2; background: rgba(20,17,15,0.55); }
.ph.has-img { background: none; background-image: none; padding: 0; }
.ph.has-img img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
}

/* ---- logo badge ---- */
.logo-badge {
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  flex: none;
  box-shadow: 0 1px 0 var(--line);
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; }

/* =====================  NAV  ===================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(27,23,20,0.07); background: color-mix(in srgb, var(--paper) 92%, transparent); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-badge { width: 44px; height: 44px; }
.brand .word {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 1.02rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding-block: 6px; letter-spacing: 0.01em;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s var(--ease); }

.nav-account { position: relative; }
.nav-account summary { list-style: none; cursor: pointer; }
.nav-account summary::-webkit-details-marker { display: none; }
.nav-account summary .arr { display: inline-block; transition: transform .25s var(--ease); }
.nav-account[open] summary .arr { transform: rotate(180deg); }
.nav-account-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 70;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 200px; padding: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 12px 32px rgba(16,22,42,0.12);
}
.nav-account-menu a {
  padding: 9px 10px; border-radius: 8px;
  font-size: 0.9rem; color: var(--ink-2);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-account-menu a:hover { background: var(--paper-2); color: var(--ink); }
.nav-account-label {
  padding: 8px 10px 2px; font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.nav-account-label:first-child { padding-top: 4px; }
.nav-links-account { display: none; }

/* =====================  HERO  ===================== */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 5vw, 64px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 { margin-top: 22px; }
.hero h1 .ital { color: var(--ink); }
.hero .lede { margin-top: 24px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero-visual { position: relative; }
.hero-visual .ph.main { aspect-ratio: 4/5; width: 100%; border-radius: var(--r-lg); }
.hero-visual .ph.inset {
  position: absolute; width: 46%; aspect-ratio: 4/3; right: -6%; bottom: -7%;
  border-radius: var(--r-md); box-shadow: 0 24px 60px rgba(27,23,20,0.18);
}
.hero-badge {
  position: absolute; left: -5%; top: 8%;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 16px 10px 12px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 40px rgba(27,23,20,0.12); z-index: 3;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero-badge .t { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; }

/* booking bar */
.booking {
  margin-top: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 50px rgba(27,23,20,0.08);
  overflow: hidden;
}
.booking-tabs { display: flex; border-bottom: 1px solid var(--line-soft); }
.booking-tab {
  flex: 1; background: transparent; border: 0; padding: 16px 14px;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); position: relative; transition: color .2s var(--ease);
}
.booking-tab[aria-selected="true"] { color: var(--ink); }
.booking-tab[aria-selected="true"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 2px; background: var(--accent);
}
.booking-tab:hover { color: var(--ink); }
.booking-body { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 0; align-items: stretch; }
.bf {
  padding: 16px 20px; border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.bf label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.bf .val { font-weight: 600; font-size: 0.98rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bf-input {
  width: 100%; border: 0; padding: 0; margin: 0; background: transparent;
  font: inherit; font-weight: 600; font-size: 0.98rem; color: var(--ink);
  min-width: 0;
}
.bf-input:focus { outline: none; color: var(--accent-deep); }
.bf-input::placeholder { color: var(--ink-3); font-weight: 600; }
select.bf-input { appearance: none; cursor: pointer; }
.bf-date-row { display: flex; align-items: center; gap: 6px; min-width: 0; }
.bf-date-row .bf-date { flex: 1; min-width: 0; }
.bf-date-sep { color: var(--ink-3); }
.booking-submit { display: grid; place-items: center; padding: 12px; }
.booking-submit .btn { white-space: nowrap; height: 100%; }

/* =====================  MARQUEE / TRUST  ===================== */
.trust { border-block: 1px solid var(--line); background: var(--paper-2); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px var(--pad); text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.02em; }
.stat .num .accent-ink { font-style: italic; }
.stat .lbl { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-top: 12px; }

/* =====================  SECTION HEAD  ===================== */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head .left { max-width: 640px; }
.sec-head h2 { margin-top: 18px; }
.sec-head .left .lede { margin-top: 18px; }

/* =====================  SERVICES  ===================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.svc {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(27,23,20,0.12); border-color: var(--line); }
.svc .ph { aspect-ratio: 3/2; border-radius: 0; border: 0; border-bottom: 1px solid var(--line-soft); }
.svc .svc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc .num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--accent-deep); }
.svc h3 { margin-top: 2px; }
.svc p { color: var(--ink-2); font-size: 0.97rem; margin: 0; }
.svc .text-link { margin-top: auto; align-self: flex-start; }

/* =====================  FEATURED  ===================== */
.feat { background: var(--paper-2); border-block: 1px solid var(--line); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.dest { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--line); }
.dest .ph { position: absolute; inset: 0; border: 0; border-radius: 0; }
.dest .ph.dark { background-color: #2a2420; }
.dest .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,13,0.82) 0%, rgba(20,16,13,0.12) 48%, transparent 75%); }
.dest .meta { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #f7f3ec; z-index: 2; }
.dest .tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(247,243,236,0.92); color: var(--ink); padding: 6px 10px; border-radius: 999px;
}
.dest .loc { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-tint); display: flex; align-items: center; gap: 7px; }
.dest h3 { color: #fff; margin-top: 7px; font-size: 1.45rem; }
.dest .price { margin-top: 10px; font-size: 0.92rem; color: rgba(247,243,236,0.85); }
.dest .price b { font-weight: 700; color: #fff; }
.dest:hover .ph { transform: scale(1.04); }
.dest .ph { transition: transform .6s var(--ease); }

/* =====================  HOW IT WORKS  ===================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 48px); counter-reset: step; }
.step { position: relative; }
.step .n { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--accent-deep); }
.step .ico { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; margin-block: 18px 20px; background: var(--white); }
.step .ico svg { width: 24px; height: 24px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.step h3 { font-size: 1.35rem; }
.step p { color: var(--ink-2); margin-top: 10px; font-size: 0.97rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 44px; right: -16px; width: 24px; height: 1px;
  background: var(--line); display: none;
}

/* =====================  TESTIMONIALS  ===================== */
.testi { background: var(--ink); color: var(--paper); }
.testi .eyebrow { color: var(--accent-tint); }
.testi .eyebrow::before, .testi .eyebrow.center::after { background: var(--accent); }
.testi h2 { color: var(--paper); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); margin-top: 52px; }
.quote {
  border: 1px solid rgba(247,243,236,0.14); border-radius: var(--r-lg); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px; background: rgba(247,243,236,0.03);
}
.quote .mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.6; color: var(--accent); height: 24px; }
.quote p { font-family: var(--font-display); font-size: 1.16rem; line-height: 1.45; color: var(--paper); margin: 0; font-weight: 400; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: var(--paper-3); flex: none; background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.06) 0 1px, transparent 1px 8px); }
.quote .who .nm { font-weight: 600; font-size: 0.92rem; color: var(--paper); }
.quote .who .rl { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.quote .stars { color: var(--accent); letter-spacing: 2px; font-size: 0.8rem; }

/* =====================  ABOUT  ===================== */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about-visual { position: relative; }
.about-visual .ph { aspect-ratio: 5/6; border-radius: var(--r-lg); }
.about-visual .chip {
  position: absolute; right: -5%; bottom: 8%; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 22px; box-shadow: 0 20px 50px rgba(27,23,20,0.14); max-width: 220px;
}
.about-visual .chip .big { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; letter-spacing: -0.02em; }
.about-visual .chip .sm { font-size: 0.82rem; color: var(--ink-2); margin-top: 8px; }
.values { display: grid; gap: 22px; margin-top: 34px; }
.value { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding-top: 22px; border-top: 1px solid var(--line); }
.value .vn { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--accent-deep); padding-top: 4px; }
.value h3 { font-size: 1.2rem; }
.value p { color: var(--ink-2); margin: 7px 0 0; font-size: 0.95rem; }

/* =====================  NEWSLETTER  ===================== */
.news { background: var(--paper-2); border-top: 1px solid var(--line); }
.news-card {
  background: var(--ink); color: var(--paper); border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px); align-items: center; position: relative; overflow: hidden;
}
.news-card .eyebrow { color: var(--accent-tint); }
.news-card .eyebrow::before { background: var(--accent); }
.news-card h2 { color: var(--paper); margin-top: 16px; }
.news-card p { color: rgba(247,243,236,0.7); margin-top: 14px; max-width: 42ch; }
.news-form { display: flex; flex-direction: column; gap: 12px; }
.news-row { display: flex; gap: 10px; background: rgba(247,243,236,0.06); border: 1px solid rgba(247,243,236,0.16); border-radius: 999px; padding: 6px 6px 6px 20px; }
.news-row input {
  flex: 1; background: none; border: 0; color: var(--paper); font-family: var(--font-sans); font-size: 0.98rem; outline: none; min-width: 0;
}
.news-row input::placeholder { color: rgba(247,243,236,0.45); }
.news-note { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.06em; color: var(--ink-3); }
.news-card .roadline { position: absolute; right: -40px; top: -40px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(247,243,236,0.08); }
.news-card .roadline::after { content: ""; position: absolute; inset: 36px; border-radius: 50%; border: 1px solid rgba(247,243,236,0.06); }

/* =====================  FOOTER  ===================== */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
.footer .brand .logo-badge { width: 52px; height: 52px; }
.footer .brand .word { font-size: 1.1rem; }
.footer-about { color: var(--ink-2); font-size: 0.95rem; margin-top: 20px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .2s var(--ease); }
.footer-social a:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.fcol h4 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 18px; font-weight: 400; }
.fcol ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fcol a { font-size: 0.95rem; color: var(--ink-2); transition: color .2s var(--ease); }
.fcol a:hover { color: var(--accent-deep); }
.fcol .contact-line { font-size: 0.95rem; color: var(--ink-2); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-block: 26px 30px;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--ink-3);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--ink); }

/* =====================  REVEAL  ===================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

/* =====================  RESPONSIVE  ===================== */
@media (min-width: 880px) {
  .step:not(:last-child)::after { display: block; }
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .booking-body { grid-template-columns: 1fr 1fr; }
  .bf:nth-child(2) { border-right: 0; }
  .booking-submit { grid-column: 1 / -1; border-top: 1px solid var(--line-soft); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 520px; }
  .news-card { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-account { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px var(--pad) 28px;
  }
  .nav.open .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav.open .nav-links-account { display: block; }
  .nav.open .nav-links-account:first-of-type { margin-top: 6px; border-top: 1px solid var(--line-soft); padding-top: 18px; }
  .services-grid, .feat-grid, .steps, .testi-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer .brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .booking-body { grid-template-columns: 1fr; }
  .bf { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .trust-inner { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .stat:last-child { border-bottom: 0; }
  .hero-visual .ph.inset { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =====================  TWEAKS: ATMOSPHERE & PACE  ===================== */
/* Atmosphere reshapes headline weight, tracking and corner geometry.       */
[data-atmos="bold"] {
  --wt-display: 580; --wt-h: 600;
  --r-sm: 2px; --r-md: 5px; --r-lg: 8px;
}
[data-atmos="bold"] .display { letter-spacing: -0.032em; }
[data-atmos="bold"] .btn { font-weight: 700; }
[data-atmos="bold"] .eyebrow { letter-spacing: 0.3em; }

[data-atmos="soft"] {
  --wt-display: 430; --wt-h: 470;
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px;
}
[data-atmos="soft"] .display { letter-spacing: -0.01em; }
[data-atmos="soft"] .ph { border-radius: 20px; }

/* Pace rescales vertical rhythm — luxe-airy vs energetic-dense.            */
[data-pace="compact"] { --sec-pad: clamp(40px, 5.5vw, 82px); }
[data-pace="compact"] .hero { padding-top: clamp(28px, 4vw, 52px); }
[data-pace="compact"] .booking { margin-top: 30px; }

/* =====================  TWEAKS: TRAVEL-THEME PICKER  ===================== */
.twk-themes { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.twk-theme {
  display: flex; align-items: center; gap: 11px; padding: 7px 9px;
  border: .5px solid rgba(0,0,0,.1); border-radius: 9px;
  background: rgba(255,255,255,.5); color: inherit; font: inherit;
  cursor: default; text-align: left; transition: background .12s, box-shadow .12s;
}
.twk-theme:hover { background: rgba(255,255,255,.85); }
.twk-theme[data-on="1"] { box-shadow: 0 0 0 1.5px rgba(0,0,0,.82); border-color: transparent; }
.twk-theme-sw { display: flex; flex: none; }
.twk-theme-sw i {
  width: 15px; height: 15px; border-radius: 50%; margin-left: -5px;
  box-shadow: 0 0 0 1.5px rgba(250,249,247,.92);
}
.twk-theme-sw i:first-child { margin-left: 0; }
.twk-theme-nm { font-weight: 500; font-size: 11.5px; letter-spacing: .01em; }

/* ========================================================================
   SERVICE PAGES — shared components (hotels / road-trips / events)
   ======================================================================== */

/* active nav state */
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }

/* breadcrumb */
.crumb { display: flex; gap: 9px; align-items: center; font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.crumb a { color: var(--ink-3); transition: color .2s var(--ease); }
.crumb a:hover { color: var(--accent-deep); }
.crumb .sep { opacity: .45; }
.crumb .here { color: var(--accent-deep); }

/* sub-page hero */
.subhero { padding-top: clamp(34px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 72px); }
.subhero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
.subhero h1 { margin-top: 20px; }
.subhero .lede { margin-top: 22px; }
.subhero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.subhero-visual { position: relative; }
.subhero-visual .ph.main { aspect-ratio: 4/5; border-radius: var(--r-lg); }
.subhero-visual .ph.inset { position: absolute; width: 44%; aspect-ratio: 1/1; right: -5%; bottom: -7%;
  border-radius: var(--r-md); box-shadow: 0 24px 60px rgba(16,22,42,.18); }
.subhero-stats { display: flex; gap: clamp(24px, 4vw, 44px); margin-top: 38px; flex-wrap: wrap; }
.subhero-stats .s .n { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.3rem); line-height: 1; letter-spacing: -0.02em; }
.subhero-stats .s .n .accent-ink { font-style: italic; }
.subhero-stats .s .l { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 9px; }

/* shared tick */
.tick { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-tint); display: grid; place-items: center; flex: none; margin-top: 2px; }
.tick svg { width: 11px; height: 11px; stroke: var(--accent-deep); fill: none; stroke-width: 2.4; }

/* alternating split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split + .split { margin-top: clamp(48px, 6vw, 100px); }
.split.flip .split-text { order: 2; }
.split-visual .ph { aspect-ratio: 4/3; border-radius: var(--r-lg); }
.split-text h2 { margin-top: 16px; }
.split-text > p { margin-top: 16px; color: var(--ink-2); }
.split-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.split-list li { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; font-size: 0.97rem; }
.split-list li b { font-weight: 600; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.feature { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 28px 30px; background: var(--white); }
.feature .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--paper-2); display: grid; place-items: center; margin-bottom: 18px; }
.feature .ico svg { width: 22px; height: 22px; stroke: var(--accent-deep); fill: none; stroke-width: 1.5; }
.feature h3 { font-size: 1.22rem; }
.feature p { margin-top: 9px; color: var(--ink-2); font-size: 0.95rem; }

/* property / route cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.pcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(16,22,42,.1); }
.pcard .ph { aspect-ratio: 3/2; border: 0; border-radius: 0; border-bottom: 1px solid var(--line-soft); }
.pcard-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard .loc { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); }
.pcard h3 { font-size: 1.3rem; }
.pcard > .pcard-body > p { font-size: 0.93rem; color: var(--ink-2); margin: 0; }
.pcard .cmeta { display: flex; gap: 16px; margin-top: 2px; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.05em; color: var(--ink-3); flex-wrap: wrap; }
.pcard .foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line-soft); }
.pcard .foot .price { font-size: 0.82rem; color: var(--ink-3); }
.pcard .foot .price b { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); display: block; letter-spacing: -0.01em; }
.pcard.hl { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint), 0 26px 60px rgba(16,22,42,.1); }

/* timeline / itinerary */
.timeline { display: grid; gap: 0; border-left: 2px solid var(--line); margin-left: 8px; }
.tl-day { position: relative; padding: 0 0 38px 34px; }
.tl-day:last-child { padding-bottom: 0; }
.tl-day::before { content: ""; position: absolute; left: -9px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--paper); }
.tl-day .d { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); }
.tl-day h3 { font-size: 1.25rem; margin-top: 7px; }
.tl-day p { margin-top: 8px; color: var(--ink-2); font-size: 0.95rem; }

/* packages */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); align-items: stretch; }
.pkg { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; background: var(--white); display: flex; flex-direction: column; }
.pkg.feat { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pkg .nm { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); }
.pkg.feat .nm { color: var(--accent-tint); }
.pkg .pr { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; letter-spacing: -0.02em; margin-top: 16px; }
.pkg .pr span { font-family: var(--font-sans); font-size: 0.88rem; color: var(--ink-3); letter-spacing: 0; }
.pkg.feat .pr span { color: rgba(247,243,236,.6); }
.pkg .pdesc { font-size: 0.92rem; color: var(--ink-2); margin-top: 10px; }
.pkg.feat .pdesc { color: rgba(247,243,236,.7); }
.pkg ul { list-style: none; margin: 22px 0 24px; padding: 0; display: grid; gap: 12px; flex: 1; }
.pkg li { display: grid; grid-template-columns: auto 1fr; gap: 11px; font-size: 0.92rem; color: var(--ink-2); align-items: start; }
.pkg.feat li { color: rgba(247,243,236,.82); }
.pkg li .tick { width: 18px; height: 18px; margin-top: 1px; }
.pkg.feat li .tick { background: rgba(247,243,236,.12); }
.pkg.feat li .tick svg { stroke: var(--accent-tint); }

/* CTA band */
.cta-band { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(44px, 6vw, 80px); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; position: relative; overflow: hidden; }
.cta-band .eyebrow { color: var(--accent-tint); }
.cta-band .eyebrow::before, .cta-band .eyebrow.center::after { background: var(--accent); }
.cta-band h2 { color: var(--paper); max-width: 20ch; }
.cta-band p { color: rgba(247,243,236,.7); max-width: 50ch; }
.cta-band .row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }

@media (max-width: 1080px) {
  .subhero-grid { grid-template-columns: 1fr; }
  .subhero-visual { max-width: 560px; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.flip .split-text { order: 0; }
  .feature-grid, .card-grid, .pkg-grid { grid-template-columns: 1fr; }
  .subhero-visual .ph.inset { display: none; }
}

/* ========================================================================
   DESTINATIONS — 4-up grid + pilgrim circuit cards
   ======================================================================== */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 22px); }

/* circuits */
.circuit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.circuit { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px 30px; display: flex; flex-direction: column; gap: 14px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.circuit:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(16,22,42,.1); }
.circuit .ctag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); }
.circuit h3 { font-size: 1.42rem; }
.circuit > p { font-size: 0.95rem; color: var(--ink-2); margin: 0; }
.circuit-route { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 8px; }
.circuit-route .s { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.02em; color: var(--ink); background: var(--paper-2); padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.circuit-route .a { color: var(--accent); font-size: 0.85rem; line-height: 1; }
.circuit-meta { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.05em; color: var(--ink-3); padding-top: 4px; }
.circuit .text-link { margin-top: auto; align-self: flex-start; }

/* grand featured circuit — dark full-width band */
.grand { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; margin-top: clamp(20px, 2.5vw, 30px); position: relative; overflow: hidden; }
.grand .ctag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-tint); }
.grand h2 { color: var(--paper); margin-top: 14px; }
.grand p { color: rgba(247,243,236,.72); margin-top: 14px; max-width: 46ch; }
.grand .grand-route { display: flex; flex-direction: column; gap: 0; border-left: 2px solid rgba(247,243,236,.18); margin-left: 6px; }
.grand .gr { position: relative; padding: 0 0 18px 26px; }
.grand .gr:last-child { padding-bottom: 0; }
.grand .gr::before { content: ""; position: absolute; left: -8px; top: 4px; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--ink); }
.grand .gr .nm { font-family: var(--font-display); font-size: 1.12rem; color: var(--paper); }
.grand .gr .sub { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }
.grand .grand-cta { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1080px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .circuit-grid { grid-template-columns: 1fr; }
  .grand { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; }
}

/* booking modal */
body.rr-modal-open { overflow: hidden; }
.rr-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; }
.rr-modal[hidden] { display: none !important; }
.rr-modal-backdrop { position: absolute; inset: 0; background: rgba(16,22,42,.55); backdrop-filter: blur(4px); }
.rr-modal-panel {
  position: relative; z-index: 1; width: min(520px, 100%); max-height: 90vh; overflow: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 36px); box-shadow: 0 30px 80px rgba(16,22,42,.2);
}
.rr-modal-close {
  position: absolute; top: 14px; right: 16px; border: 0; background: transparent;
  font-size: 1.6rem; line-height: 1; color: var(--ink-3); cursor: pointer;
}
.rr-modal-sub { margin-top: 10px; font-size: 0.95rem; }
.rr-form { display: grid; gap: 14px; margin-top: 22px; }
.rr-field { display: grid; gap: 6px; }
.rr-field span { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.rr-field input, .rr-field textarea, .rr-field select {
  width: 100%; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 11px 13px; font: inherit; background: var(--white); color: var(--ink);
}
.rr-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2369718f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; cursor: pointer; }
.rr-field input:focus, .rr-field textarea:focus, .rr-field select:focus { outline: 2px solid var(--accent-tint); border-color: var(--accent); }
.rr-modal-panel { scrollbar-width: thin; }
.rr-form-divider { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding: 4px 0 2px; border-bottom: 1px solid var(--line-soft); }
.rr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rr-form-note { font-size: 0.9rem; color: var(--ink-2); min-height: 1.2em; }
.rr-form-note.ok { color: var(--accent-deep); }
.rr-form-note.err { color: #9b1b30; }
@media (max-width: 560px) { .rr-row { grid-template-columns: 1fr; } }
