/* ============================================================================
   The Ephesus — "Marble & Aegean" design system

   The look comes off the site itself: sun-warmed marble for paper, deep
   Aegean blue for the primary voice (the colour every trust study keeps
   landing on), Roman terracotta for the calls to action, and a night-harbour
   navy for the dark bands. Shapes echo the place — Roman arches over images,
   Greek-key meander borders down the reading column, colonnade skylines
   closing the dark sections, and hand-drawn doodles (bees, columns, cats —
   see lib/doodles.js) scattered right through the site.

   Fonts: Marcellus (display — Roman inscription feel) + Inter (body).
   NOTE: token NAMES are shared with the sister-site builders (tuff/rose/
   ember/sky/basalt); only their VALUES are re-mapped to this palette.
   ============================================================================ */

:root {
  /* --- marble & sea palette --- */
  --tuff: #f7f3ec;        /* page paper: warm marble */
  --tuff-2: #efe8dc;      /* paper, deeper */
  --tuff-3: #e1d7c6;      /* rule / edge */
  --white: #fffefb;

  --rose: #16607c;        /* Aegean deep blue — primary */
  --rose-deep: #114a60;
  --rose-soft: rgba(22, 96, 124, 0.11);

  --ember: #c65e33;       /* Roman terracotta — action */
  --ember-light: #eeb68f;
  --ember-deep: #9c431f;

  --sky: #2f93ad;         /* midday Aegean */
  --sky-light: #82c4d6;
  --sky-soft: rgba(47, 147, 173, 0.12);

  --vine: #7a8450;        /* olive groves on Bülbül mountain */
  --basalt: #122536;      /* night harbour navy — dark ground */
  --basalt-2: #1a3049;
  --basalt-3: #25405c;
  --basalt-line: rgba(238, 182, 143, 0.28);

  --ink: #22303c;
  --ink-soft: #3c4b58;
  --muted: #6b7683;
  --cream-dim: rgba(247, 243, 236, 0.76);

  /* aliases some shared templates still reach for */
  --cream: var(--tuff);
  --stone: var(--tuff-3);
  --accent: var(--rose);

  /* --- type --- */
  --font-display: "Marcellus", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.92rem);
  --step-0: clamp(1rem, 0.97rem + 0.2vw, 1.1rem);
  --step-1: clamp(1.18rem, 1.1rem + 0.42vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.32rem + 0.66vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.53rem + 1.05vw, 2.35rem);
  --step-4: clamp(2.05rem, 1.72rem + 1.62vw, 2.95rem);
  --step-5: clamp(2.4rem, 1.94rem + 2.35vw, 3.8rem);

  /* --- layout --- */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 9px;
  --arch: 46% 46% var(--radius) var(--radius) / 34% 34% var(--radius) var(--radius);
  --shadow: 0 16px 44px rgba(60, 38, 25, 0.14);
  --shadow-lift: 0 22px 54px rgba(60, 38, 25, 0.2);
  --header-h: 84px;
  --topbar-h: 34px;
  --head-total: calc(var(--topbar-h) + var(--header-h));

  --dd-accent: var(--ember);

  /* Greek-key meander border — used down the edges of the reading column */
  --kilim: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='14' viewBox='0 0 84 14'%3E%3Cg fill='none' stroke='%2316607c' stroke-width='1.4'%3E%3Cpath d='M1 13V1h12v8H7V5'/%3E%3Cpath d='M22 13V1h12v8h-6V5'/%3E%3Cpath d='M43 13V1h12v8h-6V5'/%3E%3Cpath d='M64 13V1h12v8h-6V5'/%3E%3C/g%3E%3Cg fill='%23c65e33' opacity='.8'%3E%3Ccircle cx='18' cy='7' r='1.4'/%3E%3Ccircle cx='39' cy='7' r='1.4'/%3E%3Ccircle cx='60' cy='7' r='1.4'/%3E%3Ccircle cx='81' cy='7' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-total) + 14px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 88% -4%, rgba(198, 94, 51, 0.10), transparent 62%),
    radial-gradient(760px 460px at 4% 22%, rgba(47, 147, 173, 0.09), transparent 58%),
    var(--tuff);
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(47, 147, 173, 0.28); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--tuff-2); }
::-webkit-scrollbar-thumb { background: var(--tuff-3); border-radius: 6px; border: 3px solid var(--tuff-2); }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }

img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: var(--rose-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ember-deep); }
a.ilink {
  text-decoration: underline;
  text-decoration-color: rgba(22, 96, 124, 0.4);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a.ilink:hover { text-decoration-color: var(--ember); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400; /* Marcellus ships one weight — the inscription look */
  line-height: 1.16;
  margin: 0 0 0.5em;
  letter-spacing: 0.008em;
  color: var(--ink);
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 1.1em; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.92rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 0; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: linear-gradient(148deg, var(--ember-light) 0%, var(--ember) 52%, var(--ember-deep) 100%);
  color: #35210a;
  box-shadow: 0 8px 22px rgba(198, 94, 51, 0.35);
}
.btn-accent:hover { color: #35210a; box-shadow: 0 14px 30px rgba(198, 94, 51, 0.48); }
.btn-primary { background: var(--rose); color: #fff; }
.btn-primary:hover { background: var(--rose-deep); color: #fff; }
.btn-ghost {
  background: rgba(255, 253, 249, 0.13); color: var(--white);
  box-shadow: inset 0 0 0 1.6px rgba(255, 253, 249, 0.6);
  backdrop-filter: blur(3px);
}
.btn-ghost:hover { background: rgba(255, 253, 249, 0.24); color: #fff; box-shadow: inset 0 0 0 1.6px #fff; }
.btn-dark {
  background: var(--basalt); color: var(--ember-light);
  box-shadow: inset 0 0 0 1.5px rgba(246, 196, 119, 0.35);
}
.btn-dark:hover { background: var(--basalt-2); color: var(--ember-light); }
.btn-wa {
  background: linear-gradient(150deg, #4ae07a 0%, #25d366 55%, #17a94c 100%);
  color: #06240f;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { color: #06240f; }
.btn-wa::before { content: "\1F4AC"; font-size: 0.95em; }

/* ----------------------------------------------------------------- header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--head-total);
  background: rgba(248, 241, 231, 0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--tuff-3);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled { background: rgba(248, 241, 231, 0.98); box-shadow: 0 8px 30px rgba(60, 38, 25, 0.12); }
.header-inner { display: flex; align-items: center; gap: 1.4rem; height: var(--header-h); }

.topbar {
  height: var(--topbar-h);
  background: linear-gradient(90deg, var(--basalt) 0%, var(--rose-deep) 48%, var(--basalt) 100%);
  display: flex; align-items: center;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-width: 0; }
.topbar-note {
  margin: 0; color: rgba(255, 253, 249, 0.9);
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lang-switch { display: flex; align-items: center; gap: 0.38rem; margin-left: auto; flex: none; }
.lang-btn {
  background: none; border: 0; padding: 3px; border-radius: 4px; cursor: pointer; line-height: 0;
  opacity: 0.7; transition: opacity 0.2s, transform 0.2s;
}
.lang-btn img {
  width: 26px; height: 17px; display: block; border-radius: 3px; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 253, 249, 0.4);
}
.lang-btn:hover { opacity: 1; transform: translateY(-1px); }
.lang-btn.active { opacity: 1; }
.lang-btn.active img { box-shadow: 0 0 0 2px var(--ember-light); }

.brand { display: flex; align-items: center; }
.brand-logo { height: 58px; width: auto; display: block; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--ink-soft); font-weight: 600; font-size: 0.94rem; position: relative; padding: 0.4rem 0; }
.site-nav a:hover, .site-nav a[aria-current] { color: var(--rose-deep); }
.site-nav a[aria-current]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  border-radius: 3px; background: linear-gradient(90deg, var(--ember), var(--rose));
}
.header-cta { padding: 0.66rem 1.3rem; font-size: 0.84rem; }
.header-tel { color: var(--ink); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 1100px) {
  .site-nav {
    position: fixed; inset: var(--head-total) 0 auto 0;
    background: var(--tuff);
    border-bottom: 1px solid var(--tuff-3);
    box-shadow: 0 22px 44px rgba(60, 38, 25, 0.2);
    padding: 1rem 1.4rem 2rem;
    transform: translateY(-140%);
    transition: transform 0.3s ease;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: 0.2rem; }
  .site-nav a { display: block; padding: 0.8rem 0; font-size: 1.05rem; border-bottom: 1px dashed var(--tuff-3); }
  .site-nav a[aria-current]::after { left: 0; right: auto; width: 34px; bottom: 4px; }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: grid; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
  .nav-toggle span { width: 24px; height: 2.4px; background: var(--rose-deep); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
}
@media (max-width: 560px) {
  :root { --topbar-h: 30px; --header-h: 68px; }
  .header-cta, .header-tel { display: none; }
  .brand-logo { height: 44px; }
  .nav-toggle { margin-left: auto; }
  .topbar-note { display: none; }
  .lang-switch { margin-inline: auto 0; gap: 0.28rem; }
  .lang-btn img { width: 23px; height: 15px; }
}

/* ------------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: min(93vh, 900px);
  display: grid; align-items: end;
  color: var(--white);
  isolation: isolate; overflow: hidden;
  padding: calc(var(--head-total) + 4rem) 0 6rem;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 118%; object-fit: cover; object-position: center 55%;
  position: relative; top: -9%;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(80% 55% at 20% 105%, rgba(155, 69, 41, 0.5), transparent 62%),
    linear-gradient(180deg, rgba(36, 29, 26, 0.62) 0%, rgba(36, 29, 26, 0.2) 38%, rgba(36, 29, 26, 0.9) 100%);
}
.hero-content { max-width: 900px; position: relative; z-index: 1; }
.hero h1 { color: var(--white); text-wrap: balance; text-shadow: 0 4px 26px rgba(30, 20, 14, 0.55); margin-bottom: 0.36em; }
.hero h1 em { font-style: italic; color: var(--ember-light); }
.hero .lede { font-size: var(--step-1); line-height: 1.55; color: rgba(255, 253, 249, 0.95); max-width: 56ch; }
.hero .kicker { color: var(--ember-light); }
.hero .kicker::before { background: var(--ember-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem;
  margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 253, 249, 0.28);
}
.hero-meta div strong { display: block; font-family: var(--font-display); font-size: var(--step-2); color: var(--ember-light); line-height: 1.1; }
.hero-meta div span { font-size: var(--step--1); color: rgba(255, 253, 249, 0.78); text-transform: uppercase; letter-spacing: 0.12em; }
.hero-page { min-height: min(62vh, 580px); padding-bottom: 4.5rem; }

/* balloons drifting across the hero */
.band-balloons {
  position: absolute; inset: auto 0 auto 0; top: 12%; z-index: -1;
  width: 100%; height: 42%;
  color: rgba(255, 253, 249, 0.55);
  pointer-events: none;
}
.hero .band-balloons { animation: drift 42s linear infinite alternate; }
@keyframes drift { from { transform: translateX(-2.5%); } to { transform: translateX(2.5%); } }

/* --------------------------------------------------------------- sections */
.section { padding: clamp(3.8rem, 7.5vw, 6.6rem) 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--tuff-2), var(--tuff)); }
.section-dark {
  background:
    radial-gradient(760px 420px at 82% 6%, rgba(198, 94, 51, 0.14), transparent 60%),
    linear-gradient(168deg, var(--basalt) 0%, var(--basalt-2) 58%, #1c1613 100%);
  color: var(--cream-dim);
  position: relative;
  padding-bottom: clamp(6rem, 10vw, 9rem);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark a:not(.btn) { color: var(--ember-light); }
.section-dark .kicker { color: var(--ember-light); }
.section-dark .kicker::before { background: var(--ember-light); }
/* the fairy-chimney valley closes every dark band */
.band-skyline {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: clamp(72px, 9vw, 128px);
  color: rgba(246, 196, 119, 0.4);
  pointer-events: none;
}
.section-sky {
  background: linear-gradient(178deg, #eaf1f4 0%, var(--tuff) 100%);
  border-top: 1px solid var(--tuff-3);
  border-bottom: 1px solid var(--tuff-3);
}
.band-valley { display: block; width: 100%; height: clamp(40px, 5vw, 70px); color: var(--tuff-2); }
.band-valley.flip { transform: scaleY(-1); }

.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.95rem;
}
.kicker::before { content: ""; width: 26px; height: 2.5px; border-radius: 3px; background: var(--rose); }

.section-head { max-width: 800px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head p { color: var(--muted); font-size: var(--step-1); line-height: 1.6; }
.section-dark .section-head p { color: var(--cream-dim); }

/* ------------------------------------------------------------------ cards */
.card-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--tuff-3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(60, 38, 25, 0.08);
  display: flex; flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(22, 96, 124, 0.45); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; margin: 8px 8px 0; border-radius: var(--arch); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-tag {
  /* bottom corner: the arch radius only curves the TOP of card images, so a
     tag placed low is never clipped by the rounded shape */
  position: absolute; bottom: 12px; left: 12px; z-index: 1;
  background: rgba(36, 29, 26, 0.86); color: var(--ember-light);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.36rem 0.8rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.card-body { padding: 1.3rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card-body h3 { font-size: 1.2rem; margin: 0; }
.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--rose-deep); }
.card-body p { color: var(--muted); font-size: 0.95rem; margin: 0; flex: 1; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  margin-top: 0.9rem; border-top: 1px dashed var(--tuff-3); padding-top: 0.85rem;
}
.card-foot .meta { font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.85rem; flex-wrap: wrap; }
.card-price { color: var(--rose-deep); font-weight: 700; }
.card-link { font-weight: 800; font-size: 0.82rem; letter-spacing: 0.03em; white-space: nowrap; color: var(--rose-deep); }
.card-link::after { content: " \2192"; transition: margin 0.2s; }
.card-link:hover::after { margin-left: 5px; }
.card-motif {
  position: absolute; right: 10px; bottom: 10px; z-index: 1;
  color: var(--rose); opacity: 0.16; pointer-events: none;
}

/* --------------------------------------------------------- split features */
.split { display: grid; gap: clamp(2rem, 5vw, 4.2rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.02fr 1fr; }
  .split.reverse > .split-media { order: 2; }
}
.split-media {
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4 / 3.2;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: ""; position: absolute; inset: 9px;
  border: 1.5px solid rgba(255, 253, 249, 0.45);
  border-radius: var(--arch);
  pointer-events: none;
}

.check-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: 0.7rem; }
.check-list li { padding-left: 2rem; position: relative; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 1.15rem; height: 1.15rem;
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  background: linear-gradient(150deg, var(--ember-light), var(--rose));
  box-shadow: 0 2px 5px rgba(22, 96, 124, 0.3);
}
.section-dark .check-list li::before { background: linear-gradient(150deg, var(--ember-light), var(--ember-deep)); }

.stats { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); text-align: center; }
.stats strong { display: block; font-family: var(--font-display); font-size: var(--step-4); color: var(--rose); line-height: 1; }
.stats span { font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------------------------------ quotes / features */
.quote-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote {
  background: var(--white);
  border: 1px solid var(--tuff-3);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  box-shadow: 0 6px 20px rgba(60, 38, 25, 0.07);
  display: flex; flex-direction: column; gap: 0.9rem;
  position: relative; overflow: hidden;
}
.quote .q-icon { color: var(--rose); opacity: 0.9; }
.quote h3 { font-size: 1.18rem; margin: 0; }
.quote p, .quote blockquote { margin: 0; color: var(--muted); font-size: 0.98rem; flex: 1; }
.quote cite { font-style: normal; font-weight: 700; color: var(--ink); font-size: 0.94rem; }
.quote cite span { display: block; font-weight: 400; color: var(--muted); font-size: 0.85rem; }
.section-dark .quote {
  background: rgba(255, 253, 249, 0.05);
  border-color: var(--basalt-line);
  color: var(--cream-dim);
}
.section-dark .quote p, .section-dark .quote blockquote { color: var(--cream-dim); }
.section-dark .quote .q-icon { color: var(--ember-light); }

/* ------------------------------------------------------------------ prose */
.prose { max-width: 750px; position: relative; }
.prose h2 { font-size: var(--step-3); margin-top: 1.9em; }
.prose h2::after {
  content: ""; display: block; width: 62px; height: 3px; margin-top: 0.45rem;
  border-radius: 3px; background: linear-gradient(90deg, var(--ember), var(--rose));
}
.prose h3 { font-size: var(--step-2); margin-top: 1.5em; }
.prose p, .prose li { font-size: var(--step-0); color: var(--ink-soft); }
.prose .lead { font-size: var(--step-1); line-height: 1.62; color: var(--ink); }
.prose > .lead:first-child::first-letter {
  font-family: var(--font-display); font-weight: 700;
  font-size: 3.2em; line-height: 0.8;
  float: left; padding: 0.08em 0.12em 0 0;
  color: var(--rose);
}
.prose figure { margin: 2.2rem 0; }
.prose figure img { border-radius: var(--radius); width: 100%; box-shadow: 0 10px 30px rgba(60, 38, 25, 0.14); }
.prose figcaption { font-size: 0.88rem; color: var(--muted); margin-top: 0.65rem; text-align: center; font-style: italic; }
.prose blockquote {
  margin: 2rem 0; padding: 1.1rem 1.6rem;
  border-left: 4px solid var(--ember);
  background: var(--rose-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.06rem;
}
.prose > ul, .prose > ol { padding-left: 1.3rem; }

.article-layout { display: grid; gap: clamp(2.4rem, 5vw, 4.6rem); grid-template-columns: 1fr; }
@media (min-width: 1000px) { .article-layout { grid-template-columns: minmax(0, 1fr) 330px; } }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; align-self: start; position: sticky; top: calc(var(--head-total) + 22px); }
.side-card {
  background: var(--white);
  border: 1px solid var(--tuff-3);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: 0 6px 20px rgba(60, 38, 25, 0.08);
  position: relative; overflow: hidden;
}
.side-card h3 { font-size: 1.14rem; margin-bottom: 0.75rem; }
.side-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.side-card li a { color: var(--ink-soft); font-weight: 600; font-size: 0.96rem; }
.side-card li a:hover { color: var(--rose-deep); }
.side-card.dark {
  background: linear-gradient(170deg, var(--basalt), var(--basalt-2));
  color: var(--cream-dim); border-color: var(--basalt-line);
}
.side-card.dark h3 { color: var(--ember-light); }
.side-card.dark li a { color: rgba(255, 253, 249, 0.86) !important; }
.side-card.dark li a:hover { color: var(--ember-light) !important; }
.fact-list { display: grid; gap: 0.6rem; margin: 0; }
.fact-list div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--tuff-3); padding-bottom: 0.5rem; }
.side-card.dark .fact-list div { border-color: var(--basalt-line); }
.fact-list dt { color: inherit; opacity: 0.7; font-size: 0.88rem; }
.fact-list dd { margin: 0; font-weight: 700; font-size: 0.91rem; text-align: right; }

.breadcrumbs { font-size: 0.87rem; color: rgba(255, 253, 249, 0.8); margin-bottom: 0.9rem; }
.breadcrumbs a { color: rgba(255, 253, 249, 0.92); }
.breadcrumbs a:hover { color: var(--ember-light); }
.breadcrumbs span[aria-current] { color: var(--ember-light); }

/* --------------------------------------------------------------- timeline */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; counter-reset: stop; }
.timeline li { position: relative; padding: 0 0 2rem 3.6rem; counter-increment: stop; }
.timeline li::before {
  content: counter(stop);
  position: absolute; left: 0; top: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50% 50% 44% 44% / 62% 62% 38% 38%;
  background: linear-gradient(150deg, var(--ember-light), var(--ember-deep));
  color: #34200a; font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  display: grid; place-items: center;
  box-shadow: 0 5px 14px rgba(198, 94, 51, 0.35);
}
.timeline li:not(:last-child)::after {
  content: ""; position: absolute; left: 1.22rem; top: 2.85rem; bottom: 0.4rem;
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, rgba(198, 94, 51, 0.6), rgba(198, 94, 51, 0.05));
}
.timeline h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.timeline p { margin: 0; font-size: 0.97rem; }

/* ------------------------------------------------------- include /exclude */
.inc-exc { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.inc-exc .panel {
  background: var(--white); border: 1px solid var(--tuff-3);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: 0 6px 20px rgba(60, 38, 25, 0.07);
  position: relative; overflow: hidden;
}
.inc-exc h3 { font-size: 1.2rem; }
.x-list { list-style: none; padding: 0; margin: 0.8rem 0 0; display: grid; gap: 0.6rem; }
.x-list li { padding-left: 1.85rem; position: relative; color: var(--muted); font-size: 0.96rem; }
.x-list li::before {
  content: "\00d7"; position: absolute; left: 0; top: 0;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  border: 1.5px solid var(--tuff-3); color: var(--muted);
  display: grid; place-items: center; font-weight: 700; font-size: 0.82rem;
}
.x-list.yes li { color: var(--ink-soft); }
.x-list.yes li::before {
  content: "\2713"; border-color: transparent; color: #fff; font-size: 0.72rem;
  background: linear-gradient(150deg, var(--vine), #4f6132);
}

/* -------------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 0.85rem; max-width: 840px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--tuff-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq details[open] { border-color: var(--rose); box-shadow: 0 8px 24px rgba(22, 96, 124, 0.14); }
.faq summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.01rem;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--rose); transition: transform 0.25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.15rem; margin: 0; color: var(--muted); }
.section-dark .faq details { background: rgba(255, 253, 249, 0.05); border-color: var(--basalt-line); }
.section-dark .faq summary { color: var(--white); }
.section-dark .faq details p { color: var(--cream-dim); }

/* ---------------------------------------------------------------- gallery */
.masonry { columns: 3 290px; column-gap: 1.1rem; }
.masonry a {
  display: block; margin-bottom: 1.1rem; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: 0 6px 18px rgba(60, 38, 25, 0.1);
  transition: box-shadow 0.25s, transform 0.25s;
}
.masonry a:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.masonry img { width: 100%; transition: transform 0.5s ease; }
.masonry a:hover img { transform: scale(1.04); }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(24, 18, 15, 0.95); display: none; place-items: center; padding: 2rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: var(--radius-sm); }
.lightbox figcaption { color: rgba(255, 253, 249, 0.9); text-align: center; margin-top: 1rem; font-style: italic; }
.lightbox .close { position: absolute; top: 1.1rem; right: 1.5rem; background: none; border: 0; color: var(--ember-light); font-size: 2.2rem; cursor: pointer; }

/* --------------------------------------------------------------- CTA band */
.cta-band {
  position: relative; isolation: isolate; color: var(--white); text-align: center;
  padding: clamp(4.2rem, 8.5vw, 7rem) 0; overflow: hidden;
}
.cta-band .hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cta-band .hero-bg img { width: 100%; height: 122%; object-fit: cover; position: relative; top: -11%; }
.cta-band .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36, 29, 26, 0.88), rgba(155, 69, 41, 0.72) 55%, rgba(36, 29, 26, 0.9));
}
.cta-band h2 { color: var(--white); max-width: 24ch; margin-inline: auto; }
.cta-band p { color: rgba(255, 253, 249, 0.92); max-width: 56ch; margin: 0 auto 1.6rem; font-size: var(--step-1); }
.cta-band .doodle-row { color: var(--ember-light); opacity: 0.55; }

/* ------------------------------------------------------------------ forms */
.form-shell {
  background: var(--white);
  border: 1px solid var(--tuff-3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.9rem);
  max-width: 880px; width: 100%;
  position: relative; overflow: hidden;
}
.form-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.field { display: grid; gap: 0.36rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: 0.78rem 1rem;
  border: 1.6px solid var(--tuff-3); border-radius: var(--radius-sm);
  background: var(--tuff);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-soft);
}
.field .hint { font-size: 0.82rem; color: var(--muted); }
.field.error input, .field.error select, .field.error textarea { border-color: #b03535; }
.field .err-msg { color: #b03535; font-size: 0.82rem; display: none; }
.field.error .err-msg { display: block; }
.error-slot .err-msg { display: none; }
.error-slot.error .err-msg { display: block; }

.steps-nav { display: flex; margin: 0 0 2rem; padding: 0; counter-reset: step; }
.steps-nav li {
  list-style: none; flex: 1; text-align: center; position: relative;
  counter-increment: step; font-size: 0.83rem; font-weight: 700; color: var(--muted);
  padding-top: 2.9rem;
}
.steps-nav li::before {
  content: counter(step);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2.3rem; height: 2.3rem;
  border-radius: 50% 50% 44% 44% / 62% 62% 38% 38%;
  background: var(--tuff); color: var(--muted);
  border: 1.6px solid var(--tuff-3);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  transition: all 0.25s;
}
.steps-nav li:not(:first-child)::after {
  content: ""; position: absolute; top: 1.15rem; right: 50%; width: 100%; height: 2px;
  background: var(--tuff-3); z-index: -1; transform: translateX(-1.15rem);
}
.steps-nav li.active { color: var(--ink); }
.steps-nav li.active::before {
  background: linear-gradient(150deg, var(--ember-light), var(--ember-deep));
  color: #34200a; border-color: transparent;
  box-shadow: 0 6px 16px rgba(198, 94, 51, 0.4);
}
.steps-nav li.done::before { background: var(--vine); color: #fff; border-color: transparent; content: "\2713"; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp 0.35s ease; }
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; }
.tour-choice { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.tour-choice label {
  border: 1.6px solid var(--tuff-3); border-radius: var(--radius-sm);
  background: var(--tuff);
  padding: 0.95rem 1.05rem; cursor: pointer; font-weight: 600; font-size: 0.94rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.tour-choice input { accent-color: var(--rose); margin-top: 0.25rem; }
.tour-choice label:has(input:checked) { border-color: var(--rose); background: #fdf3ec; box-shadow: 0 0 0 1px var(--rose); }
.summary-box { background: var(--tuff); border: 1.6px solid var(--ember); border-radius: var(--radius-sm); padding: 1.25rem 1.4rem; margin-top: 1rem; }
.summary-box dl { display: grid; gap: 0.45rem; margin: 0; }
.summary-box div { display: flex; justify-content: space-between; gap: 1rem; }
.summary-box dt { color: var(--muted); font-size: 0.89rem; }
.summary-box dd { margin: 0; font-weight: 700; font-size: 0.91rem; }
.form-success { text-align: center; padding: 3rem 1rem; display: none; }
.form-success.show { display: block; animation: fadeUp 0.4s ease; }
.form-success .big { font-size: 3rem; }

/* ---------------------------------------------------------- did you know? */
.dyk {
  position: relative;
  max-width: 840px; margin: 2.6rem auto;
  padding: 1.9rem 2rem 1.7rem 5.6rem;
  background: linear-gradient(150deg, #fff8ee, var(--white));
  border: 1.5px solid rgba(198, 94, 51, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(60, 38, 25, 0.1);
}
.dyk p { margin: 0; font-size: 1.02rem; line-height: 1.62; color: var(--ink-soft); }
.dyk-badge {
  position: absolute; top: -13px; left: 22px;
  background: linear-gradient(90deg, var(--rose-deep), var(--rose));
  color: #fff; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.38rem 1rem; border-radius: 999px;
}
.dyk-icon { position: absolute; left: 1.5rem; top: 50%; transform: translateY(-50%); color: var(--rose); }
.section-dark .dyk {
  background: rgba(255, 253, 249, 0.05); border-color: var(--basalt-line);
}
.section-dark .dyk p { color: var(--cream-dim); }
@media (max-width: 560px) {
  .dyk { padding: 2.2rem 1.3rem 1.5rem; }
  .dyk-icon { display: none; }
}

/* ---------------------------------------------------------------- sources */
.sources {
  margin-top: 2.5rem; padding: 1.4rem 1.7rem;
  background: var(--white); border: 1px solid var(--tuff-3);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.sources h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.sources ul { margin: 0; padding-left: 1.15rem; display: grid; gap: 0.45rem; }
.sources li { font-size: 0.95rem; }
.sources a { font-weight: 700; }
.sources span { color: var(--muted); }

/* ------------------------------------------------------------------- misc */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1rem 0; }
.pill { background: var(--white); border: 1px solid var(--tuff-3); padding: 0.4rem 0.95rem; border-radius: 999px; font-size: 0.87rem; font-weight: 600; color: var(--ink-soft); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--tuff-3); box-shadow: 0 6px 20px rgba(60, 38, 25, 0.07); }
table.data { width: 100%; border-collapse: collapse; background: var(--white); min-width: 520px; }
table.data th { background: var(--basalt); color: var(--ember-light); text-align: left; padding: 0.9rem 1.15rem; font-size: 0.86rem; letter-spacing: 0.05em; }
table.data td { padding: 0.85rem 1.15rem; border-bottom: 1px solid var(--tuff-3); font-size: 0.95rem; color: var(--ink-soft); }
table.data tr:last-child td { border-bottom: 0; }
.trust-strip {
  list-style: none; margin: 0; padding: 1rem 1.2rem;
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; justify-content: center;
  background: var(--white); border: 1px solid var(--tuff-3); border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(60, 38, 25, 0.07);
}
.trust-strip li { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.94rem; color: var(--ink-soft); }
.trust-strip svg { color: var(--rose); flex: none; }
.tour-price { font-family: var(--font-display); font-size: var(--step-3); color: var(--ember-light); line-height: 1; margin: 0 0 0.55rem; }
.tour-price span { font-size: var(--step-0); font-family: var(--font-body); color: var(--cream-dim); font-weight: 600; margin-right: 0.3rem; }
.tour-price small { display: block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--cream-dim); margin-top: 0.3rem; }
.tour-price-quote { font-size: var(--step-2); }
.next-steps { margin-top: 2rem; }
.next-steps h3 { font-size: 1.18rem; margin-bottom: 0.7rem; }
.next-steps ol { margin: 0; padding-left: 1.2rem; display: grid; gap: 0.45rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- doodles! */
.doodle-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  margin: clamp(2rem, 4vw, 3.2rem) auto 0;
  color: var(--rose);
  opacity: 0.62;
}
.doodle-row .dd { display: block; line-height: 0; }
.doodle-row .dd-0 { transform: rotate(-6deg); }
.doodle-row .dd-1 { transform: translateY(-5px) rotate(3deg); }
.doodle-row .dd-2 { transform: rotate(7deg); }
.section-dark .doodle-row { color: var(--ember-light); opacity: 0.5; }
.doodle-inline { display: inline-block; vertical-align: middle; color: var(--rose); }

/* kilim border framing the reading column */
.prose::before, .prose::after {
  content: ""; display: block; height: 14px;
  background-image: var(--kilim); background-repeat: repeat-x;
  opacity: 0.65;
}
.prose::before { margin-bottom: 2rem; }
.prose::after { margin-top: 2.6rem; }

/* ----------------------------------------------------------------- footer */
.site-footer {
  background: linear-gradient(180deg, var(--basalt) 0%, #191310 100%);
  color: var(--cream-dim);
  padding: clamp(4.5rem, 7vw, 6rem) 0 1.4rem;
  position: relative;
}
.site-footer > .band-skyline { top: -1px; bottom: auto; transform: scaleY(-1); }
.footer-grid {
  display: grid; gap: 2.4rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding: 1.4rem 0 2.4rem; border-bottom: 1px solid var(--basalt-line);
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 0.55rem; }
.footer-brand em { font-style: italic; color: var(--ember-light); }
.footer-col h3 { color: var(--ember-light); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.9rem; font-family: var(--font-body); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: rgba(255, 253, 249, 0.72); font-size: 0.94rem; }
.footer-col a:hover { color: var(--ember-light); }
.footer-contact a { color: var(--ember-light); }
/* the 141 Journeys family band */
.family-band {
  padding: 1.6rem 0 1.5rem;
  border-bottom: 1px solid var(--basalt-line);
  text-align: center;
}
.family-note {
  margin: 0 auto 0.85rem; max-width: 70ch;
  font-size: 0.92rem; line-height: 1.65;
  color: rgba(255, 253, 249, 0.72);
}
.family-note a { color: var(--ember-light); }
.family-note a:hover { text-decoration: underline; }
.family-badge {
  display: inline-block; margin-right: 0.6rem; padding: 0.22rem 0.8rem;
  border: 1px solid rgba(246, 196, 119, 0.45); border-radius: 999px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ember-light);
  vertical-align: 0.1em; white-space: nowrap;
}
.family-links {
  margin: 0; display: flex; flex-wrap: wrap; justify-content: center;
  column-gap: 0.65rem; row-gap: 0.35rem;
  font-size: 0.85rem;
}
.family-links a { color: rgba(255, 253, 249, 0.62); }
.family-links a:hover { color: var(--ember-light); }
.family-dot { color: rgba(246, 196, 119, 0.45); }
.family-here { color: var(--ember-light); font-weight: 700; }
.family-here::after { content: " \2726"; font-size: 0.7em; vertical-align: 0.2em; }

.footer-legal {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  padding: 1.5rem 0; border-bottom: 1px solid var(--basalt-line); font-size: 0.9rem;
}
.footer-legal p { margin: 0.18rem 0; }
.footer-legal strong { color: var(--white); }
.footer-logo { background: rgba(255, 253, 249, 0.06); border: 1px solid var(--basalt-line); border-radius: var(--radius-sm); padding: 0.65rem 0.95rem; flex: none; }
.footer-logo img { height: 46px; width: auto; }
.tursab-badge { color: var(--ember-light); }
.tursab-badge a { color: var(--ember-light); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.3rem; font-size: 0.87rem; flex-wrap: wrap; }
.to-top { color: rgba(255, 253, 249, 0.72); }

/* ---------------------------------------------- Google translate: hide UI */
.gt-hidden { position: absolute; left: -9999px; top: -9999px; width: 0; height: 0; overflow: hidden; }
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate,
body > iframe.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
#goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip, .goog-te-spinner-pos { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ---------------------------------------------------------- accessibility */
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 300;
  background: var(--rose); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 700; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #fff; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--ember); outline-offset: 2px; border-radius: 4px;
}

/* ----------------------------------------------------- mobile action bar */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(36, 29, 26, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--basalt-line);
  }
  .mbar-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    padding: 0.82rem 0.5rem; border-radius: 999px;
    font-weight: 800; font-size: 0.84rem;
  }
  .mbar-book { background: linear-gradient(150deg, var(--ember-light), var(--ember-deep)); color: #34200a; }
  .mbar-wa { background: #25d366; color: #06240f; }
  .mbar-mail { background: rgba(255, 253, 249, 0.12); color: var(--ember-light); box-shadow: inset 0 0 0 1.4px var(--basalt-line); }
  .site-footer { padding-bottom: 5.8rem; }
  .masonry { columns: 1; }
}

/* ---------------------------------------------------------- cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 130;
  max-width: 278px;
  background: rgba(36, 29, 26, 0.98); color: var(--cream-dim);
  border: 1px solid var(--basalt-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift); padding: 0.85rem 0.95rem;
}
.cookie-banner p { margin: 0 0 0.55rem; font-size: 0.76rem; line-height: 1.45; }
.cookie-banner a { color: var(--ember-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.4rem; }
.cookie-actions .btn { padding: 0.4rem 0.7rem; font-size: 0.68rem; flex: 1; }
@media (max-width: 720px) { .cookie-banner { left: 0.6rem; bottom: 5rem; max-width: 250px; } }

/* -------------------------------------------------------------------- blog */
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem;
  margin-top: 1.3rem; padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 249, 0.28);
  font-size: 0.92rem; color: rgba(255, 253, 249, 0.85);
}
.post-meta .post-author { color: var(--ember-light); font-weight: 700; }
.post-meta .post-dot { color: var(--ember); opacity: 0.8; }
.prose .pullquote {
  margin: 2.3rem 0; padding: 0.2rem 0 0.2rem 1.5rem;
  border-left: 4px solid var(--rose); background: none;
  font-family: var(--font-display); font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem);
  line-height: 1.35; color: var(--rose-deep);
}
.prose .takeaway {
  margin: 2.1rem 0; padding: 1.4rem 1.6rem;
  background: linear-gradient(150deg, rgba(109, 128, 73, 0.16), rgba(109, 128, 73, 0.05));
  border: 1.5px solid rgba(109, 128, 73, 0.55); border-radius: var(--radius);
}
.prose .takeaway h3 { margin: 0 0 0.45rem; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: #4f6132; font-family: var(--font-body); }
.prose .takeaway p { margin: 0; color: var(--ink); font-size: 1.02rem; }

/* ----------------------------------------------------------------- motion */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img, .cta-band .hero-bg img { transform: none !important; height: 100%; top: 0; }
  * { animation: none !important; }
}

/* ------------------------------------------------------- contact form */
.contact-form { margin-top: 1.8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.form-wide { grid-column: 1 / -1; }
.form-field label {
  display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem;
  color: var(--ink-soft); letter-spacing: 0.01em;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--tuff-3); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-soft);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { color: var(--muted); font-size: 0.9rem; margin: 1.1rem 0 1.2rem; }
.form-status { margin-top: 0.9rem; font-size: 0.95rem; min-height: 1.4em; }
.form-status.is-ok { color: var(--rose); }
.form-status.is-err { color: var(--ember-deep); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- tour photo strip */
.photo-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.photo-strip-item { margin: 0; }
.photo-strip-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--arch);
  box-shadow: var(--shadow);
}
.photo-strip-item figcaption {
  font-size: 0.86rem; color: var(--muted); margin-top: 0.6rem; text-align: center;
}

/* ------------------------------------------------------- cruise-lines banner */
.wide-banner { margin: 0 auto; max-width: 900px; }
.wide-banner img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--tuff-3);
  box-shadow: var(--shadow);
  background: #fff;
}
.banner-note {
  text-align: center; color: var(--muted); font-size: 0.8rem;
  max-width: 720px; margin: 1rem auto 0;
}
.side-banner { text-align: center; }
.side-banner img {
  width: 150px; margin: 0 auto; border-radius: var(--radius-sm);
  border: 1px solid var(--tuff-3); background: #fff;
}
.side-banner figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; }

/* guarantee line under the cruise-lines banner */
.banner-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  text-align: center; font-weight: 700; color: var(--rose);
  font-size: 1.05rem; max-width: 760px; margin: 1.3rem auto 0.4rem;
}
.banner-guarantee svg { flex-shrink: 0; color: var(--ember); }

/* ------------------------------------------- 141 Journeys network footer */
.footer-network {
  border-top: 1px solid var(--basalt-line);
  padding-top: 2.2rem; margin-top: 2.4rem;
}
.network-lede {
  color: var(--cream-dim); font-size: 0.95rem; line-height: 1.75;
  max-width: 860px; margin: 0 0 1.6rem;
}
.network-lede a { color: var(--ember-light); }
.network-sites {
  list-style: none; margin: 0 0 1rem; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
}
.network-sites a {
  display: block; padding: 0.85rem 1.1rem;
  background: rgba(255, 254, 251, 0.05);
  border: 1px solid var(--basalt-line); border-radius: var(--radius-sm);
  color: var(--white); font-weight: 600; font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s;
}
.network-sites a:hover { background: rgba(255, 254, 251, 0.1); border-color: var(--ember-light); color: #fff; }
.network-sites a span {
  display: block; font-weight: 400; font-size: 0.78rem;
  color: var(--cream-dim); margin-top: 0.15rem;
}

/* current-site card in the network footer */
.network-sites .network-here a {
  border-color: var(--ember-light);
  background: rgba(238, 182, 143, 0.1);
}
.network-sites .network-here em {
  font-style: normal; font-size: 0.72rem; font-weight: 700;
  color: var(--ember-light); letter-spacing: 0.06em; text-transform: uppercase;
  margin-left: 0.3rem;
}
