/* ===== ZERO ESTRÉS · DESIGN (ported from ClaudeDesign bundle) ===== */
/* ============================================================
   ZERO ESTRÉS · COLOR TOKENS
   Palette derived from the real Menorca space: warm white walls,
   natural oak floors, sage/olive planting, terracotta roof + leather,
   Mediterranean sky blue, charcoal black-framed glass.
   ============================================================ */

:root {
  /* ---- Warm neutrals (walls, paper, sand) ---- */
  --white:        #ffffff;
  --paper:        #f8f5ef;   /* primary page background — warm off-white */
  --paper-2:      #f1ece2;   /* alternating section background */
  --sand:         #e8e0d2;   /* soft warm fill */
  --sand-deep:    #d9cdb9;   /* deeper sand / hairline on light */
  --oat:          #c8b9a0;   /* muted warm tan */

  /* ---- Wood (natural oak floors + furniture) ---- */
  --wood:         #c3a079;
  --wood-deep:    #9c7c56;

  /* ---- Ink (charcoal text + black window frames) ---- */
  --ink:          #20221c;   /* primary text, warm near-black */
  --ink-soft:     #3a3d34;
  --slate:        #6c705f;   /* muted warm grey-green — secondary text */
  --slate-soft:   #9a9d8e;   /* subtle / disabled text */

  /* ---- Olive / sage (PRIMARY brand — calm, natural) ---- */
  --olive:        #5e6b4f;   /* brand primary */
  --olive-deep:   #404a33;   /* hover / pressed / dark accents */
  --olive-soft:   #8a957c;
  --forest:       #2b3424;   /* deep green — dark sections */
  --sage-tint:    #e8ece0;   /* light green surface */
  --sage-tint-2:  #dde3d2;

  /* ---- Terracotta (warm accent — roof, leather chairs) ---- */
  --terracotta:       #c16a45;
  --terracotta-deep:  #a4542f;
  --terracotta-soft:  #d99a7c;
  --terracotta-tint:  #f4e3d8;

  /* ---- Sky (Mediterranean blue — secondary accent) ---- */
  --sky:        #88a6bc;
  --sky-deep:   #5d7d96;
  --sky-tint:   #e3eaef;

  /* ---- Status (tuned to the warm palette) ---- */
  --success:      #5e7a4e;
  --success-tint: #e6ede0;
  --warning:      #c98a2e;
  --warning-tint: #f6ebd6;
  --danger:       #b24a36;
  --danger-tint:  #f4e0db;

  /* ============================================================
     SEMANTIC ALIASES — use these in components
     ============================================================ */

  /* Surfaces & backgrounds */
  --bg:            var(--paper);
  --bg-alt:        var(--paper-2);
  --bg-sand:       var(--sand);
  --surface:       var(--white);
  --surface-2:     var(--paper-2);
  --surface-sage:  var(--sage-tint);
  --surface-dark:  var(--forest);

  /* Text */
  --text:          var(--ink);
  --text-muted:    var(--slate);
  --text-subtle:   var(--slate-soft);
  --text-inverse:  var(--paper);
  --text-on-primary: #f4f6ef;

  /* Borders & lines */
  --border:        rgba(32, 34, 28, 0.12);
  --border-strong: rgba(32, 34, 28, 0.22);
  --border-dark:   rgba(255, 255, 255, 0.16);
  --ring:          rgba(94, 107, 79, 0.45);   /* focus ring — olive */

  /* Brand roles */
  --primary:           var(--olive);
  --primary-hover:     var(--olive-deep);
  --primary-contrast:  var(--text-on-primary);
  --accent:            var(--terracotta);
  --accent-hover:      var(--terracotta-deep);
  --accent-contrast:   #fbf3ee;
  --info:              var(--sky-deep);

  /* Overlay & scrim (for full-bleed photo slider) */
  --scrim:        rgba(28, 30, 24, 0.42);
  --scrim-strong: rgba(28, 30, 24, 0.62);
}
/* ============================================================
   ZERO ESTRÉS · TYPOGRAPHY TOKENS
   ============================================================ */

:root {
  /* ---- Families ---- */
  --font-display: 'Schibsted Grotesk', 'Hanken Grotesk', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-serif:   'Newsreader', Georgia, 'Times New Roman', serif;
  --font-mono:    'Space Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* ---- Weights ---- */
  --fw-light: 300; /* @kind font */
  --fw-regular: 400; /* @kind font */
  --fw-medium: 500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold: 700; /* @kind font */
  --fw-black: 900; /* @kind font */

  /* ---- Fluid type scale (clamped, calm rhythm) ---- */
  --fs-display: clamp(2.75rem, 1.4rem + 5.8vw, 6rem); /* @kind other */
  --fs-h1: clamp(2.1rem, 1.3rem + 3.4vw, 3.75rem); /* @kind other */
  --fs-h2: clamp(1.65rem, 1.1rem + 2.2vw, 2.6rem); /* @kind other */
  --fs-h3: clamp(1.3rem, 1rem + 1.2vw, 1.85rem); /* @kind other */
  --fs-h4: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem); /* @kind other */
  --fs-lead: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); /* @kind other */
  --fs-body: 1.0625rem; /* @kind font */
  --fs-sm: 0.9375rem; /* @kind font */
  --fs-xs: 0.8125rem; /* @kind font */
  --fs-eyebrow: 0.75rem; /* @kind font */

  /* ---- Line heights ---- */
  --lh-tight: 1.04; /* @kind font */
  --lh-snug: 1.18; /* @kind font */
  --lh-normal: 1.5; /* @kind font */
  --lh-relaxed: 1.7; /* @kind font */

  /* ---- Letter spacing ---- */
  --ls-tight: -0.02em; /* @kind font */
  --ls-snug: -0.01em; /* @kind font */
  --ls-normal: 0; /* @kind font */
  --ls-wide: 0.04em; /* @kind font */
  --ls-eyebrow: 0.18em; /* @kind font */
}
/* ============================================================
   ZERO ESTRÉS · SPACING, RADII, SHADOWS, MOTION, LAYOUT
   Calm, architectural rhythm — soft diffuse light, no bounce.
   ============================================================ */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --s-0:   0; /* @kind spacing */
  --s-1:   0.25rem;   /* 4 */
  --s-2:   0.5rem;    /* 8 */
  --s-3:   0.75rem;   /* 12 */
  --s-4:   1rem;      /* 16 */
  --s-5:   1.5rem;    /* 24 */
  --s-6:   2rem;      /* 32 */
  --s-7:   3rem;      /* 48 */
  --s-8:   4rem;      /* 64 */
  --s-9:   6rem;      /* 96 */
  --s-10:  8rem;      /* 128 */

  /* ---- Layout ---- */
  --container: 1200px; /* @kind spacing */
  --container-wide: 1400px; /* @kind spacing */
  --container-text: 720px; /* @kind spacing */
  --gutter: clamp(1.25rem, 4vw, 4rem); /* @kind spacing */
  --section-y: clamp(4rem, 8vw, 8rem); /* @kind spacing */

  /* ---- Radii (soft, not bubbly) ---- */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-pill: 999px;

  /* ---- Borders ---- */
  --bw: 1px; /* @kind spacing */
  --bw-thick: 1.5px; /* @kind spacing */

  /* ---- Shadows (warm, soft, diffuse — natural light) ---- */
  --shadow-xs:  0 1px 2px rgba(32, 34, 28, 0.06);
  --shadow-sm:  0 2px 8px -2px rgba(32, 34, 28, 0.10);
  --shadow-md:  0 10px 28px -12px rgba(32, 34, 28, 0.18);
  --shadow-lg:  0 26px 60px -22px rgba(32, 34, 28, 0.26);
  --shadow-xl:  0 40px 90px -30px rgba(32, 34, 28, 0.32);
  --shadow-focus: 0 0 0 3px var(--ring);

  /* ---- Motion (gentle, calm — ease out, never bounce) ---- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in: cubic-bezier(0.55, 0.06, 0.68, 0.19); /* @kind other */
  --dur-fast: 160ms; /* @kind other */
  --dur-mid: 280ms; /* @kind other */
  --dur-slow: 520ms; /* @kind other */
  --dur-kenburns: 12s; /* @kind other */
}

/* ===== BASE HELPERS (scoped) ===== */
/* ============================================================
   ZERO ESTRÉS · BASE ELEMENT STYLES
   Sensible global defaults built on the tokens. Calm by default.
   ============================================================ */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: var(--ls-snug); }
h4 { font-size: var(--fs-h4); letter-spacing: var(--ls-snug); }

p { margin: 0 0 1em; text-wrap: pretty; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--primary-hover); }

strong { font-weight: var(--fw-semibold); }

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

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--r-xs);
}

::selection { background: var(--sage-tint-2); color: var(--ink); }

hr { border: 0; border-top: var(--bw) solid var(--border); margin: var(--s-6) 0; }

/* ---- Reusable text helpers ---- */
.ze-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--primary);
  font-weight: var(--fw-regular);
}
.ze-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.ze-lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-relaxed);
  color: var(--text-muted);
}
.ze-serif-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
}

/* ---- Layout helpers ---- */
.ze-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.ze-container--wide { max-width: var(--container-wide); }
.ze-container--text { max-width: var(--container-text); }
.ze-section { padding-block: var(--section-y); }

/* ===== COMPONENTS + SECTIONS (from _ds_bundle.js) ===== */

.ze-badge {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  font-weight: var(--fw-regular);
  padding: 0.28em 0.72em;
  border-radius: var(--r-pill);
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}
.ze-badge[data-dot="true"]::before {
  content: ""; width: 0.5em; height: 0.5em; border-radius: 50%;
  background: currentColor; opacity: 0.85;
}
.ze-badge--neutral  { background: var(--paper-2); color: var(--slate); }
.ze-badge--olive    { background: var(--sage-tint); color: var(--olive-deep); }
.ze-badge--terra    { background: var(--terracotta-tint); color: var(--terracotta-deep); }
.ze-badge--sky      { background: var(--sky-tint); color: var(--sky-deep); }
.ze-badge--success  { background: var(--success-tint); color: var(--success); }
.ze-badge--warning  { background: var(--warning-tint); color: var(--warning); }
.ze-badge--danger   { background: var(--danger-tint); color: var(--danger); }
.ze-badge--solid    { background: var(--primary); color: var(--primary-contrast); }


/* ---- next block ---- */


.ze-btn {
  --_bg: var(--primary);
  --_fg: var(--primary-contrast);
  --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  line-height: 1;
  white-space: nowrap;
  border: var(--bw-thick) solid var(--_bd);
  background: var(--_bg);
  color: var(--_fg);
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.ze-btn:active { transform: translateY(1px) scale(0.99); }
.ze-btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

.ze-btn--sm { font-size: var(--fs-sm); padding: 0.5rem 1rem; }
.ze-btn--md { font-size: var(--fs-body); padding: 0.72rem 1.4rem; }
.ze-btn--lg { font-size: var(--fs-lead); padding: 0.95rem 1.9rem; }

.ze-btn--primary { --_bg: var(--primary); --_fg: var(--primary-contrast); }
.ze-btn--primary:hover { --_bg: var(--primary-hover); }

.ze-btn--accent { --_bg: var(--accent); --_fg: var(--accent-contrast); }
.ze-btn--accent:hover { --_bg: var(--accent-hover); }

.ze-btn--secondary { --_bg: transparent; --_fg: var(--text); --_bd: var(--border-strong); }
.ze-btn--secondary:hover { --_bg: var(--ink); --_fg: var(--text-inverse); --_bd: var(--ink); }

.ze-btn--ghost { --_bg: transparent; --_fg: var(--primary); --_bd: transparent; }
.ze-btn--ghost:hover { --_bg: var(--sage-tint); }

.ze-btn--light { --_bg: var(--paper); --_fg: var(--ink); --_bd: transparent; }
.ze-btn--light:hover { --_bg: var(--white); box-shadow: var(--shadow-sm); }

.ze-btn[data-block="true"] { display: flex; width: 100%; }
.ze-btn[disabled], .ze-btn[aria-disabled="true"] {
  opacity: 0.45; pointer-events: none; cursor: not-allowed;
}
.ze-btn svg { width: 1.15em; height: 1.15em; flex: none; }


/* ---- next block ---- */


.ze-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: var(--bw) solid var(--border);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out), border-color var(--dur-mid) var(--ease-out);
}
.ze-card--flat     { box-shadow: none; }
.ze-card--raised   { box-shadow: var(--shadow-sm); border-color: transparent; }
.ze-card--floating { box-shadow: var(--shadow-md); border-color: transparent; }
.ze-card--sage  { background: var(--sage-tint); border-color: transparent; }
.ze-card--dark  { background: var(--forest); border-color: transparent; color: var(--paper); }
.ze-card[data-interactive="true"] { cursor: pointer; }
.ze-card[data-interactive="true"]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ze-card__media { display: block; width: 100%; }
.ze-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ze-card__body { padding: var(--s-5); }
.ze-card__body--lg { padding: var(--s-6); }
.ze-card__body--sm { padding: var(--s-4); }


/* ---- next block ---- */


.ze-iconbtn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  border: var(--bw-thick) solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.ze-iconbtn:active { transform: scale(0.93); }
.ze-iconbtn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.ze-iconbtn--sm { width: 36px; height: 36px; }
.ze-iconbtn--md { width: 44px; height: 44px; }
.ze-iconbtn--lg { width: 56px; height: 56px; }
.ze-iconbtn--sm svg { width: 18px; height: 18px; }
.ze-iconbtn--md svg { width: 20px; height: 20px; }
.ze-iconbtn--lg svg { width: 24px; height: 24px; }

.ze-iconbtn--solid { background: var(--primary); color: var(--primary-contrast); }
.ze-iconbtn--solid:hover { background: var(--primary-hover); }
.ze-iconbtn--outline { border-color: var(--border-strong); color: var(--text); }
.ze-iconbtn--outline:hover { background: var(--ink); color: var(--text-inverse); border-color: var(--ink); }
.ze-iconbtn--ghost { color: var(--text-muted); }
.ze-iconbtn--ghost:hover { background: var(--sage-tint); color: var(--primary); }
.ze-iconbtn--glass {
  background: rgba(255,255,255,0.16); color: #fff;
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.ze-iconbtn--glass:hover { background: rgba(255,255,255,0.28); }
.ze-iconbtn[disabled] { opacity: 0.4; pointer-events: none; }


/* ---- next block ---- */


.ze-tag {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--ink-soft);
  background: var(--surface);
  border: var(--bw) solid var(--border);
  padding: 0.45em 0.95em;
  border-radius: var(--r-pill);
  line-height: 1.2;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.ze-tag svg { width: 1.05em; height: 1.05em; flex: none; color: var(--olive); }
a.ze-tag, button.ze-tag { cursor: pointer; text-decoration: none; }
a.ze-tag:hover, button.ze-tag:hover { border-color: var(--olive); color: var(--olive-deep); background: var(--sage-tint); }
.ze-tag--filled { background: var(--sage-tint); border-color: transparent; color: var(--olive-deep); }
.ze-tag--filled svg { color: var(--olive-deep); }


/* ---- next block ---- */


.ze-check { display: inline-flex; align-items: flex-start; gap: 0.65rem; cursor: pointer; font-family: var(--font-body); color: var(--ink); }
.ze-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.ze-check__box {
  width: 22px; height: 22px; flex: none; margin-top: 1px;
  border: var(--bw-thick) solid var(--border-strong);
  border-radius: var(--r-xs);
  background: var(--surface);
  display: grid; place-items: center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.ze-check__box svg { width: 14px; height: 14px; color: var(--primary-contrast); opacity: 0; transform: scale(0.6); transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.ze-check input:checked + .ze-check__box { background: var(--primary); border-color: var(--primary); }
.ze-check input:checked + .ze-check__box svg { opacity: 1; transform: scale(1); }
.ze-check input:focus-visible + .ze-check__box { box-shadow: var(--shadow-focus); }
.ze-check input:disabled ~ * { opacity: 0.5; }
.ze-check__text { font-size: var(--fs-sm); line-height: 1.4; }
.ze-check__text small { display: block; color: var(--slate); font-size: var(--fs-xs); }


/* ---- next block ---- */


.ze-field { display: flex; flex-direction: column; gap: 0.4rem; }
.ze-field__label {
  font-family: var(--font-body); font-size: var(--fs-sm);
  font-weight: var(--fw-semibold); color: var(--ink);
}
.ze-field__req { color: var(--terracotta); margin-left: 2px; }
.ze-field__hint { font-size: var(--fs-xs); color: var(--slate); }
.ze-field__error { font-size: var(--fs-xs); color: var(--danger); font-weight: var(--fw-medium); }

.ze-inputwrap { position: relative; display: flex; align-items: center; }
.ze-inputwrap__icon {
  position: absolute; left: 0.95rem; display: flex; color: var(--slate); pointer-events: none;
}
.ze-inputwrap__icon svg { width: 18px; height: 18px; }
.ze-input {
  width: 100%;
  font-family: var(--font-body); font-size: var(--fs-body);
  color: var(--ink); background: var(--surface);
  border: var(--bw-thick) solid var(--border);
  border-radius: var(--r-md);
  padding: 0.72rem 0.95rem;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.ze-input::placeholder { color: var(--slate-soft); }
.ze-input:hover { border-color: var(--border-strong); }
.ze-input:focus { outline: none; border-color: var(--olive); box-shadow: var(--shadow-focus); }
.ze-inputwrap--icon .ze-input { padding-left: 2.7rem; }
.ze-input[aria-invalid="true"] { border-color: var(--danger); }
.ze-input[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px var(--danger-tint); }
.ze-input:disabled { background: var(--paper-2); color: var(--slate); cursor: not-allowed; }


/* ---- next block ---- */


.ze-selectwrap { position: relative; display: flex; align-items: center; }
.ze-select {
  width: 100%; appearance: none; -webkit-appearance: none;
  font-family: var(--font-body); font-size: var(--fs-body);
  color: var(--ink); background: var(--surface);
  border: var(--bw-thick) solid var(--border);
  border-radius: var(--r-md);
  padding: 0.72rem 2.6rem 0.72rem 0.95rem;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.ze-select:hover { border-color: var(--border-strong); }
.ze-select:focus { outline: none; border-color: var(--olive); box-shadow: var(--shadow-focus); }
.ze-select:disabled { background: var(--paper-2); color: var(--slate); cursor: not-allowed; }
.ze-selectwrap__chev {
  position: absolute; right: 0.95rem; pointer-events: none; color: var(--slate);
  width: 18px; height: 18px;
}


/* ---- next block ---- */


.ze-textarea {
  width: 100%;
  font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.55;
  color: var(--ink); background: var(--surface);
  border: var(--bw-thick) solid var(--border);
  border-radius: var(--r-md);
  padding: 0.72rem 0.95rem;
  resize: vertical; min-height: 7rem;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.ze-textarea::placeholder { color: var(--slate-soft); }
.ze-textarea:hover { border-color: var(--border-strong); }
.ze-textarea:focus { outline: none; border-color: var(--olive); box-shadow: var(--shadow-focus); }
.ze-textarea[aria-invalid="true"] { border-color: var(--danger); }


/* ---- next block ---- */


.ze-sechead { display: flex; flex-direction: column; gap: 0.85rem; max-width: 46rem; }
.ze-sechead--center { align-items: center; text-align: center; margin-inline: auto; }
.ze-sechead__eyebrow {
  font-family: var(--font-mono); font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--primary); display: inline-flex; align-items: center; gap: 0.6em;
}
.ze-sechead__eyebrow::before {
  content: ""; width: 1.6rem; height: 1px; background: currentColor; opacity: 0.6;
}
.ze-sechead--center .ze-sechead__eyebrow::after {
  content: ""; width: 1.6rem; height: 1px; background: currentColor; opacity: 0.6;
}
.ze-sechead__title { margin: 0; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h2); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); color: var(--text); text-wrap: balance; }
.ze-sechead__lead { margin: 0; font-size: var(--fs-lead); line-height: var(--lh-relaxed); color: var(--text-muted); }
.ze-sechead--invert .ze-sechead__title { color: var(--paper); }
.ze-sechead--invert .ze-sechead__lead { color: var(--olive-soft); }
.ze-sechead--invert .ze-sechead__eyebrow { color: var(--terracotta-soft); }


/* ---- next block ---- */


.zefoot { background: var(--forest); color: var(--olive-soft); padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.zefoot__top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 760px) { .zefoot__top { grid-template-columns: 1.6fr 1fr 1fr; } }
.zefoot__brand img { height: 40px; filter: brightness(0) invert(1); opacity: 0.92; }
.zefoot__brand p { margin: 1.1rem 0 0; max-width: 24rem; color: var(--olive-soft); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }
.zefoot__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.zefoot__social a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); color: var(--paper);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.zefoot__social a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.zefoot__social svg { width: 17px; height: 17px; }
.zefoot__col h4 { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper); margin: 0 0 1rem; font-weight: 400; }
.zefoot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.zefoot__col a { color: var(--olive-soft); font-size: var(--fs-sm); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
.zefoot__col a:hover { color: var(--paper); }
.zefoot__bar { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.04em; color: rgba(255,255,255,0.5); }
.zefoot__bar a { color: rgba(255,255,255,0.5); text-decoration: none; }
.zefoot__bar a:hover { color: var(--paper); }


/* ---- next block ---- */


.zenav { position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid) var(--ease); }
.zenav__inner { max-width: var(--container-wide); margin-inline: auto; padding: 1.05rem clamp(1.5rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 2rem; }
.zenav__brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.zenav__brand img { height: 38px; width: auto; }
.zenav__links { display: none; gap: 1.9rem; margin-left: auto; }
@media (min-width: 940px) { .zenav__links { display: flex; } }
.zenav__link { font-family: var(--font-body); font-weight: var(--fw-medium); font-size: var(--fs-sm);
  letter-spacing: 0.01em; color: var(--ink); text-decoration: none; position: relative; padding: 0.3rem 0;
  transition: color var(--dur-fast) var(--ease); }
.zenav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--primary); transition: width var(--dur-mid) var(--ease-out); }
.zenav__link:hover { color: var(--primary); }
.zenav__link:hover::after { width: 100%; }
.zenav__actions { display: flex; align-items: center; gap: 0.8rem; margin-left: auto; }
@media (min-width: 940px) { .zenav__actions { margin-left: 1.6rem; } }
.zenav__phone { display: none; font-family: var(--font-mono); font-size: var(--fs-sm); color: var(--ink);
  text-decoration: none; align-items: center; gap: 0.45em; }
.zenav__phone svg { width: 15px; height: 15px; }
@media (min-width: 1080px) { .zenav__phone { display: inline-flex; } }
.zenav__burger { display: inline-flex; }
@media (min-width: 940px) { .zenav__burger { display: none; } }

/* transparent-over-hero mode */
.zenav[data-mode="hero"] { background: transparent; }
.zenav[data-mode="hero"] .zenav__link,
.zenav[data-mode="hero"] .zenav__phone { color: #fff; }
.zenav[data-mode="hero"] .zenav__link::after { background: #fff; }
.zenav[data-mode="hero"] .zenav__brand .mono { color: rgba(255,255,255,0.85); }
.zenav[data-mode="hero"] .zenav__brand img { filter: brightness(0) invert(1); }
.zenav[data-mode="solid"] { background: rgba(248,245,239,0.86);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: var(--bw) solid var(--border); box-shadow: var(--shadow-xs); }
.zenav__brand .mono { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--slate); }


/* ---- next block ---- */


.ze-wrap { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.5rem, 4vw, 3rem); }
.ze-wrap--wide { max-width: var(--container-wide); }
.sec-pad { padding-block: clamp(4rem, 8vw, 7.5rem); }

/* Value strip */
.ze-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.ze-value__k { font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem); color: var(--olive); line-height: 1; letter-spacing: var(--ls-tight); }
.ze-value__t { font-weight: var(--fw-semibold); margin: 0.6rem 0 0.25rem; }
.ze-value__d { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }

/* Spaces grid */
.ze-spaces { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.ze-space__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.9rem; }
.ze-space__price { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h4); color: var(--ink); white-space: nowrap; }
.ze-space__price span { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--slate); font-weight: 400; }

/* Amenities */
.ze-amen { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: clamp(2rem, 4vw, 3rem); }

/* Community (dark + photo) */
.ze-comm { background: var(--forest); color: var(--paper); overflow: hidden; }
.ze-comm__grid { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; }
@media (min-width: 880px) { .ze-comm__grid { grid-template-columns: 1.05fr 1fr; } }
.ze-comm__media { position: relative; min-height: 320px; }
.ze-comm__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ze-comm__body { padding: clamp(2.5rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; }
.ze-comm__stats { display: flex; gap: 2.2rem; flex-wrap: wrap; margin-top: 0.5rem; }
.ze-comm__stat b { display:block; font-family: var(--font-display); font-weight: var(--fw-black); font-size: var(--fs-h3); color: var(--terracotta-soft); line-height: 1; }
.ze-comm__stat span { font-size: var(--fs-sm); color: var(--olive-soft); }

/* Pricing */
.ze-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.8rem); margin-top: clamp(2.5rem, 5vw, 4rem); align-items: stretch; }
.ze-plan { display: flex; flex-direction: column; gap: 1.1rem; height: 100%; }
.ze-plan__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.ze-plan__name { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h4); margin: 0; }
.ze-plan__price { font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(2rem,1.4rem+1.8vw,2.7rem); line-height: 1; letter-spacing: var(--ls-tight); }
.ze-plan__price small { font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 400; color: var(--slate); letter-spacing: 0.04em; }
.ze-plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.ze-plan li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); }
.ze-plan li svg { width: 17px; height: 17px; color: var(--olive); flex: none; margin-top: 1px; }
.ze-plan--feat li { color: var(--paper); }
.ze-plan--feat li svg { color: var(--terracotta-soft); }

/* Contact */
.ze-contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,4vw,3.5rem); }
@media (min-width: 860px) { .ze-contact__grid { grid-template-columns: 0.85fr 1.15fr; } }
.ze-contact__info { display: flex; flex-direction: column; gap: 1.6rem; }
.ze-contact__row { display: flex; gap: 0.9rem; align-items: flex-start; }
.ze-contact__row svg { width: 20px; height: 20px; color: var(--olive); flex: none; margin-top: 2px; }
.ze-contact__row b { display:block; margin-bottom: 1px; }
.ze-contact__row span { color: var(--text-muted); font-size: var(--fs-sm); }
.ze-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.ze-form .col-2 { grid-column: 1 / -1; }
.ze-formcard { background: var(--surface); border: var(--bw) solid var(--border); border-radius: var(--r-xl); padding: clamp(1.5rem,3vw,2.4rem); box-shadow: var(--shadow-md); }
.ze-sent { text-align: center; padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.ze-sent svg { width: 46px; height: 46px; color: var(--olive); }

/* ===== HERO SLIDER (.zhs) ===== */

.zhs { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--forest); isolation: isolate; }
.zhs__track { position: absolute; inset: 0; }
.zhs__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1100ms var(--ease); will-change: opacity; }
.zhs__slide[data-active="true"] { opacity: 1; z-index: 1; }
.zhs__img {
  position: absolute; inset: -2%; width: 104%; height: 104%; object-fit: cover;
  transform: scale(1.0); transition: none;
}
.zhs__slide[data-active="true"] .zhs__img {
  animation: zhsKen var(--dur-kenburns) linear forwards;
}
@keyframes zhsKen {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .zhs__slide[data-active="true"] .zhs__img { animation: none; transform: scale(1.04); }
}
.zhs__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,24,16,0.42) 0%, rgba(20,24,16,0) 32%),
    linear-gradient(8deg, rgba(20,24,16,0.74) 4%, rgba(20,24,16,0.28) 42%, rgba(20,24,16,0) 70%);
}

/* Caption */
.zhs__caption { position: absolute; z-index: 3; left: 0; right: 0; bottom: clamp(5rem, 11vh, 9rem);
  padding-inline: clamp(1.5rem, 6vw, 6rem); max-width: 56rem; color: #fff; }
.zhs__eyebrow { font-family: var(--font-mono); font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--terracotta-soft); display: inline-flex; align-items: center; gap: 0.7em; }
.zhs__eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; opacity: 0.8; }
.zhs__title { font-family: var(--font-display); font-weight: var(--fw-black); line-height: 1.02;
  letter-spacing: var(--ls-tight); font-size: clamp(2.4rem, 1.2rem + 4.6vw, 5rem); margin: 0.5rem 0 0.7rem;
  color: #fff; text-wrap: balance; }
.zhs__lead { font-size: var(--fs-lead); line-height: var(--lh-snug); color: rgba(255,255,255,0.9);
  max-width: 34rem; margin: 0 0 1.6rem; }
.zhs__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
/* staged reveal — content is ALWAYS visible (opacity 1); we only slide it up.
   This keeps captions readable in print, reduced-motion, and static captures
   where the animation timeline may be paused. */
.zhs__caption > * { transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .zhs__caption.is-on > * { animation: zhsRise 760ms var(--ease-out) both; }
  .zhs__caption.is-on > *:nth-child(1) { animation-delay: 120ms; }
  .zhs__caption.is-on > *:nth-child(2) { animation-delay: 240ms; }
  .zhs__caption.is-on > *:nth-child(3) { animation-delay: 360ms; }
  .zhs__caption.is-on > *:nth-child(4) { animation-delay: 500ms; }
}
@keyframes zhsRise {
  from { transform: translateY(26px); }
  to   { transform: translateY(0); }
}

/* Arrows */
.zhs__nav { position: absolute; z-index: 4; top: 50%; transform: translateY(-50%); display: flex; }
.zhs__nav--prev { left: clamp(1rem, 2.5vw, 2rem); }
.zhs__nav--next { right: clamp(1rem, 2.5vw, 2rem); }

/* Bottom rail: counter + progress segments */
.zhs__rail { position: absolute; z-index: 4; left: 0; right: 0; bottom: clamp(1.5rem, 4vh, 2.5rem);
  display: flex; align-items: center; gap: 1.4rem; padding-inline: clamp(1.5rem, 6vw, 6rem); }
.zhs__count { font-family: var(--font-mono); font-size: var(--fs-sm); color: rgba(255,255,255,0.92);
  letter-spacing: 0.08em; white-space: nowrap; }
.zhs__count b { color:#fff; font-weight: 700; }
.zhs__segs { display: flex; gap: 0.6rem; flex: 1; max-width: 30rem; }
.zhs__seg { position: relative; height: 3px; flex: 1; border-radius: 2px; background: rgba(255,255,255,0.28);
  cursor: pointer; overflow: hidden; transition: background var(--dur-fast) var(--ease); }
.zhs__seg:hover { background: rgba(255,255,255,0.5); }
.zhs__seg::after { content: ""; position: absolute; inset: 0; width: 0; background: #fff; }
.zhs__seg[data-done="true"]::after { width: 100%; }
.zhs__seg[data-active="true"]::after { animation: zhsFill var(--dur, 6500ms) linear forwards; }
@keyframes zhsFill { from { width: 0; } to { width: 100%; } }
.zhs__seg.is-paused::after { animation-play-state: paused; }
.zhs__label { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78); white-space: nowrap; display: none; }
@media (min-width: 900px) { .zhs__label { display: block; } }


/* ============================================================
   WORDPRESS / SALIENT INTEGRATION  (Adigital · zeroestres redesign)
   ============================================================ */

/* Adopt the design globally */
body.ze-redesign { font-family: var(--font-body); color: var(--text); background: var(--paper); }
/* font only — NEVER force a global heading color (it overrode white-on-dark titles) */
body.ze-redesign h1, body.ze-redesign h2, body.ze-redesign h3,
body.ze-redesign h4, body.ze-redesign h5 { font-family: var(--font-display); }

/* Hide Salient's own header & footer — we inject our own .zenav / .zefoot */
body.ze-redesign #header-outer,
body.ze-redesign #header-space,
body.ze-redesign #search-outer,
body.ze-redesign #footer-outer,
body.ze-redesign #footer-widgets,
body.ze-redesign .nectar-global-section.before-footer,
body.ze-redesign .nectar-global-section.after-header,
body.ze-redesign .ocm-effect-wrap > #header-outer { display: none !important; }

/* Kill container chrome so full-bleed sections reach the edges */
body.ze-redesign .container-wrap { padding: 0 !important; margin: 0 !important; background: var(--paper); }
body.ze-redesign #content { padding: 0 !important; margin: 0 !important; }
body.ze-redesign .container-wrap .container,
body.ze-redesign #content > .container { max-width: none !important; width: 100% !important; padding: 0 !important; }
body.ze-redesign .post-area, body.ze-redesign .span_12, body.ze-redesign .row .col { margin: 0 !important; }

/* Full-bleed WPBakery wrapper for our raw-html sections */
body.ze-redesign .ze-fullbleed,
body.ze-redesign .ze-fullbleed .vc_col-sm-12,
body.ze-redesign .ze-fullbleed .vc_column_container,
body.ze-redesign .ze-fullbleed .vc_column-inner,
body.ze-redesign .ze-fullbleed .wpb_wrapper,
body.ze-redesign .ze-fullbleed .wpb_text_column,
body.ze-redesign .ze-fullbleed .wpb_raw_code { padding: 0 !important; margin: 0 !important; max-width: none !important; }
body.ze-redesign .ze-fullbleed .wpb_content_element { margin-bottom: 0 !important; }

/* Inner (non-home) pages: clear the fixed navbar */
body.ze-redesign.ze-inner #ze-app { padding-top: 0; }
body.ze-redesign.ze-inner .ze-pagehead { padding-top: calc(var(--s-9) + 2.5rem); }

/* The fixed navbar sits above the admin bar offset cleanly */
.admin-bar .zenav { top: 32px; }
@media (max-width: 782px){ .admin-bar .zenav { top: 46px; } }

/* ---- Mobile nav drawer ---- */
.zenav__drawer { position: fixed; inset: 0 0 auto 0; top: 0; background: var(--forest);
  transform: translateY(-100%); transition: transform var(--dur-mid) var(--ease-out);
  z-index: 49; padding: 5.5rem clamp(1.5rem,6vw,3rem) 2.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.zenav__drawer.is-open { transform: translateY(0); }
.zenav__drawer a { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 1.5rem;
  color: var(--paper); text-decoration: none; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.zenav__drawer a:hover { color: var(--terracotta-soft); }
.zenav__drawer .zenav__drawer-cta { margin-top: 1.4rem; }
@media (min-width: 940px){ .zenav__drawer { display: none !important; } }
.zenav__close { position: absolute; top: 1.4rem; right: 1.4rem; }

/* ---- Page head (inner pages hero-lite) ---- */
.ze-pagehead { background: var(--forest); color: var(--paper); padding-block: calc(var(--s-9) + 2.5rem) var(--s-8); }
.ze-pagehead .ze-eyebrow { color: var(--terracotta-soft); }
.ze-pagehead h1 { color: var(--paper); font-size: var(--fs-h1); margin: 0.4rem 0 0.6rem; }
.ze-pagehead p { color: var(--olive-soft); font-size: var(--fs-lead); max-width: 40rem; margin: 0; }

/* ---- Legal / text page ---- */
.ze-legal { padding-block: calc(var(--s-8)) var(--s-9); }
.ze-legal h2 { font-size: var(--fs-h3); margin: 2rem 0 0.6rem; }
.ze-legal h3 { font-size: var(--fs-h4); margin: 1.4rem 0 0.5rem; }
.ze-legal p, .ze-legal li { color: var(--text-muted); line-height: var(--lh-relaxed); }

/* ============================================================
   QUFORM RESTYLE → match .ze-input / .ze-btn
   ============================================================ */
.ze-quform .quform-element > label,
.ze-quform .quform-label label { font-family: var(--font-body); font-size: var(--fs-sm);
  font-weight: var(--fw-semibold); color: var(--ink); margin-bottom: 0.4rem; }
.ze-quform .quform-required { color: var(--terracotta); }
.ze-quform input[type=text], .ze-quform input[type=email], .ze-quform input[type=tel],
.ze-quform input[type=number], .ze-quform textarea, .ze-quform select {
  width: 100%; font-family: var(--font-body); font-size: var(--fs-body); color: var(--ink);
  background: var(--surface); border: var(--bw-thick) solid var(--border); border-radius: var(--r-md);
  padding: 0.72rem 0.95rem; box-shadow: none; transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.ze-quform textarea { min-height: 7rem; resize: vertical; line-height: 1.55; }
.ze-quform input:focus, .ze-quform textarea:focus, .ze-quform select:focus {
  outline: none; border-color: var(--olive); box-shadow: var(--shadow-focus); }
.ze-quform .quform-input-image { display:none; }
.ze-quform .quform-submit button, .ze-quform button[type=submit] {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: var(--fs-lead);
  background: var(--primary); color: var(--primary-contrast); border: var(--bw-thick) solid transparent;
  border-radius: var(--r-pill); padding: 0.95rem 1.9rem; cursor: pointer; width: 100%;
  transition: background var(--dur-fast) var(--ease); }
.ze-quform .quform-submit button:hover, .ze-quform button[type=submit]:hover { background: var(--primary-hover); }
.ze-quform .quform-success-message { color: var(--success); font-weight: var(--fw-medium); }
.ze-quform .quform-element { margin-bottom: 1rem; }

/* WPBakery text wrapper holding the form: clear default styles */
.ze-formcard .wpb_text_column, .ze-formcard p:empty { margin: 0; }

/* ---- Hero sizing + anchors + icons (from prototype page <style>) ---- */
.zhs#hero, #hero.zhs { height: 100svh; min-height: 560px; }
body.ze-redesign section[id] { scroll-margin-top: 76px; }
body.ze-redesign [data-lucide] { stroke-width: 1.9; width: 1em; height: 1em; }
html { scroll-behavior: smooth; }

/* Contact section helpers (form runs via Quform shortcode in a text block) */
.ze-contact-sec { padding-block: clamp(4rem, 8vw, 7.5rem); background: var(--paper); }
.ze-contact-sec .wpb_text_column > p:empty { display: none; margin: 0; }
.ze-sec-paper { background: var(--paper); }
.ze-sec-alt { background: var(--bg-alt); }

/* ---- QA fix: guarantee hero text legibility over busy photos ---- */
.zhs__scrim {
  background:
    linear-gradient(180deg, rgba(20,24,16,0.48) 0%, rgba(20,24,16,0) 30%),
    linear-gradient(7deg, rgba(20,24,16,0.82) 2%, rgba(20,24,16,0.38) 46%, rgba(20,24,16,0) 74%) !important;
}
.zhs__title { text-shadow: 0 2px 26px rgba(18,22,14,0.55), 0 1px 3px rgba(18,22,14,0.45); }
.zhs__lead  { text-shadow: 0 1px 14px rgba(18,22,14,0.5); }
.zhs__eyebrow { text-shadow: 0 1px 8px rgba(18,22,14,0.5); }

/* ============================================================
   QA ROUND 2 — full-width + heading colors on light surfaces
   ============================================================ */
body.ze-redesign { overflow-x: hidden; }
body.ze-redesign #ajax-content-wrap,
body.ze-redesign #boxed,
body.ze-redesign .container-wrap,
body.ze-redesign #page-wrap { background: var(--paper) !important; }

/* Break each section row out to the FULL viewport width (kills boxed/centered gaps) */
body.ze-redesign .ze-fullbleed {
  position: relative; left: 50%; right: 50%;
  margin-left: -50vw !important; margin-right: -50vw !important;
  width: 100vw !important; max-width: 100vw !important;
}

/* We removed the global heading color, so set dark explicitly on LIGHT surfaces */
body.ze-redesign .ze-card__body h3,
body.ze-redesign .sec-pad h3,
body.ze-redesign .ze-plan__name { color: var(--ink); }
body.ze-redesign .ze-card--dark .ze-plan__name { color: var(--paper); }

/* Video hero slide */
.zhs__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===== QA ROUND 2 — nuevas secciones (features reales) ===== */
.ze-value__ic { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--sage-tint);
  display: grid; place-items: center; color: var(--olive); margin-bottom: 0.9rem; }
.ze-value__ic [data-lucide], .ze-value__ic svg { width: 24px; height: 24px; }

/* 2-up grids centered */
.ze-spaces--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 920px; margin-inline: auto; }
.ze-plans--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 820px; margin-inline: auto; }

/* Office features checklist */
.ze-feats { margin-top: clamp(2rem, 4vw, 3rem); background: var(--surface); border: var(--bw) solid var(--border);
  border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.ze-feats__title { font-family: var(--font-display); font-size: var(--fs-h4); margin: 0 0 1.1rem; color: var(--ink); }
.ze-feats__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 0.7rem 2rem; }
@media (min-width: 620px) { .ze-feats__list { grid-template-columns: 1fr 1fr; } }
.ze-feats__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-soft); }
.ze-feats__list li svg { width: 17px; height: 17px; color: var(--olive); flex: none; margin-top: 2px; }

/* Mobile: hide slider arrows (they overlapped the caption); swipe + dots remain */
@media (max-width: 760px) { .zhs__nav { display: none; } }
/* Mobile: a touch more breathing room under the fixed navbar for hero caption */
@media (max-width: 760px) { .zhs__caption { bottom: clamp(4.5rem, 16vh, 7rem); } }

/* ===== QA round 2 — polish ===== */
.zhs__caption, .zhs__lead, .zhs__title { text-align: left; }
.ze-pagehead p { color: var(--paper); opacity: 0.82; }
@media (max-width: 760px) {
  .ze-plans { gap: 1.5rem; }
  .ze-spaces { gap: 1.5rem; }
}

/* ===== QA round 3 — mobile menu + light navbar + hero contrast ===== */
/* Drawer above the fixed header so its X is tappable; lock scroll handled in JS */
.zenav__drawer { z-index: 60; }

/* Burger + Reservar must be visible when navbar is SOLID (light background) */
.zenav[data-mode="solid"] .zenav__burger .ze-iconbtn {
  background: transparent; color: var(--ink); border: var(--bw-thick) solid var(--border-strong);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.zenav[data-mode="solid"] .zenav__burger .ze-iconbtn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.zenav[data-mode="solid"] .zenav__actions .ze-btn--light {
  background: var(--primary); color: var(--primary-contrast);
}
.zenav[data-mode="solid"] .zenav__actions .ze-btn--light:hover { background: var(--primary-hover); }

/* Hero caption: guaranteed dark wash behind text on bright slides (e.g. slide 2) */
.zhs__caption { isolation: isolate; }
.zhs__caption::before {
  content: ""; position: absolute; z-index: -1;
  left: -2rem; right: -2rem; top: -2.5rem; bottom: -3rem;
  background: radial-gradient(130% 130% at 0% 100%, rgba(16,20,12,0.62) 0%, rgba(16,20,12,0.30) 42%, rgba(16,20,12,0) 72%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .zhs__caption::before { left: -1.5rem; right: -1.5rem; top: -2rem; bottom: -2.5rem;
    background: radial-gradient(150% 130% at 30% 100%, rgba(16,20,12,0.66) 0%, rgba(16,20,12,0.32) 48%, rgba(16,20,12,0) 78%); }
}

/* Kill inherited justify on our copy (Salient justifies body p) */
body.ze-redesign .ze-value__d, body.ze-redesign .ze-value__t,
body.ze-redesign .ze-sechead__lead, body.ze-redesign .ze-card__body p,
body.ze-redesign .ze-feats__list li, body.ze-redesign .ze-comm__body p,
body.ze-redesign .zhs__lead, body.ze-redesign .ze-legal p,
body.ze-redesign .ze-pagehead p { text-align: left; }
body.ze-redesign .ze-sechead--center .ze-sechead__lead { text-align: center; }

/* Value strip — feature titles in big ClaudeDesign display style */
.ze-value__big { font-family: var(--font-display); font-weight: var(--fw-black);
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.15rem); color: var(--olive);
  line-height: 1.08; letter-spacing: var(--ls-tight); margin-bottom: 0.7rem; text-wrap: balance; }
