
:root {
  /* Brand palette — Forest Green / Sage Green / Champagne Gold / Warm Ivory / Soft White / Charcoal */
  --background: 0 0% 100%;        /* White */
  --foreground: 162 45% 24%;      /* Holy green — brand primary */
  --card: 35 28% 90%;
  --card-foreground: 152 31% 18%;
  --popover: 35 32% 93%;
  --popover-foreground: 152 31% 18%;
  --primary: 152 31% 18%;
  --primary-foreground: 45 29% 97%;
  --secondary: 35 24% 89%;
  --secondary-foreground: 152 31% 18%;
  --muted: 35 24% 89%;
  --muted-foreground: 117 11% 32%; /* Sage Green, darkened for AA contrast on ivory */
  --accent: 40 46% 60%;            /* Champagne Gold #C8A96A */
  --accent-foreground: 152 31% 18%;
  --destructive: 0 62% 42%;
  --destructive-foreground: 45 29% 97%;
  --border: 35 18% 84%;
  --input: 35 18% 84%;
  --ring: 40 46% 60%;
  --radius: 0.5rem;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono: ui-monospace, monospace;

  /* Raw hex, for the rare spot that needs it directly rather than via hsl() */
  --brand-forest: #0F6B55;
  --brand-sage: #6B7F6A;
  --brand-gold: #D4AF37;
  --brand-ivory: #F2EDE6;
  --brand-white: #ffffff;
  --brand-charcoal: #1A1A1A;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
* { border-color: hsl(var(--border)); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button, input, textarea { border-radius: 8px; }

:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
}

p { margin: 0; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.elea-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.elea-section {
  padding-top: clamp(1.75rem, 1.25rem + 1.2vw, 3rem);
  padding-bottom: clamp(1.75rem, 1.25rem + 1.2vw, 3rem);
}
.elea-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d9c08a;
  font-weight: 600;
}
.elea-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1.5rem + 1.3vw, 2.5rem);
  color: hsl(var(--foreground));
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.elea-display {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: hsl(var(--foreground));
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.elea-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.elea-link {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--foreground));
  font-weight: 600;
  transition: color .3s;
}
.elea-link:hover { color: hsl(var(--accent)); }
.elea-button-primary,
.elea-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 2rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  min-height: 48px;
  transition: all .25s ease;
  border: 1px solid transparent;
  border-radius: 12px;
}
.elea-button-primary {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  box-shadow: 0 8px 24px hsl(var(--foreground) / 0.16);
}
.elea-button-primary:hover {
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
  transform: translateY(-1px);
  box-shadow: 0 10px 28px hsl(var(--accent) / 0.28);
}
.elea-button-outline {
  background: transparent;
  border-color: hsl(var(--foreground) / 0.35);
  color: hsl(var(--foreground));
}
.elea-button-outline:hover {
  background: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
  color: hsl(var(--background));
}
.elea-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: border-color .3s;
}
.elea-input::placeholder {
  color: hsl(var(--muted-foreground) / 0.6);
}
.elea-input:focus {
  border-color: hsl(var(--accent));
  outline: none;
}
textarea.elea-input { resize: vertical; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease-out, transform .2s ease-out;
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
.fade-up { animation: fade-up 0.25s ease-out; }
.slide-in-right { animation: slide-in-right 0.25s ease-out; }

.text-foreground { color: hsl(var(--foreground)); }
.text-background { color: hsl(var(--background)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.bg-background { background: hsl(var(--background)); }
.bg-card { background: hsl(var(--card)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-foreground { background: hsl(var(--foreground)); }
.bg-accent { background: hsl(var(--accent)); }
.border-border { border-color: hsl(var(--border)); }
.border-accent { border-color: hsl(var(--accent)); }
.rounded { border-radius: var(--radius); }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(90deg, #c5a36f 0%, #d5bc8b 35%, #c3a36b 100%);
  border-bottom: 1px solid rgba(66, 52, 29, 0.18);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  transition: padding .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  box-shadow: 0 4px 20px hsl(var(--foreground) / 0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.desktop-nav a {
  position: relative;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color .3s ease;
  padding-bottom: 2px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: hsl(var(--accent));
  transition: right .3s ease;
}
.desktop-nav a:hover { color: hsl(var(--accent)); }
.desktop-nav a:hover::after { right: 0; }
.nav-utility-row {
  border-bottom: 1px solid rgba(18, 58, 49, 0.10);
  background: rgba(15, 107, 85, 0.06);
}
.nav-utility-inner {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.nav-utility-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.nav-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  transition: all 0.2s ease;
}
.nav-login {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(23,79,67,0.16);
  color: hsl(var(--foreground));
}
.nav-signup {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  box-shadow: 0 8px 18px rgba(23,79,67,0.14);
}
.nav-auth-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .2rem .25rem;
  border: 1px solid rgba(21, 60, 50, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.lang-switch span {
  color: rgba(21, 60, 50, 0.7);
  font-size: 11px;
  font-weight: 700;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: rgba(21, 60, 50, 0.85);
  padding: .38rem .6rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .2s ease;
  cursor: pointer;
}
.lang-switch button.active {
  color: hsl(var(--background));
  background: rgba(17, 76, 62, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.lang-switch button:hover {
  color: hsl(var(--foreground));
  background: rgba(255,255,255,0.12);
}
.navbar-book {
  display: none;
  padding: .95rem 1.4rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  border: none;
  border-radius: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  min-height: 48px;
  transition: all .3s ease;
}
.navbar-book:hover { background: hsl(var(--accent)); color: hsl(var(--foreground)); }
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(21, 60, 50, 0.2);
  color: hsl(var(--foreground));
  border-radius: 10px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  z-index: 250;
  background: hsl(var(--background));
  display: flex;
  flex-direction: column;
  border-left: 1px solid hsl(var(--border));
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(110%);
  transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
}
.mobile-menu-header .booking-close {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(23, 79, 67, 0.06);
  border: 1px solid rgba(23, 79, 67, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #174F43;
  flex-shrink: 0;
}
.mobile-menu-header .booking-close svg {
  width: 20px;
  height: 20px;
}
.mobile-menu-nav {
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}

/* Membership CTA */
.membership-header { max-width: 760px; }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 340px;
  padding: 1.5rem 1.3rem 1.25rem;
  border-radius: 26px;
  border: 1px solid rgba(21, 60, 50, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(244,239,231,0.92));
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
  box-shadow: 0 18px 45px rgba(16, 26, 22, 0.06);
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(160, 128, 61, 0.94), rgba(212,175,55,0.9));
}
.plan-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 26px 60px rgba(16, 26, 22, 0.12);
  filter: saturate(1.08);
}
.plan-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(21, 60, 50, 0.08);
}
.plan-tier {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  font-weight: 700;
}
.plan-title {
  font-size: clamp(1.8rem, 1.55rem + 0.45vw, 2.35rem);
  font-weight: 500;
  color: hsl(var(--foreground));
  line-height: 1.08;
}
.plan-price {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: hsl(var(--foreground));
  text-align: right;
}
.plan-features {
  margin: 0;
  padding-left: 1.1rem;
  color: hsl(var(--muted-foreground));
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  line-height: 1.55;
  list-style: disc;
}
.plan-features li::marker { color: rgba(212,175,55,0.82); }
.plan-starter {
  background: linear-gradient(180deg, rgba(15, 107, 85, 0.97), rgba(19, 67, 57, 0.94));
  border-color: rgba(185, 239, 219, 0.45);
  box-shadow: 0 18px 45px rgba(15, 107, 85, 0.25), 0 0 25px rgba(19, 136, 110, 0.16);
}
.plan-starter::before { background: linear-gradient(90deg, rgba(147, 254, 223, 1), rgba(80, 166, 140, 0.9)); }
.plan-starter .plan-title,
.plan-starter .plan-price,
.plan-starter .plan-tier,
.plan-starter .plan-features { color: rgba(255,255,255,0.94); }
.plan-starter .plan-card-header { border-color: rgba(255,255,255,0.12); }
.plan-starter .plan-features li::marker { color: rgba(171, 255, 221, 0.9); }

.plan-basic {
  background: linear-gradient(180deg, rgba(244,245,247,1), rgba(219,223,228,0.98));
  border-color: rgba(175, 179, 183, 0.72);
  box-shadow: 0 18px 46px rgba(120, 130, 140, 0.15), 0 0 20px rgba(187, 196, 204, 0.14);
}
.plan-basic::before { background: linear-gradient(90deg, rgba(147, 151, 156, 1), rgba(210, 214, 220, 0.9), rgba(237, 238, 241, 1)); }
.plan-basic .plan-title,
.plan-basic .plan-price,
.plan-basic .plan-tier,
.plan-basic .plan-features { color: rgba(30, 34, 39, 0.88); }
.plan-basic .plan-features li::marker { color: rgba(120, 128, 138, 0.9); }

.plan-premium {
  background: linear-gradient(180deg, rgba(111, 76, 47, 0.98), rgba(63, 45, 31, 0.96));
  border-color: rgba(216, 170, 110, 0.5);
  box-shadow: 0 20px 52px rgba(111, 76, 47, 0.22), 0 0 28px rgba(187, 126, 77, 0.18);
}
.plan-premium::before { background: linear-gradient(90deg, rgba(186, 124, 72, 1), rgba(242, 190, 125, 0.9), rgba(211, 146, 70, 1)); }
.plan-premium .plan-title,
.plan-premium .plan-price,
.plan-premium .plan-tier,
.plan-premium .plan-features { color: rgba(255,241,227,0.95); }
.plan-premium .plan-card-header { border-color: rgba(255,255,255,0.12); }
.plan-premium .plan-features li::marker { color: rgba(234, 189, 118, 0.92); }

.plan-vip {
  background: linear-gradient(180deg, rgba(165, 126, 37, 0.98), rgba(97, 74, 23, 0.96));
  border-color: rgba(240, 207, 118, 0.55);
  box-shadow: 0 24px 60px rgba(165, 126, 37, 0.28), 0 0 32px rgba(219, 170, 51, 0.22);
}
.plan-vip::before { background: linear-gradient(90deg, rgba(255, 224, 149, 1), rgba(231, 184, 70, 0.96), rgba(255, 255, 255, 0.9)); }
.plan-vip .plan-title,
.plan-vip .plan-price,
.plan-vip .plan-tier,
.plan-vip .plan-features { color: rgba(255,250,234,0.97); }
.plan-vip .plan-card-header { border-color: rgba(255,255,255,0.14); }
.plan-vip .plan-features li::marker { color: rgba(255, 223, 143, 0.9); }

.plan-card.is-featured { transform: scale(1.015); }
.plan-card.is-featured:hover { transform: translateY(-8px) scale(1.015); }
.membership-cta-row { display: flex; align-items: center; justify-content: center; }

/* Dashboard styles */
.dashboard-shell { display: flex; gap: 2rem; align-items: flex-start; }
.dashboard-sidebar { width: 260px; background: linear-gradient(180deg, hsl(var(--brand-ivory)), hsl(var(--brand-ivory) / 0.95)); border-radius: 12px; padding: 1.25rem; box-shadow: 0 12px 40px rgba(10,10,10,0.06); border: 1px solid hsl(var(--border)); }
.dashboard-sidebar .sidebar-brand { display:flex; align-items:center; gap:0.75rem; margin-bottom:1rem; }
.sidebar-logo { width:44px; height:44px; border-radius:8px; object-fit:cover; }
.sidebar-user { font-weight:700; color: hsl(var(--foreground)); }
.sidebar-nav { display:flex; flex-direction:column; gap:0.5rem; margin-top:1rem; }
.dash-nav-btn { background:transparent; border:none; text-align:left; padding:0.6rem 0.75rem; border-radius:8px; font-weight:700; color: hsl(var(--muted-foreground)); cursor:pointer; }
.dash-nav-btn.active, .dash-nav-btn:hover { background: hsl(var(--foreground)); color: hsl(var(--background)); box-shadow: 0 8px 20px hsl(var(--foreground) / 0.12); }
.sidebar-footer { margin-top: 1.5rem; font-size: 14px; color: hsl(var(--muted-foreground)); }
.dashboard-main { flex: 1; background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 12px 40px rgba(10,10,10,0.06); border: 1px solid hsl(var(--border)); }
.dashboard-main-header { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:1rem; }
.dashboard-main-content { min-height: 320px; }
.dashboard-overview .dashboard-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:1rem; }
.dashboard-card { padding:1rem; border-radius:10px; background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--card) / 0.96)); border:1px solid hsl(var(--border)); }
.vip-card { border: 1px solid hsl(var(--accent)); box-shadow: 0 10px 30px hsl(var(--accent) / 0.12); }
.services-grid-small { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:1rem; }
.service-tile { padding:1rem; border-radius:10px; background: linear-gradient(180deg, #fff, #fff); border:1px solid hsl(var(--border)); }
.guest-book-modal { position: fixed; inset: 0; display:flex; align-items:center; justify-content:center; z-index:9999; background: rgba(0,0,0,0.4); opacity:0; transition:opacity .2s ease; }
.guest-book-modal.open { opacity:1; }
.guest-book-modal .elea-modal-inner { width: min(520px, 92vw); background: hsl(var(--background)); padding:1.25rem; border-radius:12px; box-shadow: 0 18px 60px rgba(0,0,0,0.28); }
.guest-book-header { display:flex; align-items:flex-start; justify-content:space-between; gap:1rem; }
.guest-book-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 700;
  color: hsl(var(--foreground));
}
.guest-book-close-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(23,79,67,0.14);
  background: rgba(23,79,67,0.04);
  color: #174F43;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.guest-book-body { margin-top: 0.5rem; }
.guest-book-body p { margin-top: 0; margin-bottom: 0; }
.guest-actions { display:flex; gap: .75rem; align-items:center; margin-top:1rem; flex-wrap: wrap; }

.membership-landing-header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.membership-landing-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  background: linear-gradient(180deg, hsl(var(--brand-ivory)), hsl(var(--background)));
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.membership-landing-plan {
  display: grid;
  gap: 0.6rem;
  align-content: center;
  background: linear-gradient(135deg, #1a5644, #0f3d34);
  color: white;
  padding: 1.25rem;
  border-radius: 14px;
}
.membership-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.membership-landing-plan strong {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 700;
}
.membership-landing-plan small {
  opacity: 0.8;
  font-size: 0.82rem;
}
.membership-features-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  align-content: center;
}
.membership-features-list li {
  position: relative;
  padding-left: 1.4rem;
  color: hsl(var(--muted-foreground));
}
.membership-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--foreground));
  font-weight: 700;
}
.membership-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.membership-service-card {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}

.notification-bell-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.notification-bell {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(21, 60, 50, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: hsl(var(--foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.notification-bell:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(16, 26, 22, 0.08);
}
.notification-bell svg {
  width: 1.15rem;
  height: 1.15rem;
}
.notification-badge {
  position: absolute;
  top: -0.2rem;
  right: -0.2rem;
  min-width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #0f3d34;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
  border: 2px solid #fff;
}
.notification-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  width: min(22rem, 82vw);
  max-height: 22rem;
  overflow: hidden;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(21, 60, 50, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 31, 28, 0.14);
  z-index: 60;
}
.notification-panel.hidden { display: none; }
.notification-panel-header {
  padding: 0.9rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(21, 60, 50, 0.08);
  color: hsl(var(--foreground));
}
.notification-list {
  max-height: 18.5rem;
  overflow-y: auto;
}
.notification-item {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(21, 60, 50, 0.08);
  color: hsl(var(--foreground));
}
.notification-item:last-child { border-bottom: none; }
.notification-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}
.notification-item p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
  line-height: 1.45;
}
.notification-item small {
  display: inline-block;
  margin-top: 0.35rem;
  color: rgba(17, 53, 44, 0.62);
  font-size: 0.68rem;
}
.notification-empty {
  padding: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
}

/* Dashboard */
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dashboard-card { padding: 1.25rem; border-radius: 12px; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); }
.starter-card { background: linear-gradient(180deg,#fff,#fbfbfb); }
.premium-card { background: linear-gradient(180deg,#fffaf0,#fff6ec); border-color: rgba(200,170,110,0.16); }
.vip-card { background: linear-gradient(180deg,#fff8f2,#fff3ea); border-color: rgba(212,175,55,0.22); box-shadow: 0 12px 34px rgba(212,175,55,0.06); }

/* Admin user row */
.admin-user-row { padding: 1rem; border-radius: 8px; border: 1px solid hsl(var(--border)); background: hsl(var(--popover)); margin-bottom: .75rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; }

/* Small utility spacing */
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mobile-menu-nav a {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: hsl(var(--foreground));
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(21, 60, 50, 0.08);
  opacity: 0;
  transform: translateY(12px);
  animation: fade-up 0.35s ease-out forwards;
}
.mobile-menu-footer {
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-lang-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-row {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.logo-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 32px;
  height: 32px;
}
.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--brand-forest);
}
.logo-tagline {
  margin-top: .375rem;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-sage);
}
.logo-dark .logo-wordmark,
.logo-dark .logo-mark svg { stroke: var(--brand-forest); fill: none; }
.logo-dark .logo-mark svg rect { fill: var(--brand-forest); }
.logo-dark .logo-mark svg circle { fill: var(--brand-forest); }
.logo-light .logo-wordmark,
.logo-light .logo-mark svg { stroke: var(--brand-white); fill: none; }
.logo-light .logo-mark svg rect { fill: var(--brand-white); }
.logo-light .logo-mark svg circle { fill: var(--brand-white); }
.logo-light .logo-tagline { color: hsl(var(--background) / 0.65); }
/* Consistent circular logo appearance */
.site-logo, .logo-img {
  display: inline-block;
  height: 68px !important;
  width: auto !important;
  max-width: 220px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transform-origin: center;
}

@media (max-width:900px){
  .site-logo { height: 56px !important; }
  .logo-img { height: 56px !important; }
}

@media (max-width:560px){
  .site-logo, .logo-img { height: 48px !important; }
}

.site-footer {
  background: linear-gradient(180deg, hsl(var(--foreground)) 0%, color-mix(in srgb, hsl(var(--foreground)) 90%, black 10%) 100%);
  color: hsl(var(--background));
  box-shadow: 0 -8px 40px hsl(var(--foreground) / 0.18) inset;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.footer-inner { padding-top: 3rem; padding-bottom: 2.5rem; }
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-direction: column; /* vertical quick links */
  gap: .6rem;
  min-width: 160px;
}
.footer-links a,
.footer-legal a {
  color: hsl(var(--background) / 0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: color .3s ease;
}
.footer-links a:hover,
.footer-legal a:hover { color: hsl(var(--accent)); }
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid hsl(var(--background) / 0.18);
  border-radius: 999px;
  color: hsl(var(--background) / 0.85);
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}
.footer-socials a:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--accent));
  border-color: hsl(var(--accent));
}
/* Footer Services column: vertical list styling */
.footer-services {
  margin-top: 0.25rem;
}
.footer-services-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: hsl(var(--background) / 0.92);
  margin-bottom: 0.5rem;
}
.footer-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-services-list a {
  color: hsl(var(--background) / 0.9);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}
.footer-services-list a:hover {
  color: hsl(var(--accent));
}
.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--background) / 0.15);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; justify-content: center; }
.footer-legal a {
  font-size: 10px;
  color: hsl(var(--background) / 0.6);
}
.footer-lang { display:flex; align-items:center; gap:.75rem; }
.footer-lang button {
  background: transparent;
  border: none;
  padding: 0;
  color: hsl(var(--background) / 0.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: color .3s ease;
}
.footer-lang button.active { color: hsl(var(--background)); }
.footer-lang button:hover { color: hsl(var(--accent)); }
.footer-copyright { font-size:10px; text-transform:uppercase; letter-spacing:0.15em; font-weight:600; color:hsl(var(--background) / 0.5); }

.hero {
  position: relative;
  height: calc(100vh - 76px);
  min-height: 620px;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: hsl(var(--background));
}
.hero-bg,
.hero-overlay,
.hero-bottom-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(242,237,230,.92) 0%, rgba(242,237,230,.68) 24%, rgba(242,237,230,.22) 50%, rgba(242,237,230,.05) 100%);
}
.hero-bottom-overlay {
  background: linear-gradient(180deg, rgba(242,237,230,0) 0%, rgba(242,237,230,0.08) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}
.hero-inner {
  max-width: 44rem;
  padding-left: 0.35rem;
}
@media (max-width: 767px) {
  .hero {
    height: 78vh;
    min-height: 500px;
  }
  .hero-content {
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
  }
  .hero-inner {
    max-width: 100%;
  }
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #d9c08a;
}
.hero-headline {
  margin-top: 1.25rem;
  font-size: clamp(3.2rem, 3vw + 2.2rem, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: #174F43;
  max-width: 700px;
}
.hero-body {
  margin-top: 1.5rem;
  max-width: 34rem;
  color: rgba(23, 79, 67, 0.78);
  font-size: 1.05rem;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  margin-top: 2.25rem;
  max-width: 680px;
}
.hero-actions .elea-button-primary,
.hero-actions .elea-button-outline {
  flex: 1 1 0;
  min-height: 72px;
  font-size: 13px;
  letter-spacing: 0.16em;
  border-radius: 14px;
}
.hero-actions .elea-button-primary {
  background: #174F43;
  color: #ffffff;
  border-color: #174F43;
  box-shadow: 0 8px 24px rgba(23, 79, 67, 0.16);
}
.hero-actions .elea-button-primary:hover {
  background: #B6965F;
  border-color: #B6965F;
  color: #174F43;
}
.hero-actions .elea-button-outline {
  background: #EAD8B5;
  border-color: #D9B978;
  color: #174F43;
  box-shadow: 0 8px 22px rgba(218, 185, 120, 0.25);
}
.hero-actions .elea-button-outline:hover {
  background: #D9C59B;
  border-color: #C7A968;
  color: #174F43;
}
.hero-manifesto {
  display: none;
}

/* Promotions styles */
.promotions-hero { padding-top: 6rem; padding-bottom: 2.5rem; background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--brand-ivory) / 0.8) 100%); }
.promo-card { background: hsl(var(--background)); border: 1px solid hsl(var(--border)); padding: 2rem; border-radius: 14px; box-shadow: 0 12px 40px rgba(23,79,67,0.06); max-width: 980px; margin: 0 auto 1.5rem; }
.promo-card.premium { background: linear-gradient(180deg, hsl(var(--brand-ivory)), hsl(var(--background))); border-color: hsl(var(--border)); }
.promo-card h2 { font-family: var(--font-heading); font-size: 1.45rem; margin-bottom: .5rem; color: hsl(var(--foreground)); }
.promo-card h3 { margin-top: 1rem; font-size: 1.05rem; color: hsl(var(--muted-foreground)); }
.promo-terms { margin-top: .75rem; padding-left: 1.1rem; color: hsl(var(--muted-foreground)); }
.promo-terms li { margin-bottom: .55rem; }
.referral-forms { margin-top: 1rem; display: grid; gap: 1.25rem; }
.referral-forms form { max-width: 680px; }
.referral-forms .elea-input { background: transparent; border-bottom: 1px solid hsl(var(--border)); padding: .6rem 0; }
.referral-forms .mt-2 { margin-top: .5rem; }
.referral-forms .mt-3 { margin-top: .75rem; }

/* Homepage promo grid — luxurious gold and holy green accents */
body[data-page="home"] .promo-grid {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 1rem;
}
body[data-page="home"] .promo-grid .promo-card {
  flex: 0 0 320px;
  max-width: 320px;
  background: linear-gradient(180deg, #F7EBD6 0%, #F0E2C6 100%);
  border: 1px solid rgba(172,130,55,0.18);
  box-shadow: 0 18px 48px rgba(203,163,85,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
  color: hsl(var(--brand-forest));
  text-align: left;
  padding: 1.75rem;
  border-radius: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}
body[data-page="home"] .promo-grid .promo-card img { border-radius: 10px; margin-bottom: 12px; box-shadow: 0 8px 24px rgba(203,163,85,0.08); }

/* Middle card emphasised in 'holy' green */
body[data-page="home"] .promo-grid .promo-card:nth-child(2) {
  background: linear-gradient(180deg, #0F6B55 0%, #0B4E40 100%);
  color: #fff;
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 20px 60px rgba(11,75,57,0.28), 0 2px 0 rgba(255,255,255,0.06) inset;
}
body[data-page="home"] .promo-grid .promo-card:nth-child(2) .promo-eyebrow,
body[data-page="home"] .promo-grid .promo-card:nth-child(2) h3,
body[data-page="home"] .promo-grid .promo-card:nth-child(2) p,
body[data-page="home"] .promo-grid .promo-card:nth-child(2) a { color: rgba(255,255,255,0.95); }

body[data-page="home"] .promo-grid .promo-card .promo-card-body { text-align: left; }
body[data-page="home"] .promo-grid .promo-card:hover { transform: translateY(-6px); box-shadow: 0 26px 70px rgba(203,163,85,0.18); }

@media (max-width: 900px) {
  body[data-page="home"] .promo-grid { justify-content: center; }
  body[data-page="home"] .promo-grid .promo-card { flex: 1 1 100%; max-width: 640px; }
}

@media (max-width: 900px) {
  .promo-card { padding: 1.25rem; margin: 0 1rem 1rem; }
}

.section { background: hsl(var(--background)); }
.dark-panel { background: hsl(var(--foreground)); color: hsl(var(--background)); }
.why-elea-wrap { display: grid; gap: 2rem; }
.why-elea-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid hsl(var(--border));
  border-left: 1px solid hsl(var(--border));
  margin-top: 2.5rem;
}
.feature-cell {
  border-right: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.75rem 1.5rem;
  transition: background .3s ease;
}
.feature-cell:hover { background: hsl(var(--accent) / 0.06); }
.feature-number {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: hsl(var(--accent));
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: .75rem;
  color: hsl(var(--foreground));
}
.feature-desc { font-size: 0.9rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.service-card {
  display: block;
  border: 1px solid hsl(var(--border));
  padding: 0;
  background: transparent;
  text-align: left;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  border-color: hsl(var(--foreground) / 0.4);
  box-shadow: 0 12px 30px hsl(var(--foreground) / 0.08);
}
.service-card-inner { padding: 0 0 1.2rem; }
.service-image-wrap { position: relative; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 1.1rem; background: hsl(var(--secondary)); }
.service-image { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease-out; }
.service-card:hover .service-image { transform: scale(1.05); }
.service-card-content { padding: 0 1.25rem; }
.service-card-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; margin-bottom: .5rem; color: hsl(var(--foreground)); }
.service-card-desc { margin-bottom: 1.1rem; }
.service-card-link { display: inline-flex; align-items: center; gap: .5rem; }
.service-card-link svg { width: 15px; height: 15px; transition: transform .3s ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }
.service-card:hover .service-card-link { color: hsl(var(--accent)); }

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.before-after-slider-wrap {
  width: min(100%, 1080px);
  margin: 0 auto;
}
.beforeafter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.4rem;
  margin-bottom: 1.5rem;
}
.beforeafter-tabs button {
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  color: hsl(var(--background) / 0.55);
  padding: 0 0 .3rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: all .3s ease;
}
.beforeafter-tabs button:hover { color: hsl(var(--background) / 0.85); }
.beforeafter-tabs button.active {
  color: hsl(var(--background));
  border-color: hsl(var(--accent));
}
.ba {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 1px solid hsl(var(--background) / 0.2);
  background: rgba(255,255,255,0.04);
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba .ba-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.ba .ba-clip img {
  width: 100%;
  height: 100%;
}
.ba .ba-divider {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba .ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 700;
  pointer-events: none;
}
.ba-hint {
  margin-top: 0.7rem;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.before-after-note {
  margin-top: 1.25rem;
  color: hsl(var(--background) / 0.5);
  font-size: 0.7rem;
  font-style: italic;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.difference-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid hsl(var(--border));
}
.difference-image img { width: 100%; height: 100%; object-fit: cover; }
.difference-bullet-list { display: flex; flex-direction: column; gap: 1rem; margin: 0 0 2.5rem; padding: 0; }
.difference-bullet-list li {
  list-style: none;
  display: flex;
  gap: 1rem;
  color: hsl(var(--foreground));
}
.difference-bullet-list li span:first-child { flex-shrink: 0; color: hsl(var(--accent)); font-weight: 700; }

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.reviews-grid { display:grid; gap:1.5rem; }
.reviews-placeholder {
  border: 1px dashed hsl(var(--border));
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  grid-column: 1 / -1;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.promo-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  background: rgba(15, 107, 85, 0.04);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}
.promo-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.promo-card-body {
  padding: 1.2rem 1.1rem 1.2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}
.promo-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}
.promo-card p {
  margin: 0 0 1rem;
  color: hsl(var(--muted-foreground));
}
.promo-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.7rem 1rem;
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.review-item-card {
  background: rgba(255,255,255,0.5);
  border: 1px solid hsl(var(--border));
  padding: 1.2rem;
}
.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.review-name { font-weight: 700; }
.review-rating { color: hsl(var(--gold)); letter-spacing: 0.12em; }
.review-service {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.7rem;
}
.review-item-card p { margin: 0; color: hsl(var(--foreground)); }
.review-card { border-top: 1px solid hsl(var(--border)); padding-top: 1.25rem; }
.review-stars { display:flex; gap:.2rem; margin-bottom: 1rem; }
.review-stars svg { width:16px; height:16px; }
.review-quote {
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  color: hsl(var(--foreground));
}
.review-name { font-size:0.85rem; font-weight:700; }
.review-service { margin-top: .3rem; }
.review-empty { border-top: 1px solid hsl(var(--border)); padding-top: 1.25rem; color: hsl(var(--muted-foreground)); font-style: italic; }

.satisfaction-band {
  background: hsl(var(--secondary));
  padding-top: clamp(3rem, 2.5rem + 3vw, 6rem);
  padding-bottom: clamp(3rem, 2.5rem + 3vw, 6rem);
}

/* Use Elea logo as a subtle background watermark on the home satisfaction card */
body[data-page="home"] .satisfaction-band {
  position: relative;
  overflow: hidden;
}
body[data-page="home"] .satisfaction-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/best.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 540px;
  opacity: 0.26;
  filter: grayscale(10%) blur(0px) contrast(1.02) drop-shadow(0 6px 18px rgba(11,75,57,0.14));
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
body[data-page="home"] .satisfaction-band .satisfaction-inner { position: relative; z-index: 1; }
@media (max-width: 900px) {
  body[data-page="home"] .satisfaction-band::before { background-size: 320px; opacity: 0.20; background-position: center; mix-blend-mode: normal; filter: grayscale(5%) contrast(1.02); }
}
.satisfaction-inner { max-width: 54rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.satisfaction-text {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.1rem + 2.4vw, 2.4rem);
  line-height: 1.4;
  font-weight: 300;
  color: hsl(var(--foreground));
}

.contact-grid { display:grid; gap:2rem; }
.contact-list { display:flex; flex-direction:column; border-top:1px solid hsl(var(--border)); }
.contact-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1.25rem 0;
  border-bottom:1px solid hsl(var(--border));
  transition: color .3s ease, padding-left .3s ease;
}
.contact-row:hover { color: hsl(var(--accent)); padding-left: .35rem; }
.contact-row-left { display:flex; align-items:center; gap:1rem; min-width: 0; }
.contact-row-label { color: hsl(var(--muted-foreground)); font-size:12px; text-transform:uppercase; letter-spacing:0.15em; font-weight:600; }
.contact-row-value { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 400; word-break: break-word; }
.contact-row-arrow { flex-shrink: 0; transition: transform .3s ease; }
.contact-row:hover .contact-row-arrow { transform: translate(4px,-4px); }

/* Contact icons */
.contact-row-icon svg { width: 28px; height: 28px; color: var(--brand-forest); display: block; }
.footer-socials a svg { width: 18px; height: 18px; color: hsl(var(--background)); }
.footer-socials a { color: hsl(var(--background) / 0.85); }
.footer-socials a:hover { color: hsl(var(--foreground)); }

.content-page { padding-top: 7.5rem; }
.about-intro,
.founder-block,
.values-grid { display:grid; gap:2rem; }
.about-intro p { margin: 0; }
.about-intro .lead { font-size: 1.125rem; color: hsl(var(--foreground));; }
.values-grid {
  grid-template-columns: 1fr;
  border-top: 1px solid hsl(var(--border));
  border-left: 1px solid hsl(var(--border));
  margin-top: 2rem;
}
.value-cell {
  border-right: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 1.5rem;
}
.value-number { display:block; margin-bottom:1rem; font-size:2rem; font-family:var(--font-heading); color:hsl(var(--accent)); }
.value-title { font-size:1.25rem; font-family:var(--font-heading); margin-bottom:.6rem; }

.founder-portrait {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
  aspect-ratio: 4 / 5;
  display:flex;
  align-items:center;
  justify-content:center;
  color: hsl(var(--muted-foreground) / 0.4);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
}
.quote-block { font-style: italic; }

.legal-page {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: #ffffff;
  color: #174F43;
}
.legal-container { max-width: 62rem; margin: 0 auto; }
.notice-box {
  border: 1px solid rgba(169, 138, 85, 0.28);
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
}
.notice-box strong { font-weight: 700; }
.legal-section { margin-top: 2.5rem; }
.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: .75rem;
  color: #174F43;
}
.legal-section p {
  white-space: pre-line;
  color: #2b4a43;
}

.auth-page {
  background: radial-gradient(circle at top, rgba(216, 185, 120, 0.18), transparent 35%), linear-gradient(180deg, #f5f2eb 0%, #efe8dc 100%);
  color: hsl(var(--foreground));
}
.auth-page--green-gold { background: radial-gradient(circle at top, rgba(212,175,55,0.12), transparent 26%), linear-gradient(180deg, #edf3ef 0%, #eae1d1 100%); }
.auth-top-bar {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.auth-close-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(23,79,67,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  color: #174F43;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23,79,67,0.1);
}
.auth-close-btn:hover {
  transform: translateY(-1px);
}
.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
}
.auth-card {
  width: min(100%, 560px);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  border-radius: 1.5rem;
  box-shadow: 0 22px 50px rgba(8, 30, 25, 0.12);
  border: 1px solid rgba(212,175,55,0.28);
}
.auth-card--green-gold {
  background: linear-gradient(180deg, rgba(15,107,85,0.98) 0%, rgba(21,63,53,0.97) 100%);
  color: white;
}
.auth-card--gold {
  background: linear-gradient(180deg, rgba(246,236,214,0.98) 0%, rgba(235,221,193,0.96) 100%);
  color: hsl(var(--foreground));
}
.payment-card {
  width: min(100%, 620px);
}
.payment-header {
  margin-bottom: 1.25rem;
}
.payment-details {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgba(23,79,67,0.04);
  border: 1px solid rgba(23,79,67,0.12);
}
.payment-details .elea-body {
  margin: 0;
}
.payment-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.payment-note {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid rgba(212,175,55,0.8);
  background: rgba(212,175,55,0.08);
  border-radius: 0.75rem;
  color: #174F43;
}
.auth-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212,175,55,1), rgba(232,204,124,1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #173d34;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 12px 24px rgba(212,175,55,0.3);
}
.auth-title {
  text-align:center;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  font-weight: 600;
  margin-bottom: .35rem;
}
.auth-subtitle {
  text-align:center;
  color: inherit;
  opacity: 0.85;
}
.auth-form { display:flex; flex-direction:column; gap:1rem; }
.auth-field { display:flex; flex-direction:column; gap:.45rem; }
.auth-label {
  font-size:12px;
  letter-spacing:0.15em;
  text-transform:uppercase;
  font-weight:600;
  color: inherit;
  opacity: 0.82;
}
.auth-input,
.auth-select {
  width:100%;
  min-height: 3.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 0.9rem;
  padding: 0.8rem 1rem;
  color: inherit;
  font-size: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.auth-card--gold .auth-input,
.auth-card--gold .auth-select {
  background: rgba(255,255,255,0.45);
  border-color: rgba(23,79,67,0.22);
  color: hsl(var(--foreground));
}
.auth-input::placeholder { color: inherit; opacity: 0.7; }
.auth-input:focus,
.auth-select:focus {
  border-color: rgba(212,175,55,1);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.16);
  outline: none;
}
.auth-row { display:flex; align-items:center; justify-content:space-between; gap: .75rem; }
.auth-row--stacked { margin-top: .5rem; }
.auth-link { color: hsl(var(--foreground)); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; font-weight:600; }
.auth-submit { width:100%; margin-top: .5rem; }
.auth-plan-summary {
  font-size: 0.92rem;
  color: inherit;
  opacity: 0.9;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: .25rem 0;
  color: inherit;
  opacity: 0.8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: rgba(255,255,255,0.28);
  flex: 1;
}
.auth-card--gold .auth-divider::before,
.auth-card--gold .auth-divider::after {
  background: rgba(23,79,67,0.12);
}
.auth-error {
  display: none;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffe7b9;
  padding: .8rem 1rem;
  font-size: .92rem;
}
.auth-card--gold .auth-error {
  background: rgba(23,79,67,0.06);
  border-color: rgba(23,79,67,0.18);
  color: #6e4e14;
}
.auth-error.show { display:block; }
.auth-footer {
  text-align:center;
  margin: 0;
  color: inherit;
  font-size: .95rem;
  opacity: 0.9;
}
.auth-footer a { color: inherit; font-weight:700; }
.auth-otp-grid { display:grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap:.5rem; }
.auth-otp-grid input { height: 3rem; text-align:center; font-size:1.25rem; border: 1px solid hsl(var(--border)); background: transparent; color: hsl(var(--foreground)); }

.admin-auth-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(112, 156, 130, 0.15), transparent 40%), linear-gradient(180deg, #f8f7f3 0%, #efefe9 100%);
  padding: 2rem 1rem;
}

.admin-auth-box {
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 31, 25, 0.08);
  border-radius: 1.2rem;
  box-shadow: 0 18px 45px rgba(20, 31, 25, 0.08);
  padding: 2rem 1.5rem;
}

.admin-auth-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.admin-auth-header img {
  width: 54px;
  height: 54px;
}

.admin-auth-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #173f33;
}

.admin-signin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-signin-form .auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.admin-signin-form .auth-field label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 31, 25, 0.7);
  font-weight: 700;
}

.admin-signin-form .auth-field input {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(18, 31, 25, 0.12);
  background: rgba(255,255,255,0.75);
  color: #173f33;
  border-radius: 0.7rem;
  padding: 0.85rem 1rem;
}

.admin-signin-form .auth-field input:focus {
  outline: none;
  border-color: rgba(23, 63, 51, 0.5);
  box-shadow: 0 0 0 3px rgba(23, 63, 51, 0.08);
}

.admin-login-submit {
  width: 100%;
  border: none;
  min-height: 3.2rem;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, #173f33 0%, #0b2b24 100%);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.admin-auth-message {
  min-height: 1.2rem;
  font-size: 0.82rem;
  color: rgba(23, 63, 51, 0.7);
}

.admin-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #0e4c3b 0%, #123a2c 100%);
  color: white;
  display: flex;
  flex-direction: column;
}
.admin-sidebar {
  display: none;
  width: 15rem;
  border-right: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 1.2rem;
  flex-direction: column;
}
.sidebar-brand { margin-bottom: 1.25rem; }
.sidebar-brand .logo-wordmark { font-size: 1.8rem; color: var(--brand-white); }
.sidebar-brand small { display:block; margin-top: .4rem; font-size: .5rem; letter-spacing: .28em; text-transform:uppercase; color:rgba(255,255,255,.4); }
.admin-nav { display:flex; flex-direction:column; gap:.65rem; margin-top: 1rem; }
.admin-nav button {
  width:100%;
  background: transparent;
  border:none;
  color: rgba(255,255,255,.6);
  padding: .8rem .85rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.6rem;
  text-align:left;
  transition: all .2s ease;
}
.admin-nav button.active {
  background: rgba(255,255,255,.08);
  color: hsl(var(--accent));
}
.admin-nav button:hover { background: rgba(255,255,255,.04); }
.tab-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 .4rem;
  border-radius: 999px;
  font-size: 10px;
  font-weight:700;
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
}
.admin-user {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap: .75rem;
}
.admin-user-email { font-size: .7rem; color: rgba(255,255,255,.5); word-break:break-all; }
.admin-logout { background: transparent; border:1px solid rgba(255,255,255,.12); color:white; padding:.6rem .8rem; display:inline-flex; align-items:center; gap:.5rem; }
.admin-main {
  flex:1;
  padding: 1.5rem 1.25rem 5rem;
  overflow-y:auto;
}
.admin-header { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom: 1.5rem; }
.admin-header h1 { font-size: 2.4rem; }
.admin-mobile-logout {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  padding:.55rem .75rem;
}
.admin-content { display:flex; flex-direction:column; gap: 1rem; }
.admin-toolbar {
  display:flex;
  flex-direction:column;
  gap:1rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
}
.admin-search {
  position: relative;
}
.admin-search input {
  width:100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  min-height: 2.9rem;
  padding: .7rem 1rem .7rem 2.7rem;
}
.admin-search svg {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
}
.admin-filter {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  min-height: 2.9rem;
  padding: 0 .9rem;
  width: min(100%, 19rem);
}
.admin-bookings-grid,
.admin-review-grid {
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.admin-assets-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.asset-card,
.promo-admin-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  border-radius: 0.9rem;
}
.asset-card img,
.promo-admin-card img {
  display:block;
  width:100%;
  height: 12rem;
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}
.asset-card-meta,
.promo-admin-body {
  padding: 1rem;
}
.asset-actions,
.cta-admin-actions {
  margin-top: 0.75rem;
}
.asset-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  padding: 0.6rem 0.8rem;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.asset-btn.danger {
  border-color: rgba(252, 165, 165, 0.4);
  color: #fbb4b4;
}
.asset-path {
  margin-top: .6rem;
  font-size: .7rem;
  color: rgba(255,255,255,0.6);
  word-break: break-all;
}
.admin-stat-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
  grid-column: 1 / -1;
}
.admin-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.9rem 1rem;
  display:flex;
  flex-direction:column;
  gap:0.4rem;
}
.admin-stat-card span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}
.admin-stat-card strong {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 400;
}
.admin-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1rem;
}
.admin-booking-card {
  display:flex;
  flex-direction:column;
  gap:0.75rem;
}
.booking-meta-row {
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.75rem;
}
.booking-action-row {
  display:flex;
  gap:0.5rem;
  margin-top:0.25rem;
}
.admin-note {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 1rem;
  color: rgba(255,255,255,0.72);
}
.promo-admin-header {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  margin-bottom: 0.5rem;
}
.promo-admin-header h3 {
  margin:0;
  font-size:1.2rem;
}
.admin-card-top { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.admin-card-ref { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; }
.status-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight:700;
}
.status-new { background: rgba(197,179,150,.18); color: hsl(var(--accent)); }
.status-pending { background: rgba(59,130,246,.15); color: rgb(147,197,253); }
.status-quote { background: rgba(168,85,247,.18); color: rgb(216,180,254); }
.status-awaiting { background: rgba(234,179,8,.18); color: rgb(253,224,71); }
.status-confirmed { background: rgba(34,197,94,.15); color: rgb(134,239,172); }
.status-completed { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.status-cancelled { background: rgba(239,68,68,.15); color: rgb(252,165,165); }
.admin-card-meta { margin-top: .75rem; color: rgba(255,255,255,.7); }
.admin-card-services { margin-top: .4rem; color: rgba(255,255,255,.6); font-size: .8rem; }
.mini-calendar-wrap {
  display:grid;
  gap: .75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1rem;
  margin: 0 auto 1.25rem;
  max-width: 1000px;
}
.mini-calendar-header {
  text-align:center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  letter-spacing: 0.06em;
}
.mini-calendar-grid {
  display:grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}
.mini-day-name,
.mini-day {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 2.7rem;
  border-radius: 0.6rem;
  text-align:center;
  font-size: 0.72rem;
}
.mini-day-name {
  color: rgba(255,255,255,0.62);
  min-height: 1.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.mini-day {
  position: relative;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: white;
  padding: 0.4rem 0.2rem;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.mini-day:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.22);
}
.mini-day.empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.mini-day.has-booking {
  background: rgba(214,176,71,0.94);
  border-color: rgba(240,208,110,0.9);
  color: #1b180e;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.mini-day.selected {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}
.mini-day small {
  display:inline-flex;
  min-width: 1.15rem;
  height: 1.15rem;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 0.56rem;
}
.mini-day.has-booking small {
  background: rgba(32,23,5,0.18);
}
.admin-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease;
}
.admin-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.admin-drawer-backdrop { position:absolute; inset:0; background: rgba(0,0,0,.5); }
.admin-drawer-panel {
  position: relative;
  width: min(100%, 28rem);
  background: var(--brand-forest);
  border-left: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1rem 1.75rem;
  overflow-y:auto;
}
.admin-drawer-header { display:flex; align-items:center; justify-content:space-between; margin-bottom: 1rem; }
.admin-drawer-header h3 { font-size:1.4rem; }
.drawer-close-btn { background: transparent; border:none; color:white; }
.admin-status-list { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom: 1rem; }
.admin-status-list button {
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  padding: .45rem .7rem;
  border-radius: 999px;
}
.admin-status-list button.active { border-color: hsl(var(--accent)); background: rgba(197,179,150,.15); color: hsl(var(--accent)); }
.admin-field-row { display:grid; gap: .8rem; }
.admin-field { display:flex; flex-direction:column; gap:.35rem; }
.admin-field > span { font-size:10px; text-transform:uppercase; letter-spacing:0.15em; font-weight:600; color: rgba(255,255,255,.5); }
.admin-value { color:white; }
.admin-form-input {
  width:100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  padding: .7rem .8rem;
}
.admin-textarea { min-height: 5rem; resize: vertical; }
.admin-save-btn {
  width:100%;
  margin-top: 1rem;
  background: hsl(var(--accent));
  border: none;
  color: hsl(var(--foreground));
  padding: .9rem 1rem;
  font-size:11px; letter-spacing:.15em; text-transform:uppercase; font-weight:700;
}
.admin-review-card { background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); padding:1rem; }
.review-actions { display:flex; gap:.75rem; margin-top: 1rem; }
.action-btn {
  display:inline-flex; align-items:center; gap:.45rem; border:none; padding: .55rem .8rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight:600;
}
.action-btn.approve { background: rgba(34,197,94,.15); color: rgb(134,239,172); }
.action-btn.delete { background: rgba(239,68,68,.15); color: rgb(252,165,165); }
.admin-settings-form { display:flex; flex-direction:column; gap:1rem; }
.admin-setting-field { display:flex; flex-direction:column; gap:.4rem; }
.admin-setting-field label { font-size:10px; letter-spacing:0.15em; text-transform:uppercase; font-weight:600; color: rgba(255,255,255,.5); }
.admin-setting-field input,
.admin-setting-field textarea {
  width:100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  padding: .8rem 1rem;
}
.admin-setting-field textarea { min-height: 6rem; }

.not-found {
  min-height: 100vh;
  display:grid;
  place-items:center;
  background: hsl(var(--background));
}
.not-found-box { text-align:center; padding: 2rem; }
.not-found-box h1 { font-size: clamp(3rem, 8vw, 5rem); }

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: none;
  background: var(--brand-forest);
  color: var(--brand-white);
  box-shadow: 0 20px 35px rgba(31,59,46,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); }
.whatsapp-float svg { width: 1.9rem; height: 1.9rem; fill: currentColor; }

/* Prevent horizontal overflow caused by large fixed elements */
html, body { max-width: 100vw; overflow-x: hidden; }

/* Berlin notice styling */
.berlin-notice {
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
  text-align: center;
  padding: .35rem .5rem;
  font-size: .95rem;
  letter-spacing: .02em;
}

/* Make service card CTA clearly interactive */
.service-card-link { cursor: pointer; }

.booking-modal,
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 24, 21, 0.42);
  overflow-y: auto;
  display: none;
  padding: 1.25rem;
}
.booking-modal.open,
.review-modal.open {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking-progress {
  position: sticky;
  top: 0;
  left:0;
  right:0;
  z-index:2;
  height: 3px;
  background: rgba(169, 138, 85, 0.18);
  width: min(100%, 960px);
  border-radius: 999px 999px 0 0;
}
.booking-progress-fill {
  height: 100%;
  width: 0%;
  background: #C5A772;
  transition: width .7s ease-out;
}
.booking-header {
  position: sticky;
  top: 3px;
  z-index:1;
  background: #ffffff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(169, 138, 85, 0.28);
  width: min(100%, 960px);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 14px 35px rgba(15, 24, 21, 0.08);
}
.booking-header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}
.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #174F43;
}
.booking-close {
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(23, 79, 67, 0.06);
  border: 1px solid rgba(23, 79, 67, 0.14);
  border-radius: 50%;
  color: #174F43;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.booking-close:hover {
  background: rgba(23, 79, 67, 0.1);
  border-color: rgba(23, 79, 67, 0.22);
  transform: translateY(-1px);
}
.booking-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}
.booking-body {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  background: #ffffff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 14px 35px rgba(15, 24, 21, 0.08);
}
.booking-step-labels {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  margin-bottom: 2rem;
}
.booking-step-labels span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(23, 79, 67, 0.45);
}
.booking-step-labels span.active { color: #174F43; }
.booking-step-panel { max-width: 48rem; margin: 0 auto; }
.booking-step-question {
  margin-bottom: 1rem;
  color: #174F43;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}
.booking-step-hint { color: rgba(23,79,67,0.82); margin-bottom: 2rem; }
.booking-service-grid {
  display:grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.booking-toggle {
  width:100%;
  text-align:left;
  border: 1px solid rgba(169, 138, 85, 0.45);
  background: rgba(255,255,255,0.82);
  padding: 1rem 1rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: #174F43;
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.booking-toggle:hover { border-color: #B6965F; transform: translateY(-1px); }
.booking-toggle.active {
  border-color: #A98A55;
  background: rgba(197, 167, 114, 0.12);
}
.booking-toggle .toggle-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; }
.booking-toggle .toggle-check { opacity: 0; color: #B6965F; }
.booking-toggle.active .toggle-check { opacity: 1; }
.booking-room-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .75rem;
}
.booking-room-btn,
.booking-time-btn,
.booking-area-btn,
.booking-type-card {
  border: 1px solid rgba(169, 138, 85, 0.45);
  background: rgba(255,255,255,0.8);
  color: #174F43;
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.booking-room-btn {
  width: 100%;
  height: 4rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}
.booking-room-btn:hover,
.booking-time-btn:hover,
.booking-area-btn:hover,
.booking-type-card:hover { border-color: #B6965F; transform: translateY(-1px); }
.booking-room-btn.active,
.booking-time-btn.active,
.booking-area-btn.active,
.booking-type-card.active {
  background: rgba(197, 167, 114, 0.12);
  border-color: #A98A55;
}
.booking-area-grid {
  display:flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.booking-area-btn {
  padding: .8rem 1rem;
  min-height: 3rem;
}
.booking-type-grid { display:grid; gap:1rem; }
.booking-type-card {
  width:100%;
  text-align:left;
  padding: 1.5rem;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
}
.booking-type-card h3 { font-size: 1.8rem; margin-bottom:.5rem; color:#174F43; }
.booking-type-card p { color: rgba(23,79,67,0.72); font-size: .92rem; }
.booking-date-input {
  max-width: 18rem;
  font-size: 1.2rem;
  border-color: rgba(169, 138, 85, 0.5);
  background: rgba(255,255,255,0.84);
  color: #174F43;
}
.booking-time-row { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; }
.booking-time-btn {
  padding: .85rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.booking-details-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .booking-step-panel { padding: 0 0.5rem; max-width: 100%; }
  .booking-room-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .booking-time-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .booking-body { padding-left: 0.85rem; padding-right: 0.85rem; }
  .booking-step-labels { gap: .5rem .6rem; }
  .booking-details-grid { grid-template-columns: 1fr; }
  .booking-room-grid { grid-template-columns: 1fr; }
  .booking-time-row { grid-template-columns: 1fr; }
  .booking-type-grid { grid-template-columns: 1fr; }
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-back,
  .booking-submit-button {
    width: 100%;
    justify-content: center;
  }
  .hero-content { padding-left: 1rem; padding-right: 1rem; }
}

/* Ensure hero background never causes horizontal scroll */
.hero-bg { max-width: 100%; width: 100%; height: auto; display: block; }
.booking-detail-field { display:flex; flex-direction:column; gap:.35rem; }
.booking-detail-field label { font-size:12px; text-transform:uppercase; letter-spacing:.15em; font-weight:600; color: rgba(23,79,67,0.7); }
.booking-detail-field.full { grid-column: 1 / -1; }
.booking-detail-field textarea { min-height: 5.5rem; }
.booking-intro { margin-bottom: 1.75rem; }
.booking-kicker {
  display: block;
  margin-bottom: .7rem;
  color: #A98A55;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}
.booking-section-card {
  margin: 1.25rem 0;
  padding: 1.35rem;
  border: 1px solid rgba(169, 138, 85, .28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,245,238,.72));
}
.booking-section-title {
  margin-bottom: 1.1rem;
  color: #174F43;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: .04em;
}
.booking-appliance-list {
  margin: 1.5rem 0;
  padding: 1.15rem 1.25rem 1.25rem;
  border: 1px solid rgba(169, 138, 85, 0.42);
  border-radius: 12px;
  color: #174F43;
}
.booking-appliance-list legend {
  padding: 0 .35rem;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.booking-appliance-list label {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .7rem;
  padding: .35rem .2rem;
  font-size: .95rem;
  cursor: pointer;
}
.booking-appliance-list input { accent-color: #174F43; }
.booking-photo-upload {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px dashed rgba(169, 138, 85, 0.65);
  border-radius: 12px;
  background: rgba(197, 167, 114, 0.06);
}
.booking-photo-upload p,
.booking-photo-upload small { color: rgba(23,79,67,.75); font-size: .9rem; }
.booking-photo-upload input { margin-top: .5rem; }
.booking-photo-note { color: rgba(23,79,67,.8); }
.booking-estimate-panel {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(169, 138, 85, .3);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #faf7f0);
}
.booking-estimate-panel > .elea-body { max-width: 42rem; color: rgba(23,79,67,.82); }
.booking-policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.75rem 0; }
.booking-policy-grid section { padding: 1.15rem; border-radius: 12px; background: rgba(23,79,67,.045); border: 1px solid rgba(23,79,67,.1); }
.booking-policy-grid h3, .booking-consultation h3 { margin: 0 0 .55rem; color: #174F43; font-family: var(--font-heading); font-size: 1.25rem; }
.booking-policy-grid p, .booking-consultation p { margin: 0; color: rgba(23,79,67,.78); font-size: .93rem; line-height: 1.6; }
.booking-policy-link { display: inline-flex; align-items: center; gap: .5rem; color: #174F43; font-size: .84rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.booking-policy-link svg { width: 15px; height: 15px; }
.booking-consultation { margin-top: 1.75rem; padding: 1.4rem; text-align: left; border-radius: 14px; background: rgba(197,167,114,.11); border: 1px solid rgba(169,138,85,.3); }
.booking-consultation .success-actions { align-items: flex-start; }
@media (max-width: 600px) { .booking-policy-grid { grid-template-columns: 1fr; } }
.booking-detail-field .elea-input,
.booking-detail-field select.elea-input {
  background: rgba(255,255,255,0.86);
  border-color: rgba(169, 138, 85, 0.42);
  color: #174F43;
}
.booking-location-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #174F43 50%), linear-gradient(135deg, #174F43 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.booking-location-select option {
  padding: .75rem 1rem;
  color: #174F43;
  background: rgba(255,255,255,0.96);
}
.booking-error {
  display:none;
  margin-top:1rem;
  color: hsl(var(--destructive));
  font-size:.9rem;
}
.booking-error.show { display:block; }
.booking-actions {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(169, 138, 85, 0.28);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.booking-back {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background: transparent;
  border: none;
  color: #174F43;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 600;
}
.booking-back.disabled { color: rgba(23,79,67,0.35); cursor: default; }
.booking-submit-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.75rem;
  padding: 1rem 1.6rem;
  background: #174F43;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size:11px;
  font-weight:600;
  transition: background .25s ease, transform .2s ease;
}
.booking-submit-button:hover { background: #B6965F; color: #174F43; transform: translateY(-1px); }
.booking-submit-button:disabled { opacity: .5; cursor: not-allowed; }
.booking-review-list {
  display:flex;
  flex-direction:column;
  gap: 0;
}
.booking-review-row {
  display:flex;
  flex-direction:column;
  gap:.2rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(169, 138, 85, 0.28);
}
.booking-review-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  color: rgba(23,79,67,0.8);
}
.booking-review-value { color: #174F43; font-weight: 500; }
.booking-success {
  max-width: 42rem;
  margin: 0 auto;
  text-align:center;
  padding-top: 3rem;
}
.success-icon {
  width:4rem;
  height:4rem;
  border-radius:50%;
  background: rgba(197, 167, 114, 0.18);
  color: #B6965F;
  margin:0 auto 1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;
}
.success-reference-box {
  border: 1px solid rgba(169,138,85,0.28);
  background: rgba(255,255,255,0.8);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.success-reference-box .eyebrow { font-size:11px; letter-spacing:.15em; text-transform:uppercase; color: rgba(23,79,67,0.7); }
.success-reference {
  margin-top:.5rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: .1em;
  color: #174F43;
}
.success-actions {
  display:flex;
  flex-direction:column;
  gap: .8rem;
  align-items:center;
  margin-top: 1.5rem;
}
.success-close {
  background: transparent;
  border: none;
  font-size: 12px;
  letter-spacing:.15em;
  text-transform: uppercase;
  color: #174F43;
  margin-top: .75rem;
}
.review-modal-card {
  max-width: 38rem;
  width: min(100%, 38rem);
  margin: 5rem auto 2rem;
  background: #ffffff;
  border: 1px solid rgba(169,138,85,0.28);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 16px 35px rgba(15, 24, 21, 0.08);
}
.review-close { position:absolute; top:1rem; right:1rem; background:transparent; border:none; color:#174F43; }
.review-form h3 { font-size: 2.1rem; margin-bottom:1.5rem; }
.review-rating {
  display:flex;
  gap:.35rem;
  margin-bottom: 2rem;
}
.review-rating button {
  background: transparent;
  border: none;
  color: hsl(var(--border));
  padding: 0;
}
.review-rating button.active { color: hsl(var(--accent)); }
.review-form-field { display:flex; flex-direction:column; gap:.35rem; margin-bottom: 1rem; }
.review-form-field label { font-size:12px; letter-spacing:.15em; text-transform:uppercase; font-weight:600; color:hsl(var(--muted-foreground)); }
.review-form-field textarea { min-height: 7rem; }
.review-submit { width:100%; }
.review-thanks { text-align:center; padding: 1rem 0; }
.review-thanks h3 { font-size: 2rem; margin-bottom:1rem; }

.hidden { display:none !important; }

@media (max-width: 639px) {
  .hero {
    min-height: 72vh;
    align-items: flex-end;
    background: linear-gradient(to right, hsl(var(--background) / 0.84), hsl(var(--background) / 0.5));
  }
  .hero-bg {
    object-position: center center;
    transform: scale(1.06);
  }
  .hero-overlay {
    background: linear-gradient(to right, hsl(var(--background) / 0.9), hsl(var(--background) / 0.62) 44%, hsl(var(--background) / 0.2));
  }
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 2.25rem;
  }
  .hero-inner {
    max-width: 100%;
  }
  .hero-headline {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
    line-height: 1.05;
  }
  .hero-body {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.6;
  }
  .hero-actions {
    margin-top: 1.75rem;
  }
  .hero-manifesto { display: none; }
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .contact-row-left { gap:1.2rem; }
  .booking-service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .booking-time-row { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .booking-details-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .before-after-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .difference-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-intro,
  .founder-block { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .admin-bookings-grid,
  .admin-review-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
/* Admin booking images */
.booking-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.booking-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}
.admin-booking-card .admin-card-meta { margin-top: 6px; color: hsl(var(--background) / 0.8); }
.booking-meta-row { display:flex; gap:12px; margin-top:8px; color: hsl(var(--background) / 0.6); }
/* Booking details modal images */
.booking-details-images { display:flex; flex-wrap:wrap; gap:12px; margin-top:12px; }
.booking-details-images img { max-width:240px; width:100%; height:auto; object-fit:cover; border-radius:8px; box-shadow:0 8px 24px rgba(0,0,0,0.08); }
.booking-detail-row { margin:6px 0; color: hsl(var(--background) / 0.75); }
@media (min-width: 768px) {
  .elea-container { padding-left: 3rem; padding-right: 3rem; }
  .lang-switch { display: flex; }
  .navbar-book { display: inline-flex; }
  .mobile-menu-toggle { display: none; }
  .desktop-nav { display: flex; }
  .footer-top { flex-direction: row; align-items: center; }
  .footer-bottom { flex-direction: row; }
  .footer-legal { justify-content: flex-start; }
  .why-elea-wrap { grid-template-columns: repeat(12, minmax(0,1fr)); }
  .why-elea-intro-left { grid-column: 1 / span 5; }
  .why-elea-intro-right { grid-column: 7 / span 6; }
  .feature-cell { padding: 2rem; }
  .reviews-header { flex-direction: row; align-items: flex-end; }
  .contact-grid { grid-template-columns: repeat(12, minmax(0,1fr)); }
  .contact-copy { grid-column: 1 / span 5; }
  .contact-list-wrap { grid-column: 7 / span 6; }
  .about-intro .about-copy { grid-column: 7 / span 6; }
  .about-intro .about-heading { grid-column: 1 / span 5; }
  .founder-portrait { grid-column: 1 / span 5; }
  .founder-copy { grid-column: 7 / span 6; }
  .values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .admin-sidebar { display:flex; }
  .admin-main { padding-top: 2rem; }
  .admin-mobile-logout { display:none; }
  .admin-shell { flex-direction: row; }
  .admin-toolbar { flex-direction: row; }
  .admin-search { flex:1; }
  .admin-bookings-grid,
  .admin-review-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1024px) {
  .why-elea-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .difference-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .admin-bookings-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .admin-main { padding: 2rem 2.5rem 2rem; }
}
@media (max-width: 767px) {
  .navbar {
    left: 50%;
    width: min(92vw, 520px);
    transform: translateX(-50%);
    top: 12px;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 22px rgba(23, 79, 67, 0.08);
  }
  .navbar-inner {
    gap: 0.5rem;
    min-height: 58px;
  }
  .desktop-nav, .navbar-book { display: none !important; }
  .header-actions {
    gap: .5rem;
    margin-left: auto;
  }
  .lang-switch {
    display: flex !important;
    align-items: center;
    gap: .2rem;
    padding: .2rem .25rem;
  }
  .lang-switch button {
    padding: .38rem .52rem;
    font-size: 9px;
    letter-spacing: .12em;
    line-height: 1;
  }
  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }
  .hero-actions .elea-button-outline {
    background: #EAD8B5;
    border-color: #D9B978;
    color: #174F43;
    box-shadow: 0 8px 18px rgba(218, 185, 120, 0.28);
  }
  .hero-actions .elea-button-outline:hover {
    background: #D9C59B;
    border-color: #C7A968;
    color: #174F43;
  }
}

/* Mobile-specific hero & navbar refinements (mobile only, do not affect desktop) */
@media (max-width: 767px) {
  /* Use the hero image as a background for the full hero area */
  .hero {
    background-image: url("assets/images/hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    /* ensure hero extends below CTAs and fills the viewport minus nav */
    min-height: 66vh;
    display: block;
    isolation: isolate;
  }

  /* Hide the inline <img> used on desktop so we don't get duplicated visuals */
  .hero .hero-bg { display: none !important; }

  /* Soft warm cream overlay to keep photography visible but text readable */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(242,237,230,0.86) 0%, rgba(242,237,230,0.70) 28%, rgba(242,237,230,0.30) 62%, rgba(242,237,230,0.08) 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* Ensure hero content sits above the overlay */
  .hero-content { position: relative; z-index: 2; padding-top: 3.25rem; padding-bottom: 2.25rem; }
  .hero-inner { max-width: 100%; }

  /* Headline / body adjustments for better fit on narrow screens */
  .hero-headline { font-size: clamp(2.1rem, 7.4vw, 3.2rem); line-height: 1.02; color: #174F43; }
  .hero-body { color: rgba(23,79,67,0.88); font-size: 0.98rem; }

  /* CTA layout: prefer side-by-side when there is room, otherwise stack; consistent height and touch target */
  .hero-actions { display: flex; gap: 0.9rem; margin-top: 1.5rem; }
  .hero-actions .elea-button-primary, .hero-actions .elea-button-outline {
    flex: 1 1 0;
    min-height: 56px;
    border-radius: 12px;
    font-size: 13px;
    padding-left: 1rem; padding-right: 1rem;
    white-space: nowrap;
  }

  /* On the smallest phones stack vertically to avoid awkward wrapping */
  @media (max-width: 360px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .elea-button-primary, .hero-actions .elea-button-outline { width: 100%; }
  }

  /* Refine mobile navbar visual language to match Elea premium palette */
  .navbar {
    background: #C5A772; /* champagne gold */
    color: #174F43; /* deep forest green for text/icons */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(23,79,67,0.08);
    box-shadow: 0 6px 18px rgba(23,79,67,0.06);
  }
  .navbar-inner { min-height: 56px; gap: 0.5rem; }
  .logo-img, .site-logo { height: 48px !important; width: auto !important; }

  /* Make language toggles compact and balanced */
  .lang-switch { background: transparent; padding: 0; gap: .35rem; }
  .lang-switch button { background: transparent; border: none; color: #174F43; padding: .25rem .4rem; font-size: 11px; font-weight:700; }
  .lang-switch span { color: rgba(23,79,67,0.7); }

  /* Menu icon color and sizing */
  .mobile-menu-toggle { background: transparent; border: none; color: #174F43; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }

  /* Make sure mobile menu panel contrasts well with navbar when open */
  .mobile-menu { background: #ffffff; color: #174F43; }
  .mobile-menu .logo { color: #174F43; }

  /* Prevent horizontal overflow from hero content */
  .hero, .hero * { max-width: 100%; box-sizing: border-box; }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* File upload input styling */
.admin-setting-field input[type="file"] {
  padding: .8rem 1rem;
  cursor: pointer;
  color: rgba(255,255,255,.7);
}

.admin-setting-field input[type="file"]::file-selector-button {
  background: hsl(var(--accent));
  color: hsl(var(--foreground));
  border: none;
  padding: .5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: 0.5rem;
  transition: background 0.2s ease;
}

.admin-setting-field input[type="file"]::file-selector-button:hover {
  background: hsl(var(--accent) / 0.8);
}

/* Upload status message */
#upload-status {
  padding: 0.8rem 1rem;
  border-radius: 0.25rem;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: 0.875rem;
  border-left: 3px solid rgba(255,255,255,.3);
}

#upload-status[style*="color: green"] {
  background: rgba(34, 197, 94, 0.1);
  border-left-color: rgb(34, 197, 94);
  color: rgb(34, 197, 94);
}

#upload-status[style*="color: red"] {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: rgb(239, 68, 68);
  color: rgb(239, 68, 68);
}

/* Disable upload button during upload */
#upload-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Mobile / global fixes to keep fixed/sticky nav from overlapping content --- */
:root { --navbar-safe-area: 1rem; --navbar-height: 72px; }

/* Ensure page content is not hidden under fixed/sticky nav on small screens */
@media (max-width: 900px) {
  /* Provide a safe top padding for the whole page */
  .page { padding-top: calc(var(--navbar-height) + var(--navbar-safe-area)); }

  /* Make the navbar sit neatly centered and not full-bleed on narrow viewports */
  .navbar {
    left: 50%;
    transform: translateX(-50%);
    width: min(96vw, 560px);
    border-radius: 0 0 16px 16px;
    position: fixed; /* ensure it sits above content */
    top: 12px;
    z-index: 120;
  }

  /* Keep the mobile menu toggle visible and reduce oversized logo on very small screens */
  .mobile-menu-toggle { display: flex; }
  .site-logo, .logo-img { height: 64px !important; width: 64px !important; }

  /* Reduce hero min-height so first fold is visible on small phones */
  .hero { min-height: 56vh; }
}

/* Make sure sticky nav variants in pages with their own CSS still respect safe padding */
@media (max-width: 900px) {
  .content-page, .elea-section, main { padding-top: 0; }
}
