/* ==========================================================================
   MACEDONIAN EARTH — petrosvasileiadis.gr
   Production design system for the four language editions (el / en / bg / ru).

   One stylesheet, no build step, no external assets, no web fonts.

   Light "excavated north" palette for the standard pages; a dark
   champagne-gold "noir" treatment for the premium tier, enabled by adding
   class="theme-noir" to <body> (VIP, helicopter, boat) or class="noirband"
   to a single <section> on an otherwise light page.

   CONTENTS
     1  Tokens (light) and dark theme override
     2  Reset & base
     3  Typographic scale
     4  Layout primitives
     5  Vergina Sun motif
     6  Buttons & links
     7  Topbar, masthead, nav, language switcher, contact bar
     8  Hero & page head
     9  Figure plates (photographs & CSS/SVG placeholders)
    10  Editorial body: prose, credentials, pull quote
    11  Services strata
    12  Steps
    13  Trust badges & rating
    14  Testimonials
    15  CTA bands
    16  Forms & channels
    17  Tours page: map, destinations
    18  Premium (noir) components
    19  Footer
    20  Utilities & print
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* Brand constants — identical in both themes */
  --clay:         #a4462a;
  --clay-deep:    #7d3320;
  --olive:        #5c6437;
  --olive-deep:   #3f4626;
  --bronze:       #a5813c;
  --gold:         #c2a052;
  --gold-leaf:    #d7b25c;
  --gold-pale:    #e8d49a;
  --champagne:    #ece0c4;
  --limestone:    #d8cab1;
  --onyx-deep:    #030405;
  --charcoal:     #0e1013;

  /* Themed tokens — light values */
  --surface:       #f6f1e7;
  --surface-2:     #efe7d8;
  --surface-3:     #e6dbc7;
  --surface-glass: rgba(246, 241, 231, .94);
  --text:          #241f19;
  --text-2:        #3d352c;
  --text-soft:     #6a5f52;
  --text-faint:    #91856f;
  --accent:        #a4462a;
  --accent-deep:   #7d3320;
  --accent-on:     #fdf8ef;
  --metal:         #a5813c;
  --metal-lit:     #7d3320;
  --line:          rgba(36, 31, 25, .16);
  --line-strong:   rgba(36, 31, 25, .34);
  --rule:          1px solid rgba(36, 31, 25, .16);
  --rule-strong:   1px solid rgba(36, 31, 25, .34);
  --body-wash:
    radial-gradient(58rem 34rem at 88% -8%,  rgba(203, 178, 92, .20), transparent 70%),
    radial-gradient(46rem 30rem at -8% 22%,  rgba(92, 100, 55, .14),  transparent 72%),
    radial-gradient(40rem 26rem at 60% 118%, rgba(164, 70, 42, .10),  transparent 70%);

  /* Bars that are dark in both themes */
  --bar-bg:   #241f19;
  --bar-text: rgba(230, 219, 199, .88);
  --dock-bg:  #3f4626;

  /* Type */
  --display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --ui: 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, sans-serif;

  /* Measure & rhythm */
  --gutter: 1.5rem;
  --max: 78rem;
  --shadow-lift: 0 1px 2px rgba(36, 31, 25, .05),
                 0 12px 28px -18px rgba(36, 31, 25, .45);
}

/* Dark premium tier — a whole page (body) or a single band (section) */
body.theme-noir,
.noirband {
  --surface:       #07080a;
  --surface-2:     #0e1013;
  --surface-3:     #14171b;
  --surface-glass: rgba(7, 8, 10, .92);
  --text:          #f4f1ea;
  --text-2:        #ddd8cd;
  --text-soft:     #a5a49f;
  --text-faint:    #7f7e78;
  --accent:        #d7b25c;
  --accent-deep:   #c2a052;
  --accent-on:     #07080a;
  --metal:         #c2a052;
  --metal-lit:     #dcbc6b;
  --line:          rgba(244, 241, 234, .10);
  --line-strong:   rgba(244, 241, 234, .20);
  --rule:          1px solid rgba(244, 241, 234, .10);
  --rule-strong:   1px solid rgba(244, 241, 234, .20);
  --body-wash:
    radial-gradient(56rem 34rem at 84% -6%, rgba(184, 145, 47, .16), transparent 68%),
    radial-gradient(44rem 30rem at -6% 26%, rgba(143, 179, 196, .07), transparent 72%);
  --bar-bg:   #030405;
  --bar-text: rgba(236, 224, 196, .82);
  --dock-bg:  #0e1013;
  --shadow-lift: 0 1px 2px rgba(0, 0, 0, .5), 0 18px 40px -22px rgba(0, 0, 0, .9);
}

/* ---------- 2. Reset & base ---------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background-color: var(--surface);
  background-image: var(--body-wash);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: block; }

a { color: var(--accent-deep); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }

:focus-visible {
  outline: 2px solid var(--metal-lit);
  outline-offset: 3px;
  border-radius: 2px;
}
body.theme-noir :focus-visible { outline-color: var(--gold-leaf); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--bar-bg);
  color: #f6f1e7;
  padding: .75rem 1.25rem;
  font-family: var(--ui);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: .5rem; top: .5rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ---------- 3. Typographic scale ----------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.014em;
  margin: 0 0 .5em;
  color: var(--text);
  overflow-wrap: break-word;
}

.display-xl { font-size: clamp(2.4rem, 6.4vw, 4.8rem); line-height: 1.02; }
.display-l  { font-size: clamp(1.95rem, 4.6vw, 3.3rem); }
.display-m  { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
.display-s  { font-size: clamp(1.24rem, 2.1vw, 1.6rem); line-height: 1.2; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
  line-height: 1.62;
  color: var(--text-2);
}

.eyebrow {
  display: block;
  font-family: var(--ui);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--metal-lit);
  margin: 0 0 1.15rem;
}
.eyebrow--olive { color: var(--olive); }
body.theme-noir .eyebrow--olive { color: var(--metal-lit); }
.eyebrow--pale { color: var(--gold-pale); }

.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.eyebrow-rule .eyebrow { margin: 0; }
.eyebrow-rule::after {
  content: "";
  flex: 1 0 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(165, 129, 60, .55), rgba(165, 129, 60, 0));
}

.meta {
  font-family: var(--ui);
  font-size: .82rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.dropcap::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 3.9em;
  line-height: .82;
  padding: .06em .11em 0 0;
  margin-top: .04em;
  color: var(--accent);
}

/* ---------- 4. Layout primitives ----------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 48rem; }

.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.75rem); }
.section--alt { background: var(--surface-2); }

/* Archaeological strata: a hairline band of sediment between sections. */
.strata {
  height: 10px;
  border: 0;
  margin: 0;
  background:
    linear-gradient(180deg,
      rgba(164, 70, 42, .55)  0 2px,
      rgba(165, 129, 60, .45) 2px 4px,
      rgba(92, 100, 55, .34)  4px 5px,
      rgba(36, 31, 25, .10)   5px 6px,
      transparent             6px);
}
body.theme-noir .strata {
  background:
    linear-gradient(180deg,
      rgba(194, 160, 82, .55)  0 2px,
      rgba(236, 224, 196, .22) 2px 4px,
      rgba(143, 179, 196, .20) 4px 5px,
      transparent              5px);
}

/* Byzantine tessellation, drawn purely with gradients. */
.tessera {
  background-color: var(--surface-2);
  background-image:
    linear-gradient(45deg,  rgba(165,129,60,.22) 25%, transparent 25% 75%, rgba(165,129,60,.22) 75%),
    linear-gradient(45deg,  rgba(92,100,55,.16)  25%, transparent 25% 75%, rgba(92,100,55,.16)  75%),
    linear-gradient(135deg, rgba(164,70,42,.14)  25%, transparent 25% 75%, rgba(164,70,42,.14)  75%);
  background-size: 22px 22px, 22px 22px, 44px 44px;
  background-position: 0 0, 11px 11px, 0 0;
}
.tessera-strip { height: 14px; border-block: 1px solid var(--line); }

/* Asymmetric editorial split: a narrow rail and a wide field. */
.split {
  display: grid;
  gap: clamp(2rem, 4.5vw, 3.75rem);
}
@media (min-width: 62rem) {
  .split { grid-template-columns: 4fr 7fr; align-items: start; }
  .split--flip { grid-template-columns: 7fr 4fr; }
  .split--even { grid-template-columns: 1fr 1fr; }
  .split--offset > :last-child { padding-top: 3rem; }
  .rail-sticky { position: sticky; top: 7.5rem; }
}

.hairline-gold {
  height: 1px;
  border: 0;
  margin: 2rem 0;
  background: linear-gradient(90deg, rgba(215, 178, 92, .7), rgba(215, 178, 92, 0));
}

/* ---------- 5. Vergina Sun motif ----------------------------------------- */

.sunmark { color: var(--gold-leaf); flex: none; }

.sun-watermark {
  position: absolute;
  pointer-events: none;
  opacity: .1;
  color: var(--bronze);
  z-index: 0;
}
body.theme-noir .sun-watermark { color: var(--gold); opacity: .12; }

/* ---------- 6. Buttons & links ------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--ui);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: .95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease,
              border-color .2s ease, transform .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

.btn--primary {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--accent-on); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--text); color: var(--surface); border-color: var(--text); }

.btn--gold {
  background: transparent;
  color: var(--gold-pale);
  border-color: rgba(215, 178, 92, .62);
}
.btn--gold:hover { background: var(--gold-leaf); color: #241f19; border-color: var(--gold-leaf); }

.btn--sm { padding: .68rem 1.05rem; font-size: .68rem; }
.btn--block { width: 100%; }

/* Editorial text link with a sliding rule. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-deep);
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(164, 70, 42, .35);
  transition: border-color .2s ease, color .2s ease;
}
body.theme-noir .link-arrow,
.noirband .link-arrow { color: var(--metal-lit); border-bottom-color: rgba(194, 160, 82, .4); }
.link-arrow:hover { border-color: var(--accent); color: var(--accent); }
.link-arrow span[aria-hidden] { transition: transform .2s ease; }
.link-arrow:hover span[aria-hidden] { transform: translateX(3px); }

/* ---------- 7. Topbar, masthead, nav, contact bar ------------------------ */

.topbar {
  background: var(--bar-bg);
  color: var(--bar-text);
  font-family: var(--ui);
  font-size: .74rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .4rem 1.25rem;
  padding-block: .5rem;
}
.topbar__note {
  display: flex;
  align-items: center;
  gap: .6rem;
  letter-spacing: .06em;
  margin: 0;
}
.quicklinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem 1.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.quicklinks a {
  color: var(--bar-text);
  text-decoration: none;
  letter-spacing: .08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.quicklinks a:hover { color: var(--gold-leaf); border-color: var(--gold-leaf); }

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface-glass);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: var(--rule);
}
.masthead__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: .8rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--text);
  flex: none;
}
.wordmark__sun { flex: none; color: var(--metal); }
.wordmark__text { display: block; line-height: 1.05; }
.wordmark__name { display: block; font-family: var(--display); font-size: 1.1rem; }
.wordmark__role {
  display: block;
  font-family: var(--ui);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: .3rem;
}

.nav { order: 3; }
.nav__list {
  display: flex;
  align-items: center;
  /* Wrapping keeps longer Greek / Bulgarian / Russian labels from overflowing. */
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(.7rem, 1.4vw, 1.4rem);
  row-gap: .1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  display: inline-block;
  font-family: var(--ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  padding-block: .35rem;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav__list a:hover { color: var(--accent); }
.nav__list a[aria-current="page"] { color: var(--text); border-color: var(--accent); }

.lang {
  display: flex;
  align-items: center;
  gap: .1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1px;
  padding: .18rem;
  background: rgba(255, 255, 255, .35);
  flex: none;
}
body.theme-noir .lang { background: rgba(244, 241, 234, .05); }
.lang a {
  font-family: var(--ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--text-soft);
  padding: .28rem .4rem;
  border-radius: 1px;
  transition: background-color .2s ease, color .2s ease;
}
.lang a:hover { color: var(--text); background: rgba(215, 178, 92, .3); }
.lang a[aria-current="true"] { background: var(--text); color: var(--surface); }

.masthead__end {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: none;
  order: 2;
  margin-left: auto;
}
.masthead__cta { flex: none; }

/* Desktop order: wordmark · nav · language + call to action */
@media (min-width: 76rem) {
  .nav { order: 2; margin-left: auto; }
  .masthead__end { order: 3; margin-left: 0; }
}

.hero__plate { position: relative; }

.nav-toggle {
  display: none;
  font-family: var(--ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: .55rem .8rem;
  border-radius: 1px;
  cursor: pointer;
}

@media (max-width: 75.99rem) {
  .nav-toggle { display: inline-block; }
  .masthead__inner { flex-wrap: wrap; }
  .masthead__cta { display: none; }
  .nav {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    display: none;
    border-top: var(--rule);
    padding-block: .5rem .25rem;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: .75rem 0;
    border-bottom: var(--rule);
    font-size: .78rem;
  }
  .nav__list li:last-child a { border-bottom: 0; }
  .nav__list a[aria-current="page"] { border-bottom-color: var(--accent); }
}
@media (max-width: 46rem) {
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
  .wordmark__role { font-size: .5rem; letter-spacing: .14em; }
}
@media (max-width: 26rem) {
  .wordmark__name { font-size: .98rem; }
  .lang a { padding: .26rem .3rem; font-size: .58rem; }
}

/* Always-visible contact bar — docks to the bottom of the viewport. */
.contactbar {
  position: sticky;
  bottom: 0;
  z-index: 55;
  background: var(--dock-bg);
  color: #e6dbc7;
  border-top: 2px solid var(--bronze);
}
.contactbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem 1.5rem;
  padding-block: .55rem;
  flex-wrap: wrap;
}
.contactbar__label {
  font-family: var(--ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.chan {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chan a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  color: #e6dbc7;
  border: 1px solid rgba(230, 219, 199, .3);
  border-radius: 1px;
  padding: .45rem .75rem;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.chan a:hover {
  background: var(--gold-leaf);
  border-color: var(--gold-leaf);
  color: #241f19;
}
.chan a svg { width: 1em; height: 1em; fill: currentColor; flex: none; }
@media (max-width: 46rem) {
  .contactbar__inner { justify-content: center; padding-block: .45rem; }
  .contactbar__label { display: none; }
  .chan { width: 100%; gap: .35rem; }
  .chan li { flex: 1 1 6rem; }
  .chan a { width: 100%; justify-content: center; padding-inline: .4rem; font-size: .66rem; }
}

/* ---------- 8. Hero & page head ------------------------------------------ */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--rule);
  background: linear-gradient(180deg, rgba(232, 212, 154, .22), rgba(246, 241, 231, 0) 60%);
}
body.theme-noir .hero {
  background:
    radial-gradient(46rem 28rem at 78% -10%, rgba(215, 178, 92, .22), transparent 68%),
    radial-gradient(38rem 26rem at 0% 100%, rgba(143, 179, 196, .10), transparent 70%);
}
.hero__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 62rem) {
  .hero__inner { grid-template-columns: 6fr 5fr; align-items: center; }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--ui);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid rgba(92, 100, 55, .35);
  border-radius: 100px;
  padding: .4rem .95rem;
  margin: 0 0 1.4rem;
}
body.theme-noir .hero__kicker { color: var(--metal-lit); border-color: rgba(194, 160, 82, .45); }
.hero h1 { margin-bottom: .5rem; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__sub {
  max-width: 36rem;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.62;
  margin-bottom: 1.9rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 2rem;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 0;
  border-top: var(--rule);
  padding-top: 1.2rem;
  list-style: none;
  margin: 0;
}
.hero__facts li {
  padding-right: 1.4rem;
  margin-right: 1.4rem;
  border-right: var(--rule);
}
.hero__facts li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__facts b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--accent-deep);
}
body.theme-noir .hero__facts b { color: var(--champagne); }
.hero__facts span {
  display: block;
  font-family: var(--ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  max-width: 11rem;
}
@media (max-width: 30rem) {
  .hero__facts li { padding-right: .9rem; margin-right: .9rem; }
  .hero__facts b { font-size: 1.25rem; }
}

.pagehead {
  position: relative;
  overflow: hidden;
  border-bottom: var(--rule);
  background: linear-gradient(180deg, rgba(232, 212, 154, .26), transparent);
}
body.theme-noir .pagehead {
  background: radial-gradient(44rem 24rem at 80% -20%, rgba(215, 178, 92, .18), transparent 66%);
}
.pagehead__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.25rem, 5.5vw, 4.25rem);
  max-width: 54rem;
}

.crumbs {
  font-family: var(--ui);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 1.1rem;
}
.crumbs a { color: var(--text-soft); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--text-faint); margin-inline: .5rem; }

/* ---------- 9. Figure plates --------------------------------------------- */

.plate {
  position: relative;
  margin: 0;
  background: var(--surface-3);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
body.theme-noir .plate { background: #0b0d10; border-color: rgba(194, 160, 82, .28); }
.plate__art { display: block; width: 100%; height: auto; }
/* Photographic plates: fill the frame without distortion; the intrinsic
   width/height attributes reserve the space while the file loads. */
img.plate__art { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.plate figcaption {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: rgba(255, 253, 248, .9);
  border-top: 1px solid var(--line);
  padding: .7rem .9rem;
}
body.theme-noir .plate figcaption {
  background: rgba(3, 4, 5, .88);
  color: rgba(236, 224, 196, .74);
  border-top-color: rgba(194, 160, 82, .24);
}
.plate figcaption::before {
  content: "";
  width: 1.35rem;
  height: 1px;
  background: var(--metal);
  flex: none;
}

/* Offset bronze frame peeking out behind the plate. */
.plate-frame { position: relative; }
.plate-frame::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid rgba(165, 129, 60, .5);
  z-index: 0;
}
.plate-frame > .plate { position: relative; z-index: 1; }
@media (max-width: 48rem) {
  .plate-frame::before { inset: .7rem -.7rem -.7rem .7rem; }
}

/* ---------- 10. Editorial body ------------------------------------------- */

.prose { max-width: 42rem; }
.prose p + p { margin-top: 1.1em; }

.signature {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: var(--rule);
  display: flex;
  align-items: baseline;
  gap: .85rem;
  flex-wrap: wrap;
}
.signature__name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--text);
}
.signature__role {
  font-family: var(--ui);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.creds {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.creds li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: .85rem 0;
  border-top: var(--rule);
}
.creds li:last-child { border-bottom: var(--rule); }
.creds .k {
  font-family: var(--ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--metal-lit);
}
.creds .v { font-size: .96rem; color: var(--text-2); }
@media (max-width: 34rem) {
  .creds li { grid-template-columns: 1fr; gap: .25rem; }
}

.pullquote {
  border-left: 3px solid var(--accent);
  padding: .35rem 0 .35rem 1.5rem;
  margin: 2.25rem 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.18rem, 2.3vw, 1.6rem);
  line-height: 1.4;
  color: var(--text);
}
.pullquote cite {
  display: block;
  margin-top: .85rem;
  font-family: var(--ui);
  font-style: normal;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- 11. Services strata ------------------------------------------ */

.services { display: grid; }

.service {
  position: relative;
  display: grid;
  gap: 1rem 2.25rem;
  padding-block: clamp(1.9rem, 4vw, 2.8rem);
  border-top: var(--rule-strong);
}
.service:last-of-type { border-bottom: var(--rule-strong); }

@media (min-width: 54rem) {
  .service {
    grid-template-columns: 6.5rem minmax(0, 1fr) 15rem;
    align-items: start;
  }
  .service:nth-of-type(even) {
    background: linear-gradient(90deg, rgba(232, 212, 154, .18), transparent 62%);
  }
  body.theme-noir .service:nth-of-type(even) {
    background: linear-gradient(90deg, rgba(194, 160, 82, .08), transparent 62%);
  }
}

/* Oversized outlined numeral — decorative, language independent. */
.service__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: .85;
  color: rgba(165, 129, 60, .3);
  -webkit-text-stroke: 1px rgba(165, 129, 60, .85);
  letter-spacing: -.03em;
}
.service__title { margin: 0 0 .4rem; }
.service__tag {
  display: block;
  font-family: var(--ui);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: .7rem;
}
body.theme-noir .service__tag { color: var(--metal-lit); }
.service__desc { color: var(--text-2); max-width: 42rem; }

.service__aside {
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
}
@media (max-width: 53.99rem) {
  .service__aside { border-left: 0; border-top: var(--rule); padding: 1rem 0 0; }
  .service__num { font-size: 2.2rem; }
}

.incl {
  list-style: none;
  margin: .9rem 0 1.1rem;
  padding: 0;
  font-family: var(--ui);
  font-size: .8rem;
  line-height: 1.55;
  color: var(--text-2);
}
.incl li {
  position: relative;
  padding-left: 1.05rem;
  margin-bottom: .4rem;
}
.incl li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 5px; height: 5px;
  background: var(--metal);
  transform: rotate(45deg);
}

/* Price — a hanging rail, never a sticker. */
.price {
  display: block;
  font-family: var(--display);
  line-height: 1.1;
  margin-bottom: .4rem;
}
.price .from {
  display: block;
  font-family: var(--ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .3rem;
}
.price .amount { font-size: 2rem; color: var(--accent-deep); }
.price .unit {
  font-family: var(--ui);
  font-size: .7rem;
  letter-spacing: .05em;
  color: var(--text-soft);
}
/* Restrained noir pricing: small label above a serif figure. */
body.theme-noir .price .amount,
.noirband .price .amount { font-size: 1.3rem; color: var(--champagne); letter-spacing: .01em; }
body.theme-noir .price .from,
.noirband .price .from { color: var(--text-faint); font-size: .56rem; letter-spacing: .24em; }
body.theme-noir .price .unit,
.noirband .price .unit {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-faint);
}

/* ---------- 12. Steps ----------------------------------------------------- */

.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 50rem) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  counter-increment: step;
  position: relative;
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-top: 2px solid var(--metal);
}
@media (min-width: 50rem) {
  .step + .step { padding-left: 2rem; }
  .step + .step::after {
    content: "";
    position: absolute;
    left: 0; top: 1.75rem; bottom: 1.75rem;
    border-left: var(--rule);
  }
}
/* Decorative numeral generated in CSS: 01, 02, 03 — no translatable text. */
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold-leaf);
  margin-bottom: .8rem;
}
.step h3 { font-size: 1.24rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; color: var(--text-2); }

/* ---------- 13. Trust badges & rating ------------------------------------ */

.trustband {
  background: #241f19;
  color: rgba(230, 219, 199, .86);
  position: relative;
  overflow: hidden;
}
body.theme-noir .trustband { background: var(--charcoal); }
.trustband .eyebrow { color: var(--gold-leaf); }
.trustband h2, .trustband h3 { color: #f6f1e7; }
.trustband p, .trustband .lede { color: rgba(230, 219, 199, .84); }

.badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: rgba(230, 219, 199, .18);
  border: 1px solid rgba(230, 219, 199, .18);
}
@media (min-width: 34rem) { .badges { grid-template-columns: 1fr 1fr; } }
/* auto-fit so a row of three badges fills the band evenly, four still sit in four columns */
@media (min-width: 62rem) { .badges { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); } }
.badge {
  background: #241f19;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
body.theme-noir .badge { background: var(--charcoal); }
.badge__icon { color: var(--gold-leaf); }
.badge__icon svg { width: 26px; height: 26px; }
.badge__title {
  font-family: var(--ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.badge__text { font-size: .92rem; line-height: 1.55; color: rgba(230, 219, 199, .82); }
/* links inside a badge sit on the dark trust band, so they need a light colour */
.badge__text a { color: var(--gold-pale); }
.badge__text a:hover { color: var(--gold-leaf); }

.rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid rgba(215, 178, 92, .45);
  background: rgba(215, 178, 92, .08);
  padding: 1.05rem 1.3rem;
  margin-top: 1.75rem;
}
.rating__score { font-family: var(--display); font-size: 2.4rem; line-height: 1; color: var(--gold-leaf); }
.rating__stars { display: block; color: var(--gold-leaf); letter-spacing: .16em; font-size: 1rem; }
.rating__text {
  display: block;
  font-family: var(--ui);
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(230, 219, 199, .9);
}
.rating--light { border-color: rgba(165, 129, 60, .5); background: rgba(215, 178, 92, .14); }
.rating--light .rating__score { color: var(--accent-deep); }
.rating--light .rating__stars { color: var(--metal); }
.rating--light .rating__text { color: var(--text-2); }
body.theme-noir .rating--light .rating__score { color: var(--champagne); }
body.theme-noir .rating--light .rating__stars { color: var(--metal-lit); }

/* ---------- 14. Testimonials --------------------------------------------- */

.quotes {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
@media (min-width: 56rem) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  background: var(--surface);
  padding: 2rem 1.6rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
body.theme-noir .quote { background: var(--surface-2); }
/* Decorative typographic quotation mark, drawn in the markup. */
.quote__mark {
  font-family: var(--display);
  font-size: 3rem;
  line-height: .5;
  color: var(--limestone);
  height: 1.1rem;
}
body.theme-noir .quote__mark { color: rgba(194, 160, 82, .45); }
.quote blockquote { margin: 0; font-size: 1.04rem; line-height: 1.62; color: var(--text-2); }
.quote__by {
  margin-top: auto;
  padding-top: .85rem;
  border-top: var(--rule);
  font-family: var(--ui);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--text-soft);
}
.quote__by b {
  display: block;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .2rem;
}
.quote .stars { color: var(--metal); letter-spacing: .18em; font-size: .85rem; }
body.theme-noir .quote .stars { color: var(--metal-lit); }

/* ---------- 15. CTA bands ------------------------------------------------- */

.ctaband {
  position: relative;
  overflow: hidden;
  background: var(--clay-deep);
  color: #f7ecdf;
  background-image:
    radial-gradient(40rem 22rem at 12% 0%, rgba(215, 178, 92, .28), transparent 70%),
    radial-gradient(34rem 20rem at 96% 100%, rgba(36, 31, 25, .5), transparent 70%);
}
.ctaband__inner { position: relative; z-index: 1; }
.ctaband h2, .ctaband h3 { color: #fdf6ea; }
.ctaband .eyebrow { color: var(--gold-pale); }
.ctaband p, .ctaband .lede { color: rgba(247, 236, 223, .9); }
.ctaband .chan { gap: .6rem; margin-top: 1.4rem; }
.ctaband .chan a {
  color: #f7ecdf;
  border-color: rgba(247, 236, 223, .4);
  font-size: .74rem;
  padding: .75rem 1.1rem;
}
.ctaband .chan a:hover { background: var(--gold-leaf); border-color: var(--gold-leaf); color: #241f19; }
.ctaband__note {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(247, 236, 223, .25);
  font-family: var(--ui);
  font-size: .78rem;
  color: rgba(247, 236, 223, .82);
}
.ctaband .btn--ghost { color: #fdf6ea; border-color: rgba(247, 236, 223, .5); }
.ctaband .btn--ghost:hover { background: #fdf6ea; color: var(--clay-deep); border-color: #fdf6ea; }

/* Dark premium band on an otherwise light page. */
.noirband {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #12161b 0%, #08090c 55%, #030405 100%);
  color: var(--text-2);
  border-block: 1px solid rgba(194, 160, 82, .3);
}
.noirband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 85% 10%, rgba(184, 145, 47, .16), transparent 62%);
  pointer-events: none;
}
.noirband > * { position: relative; z-index: 1; }
.noirband h2, .noirband h3 { color: var(--champagne); }
.noirband .eyebrow { color: var(--metal-lit); }
.noirband p, .noirband .lede { color: var(--text-soft); }
.noirband .btn--ghost { color: var(--champagne); border-color: rgba(236, 224, 196, .35); }
.noirband .btn--ghost:hover { background: var(--champagne); color: #07080a; border-color: var(--champagne); }

/* ---------- 16. Forms & channels ------------------------------------------ */

.form { display: grid; gap: 1.05rem; }
.form__row { display: grid; gap: 1.05rem; }
@media (min-width: 40rem) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: .4rem; margin: 0; }
.field label {
  font-family: var(--ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line-strong);
  border-radius: 1px;
  padding: .72rem .8rem;
  width: 100%;
}
body.theme-noir .field input,
body.theme-noir .field select,
body.theme-noir .field textarea,
.noirband .field input,
.noirband .field select,
.noirband .field textarea {
  background: rgba(244, 241, 234, .05);
  color: var(--champagne);
  border-color: rgba(244, 241, 234, .22);
}
body.theme-noir .field select option,
.noirband .field select option { background: #14171b; color: #f4f1ea; }
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--metal);
  outline-offset: 1px;
  background: #fff;
}
body.theme-noir .field input:focus,
body.theme-noir .field select:focus,
body.theme-noir .field textarea:focus,
.noirband .field input:focus,
.noirband .field select:focus,
.noirband .field textarea:focus { background: rgba(244, 241, 234, .1); }
.form__note { font-family: var(--ui); font-size: .74rem; color: var(--text-soft); margin: 0; }

.form-success {
  display: none;
  font-family: var(--ui);
  font-size: .88rem;
  line-height: 1.6;
  border: 1px solid var(--olive);
  background: rgba(92, 100, 55, .12);
  color: var(--text-2);
  padding: 1rem 1.1rem;
}
.form-success.show { display: block; }
.form-success__lead { margin: 0; }
.form-success:focus-visible { outline: 2px solid var(--metal); outline-offset: 2px; }

/* Validation notice shown when a required field is still empty. */
.form-error {
  font-family: var(--ui);
  font-size: .8rem;
  line-height: 1.5;
  margin: 0;
  padding: .8rem .95rem;
  border: 1px solid var(--accent);
  background: rgba(164, 70, 42, .09);
  color: var(--accent-deep);
}
.form-error[hidden] { display: none; }

/* Hand-off buttons shown after a valid submit: the enquiry is composed as
   plain text and handed to WhatsApp / Viber / Telegram / email. */
.sendlist {
  display: grid;
  gap: .55rem;
  margin: .95rem 0 0;
}
@media (min-width: 34rem) { .sendlist { grid-template-columns: 1fr 1fr; } }

.sendlist__btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  width: 100%;
  font-family: var(--ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  padding: .8rem .95rem;
  border: 1px solid var(--line-strong);
  border-radius: 1px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.sendlist__btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.sendlist__btn:hover { background: var(--text); color: var(--surface); border-color: var(--text); }
.sendlist__btn:focus-visible { outline: 2px solid var(--metal); outline-offset: 2px; }
.sendlist__btn--primary {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.sendlist__btn--primary:hover {
  background: var(--accent-deep);
  color: var(--accent-on);
  border-color: var(--accent-deep);
}
body.theme-noir .sendlist__btn { background: rgba(244, 241, 234, .06); color: var(--champagne); border-color: rgba(244, 241, 234, .24); }
body.theme-noir .sendlist__btn:hover { background: var(--champagne); color: #07080a; border-color: var(--champagne); }

.sendnote { font-family: var(--ui); font-size: .8rem; line-height: 1.55; margin: .85rem 0 0; color: var(--text-2); }
.sendnote:empty { display: none; }

.sendmanual { margin-top: .85rem; }
.sendmanual[hidden] { display: none; }
.sendmanual label {
  display: block;
  font-family: var(--ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .35rem;
}
.sendmanual textarea {
  width: 100%;
  font-family: var(--ui);
  font-size: .82rem;
  line-height: 1.55;
  padding: .7rem .75rem;
  border: 1px solid var(--line-strong);
  border-radius: 1px;
  background: #fff;
  color: var(--text);
  resize: vertical;
}
.sendmanual textarea:focus { outline: 2px solid var(--metal); outline-offset: 1px; }
body.theme-noir .sendmanual textarea { background: rgba(244, 241, 234, .05); color: var(--champagne); border-color: rgba(244, 241, 234, .22); }

/* Messaging-app buttons (contact page and premium contact bands) */
.channels {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 34rem) { .channels { grid-template-columns: 1fr 1fr; } }
.channel {
  background: var(--surface);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: var(--text);
  transition: background-color .2s ease;
}
.channel:hover { background: var(--surface-2); color: var(--text); }
.channel svg { width: 22px; height: 22px; fill: var(--metal-lit); flex: none; }
body.theme-noir .channel svg { fill: var(--gold-leaf); }
.channel__k {
  display: block;
  font-family: var(--ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .25rem;
}
.channel__v { display: block; font-size: .96rem; color: var(--text); }

/* Contact details for visitors with JavaScript off. main.js assembles the
   real number and address at runtime; this is the readable fallback. */
.nojs-contact {
  margin-top: 1rem;
  padding: .9rem 1.05rem;
  border: var(--rule);
  border-radius: .35rem;
  background: var(--surface-2);
  font-family: var(--ui);
  font-size: .8rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.nojs-contact p { margin: 0; }
.nojs-contact__list { margin-top: .5rem; }
.nojs-contact b { color: var(--text); font-weight: 600; letter-spacing: .02em; }

/* ---------- 17. Tours page ------------------------------------------------ */

.mapfig {
  margin: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f2ead9, #e9dec8);
  box-shadow: var(--shadow-lift);
}
.mapfig__scroll { overflow-x: auto; }
.mapfig svg { width: 100%; min-width: 32rem; height: auto; }
.mapfig figcaption {
  font-family: var(--ui);
  font-size: .68rem;
  letter-spacing: .05em;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
  padding: .75rem .95rem;
  background: rgba(255, 253, 248, .78);
}

.destinations { display: grid; }

.dest {
  display: grid;
  gap: 1.3rem 2.5rem;
  padding-block: clamp(2rem, 4.5vw, 3.25rem);
  border-top: var(--rule-strong);
  align-items: start;
}
.dest:last-child { border-bottom: var(--rule-strong); }
@media (min-width: 58rem) {
  .dest { grid-template-columns: 5fr 6fr; }
  .dest:nth-child(even) .dest__media { order: 2; }
  .dest:nth-child(even) .dest__body { order: 1; }
  .dest__body { padding-top: .4rem; }
}
.dest__index {
  font-family: var(--ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--metal-lit);
  margin: 0 0 .8rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.dest__index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(165, 129, 60, .35);
}
.dest h3 { margin-bottom: .3rem; }
.dest__where {
  display: block;
  font-family: var(--ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
}
.dest__foot {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: var(--rule);
}
.dest__foot .price { margin-bottom: 0; }
.dest__foot .price .amount { font-size: 1.55rem; }

.factstrip {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.factstrip li {
  font-family: var(--ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(232, 212, 154, .38);
  border: 1px solid rgba(165, 129, 60, .35);
  padding: .35rem .6rem;
}
body.theme-noir .factstrip li {
  background: rgba(194, 160, 82, .1);
  border-color: rgba(194, 160, 82, .32);
}

/* ---------- 18. Premium (noir) components -------------------------------- */

/* Card-free premium listing: hairline grid, art on top, price in the footer */
.fleet {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(2rem, 5vw, 3.25rem);
}
@media (min-width: 56rem) { .fleet { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem) { .fleet--3 { grid-template-columns: repeat(3, 1fr); } }

.fleet__item {
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.fleet__art {
  border-bottom: 1px solid var(--line);
  background: radial-gradient(120% 90% at 70% 0%, #26303a 0%, #141a20 42%, #07080a 100%);
}
.fleet__art--sea  { background: radial-gradient(110% 100% at 30% 10%, #1b2a31 0%, #101a1f 45%, #06080a 100%); }
.fleet__art--land { background: radial-gradient(120% 100% at 50% 100%, #2a2318 0%, #14130f 46%, #07080a 100%); }
.fleet__art svg { width: 100%; height: auto; display: block; }
.fleet__body {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet__title { font-size: 1.34rem; margin-bottom: .8rem; color: var(--champagne); }
body:not(.theme-noir) .fleet__title { color: var(--text); }
.fleet__text { font-size: .94rem; color: var(--text-soft); line-height: 1.72; margin-bottom: 1.5rem; }
.fleet__foot {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Definition-style spec rows */
.spec { margin: clamp(2rem, 5vw, 2.75rem) 0 0; border-top: 1px solid var(--line); }
.spec__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem 2.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 48rem) {
  .spec__row { grid-template-columns: 11rem 1fr; align-items: baseline; }
}
.spec__k {
  font-family: var(--ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--metal-lit);
  margin: 0;
}
.spec__v { color: var(--text-soft); font-size: .96rem; line-height: 1.75; margin: 0; }
.spec__v b { color: var(--text-2); font-weight: 700; }

/* Pillars — hairline-led paragraphs for concierge / inclusions */
.pillars {
  display: grid;
  gap: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 44rem) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 72rem) { .pillars--3 { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding-left: 1.4rem; border-left: 1px solid rgba(194, 160, 82, .38); }
.pillar h3 { font-size: 1.16rem; color: var(--champagne); margin-bottom: .55rem; }
body:not(.theme-noir) .pillar h3 { color: var(--text); }
.pillar p { font-size: .94rem; color: var(--text-soft); line-height: 1.72; }

/* A single bordered marquee panel */
.marquee {
  position: relative;
  border: 1px solid rgba(194, 160, 82, .32);
  background: linear-gradient(165deg, #14181d 0%, #08090b 55%, #030405 100%);
  overflow: hidden;
}
.marquee__inner { position: relative; z-index: 2; padding: clamp(1.75rem, 4vw, 3.25rem); }
.marquee h2, .marquee h3 { color: var(--champagne); }
.marquee p, .marquee .lede { color: var(--text-soft); }

/* ---------- 19. Footer ---------------------------------------------------- */

.footer {
  background: var(--olive-deep);
  color: rgba(230, 219, 199, .84);
  font-family: var(--ui);
  font-size: .84rem;
  border-top: 3px solid var(--bronze);
}
body.theme-noir .footer { background: var(--onyx-deep); border-top-color: var(--gold); }
.footer__grid {
  display: grid;
  gap: 2rem;
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
@media (min-width: 46rem) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
@media (min-width: 68rem) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer h2 {
  font-family: var(--ui);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-leaf);
  margin-bottom: 1rem;
}
.footer__brand .wordmark__name { font-family: var(--display); font-size: 1.25rem; color: #f4ecdc; }
.footer__brand .wordmark__role { color: rgba(230, 219, 199, .82); }
.footer__brand p { margin-top: 1rem; max-width: 28rem; line-height: 1.65; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { color: rgba(230, 219, 199, .9); text-decoration: none; }
.footer a:hover { color: var(--gold-leaf); text-decoration: underline; }
.footer .lang {
  margin-top: 1rem;
  width: max-content;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(230, 219, 199, .28);
}
.footer .lang a { color: rgba(230, 219, 199, .88); }
.footer .lang a:hover { color: #fff; text-decoration: none; background: rgba(215, 178, 92, .3); }
.footer .lang a[aria-current="true"] { background: var(--gold-leaf); color: #241f19; }
.footer__bottom {
  border-top: 1px solid rgba(230, 219, 199, .2);
  padding-block: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .74rem;
  letter-spacing: .03em;
  color: rgba(230, 219, 199, .82);
}

/* ---------- 20. Utilities & print ---------------------------------------- */

.stack-sm > * + * { margin-top: .75rem; }
.stack > * + * { margin-top: 1.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.measure { max-width: 44rem; }
.measure-sm { max-width: 32rem; }
.nowrap { white-space: nowrap; }

@media print {
  .topbar, .masthead, .contactbar, .btn, .form { display: none !important; }
  body { background: #fff; color: #000; background-image: none; }
}
