/* ============================================================
   SWISS HOME SERVICES — Complete Stylesheet
   Mobile-first · Editorial Boutique · EN/DE
   ============================================================ */

:root {
  --cream: #f5f1ea;
  --cream-deep: #ece5d8;
  --ink: #1f2b24;
  --ink-soft: #394740;
  --muted: #7a7266;
  --rule: #cfc7b6;
  --accent: #b95b3a;
  --accent-soft: #d8a088;
  --shadow: 0 20px 50px -25px rgba(31,43,36,.35);
  --px: clamp(20px, 5.5vw, 48px);
  --sp-lg: clamp(60px, 12vw, 120px);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream); color: var(--ink);
  font-weight: 400; line-height: 1.62;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  mix-blend-mode: multiply; opacity: .5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.17  0 0 0 0 0.14  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; letter-spacing: -.026em; line-height: 1.06; }
.italic { font-style: italic; font-weight: 300; }
h1 .italic, h2 .italic, h3 .italic, h4 .italic,
h1 .it, h2 .it, h3 .it, h4 .it { font-style: normal; font-weight: inherit; color: inherit; }

/* ---- LANGUAGE TOGGLE ---- */
.lang-en { display: inline; }
.lang-de { display: none; }
body.is-de .lang-en { display: none; }
body.is-de .lang-de { display: inline; }
.lang-block-en { display: block; }
.lang-block-de { display: none; }
body.is-de .lang-block-en { display: none; }
body.is-de .lang-block-de { display: block; }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px var(--px);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  padding: 10px var(--px);
  background: rgba(245,241,234,.93);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 4vw, 20px);
  letter-spacing: .01em;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  white-space: nowrap; margin-right: auto;
  transition: color .35s;
}
.brand-mark {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px;
  position: relative; transition: border-color .35s, color .35s;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; border: 1px solid currentColor; opacity: .25;
}
.brand-text { display: flex; align-items: baseline; gap: 5px; }
.brand .name { font-weight: 400; }
.brand .it-mark { font-style: italic; font-weight: 300; color: var(--accent); transition: color .35s; }
.brand .sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-left: 2px; display: none; transition: color .35s;
}
@media (min-width: 480px) { .brand .sub { display: inline; } }
.brand-logo { height: 36px; width: auto; display: block; }
.footer-brand-logo { height: 32px; width: auto; display: block; }

/* Header over dark hero */
.site-header:not(.scrolled) .brand { color: var(--cream); }
.site-header:not(.scrolled) .brand .it-mark { color: var(--accent-soft); }
.site-header:not(.scrolled) .brand .sub { color: rgba(245,241,234,.65); }
.site-header:not(.scrolled) .menu-btn span { background: var(--cream); }
.site-header:not(.scrolled) .lang-switch { border-color: rgba(245,241,234,.3); background: rgba(245,241,234,.08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.site-header:not(.scrolled) .lang-switch button { color: rgba(245,241,234,.7); }
.site-header:not(.scrolled) .lang-switch button.active { background: var(--cream); color: var(--ink); }
/* Only applies to pages with a dark hero. Pages with light hero will override via body class */
body.light-header .site-header:not(.scrolled) .brand { color: var(--ink); }
body.light-header .site-header:not(.scrolled) .brand .it-mark { color: var(--accent); }
body.light-header .site-header:not(.scrolled) .brand .sub { color: var(--muted); }
body.light-header .site-header:not(.scrolled) .menu-btn span { background: var(--ink); }
body.light-header .site-header:not(.scrolled) .lang-switch { border-color: var(--rule); background: rgba(245,241,234,.5); backdrop-filter: none; }
body.light-header .site-header:not(.scrolled) .lang-switch button { color: var(--muted); }
body.light-header .site-header:not(.scrolled) .lang-switch button.active { background: var(--ink); color: var(--cream); }

@media (min-width: 900px) {
  .site-header:not(.scrolled) .nav-wrap a { color: rgba(245,241,234,.85); }
  .site-header:not(.scrolled) .nav-wrap a:hover { color: var(--cream); }
  body.light-header .site-header:not(.scrolled) .nav-wrap a { color: var(--ink-soft); }
  body.light-header .site-header:not(.scrolled) .nav-wrap a:hover { color: var(--ink); }
}

/* Language switch */
.lang-switch {
  display: flex; align-items: center;
  border: 1px solid var(--rule); border-radius: 999px;
  padding: 3px; background: rgba(245,241,234,.5); flex-shrink: 0;
}
.lang-switch button {
  background: transparent; border: 0; cursor: pointer;
  padding: 5px 10px; border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); min-height: 28px; min-width: 34px;
  transition: background .3s, color .3s;
}
.lang-switch button.active { background: var(--ink); color: var(--cream); }

/* Menu button */
.menu-btn {
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  margin-right: -10px;
}
.menu-btn span {
  width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .4s cubic-bezier(.7,0,.3,1), opacity .3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav drawer (mobile) */
.nav-wrap {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px);
  background: var(--cream); padding: 96px 32px 40px;
  transform: translateX(110%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
  z-index: 95; border-left: 1px solid var(--rule);
  box-shadow: -30px 0 60px -30px rgba(31,43,36,.3);
  display: flex; flex-direction: column;
}
.nav-wrap.open { transform: translateX(0); }
.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(31,43,36,.35); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .5s ease;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }
.nav-wrap ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-wrap li { border-bottom: 1px solid var(--rule); }
.nav-wrap li:first-child { border-top: 1px solid var(--rule); }
.nav-wrap a {
  display: block; text-decoration: none; color: var(--ink);
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; letter-spacing: -.01em;
  padding: 16px 0; transition: color .3s, padding-left .3s;
}
.nav-wrap a:hover, .nav-wrap a:active { color: var(--accent); padding-left: 8px; }
.nav-wrap a.active { color: var(--accent); }
.nav-wrap a.lang-de { display: none; }
body.is-de .nav-wrap a.lang-en { display: none; }
body.is-de .nav-wrap a.lang-de { display: block; }
.nav-wrap .nav-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--ink); padding: 16px 22px; border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
}
.nav-wrap .nav-cta:hover { background: var(--ink); color: var(--cream); padding-left: 22px; }

@media (min-width: 900px) {
  .menu-btn { display: none; }
  .nav-overlay { display: none; }
  .nav-wrap {
    position: static; width: auto; padding: 0;
    transform: none; background: transparent; border: 0; box-shadow: none; display: block;
  }
  .nav-wrap ul { flex-direction: row; gap: 30px; align-items: center; }
  .nav-wrap li { border: 0; }
  .nav-wrap li:first-child { border: 0; }
  .nav-wrap a {
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
    font-weight: 500; color: var(--ink-soft);
    padding: 4px 0; position: relative;
  }
  .nav-wrap a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    height: 1px; width: 0; background: var(--accent);
    transition: width .4s cubic-bezier(.2,.7,.2,1);
  }
  .nav-wrap a:hover, .nav-wrap a.active { color: var(--ink); padding-left: 0; }
  .nav-wrap a:hover::after, .nav-wrap a.active::after { width: 100%; }
  .nav-wrap .nav-cta { margin: 0; padding: 9px 18px; font-size: 11px; border-radius: 999px; }
  .nav-wrap .nav-cta::after { display: none; }
  .nav-wrap .nav-cta:hover { background: var(--ink); color: var(--cream); padding-left: 18px; }
}

/* ---- NAV DROPDOWN ---- */

/* -- Stays trigger button -- */
.nav-stays {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  width: 100%; text-align: left;
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; letter-spacing: -.01em;
  color: var(--ink); padding: 16px 0;
  transition: color .3s, padding-left .3s;
}
.nav-stays:hover, .nav-stays.active { color: var(--accent); padding-left: 8px; }

/* Chevron icon */
.nav-chevron { width: 12px; height: 7px; flex-shrink: 0; transition: transform .25s ease; }
.nav-stays[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* -- Dropdown panel -- */
/* Mobile: hidden, revealed as vertical list when .open */
.dropdown-menu {
  display: none;
  flex-direction: column;
  padding: 0 0 8px 0;
}
.nav-dropdown.open .dropdown-menu { display: flex; }

/* Links inside the panel — mobile */
.dropdown-menu a {
  display: block;
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400;
  color: var(--ink); text-decoration: none;
  padding: 10px 0 10px 16px;
  border-top: 1px solid var(--rule);
  transition: color .25s, padding-left .25s;
}
.dropdown-menu a:hover, .dropdown-menu a:active { color: var(--accent); padding-left: 22px; }

/* ---- Desktop (≥ 900px) ---- */
@media (min-width: 900px) {
  /* Wrapper — becomes the hover container */
  .nav-dropdown { position: relative; }

  /* Button — matches Inter Tight uppercase style of other desktop nav links */
  .nav-stays {
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
    color: var(--ink-soft);
    padding: 4px 0; gap: 5px; width: auto;
    position: relative;
  }
  /* Underline bar, same as .nav-wrap a::after */
  .nav-stays::after {
    content: "";
    position: absolute; bottom: 0; left: 0;
    height: 1px; width: 0; background: var(--accent);
    transition: width .4s cubic-bezier(.2,.7,.2,1);
  }
  .nav-stays:hover, .nav-stays.active { color: var(--ink); padding-left: 0; }
  .nav-stays:hover::after, .nav-stays.active::after { width: calc(100% - 17px); }
  .nav-chevron { width: 9px; height: 5px; }

  /* Panel — absolutely positioned below Stays, hidden until hover or .open */
  .dropdown-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 160px;
    z-index: 200;
    background: rgba(245,241,234,.97);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    box-shadow: 0 8px 24px -6px rgba(31,43,36,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
  }
  /* Bridge to fill the gap between trigger and panel so hover isn't lost */
  .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px; left: 0; right: 0;
    height: 8px;
  }
  /* Show on CSS hover, focus-within, or JS-toggled .open */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  /* Links inside the panel — desktop */
  .dropdown-menu a {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
    color: var(--ink) !important;
    padding: 11px 18px;
    border-top: none;
    border-bottom: 1px solid var(--rule);
    transition: background .15s;
  }
  .dropdown-menu a:last-child { border-bottom: none; }
  .dropdown-menu a:hover { background: rgba(31,43,36,.04); padding-left: 18px; }
  .dropdown-menu a::after { display: none !important; }

  /* Dark hero header: button colour overrides */
  .site-header:not(.scrolled) .nav-stays { color: rgba(245,241,234,.85); }
  .site-header:not(.scrolled) .nav-stays:hover,
  .site-header:not(.scrolled) .nav-stays.active { color: var(--cream); }
  body.light-header .site-header:not(.scrolled) .nav-stays { color: var(--ink-soft); }
  body.light-header .site-header:not(.scrolled) .nav-stays:hover,
  body.light-header .site-header:not(.scrolled) .nav-stays.active { color: var(--ink); }
}

/* ---- HERO (landing page) ---- */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: calc(100px + env(safe-area-inset-top)) var(--px) 44px;
  overflow: hidden; z-index: 2; color: var(--cream);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,43,36,.4) 0%, rgba(31,43,36,.2) 35%, rgba(31,43,36,.6) 70%, rgba(31,43,36,.87) 100%);
}
.hero-inner { position: relative; width: 100%; }
.hero-tag {
  position: absolute; right: 0; top: -52px;
  background: rgba(245,241,234,.1); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 9px 14px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream); font-weight: 500; border: 1px solid rgba(245,241,234,.2); border-radius: 2px;
  display: none;
}
.hero-tag .it {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  letter-spacing: 0; text-transform: none; color: var(--accent-soft);
  font-size: 14px; font-weight: 400; margin-left: 4px;
}
@media (min-width: 720px) { .hero-tag { display: inline-flex; align-items: center; } }

/* ---- EYEBROW + TYPOGRAPHY UTILITIES ---- */
.eyebrow {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); flex-shrink: 0; }
.eyebrow.light { color: var(--cream); }
.eyebrow.light::before { background: var(--accent-soft); }

.section-label {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.section-label::before { content: ""; width: 28px; height: 1px; background: var(--accent); flex-shrink: 0; }
.section-label.center { justify-content: center; }

.section-title { font-size: clamp(34px, 7.5vw, 68px); margin-bottom: 22px; max-width: 820px; letter-spacing: -.028em; line-height: 1.08; }
.hero h1 { font-size: clamp(44px, 10.5vw, 96px); margin-bottom: 20px; color: var(--cream); text-shadow: 0 2px 40px rgba(0,0,0,.25); letter-spacing: -.032em; }
.hero p { font-size: clamp(15px, 3.8vw, 18px); max-width: 540px; color: var(--cream); opacity: .92; margin-bottom: 28px; }

/* Stats */
.hero-meta {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 26px; border-top: 1px solid rgba(245,241,234,.22);
}
.hero-meta .plate {
  font-family: 'Inter Tight', sans-serif; font-weight: 400;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--cream); opacity: .65;
}
.hero-meta .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 10vw, 62px);
  font-weight: 300; font-style: italic; color: var(--cream); line-height: .92; margin-top: 4px;
}
.hero-meta .big .pt { color: var(--accent-soft); font-style: normal; }
.hero-meta .label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); opacity: .7; margin-top: 4px; }

@media (min-width: 900px) {
  .hero { padding: 180px var(--px) 60px; }
  .hero-meta { grid-template-columns: repeat(3, max-content); gap: 64px; margin-top: 56px; }
}

/* CTA buttons */
.btn-hero {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 15px 26px; background: var(--cream); color: var(--ink);
  text-decoration: none; border-radius: 999px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: transform .3s, background .3s, color .3s; min-height: 48px;
}
.btn-hero:hover, .btn-hero:active { background: var(--accent); color: var(--cream); transform: translateY(-2px); }
.btn-hero .arrow { transition: transform .3s; }
.btn-hero:hover .arrow { transform: translateX(4px); }

.btn-book {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px; background: var(--ink); color: var(--cream);
  text-decoration: none; border-radius: 999px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: transform .3s, background .3s; min-height: 48px;
}
.btn-book:hover, .btn-book:active { background: var(--accent); transform: translateY(-2px); }
.btn-book .arrow { transition: transform .3s; }
.btn-book:hover .arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 26px; background: transparent; color: var(--ink);
  text-decoration: none; border-radius: 999px; border: 1px solid var(--ink);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: background .3s, color .3s; min-height: 48px;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ---- REVEAL ---- */
section { position: relative; z-index: 2; }
.section-pad { padding: var(--sp-lg) var(--px); }
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .26s; }
.reveal.d3 { transition-delay: .40s; }
.reveal.d4 { transition-delay: .54s; }
.reveal.d5 { transition-delay: .68s; }
.reveal.d6 { transition-delay: .82s; }

/* ---- MARQUEE ---- */
.marquee {
  position: relative; overflow: hidden; z-index: 2;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 16px 0; background: var(--cream-deep);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite; white-space: nowrap; width: max-content;
}
.marquee span { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: clamp(20px, 4.5vw, 25px); color: var(--ink-soft); }
.marquee .dot { color: var(--accent); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- REVIEWS ---- */
.reviews { background: var(--cream-deep); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.reviews-head { display: flex; flex-direction: column; gap: 22px; margin-bottom: 44px; }
.reviews-head .stars { font-size: 18px; letter-spacing: .15em; color: var(--accent); }
.reviews-head .rating .num { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 11vw, 54px); font-weight: 300; font-style: italic; line-height: 1; }
.reviews-head .rating .meta { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.review-card { background: var(--cream); padding: 38px 26px 26px; border: 1px solid var(--rule); position: relative; transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-card .quote { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-style: italic; font-weight: 300; color: var(--accent); line-height: 0; position: absolute; top: 38px; left: 26px; }
.review-card .body { font-family: 'Inter Tight', sans-serif; font-size: clamp(14px, 3.2vw, 16px); font-weight: 400; line-height: 1.68; margin-top: 24px; margin-bottom: 22px; color: var(--ink); }
.review-card .meta-row { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--rule); }
.review-card .author { font-size: 13px; font-weight: 500; }
.review-card .src { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.review-card .stars-sm { color: var(--accent); letter-spacing: .15em; font-size: 11px; margin-top: 3px; }

@media (min-width: 720px) { .reviews-head { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 40px; } .reviews-head .rating { text-align: right; } }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(3,1fr); gap: 24px; } .review-card { padding: 42px 32px 30px; } .review-card .quote { top: 42px; left: 32px; } }
/* Review auto-scroll carousel */
.rev-outer { overflow: hidden; position: relative; margin: 0 calc(-1 * var(--px)); }
.rev-outer::before, .rev-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: clamp(24px, var(--px), 80px); z-index: 2; pointer-events: none; }
.rev-outer::before { left: 0; background: linear-gradient(90deg, var(--cream-deep) 0%, transparent 100%); }
.rev-outer::after  { right: 0; background: linear-gradient(-90deg, var(--cream-deep) 0%, transparent 100%); }
.rev-track { display: flex; gap: 20px; padding: 4px var(--px) 20px; animation: revScroll 60s linear infinite; }
.rev-outer:hover .rev-track { animation-play-state: paused; }
@keyframes revScroll { to { transform: translateX(-50%); } }
.rev-card-wrap { flex: 0 0 min(88vw, 580px); }
@media (min-width: 900px) { .rev-card-wrap { flex: 0 0 min(44vw, 540px); } }

/* ---- LOCATIONS SPLIT (landing only) ---- */
.locations { display: grid; grid-template-columns: 1fr; }
.locations-gallery { position: relative; overflow: hidden; background: var(--ink); aspect-ratio: 4/3; }
.gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
.gallery-slide.active { opacity: 1; }
.gallery-caption { position: absolute; left: 24px; bottom: 24px; right: 24px; color: var(--cream); z-index: 3; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: clamp(22px, 5vw, 30px); letter-spacing: -.01em; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.gallery-caption .num { display: block; font-family: 'Inter Tight', sans-serif; font-style: normal; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 6px; opacity: .8; }
.gallery-dots { position: absolute; right: 18px; bottom: 18px; display: flex; gap: 10px; z-index: 3; }
.gallery-dots button { width: 8px; height: 8px; border-radius: 50%; background: transparent; border: 1px solid var(--cream); cursor: pointer; transition: all .3s; padding: 0; min-width: 8px; }
.gallery-dots button.active { background: var(--cream); transform: scale(1.3); }
.locations-list { padding: 56px var(--px); display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.locations-list .intro { margin-bottom: 28px; }
.location-link { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--rule); text-decoration: none; color: var(--ink); transition: padding .4s cubic-bezier(.2,.7,.2,1); min-height: 62px; }
.location-link:first-of-type { border-top: 1px solid var(--rule); }
.location-link .idx { font-size: 10px; letter-spacing: .3em; color: var(--muted); font-variant-numeric: tabular-nums; }
.location-link .name { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 8.5vw, 46px); font-weight: 400; letter-spacing: -.015em; transition: color .4s; }
.location-link .name .it { font-style: italic; font-weight: 300; color: var(--accent); }
.location-link .arr { font-size: 18px; opacity: .35; transition: opacity .4s, transform .4s cubic-bezier(.2,.7,.2,1); color: var(--accent); }
.location-link:hover { padding-left: 12px; }
.location-link:hover .name { color: var(--accent); }
.location-link:hover .arr { opacity: 1; transform: translateX(4px); }
@media (min-width: 900px) {
  .locations { grid-template-columns: 1fr 1fr; min-height: 720px; }
  .locations-gallery { aspect-ratio: auto; height: auto; }
  .locations-list { padding: 72px 56px; }
  .location-link { gap: 24px; padding: 26px 0; }
  .location-link .arr { opacity: 0; transform: translateX(-16px); }
  .gallery-caption { left: 40px; bottom: 40px; right: auto; }
  .gallery-dots { right: 30px; top: 50%; bottom: auto; transform: translateY(-50%); flex-direction: column; }
}

/* ---- MAP ---- */
.map-section { padding: 0; }
.map-head { text-align: center; padding: var(--sp-lg) var(--px) clamp(44px, 9vw, 72px); }
.map-wrap { background: var(--cream-deep); overflow: hidden; }
.locations-area { position: relative; height: 420px; background: #dde8c6; }
.topo-img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  left: var(--px);
  top: var(--py);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
  transition: transform .2s ease;
}
.map-pin:hover { transform: translate(-50%, calc(-100% - 4px)); }
.pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: 0 2px 6px rgba(185,91,58,.5), 0 0 0 3px rgba(185,91,58,.14);
  flex-shrink: 0;
  transition: box-shadow .2s;
}
.map-pin:hover .pin-dot { box-shadow: 0 3px 10px rgba(185,91,58,.6), 0 0 0 5px rgba(185,91,58,.18); }
.pin-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(245,241,234,.94);
  padding: 3px 7px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 1px 6px rgba(0,0,0,.13);
}
.map-pin:hover .pin-label { color: var(--accent); background: #fff; }
@media (max-width: 767px) {
  .topo-img { display: none; }
  .locations-area { height: auto; padding: clamp(28px,6vw,48px) var(--px); display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .map-pin { position: static; transform: none !important; flex-direction: row; gap: 8px; padding: 10px 16px 10px 12px; background: var(--cream); border: 1px solid var(--rule); border-radius: 4px; }
  .pin-label { background: none; box-shadow: none; padding: 0; font-size: 12px; }
}
.map-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); background: var(--cream); border-top: 1px solid var(--rule); }
.map-list a { padding: 20px 16px; border-right: 1px solid var(--rule); text-decoration: none; color: var(--ink); text-align: center; font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 3.8vw, 22px); letter-spacing: -.01em; transition: background .3s, color .3s; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 62px; }
.map-list a:last-child { border-right: 0; }
.map-list a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.map-list a:hover { background: var(--cream-deep); color: var(--accent); }

/* ---- SLIDER COMPONENT ---- */
.slider { position: relative; overflow: hidden; height: 100%; }
.slider-track { position: absolute; inset: 0; }
.slider-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; }
.slider-slide.active { opacity: 1; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,241,234,.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,241,234,.25);
  color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-family: 'Cormorant Garamond', serif;
  transform: translateY(-50%);
  transition: background .3s; min-width: 44px;
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-prev:hover, .slider-next:hover { background: rgba(245,241,234,.28); }
.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 4; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: transparent; border: 1px solid rgba(245,241,234,.8); cursor: pointer; transition: all .3s; padding: 0; min-width: 7px; }
.slider-dot.active { background: var(--cream); transform: scale(1.3); }

/* ---- PAGE HERO (location / services pages) ---- */
.page-hero {
  position: relative; min-height: clamp(300px, 50vh, 480px);
  display: flex; align-items: flex-end;
  padding: calc(100px + env(safe-area-inset-top)) var(--px) 48px;
  z-index: 2; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,43,36,.45) 0%, rgba(31,43,36,.2) 40%, rgba(31,43,36,.75) 100%);
}
.page-hero .breadcrumb { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: rgba(245,241,234,.7); margin-bottom: 14px; }
.page-hero .breadcrumb a { text-decoration: none; color: rgba(245,241,234,.7); transition: color .3s; }
.page-hero .breadcrumb a:hover { color: var(--cream); }
.page-hero h1 { font-size: clamp(44px, 9vw, 84px); color: var(--cream); text-shadow: 0 2px 30px rgba(0,0,0,.25); max-width: 900px; letter-spacing: -.025em; }

/* ---- APARTMENT SECTIONS ---- */
.apt-section { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
.apt-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink); }
.apt-info { padding: clamp(40px, 8vw, 72px) var(--px); display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.apt-info.alt-bg { background: var(--cream-deep); }
.apt-number { font-size: 10px; letter-spacing: .4em; color: var(--accent); text-transform: uppercase; display: block; margin-bottom: 14px; }
.apt-name { font-size: clamp(30px, 6vw, 48px); margin-bottom: 20px; letter-spacing: -.02em; }
.apt-desc { font-size: clamp(14px, 3.5vw, 16px); color: var(--ink-soft); line-height: 1.72; margin-bottom: 32px; max-width: 480px; }
.apt-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.apt-feature { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--rule); padding: 6px 12px; border-radius: 2px; }

@media (min-width: 900px) {
  .apt-section { grid-template-columns: 1fr 1fr; min-height: 580px; }
  .apt-media { aspect-ratio: auto; height: auto; }
  .apt-info { padding: 72px clamp(40px, 6vw, 72px); }
  /* Even sections: flip layout */
  .apt-section.flip .apt-media { order: 2; }
  .apt-section.flip .apt-info { order: 1; }
}

/* ---- SERVICES PAGE ---- */
.services-hero-gallery { position: relative; height: clamp(320px, 55vw, 600px); overflow: hidden; background: var(--ink); }
.service-sections { }
.service-item {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
.service-item:last-child { border-bottom: 1px solid var(--rule); }
.service-visual { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; }
.service-visual .service-icon { font-size: 56px; opacity: .18; }
.service-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: clamp(36px, 7vw, 64px) var(--px); display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.service-body.alt { background: var(--cream-deep); }
.service-num { font-size: 10px; letter-spacing: .4em; color: var(--accent); text-transform: uppercase; margin-bottom: 14px; display: block; }
.service-name { font-size: clamp(28px, 5.5vw, 44px); margin-bottom: 18px; letter-spacing: -.02em; }
.service-desc { font-size: clamp(14px, 3.5vw, 16px); color: var(--ink-soft); line-height: 1.7; max-width: 480px; }
@media (min-width: 900px) {
  .service-item { grid-template-columns: 1fr 1fr; min-height: 440px; }
  .service-visual { aspect-ratio: auto; height: auto; }
  .service-body { padding: 64px clamp(40px, 6vw, 72px); }
  .service-item.flip .service-visual { order: 2; }
  .service-item.flip .service-body { order: 1; }
}

/* ---- SERVICES CARD GRID ---- */
.svc-header { padding: calc(110px + env(safe-area-inset-top)) var(--px) 40px; }
.svc-header h1 { font-size: clamp(36px,9vw,72px); max-width: 820px; }
.svc-intro { padding: 0 var(--px) clamp(44px,9vw,72px); max-width: calc(760px + 2 * var(--px)); }
.svc-intro p { font-size: clamp(15px,3.8vw,17px); color: var(--ink-soft); line-height: 1.75; margin-bottom: .75em; }
.svc-intro p:last-child { margin-bottom: 0; }
.svc-intro-lead { font-size: clamp(20px,4.5vw,26px) !important; color: var(--ink) !important; font-family: 'Cormorant Garamond',serif; font-weight: 300; line-height: 1.5; letter-spacing: -.01em; }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  background: none;
  border: none;
  margin: 0 var(--px) clamp(60px,12vw,96px);
}

.svc-card {
  background: linear-gradient(145deg, rgba(20,29,25,.95) 0%, rgba(13,21,18,.98) 100%);
  border-radius: 16px;
  padding: clamp(26px,5vw,36px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}

/* gradient border */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(185,91,58,.38) 0%, rgba(255,255,255,.06) 55%, rgba(185,91,58,.12) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* ambient glow shown on hover */
.svc-card::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(185,91,58,.1) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}

.svc-card:hover {
  transform: translateY(-5px) rotate(0.25deg);
  box-shadow: 0 28px 64px -14px rgba(185,91,58,.22), 0 0 0 1px rgba(185,91,58,.18);
}
.svc-card:hover::after { opacity: 1; }

.svc-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.svc-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(185,91,58,.14);
  border: 1px solid rgba(185,91,58,.24);
  color: var(--accent-soft);
  flex-shrink: 0;
}
.svc-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card-num {
  font-size: 10px;
  letter-spacing: .35em;
  color: rgba(185,91,58,.45);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 40px;
}

.svc-card-title {
  font-size: clamp(18px,3.2vw,22px);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: rgba(245,241,234,.92);
  font-family: 'Cormorant Garamond', serif;
  margin: 0 0 8px;
}

.svc-card-tag {
  font-size: 13px;
  color: rgba(245,241,234,.45);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 18px;
}

.svc-card-body {
  font-size: 13px;
  color: rgba(245,241,234,.45);
  line-height: 1.7;
  margin: 0 0 16px;
}

.svc-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
  flex: 1;
}
.svc-card-chips li {
  font-size: 11px;
  letter-spacing: .02em;
  color: rgba(245,241,234,.58);
  background: rgba(245,241,234,.05);
  border: 1px solid rgba(245,241,234,.1);
  border-radius: 999px;
  padding: 3px 10px;
  line-height: 1.6;
  white-space: nowrap;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(185,91,58,.7);
  text-decoration: none;
  transition: color .2s ease, gap .2s ease;
  margin-top: auto;
}
.svc-card-link:hover { color: var(--accent); gap: 8px; }
.svc-card-link .chevron { font-size: 15px; line-height: 1; display: inline-block; transition: transform .2s ease; }
.svc-card-link:hover .chevron { transform: translateX(2px); }

@media (min-width: 680px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .svc-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ---- CONTACT PAGE ---- */
.contact-hero { padding: calc(110px + env(safe-area-inset-top)) var(--px) 60px; background: var(--cream); }
.contact-hero h1 { font-size: clamp(36px, 9vw, 72px); margin-bottom: 16px; max-width: 700px; }
.contact-hero p { font-size: clamp(15px, 3.8vw, 17px); color: var(--ink-soft); max-width: 560px; }
.contact-body { padding: clamp(48px, 10vw, 90px) var(--px); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; } }

.contact-info h3 { font-size: clamp(22px, 4.5vw, 30px); margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-detail .lbl { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 3px; }
.contact-detail .val { font-size: 15px; color: var(--ink-soft); }
.contact-detail a { text-decoration: none; color: var(--ink); transition: color .3s; }
.contact-detail a:hover { color: var(--accent); }

/* Form */
.form-wrap { background: var(--cream-deep); padding: clamp(28px, 6vw, 48px); border: 1px solid var(--rule); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.form-label .req { color: var(--accent); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  background: var(--cream); border: 1px solid var(--rule); color: var(--ink);
  font-family: 'Inter Tight', sans-serif; font-size: 15px; padding: 13px 16px;
  border-radius: 2px; outline: none; width: 100%;
  transition: border-color .3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--ink); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: .7; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%237a7266' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit { margin-top: 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 11px; color: var(--muted); letter-spacing: .05em; }
.form-status { padding: 16px 20px; border-radius: 2px; font-size: 14px; margin-top: 16px; }
.form-status.success { background: rgba(31,43,36,.08); border: 1px solid rgba(31,43,36,.2); color: var(--ink); }
.form-status.error { background: rgba(185,91,58,.08); border: 1px solid rgba(185,91,58,.2); color: var(--accent); }

/* ---- LEGAL PAGES ---- */
.legal-hero { padding: calc(110px + env(safe-area-inset-top)) var(--px) 56px; background: var(--cream); border-bottom: 1px solid var(--rule); }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 { font-size: clamp(32px, 7vw, 60px); }
.legal-page { padding: clamp(48px, 8vw, 72px) var(--px) clamp(72px, 12vw, 112px); }
.legal-container { max-width: 920px; margin: 0 auto; }
.legal-lang-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.legal-lang-label::before { content: ""; width: 28px; height: 1px; background: var(--accent); flex-shrink: 0; }
.legal-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 4vw, 33px); font-weight: 400; letter-spacing: -.02em; color: var(--ink); margin-bottom: 20px; margin-top: 44px; }
.legal-section h2:first-of-type { margin-top: 0; }
.legal-section h3 { font-family: 'Inter Tight', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-bottom: 10px; margin-top: 34px; }
.legal-section h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); margin-bottom: 8px; margin-top: 22px; }
.legal-section p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }
.legal-section ul { padding-left: 18px; margin-bottom: 14px; }
.legal-section li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 6px; }
.legal-section a { color: var(--accent); text-decoration: underline; }
.legal-divider { border: none; border-top: 1px solid var(--rule); margin: 56px 0; }
/* kept for any existing usage */
.legal-body { padding: clamp(44px, 9vw, 80px) var(--px); max-width: 760px; }
.legal-body h2 { font-size: clamp(22px, 4vw, 30px); margin-bottom: 14px; margin-top: 44px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 6px; }
.legal-body a { color: var(--accent); text-decoration: underline; }

/* ---- ABOUT ---- */
.about-section { background: var(--cream); }
.about-inner { max-width: 820px; margin: 0 auto; padding: 0 var(--px); }
.about-lead p { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3.5vw, 32px); font-weight: 300; line-height: 1.45; letter-spacing: -.01em; color: var(--ink); margin-bottom: 0; }
.about-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 48px 0; }
@media (min-width: 600px) { .about-facts { grid-template-columns: repeat(4, 1fr); } }
.fact-item { border-top: 2px solid var(--accent); padding-top: 16px; }
.fact-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 6vw, 48px); font-weight: 300; color: var(--ink); line-height: 1; }
.fact-label { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.about-body h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 3vw, 26px); font-weight: 400; margin: 40px 0 12px; color: var(--ink); }
.about-body p { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 0; }
.about-locations { list-style: none; padding: 0; margin: 0 0 0 0; display: flex; flex-direction: column; gap: 10px; }
.about-locations li { font-size: 15px; line-height: 1.6; }
.about-locations a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 2px; }
.about-locations a:hover { border-color: var(--accent); color: var(--accent); }

/* ---- FAQ ---- */
.faq-section { background: var(--cream-deep); }
.faq-inner { max-width: 780px; margin: 0 auto; padding: 0 var(--px); }
.faq-list { margin-top: 40px; }
.faq-item { border-top: 1px solid var(--rule); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item dt { font-family: 'Cormorant Garamond', serif; font-size: clamp(19px, 2.5vw, 23px); font-weight: 400; letter-spacing: -.01em; margin-bottom: 10px; color: var(--ink); }
.faq-item dd { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; }

/* ---- CTA STRIP ---- */
.cta-strip { background: var(--ink); color: var(--cream); padding: clamp(56px, 11vw, 96px) var(--px); text-align: center; z-index: 2; position: relative; }
.cta-strip h2 { font-size: clamp(32px, 7vw, 60px); margin-bottom: 28px; color: var(--cream); letter-spacing: -.02em; }
.cta-strip .btn-hero { background: var(--cream); color: var(--ink); }
.cta-strip .btn-hero:hover { background: var(--accent); color: var(--cream); }

/* ---- FOOTER ---- */
footer { background: var(--ink); color: var(--cream); padding: clamp(44px, 8vw, 64px) var(--px) 22px; position: relative; z-index: 2; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(245,241,234,.12); }
.footer-brand-block { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-brand-mark { width: 34px; height: 34px; flex-shrink: 0; border: 1px solid var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: var(--cream); position: relative; }
.footer-brand-mark::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; border: 1px solid currentColor; opacity: .25; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; letter-spacing: .01em; }
.footer-brand-name .it { font-style: italic; font-weight: 300; color: var(--accent-soft); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 4.5vw, 27px); font-weight: 300; line-height: 1.25; max-width: 300px; color: var(--cream); opacity: .85; }
.footer-tagline .it { font-style: italic; color: var(--accent-soft); }
footer h4 { font-family: 'Inter Tight', sans-serif; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 14px; font-weight: 500; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: var(--cream); text-decoration: none; font-size: 13px; opacity: .75; transition: opacity .3s; }
footer a:hover { opacity: 1; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 11px; letter-spacing: .1em; color: rgba(245,241,234,.5); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 11px; letter-spacing: .08em; color: rgba(245,241,234,.5); opacity: 1; }
.footer-legal a:hover { color: var(--cream); }
@media (min-width: 600px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; } }
@media (min-width: 900px) { .footer-top { gap: 72px; padding-bottom: 36px; } }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 94; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.35);
  color: white; text-decoration: none;
  animation: waPulse 2.8s infinite; transition: transform .3s;
}
.wa-float:hover, .wa-float:active { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }
@keyframes waPulse {
  0% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,0); }
}
@media (min-width: 720px) { .wa-float { width: 60px; height: 60px; right: 28px; bottom: 28px; } }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed; bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px; right: 80px; max-width: 680px;
  background: var(--ink); color: var(--cream); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 12px; z-index: 93;
  transform: translateY(220%); transition: transform .6s cubic-bezier(.2,.7,.2,1);
  box-shadow: var(--shadow); border: 1px solid rgba(245,241,234,.1);
}
.cookie-banner.show { transform: none; }
.cookie-banner p { font-size: 12px; line-height: 1.55; }
.cookie-banner p a { color: var(--accent-soft); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { border: none; cursor: pointer; border-radius: 999px; padding: 10px 17px; font-family: 'Inter Tight', sans-serif; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; min-height: 40px; }
.cookie-actions .accept { background: var(--accent); color: var(--cream); }
.cookie-actions .decline { background: transparent; color: var(--cream); border: 1px solid rgba(245,241,234,.25); }
@media (min-width: 720px) { .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 16px 22px; bottom: 18px; left: 18px; right: 110px; } }

/* ---- LOCAL GUIDE ---- */
.local-guide { background: var(--cream); }
.local-guide-inner { max-width: 860px; margin: 0 auto; }
.guide-category { margin-bottom: 64px; }
.guide-category:last-child { margin-bottom: 0; }
.guide-cat-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3.2vw, 30px); font-weight: 500; letter-spacing: -.022em; line-height: 1.1; margin: 0 0 28px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); color: var(--ink); }
.guide-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.guide-item { padding: 20px 20px 20px 0; border-bottom: 1px solid rgba(207,199,182,.5); }
.guide-item:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(207,199,182,.5); }
.guide-item-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px, 2vw, 20px); font-weight: 600; letter-spacing: -.01em; margin: 0 0 6px; color: var(--ink); }
.guide-item-desc { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 5px; }
.guide-item-notable { font-size: 13px; line-height: 1.5; color: var(--muted); margin: 0; font-style: italic; }
@media (max-width: 640px) {
  .guide-items { grid-template-columns: 1fr; }
  .guide-item:nth-child(even) { padding-left: 0; border-left: none; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
