/* ═══════════════════════════════════════
   DESIGN TOKENS — STOIC LOGOS EDITION
═══════════════════════════════════════ */
:root {
  /* ── Greek Vivid Palette ── */
  --sacred-laurel:  #1C6230;   /* Primary green — CTA fills, dominant body */
  --aegean-garden:  #378C50;   /* Secondary green — hover states, accents   */
  --mycenean-gold:  #C89B12;   /* Accent gold — use once per viewport        */
  --deep-grove:     #16281A;   /* Primary text — darkest tone (not black)    */
  --parian-marble:  #F5F1E9;   /* Background — warm marble white             */
  --pale-sage:      #91AF82;   /* Sub-text on dark, secondary labels         */
  --ionic-stone:    #AFA89A;   /* Tertiary text, dividers                    */
  --surface-low:    #EDE9E1;   /* Secondary content areas                    */
  --surface-card:   #FAFAF6;   /* Card backgrounds, elevated panels          */

  /* ── Semantic Mappings ── */
  --bg:           var(--parian-marble);
  --surface:      var(--surface-card);
  --primary:      var(--sacred-laurel);
  --primary-dim:  #16481F;
  --tertiary:     var(--mycenean-gold);
  --accent:       var(--mycenean-gold);
  --on-primary:   var(--parian-marble);
  --text:         var(--deep-grove);
  --text-muted:   var(--ionic-stone);
  --border:       rgba(175, 168, 154, 0.25);
  --border-focus: var(--mycenean-gold);

  /* ── Shadows (ambient only — 6% max opacity) ── */
  --shadow-xs:  0 2px 8px  rgba(22,40,26,0.04);
  --shadow-sm:  0 4px 16px rgba(22,40,26,0.06);
  --shadow-md:  0 8px 32px rgba(22,40,26,0.06);
  --shadow-lg:  0 16px 48px rgba(22,40,26,0.08);

  /* ── Typography ── */
  --font:       'Bricolage Grotesque', sans-serif;
  --font-caps:  'Arsenal SC', sans-serif;
  --font-mono:  'DM Mono', monospace;

  /* Spacing */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r:    8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.7; }
strong { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--s6);
}

.section {
  padding-block: var(--s20);
}
.section--alt {
  background: var(--surface-low);
  /* Hairline top/bottom tint reinforces tonal shift — no hard lines */
  box-shadow: 0 1px 0 rgba(55, 140, 80, 0.06) inset, 0 -1px 0 rgba(55, 140, 80, 0.06) inset;
}
.section--booking {
  padding-block: var(--s12);
}

.grid { display: grid; gap: var(--s6); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ═══════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;   /* stone-carving spacing — architectural, never rushed */
  text-transform: uppercase;
  color: var(--mycenean-gold);
  margin-bottom: var(--s4);
}

.section-heading { margin-bottom: var(--s12); }
.section-heading--center { text-align: center; }
.section-heading--center h2 { max-width: 640px; margin-inline: auto; }
.section-heading__sub {
  margin-top: var(--s4);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-heading--center .section-heading__sub { margin-inline: auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: var(--surface);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--s6);
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.65rem var(--s6);
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--tertiary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--sacred-laurel);
  color: var(--parian-marble);
  box-shadow: 0 4px 14px rgba(28, 98, 48, 0.18);
  border: 1px solid transparent;
}
.btn--primary:hover {
  background: var(--deep-grove);
  border-color: var(--mycenean-gold);
  box-shadow: 0 6px 20px rgba(22, 40, 26, 0.22);
  color: var(--parian-marble);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--surface-low);
  color: var(--text);
}
.btn--secondary:hover {
  background: #e4e6e6;
  color: var(--text);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn--white {
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  background: var(--on-primary);
  color: var(--primary-dim);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

.btn--sm { padding: 0.5rem var(--s4); font-size: 0.82rem; }
.btn--lg { padding: 0.85rem var(--s8); font-size: 0.95rem; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s8);
  height: 80px;
}

/* ── CSS Wordmark (header) ─────────────────────────────────────────────────────
   Built directly from the brand spec: "colab" Deep Grove + "hub" Sacred Laurel,
   Arsenal SC tagline in Mycenean Gold. Crisp at any resolution.
────────────────────────────────────────────────────────────────────────────── */
.header__logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
}

.header__wordmark {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  line-height: 1;
}

.header__wordmark-colab { color: var(--deep-grove); }
.header__wordmark-hub   { color: var(--sacred-laurel); }

.header__wordmark-tag {
  font-family: var(--font-caps);
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mycenean-gold);
  line-height: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-left: auto;
}

.nav-link {
  padding: var(--s2) var(--s3);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: all 0.15s var(--ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(84, 100, 61, 0.08);
}

.nav-link--subtle {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ionic-stone);
  opacity: 0.8;
}
.nav-link--subtle:hover {
  color: var(--text-muted);
  background: none;
  opacity: 1;
}

.header__actions { display: flex; align-items: center; gap: var(--s3); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s;
}
.hamburger:hover { background: var(--surface-low); }
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(249,249,249,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s8) var(--s6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  max-width: 400px;
}

.mobile-nav__link {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: color 0.15s;
  padding-block: var(--s1);
}
.mobile-nav__link:hover { color: var(--primary); }

.mobile-nav__link--subtle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ionic-stone);
}

.mobile-nav__footer {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.mobile-nav__contact { font-size: 0.85rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   PAGES (SPA routing)
═══════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════ */
.page-hero {
  padding: var(--s20) 0 var(--s16);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(84,100,61,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(250,225,149,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero--sm { padding: var(--s16) 0 var(--s12); }

.page-hero__inner { max-width: 720px; }
.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-block: var(--s4) var(--s5);
}
.page-hero__sub { font-size: 1.1rem; max-width: 560px; margin-bottom: var(--s6); }
.page-hero__actions { display: flex; gap: var(--s4); flex-wrap: wrap; }

/* ═══════════════════════════════════════
   HERO (HOME)
═══════════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-block: var(--s20);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  /* Subtle radial depth */
  background:
    radial-gradient(ellipse 60% 70% at 75% 45%, rgba(28,98,48,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 20%, rgba(200,155,18,0.05) 0%, transparent 55%);
  pointer-events: none;
}
/* ── Watermark system ──────────────────────────────────────────────────────────
   All hero watermarks share the same spec so they feel consistent across pages:
   position: absolute right edge, top overflowing; size clamp(280px,42vw,560px);
   Sacred Laurel at 0.045 opacity; pointer-events/user-select none.
   Lambda (Λ) → Home hero    Omega (Ω) → Services hero    Column+Olive JPEG → About hero    Temple PNG → Booking hero
────────────────────────────────────────────────────────────────────────────── */

/* Shared watermark base — only page-hero sections need overflow:hidden;
   .hero__bg-pattern is position:absolute/inset:0 so must NOT get overflow:hidden
   as that would clip the Lambda watermark at top:-8% */
.page-hero--has-watermark {
  position: relative;
  overflow: hidden;
}

/* Lambda (Λ) — Home */
.hero__bg-pattern::after {
  content: 'Λ';
  position: absolute;
  right: 2%;
  top: -8%;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(280px, 42vw, 560px);
  line-height: 1;
  color: var(--sacred-laurel);
  opacity: 0.045;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

/* Omega (Ω) — Services / AI Solutions */
.page-hero--has-watermark::after {
  content: 'Ω';
  position: absolute;
  right: 1%;
  top: -10%;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(280px, 42vw, 560px);
  line-height: 1;
  color: var(--sacred-laurel);
  opacity: 0.045;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

/* About page uses Column Olive Watermark.jpeg image (see .booking-hero__temple-watermark) */

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
  position: relative;
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-block: var(--s5) var(--s6);
}
.hero__title-accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 800;
  position: relative;
}

.hero__subtitle {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: var(--s8);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s8);
}

/* C mark — hero visual icon above brand grid */
.hero__cmark-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero__cmark-img {
  width: 140px;
  height: auto;
}

.hero__float-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  box-shadow: var(--shadow-md);
}

.hero__float-card--a {
  top: 8px; left: -12px;
  animation: float 6s ease-in-out infinite;
}
.hero__float-card--b {
  top: 38%; right: -12px;
  text-align: center;
  animation: float 7s ease-in-out infinite reverse;
}
.hero__float-card--c {
  bottom: 8px; left: 8%;
  animation: float 5s ease-in-out infinite 1s;
}

/* Brand service icon grid (hero visual) */
.hero__brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  padding: var(--s2);
  width: 100%;
}
.hero__brand-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  padding: var(--s5) var(--s3);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  box-shadow: 0 4px 18px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.9);
  color: var(--primary);
  animation: floatCard 6s ease-in-out infinite;
  will-change: transform;
  transition: box-shadow 0.22s ease;
  cursor: default;
}
.hero__brand-grid-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.11), 0 2px 6px rgba(0,0,0,0.06);
}
.hero__brand-grid-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Greek letter in place of SVG icon */
.hero__brand-grid-letter {
  font-family: var(--font);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--sacred-laurel);
  letter-spacing: -0.03em;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.float-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-bottom: var(--s2);
}
.float-card__dot--green { background: var(--primary); }
.float-card__dot--yellow { background: var(--tertiary); }
.float-card__label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.float-card__value { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-top: var(--s1); }
.float-card__number { font-size: 2rem; font-weight: 800; color: var(--primary); letter-spacing: -0.04em; line-height: 1; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════
   PILLAR CARDS (Home — 3-pillar)
═══════════════════════════════════════ */
.pillar-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar-card--featured {
  background: #1e2420;
}
.pillar-card--featured * { color: rgba(255,255,255,0.65) !important; }
.pillar-card--featured h3 { color: rgba(255,255,255,0.95) !important; }
.pillar-card--featured .pillar-card__cta { color: var(--accent) !important; opacity: 1; }
.pillar-card--featured .pillar-card__icon { background: rgba(255,255,255,0.08) !important; }
.pillar-card--featured .pillar-card__icon svg { stroke: var(--accent); }

.pillar-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: var(--surface-low);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s6);
  flex-shrink: 0;
}
.pillar-card__icon svg { stroke: var(--primary); }

.pillar-card__title { margin-bottom: var(--s3); }
.pillar-card__text { font-size: 0.92rem; flex: 1; }

.pillar-card__cta {
  margin-top: var(--s6);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--s2);
  transition: gap 0.2s var(--ease), opacity 0.2s;
}
.pillar-card__cta:hover { gap: var(--s3); }
.pillar-card__cta span { transition: transform 0.2s var(--ease); }
.pillar-card__cta:hover span { transform: translateX(4px); }

/* ═══════════════════════════════════════
   ROOM PREVIEW CARDS (Home)
═══════════════════════════════════════ */
.rooms-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s6);
  margin-bottom: var(--s10);
}

.room-preview-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.room-preview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.room-preview-card--accent {
  background: linear-gradient(160deg, #faf6ec 0%, #f5f0e0 100%);
}

.room-preview-card__number {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
}

.room-preview-card__cap {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s3);
}
.room-preview-card__name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: var(--s1);
}
.room-preview-card__type {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--s5);
}
.room-preview-card__desc { font-size: 0.9rem; margin-bottom: var(--s5); }

.room-preview-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s6);
}
.room-preview-card__tags span {
  padding: var(--s1) var(--s3);
  background: var(--surface-low);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}
.room-preview-card--accent .room-preview-card__tags span {
  background: rgba(255,255,255,0.6);
}

.room-preview-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.room-preview-card__price {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.room-preview-card__price strong { color: var(--text); font-weight: 700; }

.section-cta { text-align: center; }

/* ═══════════════════════════════════════
   SPLIT CONTENT SECTION (reference: Intelligent Workflows)
═══════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.split-section--reverse { }
.split-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--deep-grove);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(84,100,61,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(250,225,149,0.12) 0%, transparent 50%);
}
.split-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.split-visual__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: background, opacity;
}
.split-visual__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s5);
}
.split-visual__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,155,18,0.35);
  color: rgba(255,255,255,0.7);
  box-shadow: 0 0 40px rgba(200,155,18,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: floatCard 7s ease-in-out infinite;
}
/* Greek Λ inside the split panel icon box */
.split-visual__greek-letter {
  font-family: var(--font);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--mycenean-gold);
  letter-spacing: -0.04em;
}
.split-visual__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  max-width: 200px;
  line-height: 1.6;
}
.split-visual__floating {
  position: absolute;
  bottom: var(--s5);
  left: var(--s5);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--r);
  padding: var(--s3) var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.split-visual__floating-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.split-visual__floating-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.split-content__badge {
  display: inline-block;
  background: rgba(84,100,61,0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  margin-bottom: var(--s5);
}
.split-content h2 { margin-bottom: var(--s5); }
.split-content p { margin-bottom: var(--s4); }
.split-content__list { display: flex; flex-direction: column; gap: var(--s4); margin-bottom: var(--s8); }
.split-content__item {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}
.split-content__check {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(84,100,61,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.split-content__check svg { stroke: var(--primary); }
.split-content__item-text strong { font-size: 0.9rem; display: block; margin-bottom: 2px; }
.split-content__item-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   WHY COLABHUB
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.why-content h2 { margin-block: var(--s4) var(--s5); }
.why-content__lead { font-size: 1.05rem; margin-bottom: var(--s8); }

.why-points { display: flex; flex-direction: column; gap: var(--s5); margin-bottom: var(--s8); }
.why-point {
  display: flex;
  gap: var(--s4);
}
.why-point__icon {
  width: 24px; height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--mycenean-gold);
  color: var(--deep-grove);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}
.why-point strong { display: block; font-size: 0.95rem; margin-bottom: var(--s1); }
.why-point p { font-size: 0.88rem; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.why-stat {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-xs);
  text-align: center;
}
.why-stat--accent {
  background: rgba(200, 155, 18, 0.07);
  border: 1px solid rgba(200, 155, 18, 0.18);
}
.why-stat--accent .why-stat__number { color: var(--mycenean-gold); }
.why-stat--green { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%); }
.why-stat--green .why-stat__number { color: var(--on-primary); }
.why-stat--green .why-stat__label { color: rgba(239,255,210,0.7); }
.why-stat__number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s2);
}
.why-stat__label { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 60%, #3d4b2a 100%);
  padding-block: var(--s16);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  flex-wrap: wrap;
}
.cta-banner__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--on-primary);
  margin-bottom: var(--s3);
}
.cta-banner__sub { color: rgba(239,255,210,0.7); font-size: 1rem; }
.cta-banner__actions { display: flex; gap: var(--s4); flex-wrap: wrap; flex-shrink: 0; }

/* ═══════════════════════════════════════
   AI ENQUIRY SECTION
═══════════════════════════════════════ */
.ai-enquiry {
  padding-block: var(--s20);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.ai-enquiry__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s16);
  align-items: start;
}
.ai-enquiry__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s4);
}
.ai-enquiry__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--s5);
  line-height: 1.2;
}
.ai-enquiry__sub {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: var(--s6);
}
.ai-enquiry__reassurance {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.ai-enquiry__reassurance span {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}
.ai-enquiry__form-wrap {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--s8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .ai-enquiry__inner {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }
}

/* ═══════════════════════════════════════
   ABOUT — STORY
═══════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.story-content h2 { margin-block: var(--s4) var(--s6); }
.story-content p { margin-bottom: var(--s5); }

.pull-quote {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dim) 100%);
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s8);
  position: sticky;
  top: 100px;
  border-left: 4px solid var(--mycenean-gold);
  overflow: hidden;
  /* position:sticky also acts as containing block for the watermark */
}
.pull-quote__watermark {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 65%;
  height: auto;
  object-fit: contain;
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: luminosity;
}
.pull-quote p {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--on-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-style: normal;
}
.pull-quote footer {
  margin-top: var(--s6);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pale-sage);
  letter-spacing: 0.06em;
  font-family: var(--font-caps);
}

/* Value Cards */
.value-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  border-top: 2px solid rgba(55, 140, 80, 0.15);
}
.value-card:nth-child(odd) {
  border-top-color: rgba(200, 155, 18, 0.25);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-card__icon { font-size: 2rem; margin-bottom: var(--s5); display: block; }
.value-card__icon.stoa-badge { font-size: 0.72rem; display: inline-flex; margin-bottom: var(--s5); }
.value-card__title { margin-bottom: var(--s3); }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.location-content h2 { margin-block: var(--s4) var(--s5); }
.location-content p { margin-bottom: var(--s3); }

.contact-list { margin-block: var(--s6) var(--s8); display: flex; flex-direction: column; gap: var(--s4); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-item svg { flex-shrink: 0; stroke: var(--primary); margin-top: 2px; }
.contact-item a { color: var(--primary); font-weight: 500; }

.location-map-placeholder {
  background: var(--surface-low);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  text-align: center;
  padding: var(--s8);
  color: var(--text-muted);
}
.location-map-placeholder svg { stroke: var(--text-muted); opacity: 0.4; }
.location-map-placeholder p { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.location-map-placeholder__address { font-size: 0.8rem !important; color: var(--text-muted) !important; font-weight: 400 !important; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

/* Full-width card spanning all columns */
.service-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--s8);
}
.service-card__body--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: start;
  width: 100%;
}
.service-card__wide-left { display: flex; flex-direction: column; }
.service-card__wide-right { margin-top: 0; }

/* Dark featured service card (middle card like reference) */
.service-card--dark {
  background: #1e2420 !important;
}
.service-card--dark .service-card__icon-wrap { background: rgba(255,255,255,0.08) !important; }
.service-card--dark .service-card__icon-wrap svg { stroke: var(--accent) !important; }
.service-card--dark .service-card__title { color: rgba(255,255,255,0.95) !important; }
.service-card--dark .service-card__desc { color: rgba(255,255,255,0.55) !important; }
.service-card--dark .service-card__list li { color: rgba(255,255,255,0.5) !important; }
.service-card--dark .service-card__list li::before { color: var(--accent) !important; }

/* Discover more link on service cards */
.service-card__discover {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s5);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
}
.service-card--dark .service-card__discover { color: var(--accent); }
.service-card__discover:hover { gap: var(--s3); }
.service-card__discover span { transition: transform 0.2s var(--ease); }
.service-card__discover:hover span { transform: translateX(4px); }

/* Notion card variant */
.service-card--notion {
  border: 1.5px solid rgba(84,100,61,0.2);
  background: linear-gradient(135deg, #ffffff 60%, rgba(250,225,149,0.12) 100%);
}
.service-card--notion:hover {
  border-color: rgba(84,100,61,0.35);
}
.service-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(84,100,61,0.08);
  border: 1px solid rgba(84,100,61,0.2);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: var(--s3);
}
.service-card--notion .service-card__discover { color: var(--primary); }

.service-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-xs);
  display: flex;
  gap: var(--s6);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__icon-wrap {
  width: 52px; height: 52px;
  min-width: 52px;
  background: var(--surface-low);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon-wrap svg { stroke: var(--primary); }

.service-card__title { margin-bottom: var(--s3); font-size: 1.05rem; }
.service-card__desc { font-size: 0.88rem; margin-bottom: var(--s5); }

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.service-card__list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: var(--s4);
  position: relative;
}
.service-card__list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.75rem;
}

/* Process Steps */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--s12);
}
.process-step {
  flex: 1;
  text-align: center;
  padding: var(--s6);
}
.process-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mycenean-gold);
  letter-spacing: 0.1em;
  background: rgba(200, 155, 18, 0.10);
  border: 1px solid rgba(200, 155, 18, 0.28);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--s4);
}
.process-step__title { margin-bottom: var(--s3); }
.process-step p { font-size: 0.88rem; }

.process-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 56px;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(173,179,180,0.4);
  border-right: 1px solid rgba(173,179,180,0.4);
  transform: rotate(45deg);
}

/* ═══════════════════════════════════════
   BOOKING SYSTEM
═══════════════════════════════════════ */

/* Step Progress */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s12);
  gap: 0;
}
.step-progress__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
}
.step-progress__circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-low);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.step-progress__item.active .step-progress__circle {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 0 0 4px rgba(84,100,61,0.15);
}
.step-progress__item.done .step-progress__circle {
  background: var(--aegean-garden);
  color: var(--on-primary);
}
.step-progress__item.done .step-progress__circle span::before { content: '\2713'; }
.step-progress__item.done .step-progress__circle span { font-size: 0; }
.step-progress__item.done .step-progress__circle::after {
  content: '\2713';
  position: absolute;
  font-size: 0.85rem;
}

.step-progress__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.step-progress__item.active .step-progress__label { color: var(--primary); }
.step-progress__item.done .step-progress__label { color: var(--primary); }

.step-progress__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
  transition: background 0.3s var(--ease);
}
.step-progress__line.done { background: var(--aegean-garden); }

/* Booking Steps */
.booking-step { animation: fadeIn 0.3s var(--ease-out); }
.booking-step.hidden { display: none; }
.booking-step__title { font-size: 1.5rem; margin-bottom: var(--s8); }
.booking-step__sub { color: var(--text-muted); margin-bottom: var(--s8); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Step 1: Rooms Grid */
.booking-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s6);
}

.booking-room-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s7, 1.75rem);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  outline: none;
}
.booking-room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.booking-room-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(84,100,61,0.1), var(--shadow-md);
}
.booking-room-card:focus-visible {
  outline: 2px solid var(--tertiary);
  outline-offset: 3px;
}

.booking-room-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.booking-room-card__name { font-size: 1.3rem; font-weight: 800; margin-bottom: var(--s1); }
.booking-room-card__tagline { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.booking-room-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: var(--s1);
  opacity: 0.85;
}
.booking-room-card__capacity {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 0.78rem;
  color: var(--aegean-garden);
  white-space: nowrap;
  background: rgba(55, 140, 80, 0.08);
  border: 1px solid rgba(55, 140, 80, 0.16);
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.booking-room-card__capacity svg { stroke: var(--aegean-garden); }

.booking-room-card__desc { font-size: 0.87rem; margin-bottom: var(--s5); line-height: 1.6; }

.booking-room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s5);
}
.booking-room-card__features span {
  padding: 3px 10px;
  background: rgba(55, 140, 80, 0.10);
  border: 1px solid rgba(55, 140, 80, 0.18);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sacred-laurel);
}

.booking-room-card__pricing {
  display: flex;
  gap: var(--s2);
  margin-bottom: var(--s6);
  flex-wrap: wrap;
}
.price-pill {
  flex: 1;
  min-width: 70px;
  background: var(--surface-low);
  border-radius: var(--r);
  padding: var(--s3) var(--s3);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.price-pill--featured {
  background: rgba(200, 155, 18, 0.08);
  border: 1px solid rgba(200, 155, 18, 0.22);
}
.price-pill span { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }
.price-pill strong { font-size: 0.9rem; color: var(--text); display: block; }
.price-pill--featured strong { color: var(--mycenean-gold); }

.booking-room-card__btn { width: 100%; justify-content: center; }

.booking-room-card__selected-badge {
  position: absolute;
  top: var(--s4);
  right: var(--s4);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s var(--ease);
}
.booking-room-card.selected .booking-room-card__selected-badge {
  opacity: 1;
  transform: scale(1);
}

/* Booking Layout (steps 2 & 3) */
.booking-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--s8);
  align-items: start;
}

.booking-sidebar-panel { position: sticky; top: 88px; }

.booking-summary-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
}
.booking-summary-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s5);
}
.summary-row {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding-block: var(--s3);
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row__label { font-size: 0.75rem; color: var(--text-muted); }
.summary-row__value { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.summary-total {
  margin-top: var(--s4);
  padding: var(--s4);
  background: var(--surface-low);
  border-radius: var(--r);
  text-align: center;
}
.summary-total__label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: var(--s1); }
.summary-total__price { font-size: 1.4rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }

/* Booking Fields */
.booking-field-group { margin-bottom: var(--s8); }
.booking-field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s4);
  display: block;
}
.field-hint { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); margin-left: var(--s2); }

/* Duration Grid */
.duration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}
.duration-option { display: flex; cursor: pointer; }
.duration-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.duration-option__content {
  flex: 1;
  padding: var(--s4) var(--s5);
  background: var(--surface-low);
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: all 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.duration-option__content strong { font-size: 0.88rem; color: var(--text); }
.duration-option__content span { font-size: 0.77rem; color: var(--text-muted); }
.duration-option:hover .duration-option__content { background: var(--surface); box-shadow: var(--shadow-xs); }
.duration-option input:checked + .duration-option__content {
  border-color: var(--primary);
  background: rgba(84,100,61,0.05);
  box-shadow: 0 0 0 2px rgba(84,100,61,0.1);
}
.duration-option input:checked + .duration-option__content strong { color: var(--primary); }

/* Calendar */
.booking-calendar {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-xs);
  max-width: 380px;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s5);
}
.calendar-month-label { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.calendar-nav {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--surface-low);
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  line-height: 1;
}
.calendar-nav:hover { background: var(--primary); color: var(--on-primary); }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--s2);
}
.calendar-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: var(--s1);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  border: none;
  background: none;
}
.cal-day:hover:not(.disabled):not(.selected) { background: var(--surface-low); }
.cal-day.other-month { color: rgba(173,179,180,0.5); pointer-events: none; }
.cal-day.today { font-weight: 700; color: var(--primary); }
.cal-day.selected {
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 700;
}
.cal-day.disabled {
  color: rgba(173,179,180,0.4);
  cursor: not-allowed;
  pointer-events: none;
}

/* Time Slots */
.time-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.booking-step-label {
  font-family: var(--font-caps);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mycenean-gold);
  margin-bottom: var(--s2);
}
.time-slot {
  padding: var(--s2) var(--s3);
  border-radius: var(--r);
  background: var(--surface-low);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  border: 2px solid transparent;
  user-select: none;
  white-space: nowrap;
  min-width: 7.5rem;
  text-align: center;
}
.time-slot:hover:not(.unavailable) { background: var(--surface); box-shadow: var(--shadow-xs); color: var(--text); }
.time-slot.selected {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}
.time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking Step Nav */
.booking-step__nav {
  display: flex;
  gap: var(--s4);
  margin-top: var(--s8);
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   BOOKING FORM (Step 3)
═══════════════════════════════════════ */
.booking-form { display: flex; flex-direction: column; gap: var(--s5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.booking-step__sub { margin-bottom: var(--s6); }
.booking-step-title-lg { font-size: 1.4rem; margin-bottom: var(--s3); }

.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.required { color: var(--tertiary); }

.form-input,
.form-textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 0.65rem var(--s4);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(90,96,97,0.4); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--tertiary);
  box-shadow: 0 0 0 3px rgba(111,94,31,0.1);
}
.form-input.error { border-color: #d94f4f; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: 0.78rem; color: #d94f4f; min-height: 1em; }

/* Booking conflict / availability error banner */
.booking-conflict-error {
  padding: var(--s4) var(--s5);
  background: #fff5f5;
  border: 1px solid #f5c6c6;
  border-radius: var(--r);
  color: #b83232;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Unavailable duration option */
.duration-option--unavailable {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}
.duration-option--unavailable::after {
  content: ' \2014 unavailable';
  font-size: 0.78em;
  font-weight: 400;
  color: var(--text-muted);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-custom {
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  transition: all 0.15s var(--ease);
  position: relative;
  margin-top: 2px;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '\2713';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--on-primary);
  font-weight: 700;
}
.checkbox-label a { color: var(--primary); font-weight: 500; }

/* ═══════════════════════════════════════
   CONFIRMATION (Step 4)
═══════════════════════════════════════ */
.booking-confirmation {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  padding: var(--s12) var(--s8);
}
.confirmation-icon {
  width: 72px; height: 72px;
  background: rgba(84,100,61,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--s6);
  animation: popIn 0.4s var(--ease-out);
}
.confirmation-icon svg { stroke: var(--primary); }
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.confirmation-title { margin-bottom: var(--s4); }
.confirmation-sub { margin-bottom: var(--s8); }

.confirmation-details {
  background: var(--surface-low);
  border-radius: var(--r-lg);
  padding: var(--s6);
  text-align: left;
  margin-bottom: var(--s6);
}
.conf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.conf-row:last-child { border-bottom: none; }
.conf-row__label { color: var(--text-muted); }
.conf-row__value { font-weight: 600; color: var(--text); }

.conf-ref {
  display: inline-block;
  background: rgba(84,100,61,0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  margin-bottom: var(--s6);
}

.confirmation-contact { font-size: 0.85rem; margin-bottom: var(--s6); }
.confirmation-contact a { color: var(--primary); font-weight: 500; }
.confirmation-actions { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }
.confirmation-secondary-actions {
  display: flex;
  justify-content: center;
  margin-bottom: var(--s5);
}
.confirmation-secondary-actions .btn {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.82rem;
}

/* ─── Payment Block ─── */
.payment-block {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s7, 1.75rem);
  margin-bottom: var(--s6);
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 420px;
  margin-inline: auto;
}
.payment-block__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--s5);
}
.payment-block__header svg { stroke: var(--text-muted); }
.payment-block__amount {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  margin-bottom: var(--s6);
}
.payment-block__amount-label { font-size: 0.78rem; color: var(--text-muted); }
.payment-block__amount-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.pay-btn {
  width: 100%;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
  font-size: 1rem;
}
.payment-block__note {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.5;
}
.payment-block__note svg { stroke: var(--primary); flex-shrink: 0; margin-top: 1px; }

/* ─── Payment Return Banners ─── */
.payment-return-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: var(--s5) auto;
  max-width: 860px;
}
.payment-return-banner--success {
  background: #e8f8f0;
  color: #1a5c38;
  border: 1px solid #a3d9b8;
}
.payment-return-banner--success svg { stroke: #27ae60; flex-shrink: 0; margin-top: 2px; }
.payment-return-banner--cancelled {
  background: #fdf0f0;
  color: #7b2020;
  border: 1px solid #f5b8b8;
}
.payment-return-banner--cancelled svg { stroke: #c0392b; flex-shrink: 0; margin-top: 2px; }
.payment-return-banner--verifying {
  background: #f0f4ff;
  color: #2c3e7a;
  border: 1px solid #b8c8f5;
}
.payment-return-banner--verifying svg { stroke: #3b5bdb; flex-shrink: 0; margin-top: 2px; }
.payment-return-banner a { color: inherit; font-weight: 600; }

/* ═══════════════════════════════════════
   PRINT / PDF INVOICE STYLES
═══════════════════════════════════════ */
@media print {
  header, footer, .step-progress, .payment-block,
  .confirmation-actions, .confirmation-secondary-actions,
  .confirmation-contact, .page-hero, .section--alt,
  nav, .hamburger, .mobile-nav, .hero__scroll-hint {
    display: none !important;
  }
  body { background: white; font-family: sans-serif; }
  .page { display: block !important; }
  .page:not(#page-booking) { display: none !important; }
  .booking-step { display: none !important; }
  #bookingStep4 { display: block !important; }
  .booking-confirmation { max-width: 100%; padding: 0; text-align: left; }
  .confirmation-title { font-size: 1.5rem; }
  .confirmation-details { border: 1px solid #ddd; border-radius: 8px; }
  .conf-row { padding: 10px 16px; }
  .section--booking { padding: 0; }
  .container { padding: 20px; max-width: 100%; }
  a { color: inherit !important; }
  .print-invoice-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 2px solid #54643d;
    margin-bottom: 24px;
  }
}

/* ═══════════════════════════════════════
   INFO CARDS (Booking page footer)
═══════════════════════════════════════ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s6);
}
.info-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s7, 1.75rem);
  box-shadow: var(--shadow-xs);
}
.info-card__icon {
  width: 44px; height: 44px;
  background: rgba(84,100,61,0.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
}
.info-card__icon svg { stroke: var(--primary); }
.info-card h3 { margin-bottom: var(--s4); }
.info-card p { font-size: 0.88rem; margin-bottom: var(--s1); }
.info-card a { color: var(--primary); font-weight: 500; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding-top: var(--s16);
}
.footer__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--s12);
  padding-bottom: var(--s12);
}
.footer__logo { height: 52px; width: auto; margin-bottom: var(--s4); }
.footer__tagline {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s5);
  letter-spacing: 0.04em;
}
.footer__address {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s4);
}
.footer__email {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.15s;
}
.footer__email:hover { color: rgba(250,225,149,0.8); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s8); }
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s5);
}
.footer__link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding-block: var(--s2);
  transition: color 0.15s;
}
.footer__link:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--s5);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="60"]  { transition-delay: 60ms; }
[data-animate][data-delay="80"]  { transition-delay: 80ms; }
[data-animate][data-delay="100"] { transition-delay: 100ms; }
[data-animate][data-delay="120"] { transition-delay: 120ms; }
[data-animate][data-delay="150"] { transition-delay: 150ms; }
[data-animate][data-delay="160"] { transition-delay: 160ms; }
[data-animate][data-delay="180"] { transition-delay: 180ms; }
[data-animate][data-delay="240"] { transition-delay: 240ms; }
[data-animate][data-delay="300"] { transition-delay: 300ms; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding-block: var(--s16); }
  .hero__content { max-width: 600px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(4, 1fr); }

  .story-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }

  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar-panel { position: static; }

  .process-steps { flex-wrap: wrap; }
  .process-connector { display: none; }
  .process-step { min-width: 140px; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero__scroll-hint { display: none; }
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__actions .btn--primary { display: none; }

  .section { padding-block: var(--s12); }
  .hero { padding-block: var(--s12); }

  h1 { font-size: 2.2rem; }
  .hero__title { font-size: 2.4rem; }

  .rooms-preview { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }

  .booking-rooms-grid { grid-template-columns: 1fr; }
  .duration-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .step-progress__label { display: none; }
  .step-progress__line { max-width: 40px; }

  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { gap: var(--s8); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: column; gap: var(--s4); }
  .service-card--wide { flex-direction: column; }
  .service-card__body--wide { grid-template-columns: 1fr; gap: var(--s6); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--s4); }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .booking-room-card__pricing { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
}

/* ─── Disabled / Coming Soon Room Card ───────────────────────────────────── */
.booking-room-card--disabled {
  position: relative;
  cursor: default;
  pointer-events: none;
  opacity: 0.72;
  filter: grayscale(0.18);
}
.booking-room-card--disabled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.35);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.booking-room-card--disabled > * { position: relative; z-index: 1; }
.booking-room-card--disabled .booking-room-card__btn {
  background: var(--text-muted, #9ca3af) !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
  opacity: 1;
}
.room-coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(200,169,110,.35);
}

/* ─── Room Photos Button ──────────────────────────────────────────────────── */
.room-photos-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: var(--s3) 0 var(--s4);
  padding: 6px 14px;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.room-photos-btn::before {
  content: '📷';
  font-size: 0.85em;
}
.room-photos-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ─── Photo Lightbox Modal ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  width: 100%;
  max-width: 960px;
  padding: var(--s6) var(--s4);
  box-sizing: border-box;
}
.lightbox__img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease;
}
.lightbox__img.is-loading { opacity: 0; }
.lightbox__close {
  position: absolute;
  top: -8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 2;
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  user-select: none;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.28); }
.lightbox__nav:disabled { opacity: 0.2; cursor: default; }
.lightbox__counter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media (max-width: 600px) {
  .lightbox__content { gap: var(--s2); padding: var(--s4) var(--s2); }
  .lightbox__nav { width: 36px; height: 36px; font-size: 1.4rem; }
  .lightbox__img { max-height: 70vh; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STOIC LOGOS — GREEK ARCHITECTURAL MOTIFS
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── Meander Divider ─────────────────────────────────────────────────────────
   A gold horizontal rule with a centred ornament.
   Reference: the Greek meander border — the oldest continuous pattern in
   Western design. Signals that ColabHub's work is systematic, not random.
   Usage: <div class="meander-divider" aria-hidden="true"></div>            */
.meander-divider {
  position: relative;
  height: 24px;
  margin-block: var(--s16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.meander-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--mycenean-gold);
  opacity: 0.35;
}
.meander-divider::after {
  content: '⸺  ✦  ⸺';
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 0 var(--s6);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--mycenean-gold);
  opacity: 0.75;
}
/* Variant for dark/alt sections */
.section--alt .meander-divider::after { background: var(--surface-low); }

/* ─── Gold Section Accent Line ────────────────────────────────────────────────
   A thin gold rule below eyebrow labels. Use on section openings.           */
.eyebrow--ruled {
  position: relative;
  padding-bottom: var(--s3);
}
.eyebrow--ruled::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--mycenean-gold);
  border-radius: 1px;
}

/* ─── Stoa Badge — Arsenal SC label for Greek service names ──────────────────*/
.stoa-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 5px 14px;
  background: rgba(200,155,18,0.08);
  border: 1px solid rgba(200,155,18,0.3);
  border-radius: var(--r-sm);
  font-family: var(--font-caps);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mycenean-gold);
  margin-bottom: var(--s4);
}

/* ─── Greek Pillar Card ───────────────────────────────────────────────────────
   Enhanced pillar card with left gold accent strip                           */
.pillar-card {
  border-left: 3px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pillar-card:hover {
  border-left-color: var(--mycenean-gold);
}
.pillar-card--featured {
  border-left-color: var(--mycenean-gold) !important;
}

/* ─── Hero badge (Arsenal SC all-caps tagline strip) ─────────────────────────*/
.hero-tagline-strip {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.hero-tagline-strip__text {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mycenean-gold);
}
.hero-tagline-strip__rule {
  width: 32px;
  height: 1px;
  background: var(--mycenean-gold);
  opacity: 0.6;
}

/* ─── CTA Banner (dark Stoic green) ──────────────────────────────────────────*/
.cta-banner {
  background: var(--deep-grove);
}
.cta-banner .cta-banner__title { color: var(--parian-marble); }
.cta-banner .cta-banner__sub   { color: var(--pale-sage); }

/* ─── Why-stat accent colours ────────────────────────────────────────────────*/
.why-stat--accent { background: var(--sacred-laurel); color: var(--parian-marble); }
.why-stat--accent .why-stat__number,
.why-stat--accent .why-stat__label { color: var(--parian-marble); }
.why-stat--green { background: var(--deep-grove); }
.why-stat--green .why-stat__number,
.why-stat--green .why-stat__label { color: var(--parian-marble); }

/* ─── Room preview card numbered accent ─────────────────────────────────────*/
.room-preview-card__number { color: var(--mycenean-gold); opacity: 0.5; }
.room-preview-card--accent { background: var(--sacred-laurel); }
.room-preview-card--accent * { color: var(--parian-marble) !important; }
.room-preview-card--accent .room-preview-card__type { color: var(--pale-sage) !important; }
.room-preview-card--accent .room-preview-card__price strong { color: var(--mycenean-gold) !important; }

/* ─── Header: white marble background on scroll ──────────────────────────────*/
.header { background: rgba(245,241,233,0.92); backdrop-filter: blur(14px); }
.header.scrolled { background: rgba(245,241,233,0.98); }

/* ─── Section footer tagline ─────────────────────────────────────────────────*/
.footer__tagline {
  font-family: var(--font-caps);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--mycenean-gold);
  margin-bottom: var(--s1) !important;
}
.footer__tagline-sub {
  font-family: var(--font-caps);
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--pale-sage);
  margin-bottom: var(--s5);
}

/* ─── Why-point Greek letter icons ──────────────────────────────────────────*/
.why-point__icon {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0;
  /* All pillars use Deep Grove text on Mycenean Gold background — consistent */
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE — GREEK EKKLESIA REDESIGN
═══════════════════════════════════════════════════════════════════════════ */

/* ─── Service name strip ─────────────────────────────────────────────────────*/
.service-name-strip {
  background: var(--deep-grove);
  padding: var(--s4) 0;
  overflow: hidden;
}
.service-name-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
}
.service-name-strip__inner span {
  font-family: var(--font-caps);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pale-sage);
}
.service-name-strip__sep {
  color: var(--mycenean-gold) !important;
  letter-spacing: 0 !important;
  font-size: 1rem !important;
}

/* ─── Greek Service sections ─────────────────────────────────────────────────*/
.greek-service__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.greek-service__inner--reverse .greek-service__header { order: 2; }
.greek-service__inner--reverse .greek-service__cards  { order: 1; }

.greek-service__name-block {
  display: flex;
  align-items: flex-start;
  gap: var(--s5);
  margin-bottom: var(--s6);
}
.greek-service__glyph {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.85;
  color: var(--sacred-laurel);
  opacity: 0.18;
  letter-spacing: -0.04em;
  user-select: none;
  flex-shrink: 0;
}
.greek-service__meta { padding-top: 0.5rem; }
.greek-service__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: var(--s2) 0 var(--s2);
  line-height: 1.15;
}
.greek-service__greek-meaning {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ionic-stone);
  margin: 0;
}
.greek-service__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 46ch;
}

/* ─── Greek service cards (3-up inside section) ──────────────────────────────*/
.greek-service__cards {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.greek-service__card {
  background: var(--surface-card);
  border-radius: var(--r);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
}
.greek-service__card--featured {
  border-left: 3px solid var(--mycenean-gold);
}
.greek-service__card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--s2);
  color: var(--deep-grove);
}
.greek-service__card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--s3);
  line-height: 1.6;
}
.greek-service__card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.greek-service__card ul li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: var(--s5);
  position: relative;
}
.greek-service__card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mycenean-gold);
  font-weight: 700;
}

/* ─── Paired service cards (Arete/Phronesis, Sophia/Ataraxia) ────────────────*/
.greek-service-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  margin-top: var(--s10);
}
.greek-service-pair__card {
  background: var(--surface-card);
  border-radius: var(--r-md);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
}
.greek-service-pair__card--dark {
  background: var(--deep-grove);
  color: var(--parian-marble);
}
.greek-service-pair__card--dark h3,
.greek-service-pair__card--dark p,
.greek-service-pair__card--dark li {
  color: var(--parian-marble);
}
.greek-service-pair__card--dark .greek-service-pair__meaning {
  color: var(--pale-sage);
}
.greek-service-pair__card--dark li::before {
  color: var(--mycenean-gold);
}
.greek-service-pair__glyph {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 1;
  color: var(--sacred-laurel);
  opacity: 0.08;
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.greek-service-pair__glyph--light {
  color: var(--parian-marble);
  opacity: 0.06;
}
.greek-service-pair__card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--s2);
}
.greek-service-pair__meaning {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ionic-stone);
  margin-bottom: var(--s4);
  display: block;
}
.greek-service-pair__card > p:not(.greek-service-pair__meaning) {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--s5);
}
.greek-service-pair__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.greek-service-pair__list li {
  font-size: 0.85rem;
  padding-left: var(--s5);
  position: relative;
}
.greek-service-pair__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mycenean-gold);
  font-weight: 700;
}

/* ─── Process step Greek label ───────────────────────────────────────────────*/
.process-step__greek {
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mycenean-gold);
  margin-bottom: var(--s2);
}

/* ─── Responsive: services ───────────────────────────────────────────────────*/
@media (max-width: 900px) {
  .greek-service__inner,
  .greek-service__inner--reverse .greek-service__header,
  .greek-service__inner--reverse .greek-service__cards {
    grid-template-columns: 1fr;
    order: unset;
  }
  .greek-service__inner { gap: var(--s10); }
  .greek-service-pair { grid-template-columns: 1fr; }
  .service-name-strip__inner { gap: var(--s4); }
}

/* ═══════════════════════════════════════
   BOOKING — HERO TEMPLE WATERMARK
   Ghosted columns sit behind the text, blended
   into the Parian Marble background like the
   Lambda watermark used elsewhere in the brand.
═══════════════════════════════════════ */
.page-hero--booking {
  position: relative;
  overflow: hidden;
}

/* ── Image watermarks (booking temple + about column) ─────────────────────────
   Both use the same container class. mix-blend-mode: multiply dissolves the
   PNG's light background into Parian Marble, leaving only the line art.
   Sized so the drawing's visual footprint ≈ the Lambda/Omega character size.
   PNG images have internal whitespace, so width must be larger than text chars.
─────────────────────────────────────────────────────────────────────────────── */
.page-hero--booking,
.page-hero--about {
  position: relative;
  overflow: hidden;
}

.booking-hero__temple-watermark {
  position: absolute;
  right: -2%;
  top: -6%;
  width: 56%;
  max-width: 640px;
  pointer-events: none;
  user-select: none;
}

.booking-hero__temple-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.048;
}

@media (max-width: 760px) {
  .booking-hero__temple-watermark {
    right: -10%;
    top: -4%;
    width: 70%;
  }
}

/* ═══════════════════════════════════════
   NEXUS — FULL-WIDTH EVENTS CARD
   Spans the full grid width below the three boardroom cards.
   Horizontal two-column layout: info left, action right.
═══════════════════════════════════════ */
.booking-room-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 var(--s10);
  align-items: start;
  border-top: 2px solid var(--surface-low);
  margin-top: var(--s2);
  padding-top: var(--s8);
  /* Slightly different background to distinguish from boardrooms */
  background: linear-gradient(135deg, var(--surface-card) 0%, #f2efe8 100%);
}

.booking-room-card--wide .booking-room-card__wide-left {
  grid-column: 1;
  grid-row: 1;
}

.booking-room-card--wide .booking-room-card__wide-right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
  min-width: 240px;
}

.booking-room-card--wide .booking-room-card__selected-badge {
  grid-column: 1 / -1;
}

/* On wide card, header doesn't need a bottom border */
.booking-room-card--wide .booking-room-card__header {
  margin-bottom: var(--s3);
}

/* Tighten desc on wide card */
.booking-room-card--wide .booking-room-card__desc {
  max-width: 540px;
  margin-bottom: var(--s3);
}

/* Right column: features flow horizontally */
.booking-room-card--wide .booking-room-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

/* Right column: pricing pills stack neatly */
.booking-room-card--wide .booking-room-card__pricing {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  width: 100%;
}

.booking-room-card--wide .price-pill {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: var(--s2) var(--s3);
}

/* Button full width in right column */
.booking-room-card--wide .booking-room-card__btn {
  width: 100%;
}

@media (max-width: 760px) {
  .booking-room-card--wide {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
  .booking-room-card--wide .booking-room-card__wide-right {
    min-width: 0;
  }
}

/* ═══════════════════════════════════════
   BOOKING — EVENTS BADGE (Nexus card)
═══════════════════════════════════════ */
.booking-room-card__events-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s3);
  padding: var(--s1) var(--s3);
  background: rgba(200, 155, 18, 0.10);
  border: 1px solid rgba(200, 155, 18, 0.30);
  border-radius: 100px;
  font-family: var(--font-caps);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mycenean-gold);
}

.booking-room-card__events-badge::before {
  content: '◆';
  font-size: 0.5rem;
}

/* ═══════════════════════════════════════
   TIME RANGE PICKER
═══════════════════════════════════════ */
.time-range-picker {
  display: flex;
  align-items: flex-end;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-top: var(--s4);
}

.time-range-picker__field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  flex: 1;
  min-width: 140px;
}

.time-range-picker__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.time-range-picker__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: var(--s3) var(--s10) var(--s3) var(--s4);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface-card)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23AFA89A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    no-repeat right var(--s4) center;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.time-range-picker__select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 98, 48, 0.12);
}

.time-range-picker__select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.time-range-picker__arrow {
  padding-bottom: var(--s3);
  font-size: 1.2rem;
  color: var(--ionic-stone);
  flex-shrink: 0;
  line-height: 2.6;
}

.time-range-summary {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-top: var(--s4);
  padding: var(--s3) var(--s5);
  background: rgba(28, 98, 48, 0.06);
  border: 1px solid rgba(28, 98, 48, 0.15);
  border-radius: var(--r);
}

.time-range-summary__duration {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.time-range-summary__price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: auto;
}

@media (max-width: 600px) {
  .time-range-picker { flex-direction: column; }
  .time-range-picker__arrow { display: none; }
  .time-range-picker__field { min-width: 100%; }
}

/* ═══════════════════════════════════════
   AI CALLOUT STRIP
═══════════════════════════════════════ */
.ai-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s10);
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10) var(--s12);
  box-shadow: var(--shadow-sm);
}

.ai-callout__content { flex: 1; max-width: 560px; }
.ai-callout__content h2 { margin-bottom: var(--s4); }
.ai-callout__content p { margin-top: var(--s3); }

.ai-callout__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}

.ai-callout__note {
  font-size: 0.78rem;
  color: var(--ionic-stone);
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .ai-callout {
    flex-direction: column;
    padding: var(--s8);
    gap: var(--s6);
  }
  .ai-callout__action { width: 100%; }
  .ai-callout__action .btn { width: 100%; justify-content: center; }
}
