/* ============================================
   Maison Sarti — Garden Estate (Style Variant)
   Romantic château · soft daylight · garden hospitality
   ============================================ */

:root {
  --alabaster: #FBF8F2;
  --french-blue: #2C2A26;
  --brushed-gold: #B8956C;
  --pale-peach: #E8D5D0;
  --muted-sage: #E6EBE3;
  --accent-sage: #5F6F5A;
  --text-primary: #2C2A26;
  --text-body: #3D3A35;
  --text-muted: #6E6A62;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 36px rgba(44, 42, 38, 0.07);
  --shadow-hover: 0 18px 48px rgba(44, 42, 38, 0.12);
  --shadow-drawer: -8px 0 40px rgba(44, 42, 38, 0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Libre Baskerville", "Cormorant Garamond", Georgia, serif;
  --font-body: "Lato", "Montserrat", system-ui, sans-serif;
  --nav-height: 86px;
  --max-width: 1200px;
  --drawer-width: min(400px, 100vw);
  --preview-h: 32px;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--alabaster);
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open,
body.cart-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--french-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brushed-gold); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--french-blue);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.65rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--peach { background-color: var(--pale-peach); }
.section--sage { background-color: var(--muted-sage); }
.section--tight { padding: 3rem 0; }

:focus-visible { outline: 2px solid var(--brushed-gold); outline-offset: 3px; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--french-blue); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 10000; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.95rem 1.75rem; border: 1px solid var(--brushed-gold);
  border-radius: var(--radius); cursor: pointer; transition: all var(--transition);
  text-decoration: none; line-height: 1; background: transparent; color: var(--french-blue);
}
.btn--primary { background: var(--french-blue); color: var(--white); border-color: var(--french-blue); }
.btn--primary:hover { background: transparent; color: var(--french-blue); border-color: var(--brushed-gold); }
.btn--secondary { background: transparent; color: var(--french-blue); border-color: var(--brushed-gold); }
.btn--secondary:hover { background: var(--french-blue); color: var(--white); border-color: var(--french-blue); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--brushed-gold); }
.btn--ghost:hover { background: var(--brushed-gold); color: var(--french-blue); }
.btn--gold {
  background: transparent; color: var(--french-blue); border-color: var(--brushed-gold);
  font-size: 0.6875rem; padding: 0.7rem 1.15rem;
}
.btn--gold:hover { background: var(--brushed-gold); color: var(--french-blue); }
.btn--full { width: 100%; }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.6875rem; }

.gold-line { width: 60px; height: 1px; background: var(--brushed-gold); margin: 1.25rem 0; border: none; }
.gold-line--center { margin-left: auto; margin-right: auto; }

.banner {
  background: var(--french-blue); color: var(--white); text-align: center;
  padding: 0.8rem 1.5rem; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--brushed-gold);
}
.banner--note {
  background: var(--pale-peach); color: var(--french-blue);
  border-top: 1px solid var(--brushed-gold); border-bottom: 1px solid var(--brushed-gold);
  letter-spacing: 0.04em; text-transform: none; font-size: 0.9rem; font-weight: 400; padding: 1.2rem 1.5rem;
}

/* ========== NAVIGATION ========== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 249, 245, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); gap: 1rem;
}

.nav__logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--french-blue); letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.nav__logo span {
  display: block; font-family: var(--font-body); font-size: 0.5rem; font-weight: 400;
  letter-spacing: 0.26em; color: var(--brushed-gold); margin-top: 0.1rem;
}

.nav__center { display: flex; align-items: center; gap: 0.15rem; flex: 1; justify-content: center; }

.nav__item { position: relative; }

.nav__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--french-blue); padding: 0.65rem 0.7rem; position: relative; background: none; border: none;
  cursor: pointer; font-family: var(--font-body);
}
.nav__link::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.35rem;
  height: 1px; background: var(--brushed-gold); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: left;
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after,
.nav__item:hover > .nav__link::after,
.nav__item.is-open > .nav__link::after { transform: scaleX(1); }
.nav__link:hover { color: var(--french-blue); }

.nav__chevron {
  width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px); transition: transform var(--transition); opacity: 0.7;
}
.nav__item.is-open .nav__chevron,
.nav__item:hover .nav__chevron { transform: rotate(225deg) translateY(-1px); }

.nav__dropdown {
  position: absolute; top: calc(100% + 0.25rem); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 220px; background: var(--white); border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-soft); padding: 0.65rem 0; opacity: 0; visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1100;
}
.nav__item:hover > .nav__dropdown,
.nav__item.is-open > .nav__dropdown,
.nav__item:focus-within > .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block; padding: 0.55rem 1.25rem; font-size: 0.75rem; letter-spacing: 0.06em;
  color: var(--french-blue); text-transform: none; font-weight: 400;
}
.nav__dropdown a:hover { background: var(--pale-peach); color: var(--french-blue); }
.nav__dropdown a[aria-current="page"] { color: var(--brushed-gold); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.nav__cart {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: transparent; border: 1px solid transparent;
  border-radius: var(--radius); cursor: pointer; color: var(--french-blue); transition: border-color var(--transition);
}
.nav__cart:hover { border-color: var(--brushed-gold); }
.nav__cart svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.nav__cart-badge {
  position: absolute; top: 4px; right: 4px; min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--brushed-gold); color: var(--french-blue); font-size: 0.5625rem; font-weight: 600;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.nav__cart-badge:empty,
.nav__cart-badge[data-count="0"] { display: none; }

.nav__book { white-space: nowrap; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: 1px solid transparent;
  cursor: pointer; padding: 8px; border-radius: var(--radius);
}
.nav__toggle:hover { border-color: var(--brushed-gold); }
.nav__toggle-bar { display: block; width: 100%; height: 1.5px; background: var(--french-blue); transition: transform var(--transition), opacity var(--transition); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== CART DRAWER ========== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(27, 54, 93, 0.35); z-index: 2000;
  opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition);
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; width: var(--drawer-width); height: 100%;
  background: var(--alabaster); z-index: 2001; display: flex; flex-direction: column;
  box-shadow: var(--shadow-drawer); transform: translateX(100%);
  transition: transform var(--transition); border-left: 1px solid var(--brushed-gold);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.5rem; border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}
.cart-drawer__header h2 { font-size: 1.5rem; margin: 0; }
.cart-drawer__close {
  width: 36px; height: 36px; background: transparent; border: 1px solid transparent;
  cursor: pointer; color: var(--french-blue); font-size: 1.5rem; line-height: 1;
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.cart-drawer__close:hover { border-color: var(--brushed-gold); }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-drawer__empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); font-size: 0.9rem; }
.cart-drawer__empty a { display: inline-block; margin-top: 1rem; }

.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 0.85rem; align-items: start;
  padding: 1rem 0; border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.cart-item__thumb {
  width: 64px; height: 64px; border: 1px solid rgba(212, 175, 55, 0.35); border-radius: var(--radius);
}
.cart-item__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--french-blue); margin-bottom: 0.2rem; }
.cart-item__meta { font-size: 0.75rem; color: var(--text-muted); }
.cart-item__price { font-size: 0.8125rem; color: var(--french-blue); font-weight: 500; margin-top: 0.35rem; }
.cart-item__remove {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem;
}
.cart-item__remove:hover { color: var(--french-blue); }

.cart-drawer__footer {
  padding: 1.35rem 1.5rem 1.75rem; border-top: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--white);
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1rem; font-size: 0.875rem; color: var(--text-muted);
}
.cart-drawer__subtotal strong {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--french-blue); font-weight: 500;
}
.cart-drawer__note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; letter-spacing: 0.04em; }

/* ========== HERO ========== */
.hero { position: relative; padding: 5.5rem 0 4.5rem; text-align: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(250,249,245,0.92) 0%, rgba(252,234,230,0.75) 45%, rgba(226,232,228,0.85) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(27,54,93,0.08) 0%, transparent 45%);
}
.hero__content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero__eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brushed-gold); margin-bottom: 1.15rem; }
.hero__title { margin-bottom: 1.15rem; }
.hero__subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 2.25rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hero__ornament { width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--brushed-gold), transparent); margin: 1.75rem auto; }

/* ---------- Path / Trio cards ---------- */
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.path-card {
  background: var(--white); border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2.4rem 1.75rem; text-align: center; transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.path-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--brushed-gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.path-card:hover::before { opacity: 1; }
.path-card__icon {
  width: 56px; height: 56px; margin: 0 auto 1.25rem; border: 1px solid var(--brushed-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--french-blue);
}
.path-card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.25; }
.path-card h3 { margin-bottom: 0.65rem; font-size: 1.35rem; }
.path-card p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ---------- Spaces ---------- */
.space-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.space-card {
  background: var(--white); border: 1px solid rgba(212, 175, 55, 0.35); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition); text-decoration: none; color: inherit; display: block;
}
.space-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); color: inherit; }
.space-panel {
  height: 200px; position: relative; display: flex; align-items: flex-end; justify-content: center;
  padding: 1.35rem; overflow: hidden;
}
.space-panel__label {
  position: relative; z-index: 2; font-family: var(--font-display); font-size: 1.25rem;
  color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.35); letter-spacing: 0.04em;
}
.space-panel__ornament { position: absolute; inset: 0; z-index: 1; opacity: 0.35; width: 100%; height: 100%; }
.space-card__body { padding: 1.35rem; }
.space-card__body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.space-card__body p { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 0; }

.panel--crimson { background: linear-gradient(145deg, #4A1520 0%, #8B1E3D 40%, #C44536 100%); }
.panel--azure { background: linear-gradient(145deg, #1B365D 0%, #4A7BA7 45%, #A8C5D8 100%); }
.panel--master { background: linear-gradient(145deg, #3D4A3E 0%, #7A8B7C 40%, #C9B8A8 100%); }
.panel--piano { background: linear-gradient(145deg, #1B365D 0%, #2C4A6E 35%, #D4AF37 100%); }
.panel--culinary { background: linear-gradient(145deg, #5C4033 0%, #8B6F47 40%, #E8D5B7 100%); }
.panel--linen { background: linear-gradient(145deg, #E8DFD0 0%, #C9B8A0 50%, #8B7355 100%); }
.panel--oil { background: linear-gradient(145deg, #2C4A3E 0%, #5A7A68 45%, #C8D5C4 100%); }
.panel--wardrobe { background: linear-gradient(145deg, #3A2A3A 0%, #6B4A5A 40%, #D4A8B8 100%); }
.panel--prop { background: linear-gradient(145deg, #2A3545 0%, #5A6A7A 45%, #D4C4A8 100%); }
.panel--bath { background: linear-gradient(145deg, #4A5A5E 0%, #7A9A9E 40%, #E0D4C8 100%); }
.panel--workshop { background: linear-gradient(145deg, #1B365D 0%, #4A6A8A 40%, #E8D5B0 100%); }
.panel--tea { background: linear-gradient(145deg, #5C4033 0%, #A67C52 40%, #F5E6D3 100%); }

.zone { margin-bottom: 3rem; background: var(--white); border: 1px solid rgba(212, 175, 55, 0.35); overflow: hidden; scroll-margin-top: calc(var(--nav-height) + 1.5rem); }
.zone:last-child { margin-bottom: 0; }
.zone__panel { height: 260px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.zone__panel h3 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.15rem); text-shadow: 0 2px 16px rgba(0,0,0,0.3); position: relative; z-index: 2; }
.zone__panel .vibe { color: rgba(255,255,255,0.9); font-size: 0.8125rem; letter-spacing: 0.08em; margin-top: 0.45rem; position: relative; z-index: 2; }
.zone__content { padding: 1.85rem 2rem 2.25rem; }
.zone__vibe-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brushed-gold); margin-bottom: 0.45rem; font-weight: 500; }
.zone__vibe { font-family: var(--font-display); font-size: 1.2rem; color: var(--french-blue); font-style: italic; margin-bottom: 1.5rem; }

.tabs { border-top: 1px solid rgba(212, 175, 55, 0.35); padding-top: 1.35rem; }
.tabs__list { display: flex; gap: 0; margin-bottom: 1.35rem; border-bottom: 1px solid rgba(212, 175, 55, 0.25); }
.tabs__btn {
  flex: 1; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; background: transparent; border: none; border-bottom: 2px solid transparent;
  color: var(--text-muted); padding: 0.8rem 1rem; cursor: pointer; transition: all var(--transition); margin-bottom: -1px;
}
.tabs__btn:hover { color: var(--french-blue); }
.tabs__btn[aria-selected="true"] { color: var(--french-blue); border-bottom-color: var(--brushed-gold); }
.tabs__panel { display: none; animation: fadeIn 0.4s ease; }
.tabs__panel[aria-hidden="false"] { display: block; }
.tabs__panel li { position: relative; padding-left: 1.15rem; margin-bottom: 0.55rem; font-size: 0.9rem; }
.tabs__panel li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 1px; background: var(--brushed-gold); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--white); border: 1px solid var(--brushed-gold); padding: 2.25rem 1.75rem;
  text-align: center; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition); position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card--featured { background: var(--french-blue); }
.pricing-card--featured h3, .pricing-card--featured .pricing-card__tier,
.pricing-card--featured .pricing-card__detail, .pricing-card--featured li { color: var(--white); }
.pricing-card--featured .pricing-card__badge { background: var(--brushed-gold); color: var(--french-blue); }
.pricing-card__badge {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: var(--french-blue); color: var(--white); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.8rem; white-space: nowrap;
}
.pricing-card__tier { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brushed-gold); font-weight: 500; margin-bottom: 0.65rem; }
.pricing-card h3 { margin-bottom: 0.85rem; }
.pricing-card__detail { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.35rem; }
.pricing-card ul { text-align: left; margin-bottom: 1.75rem; flex-grow: 1; }
.pricing-card li { font-size: 0.8125rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(212,175,55,0.2); color: var(--text-body); }
.pricing-card li:last-child { border-bottom: none; }
.pricing-card--featured li { border-bottom-color: rgba(212,175,55,0.25); }

/* ---------- Experiences ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.exp-card {
  background: var(--white); border: 1px solid rgba(212, 175, 55, 0.4); overflow: hidden;
  display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition);
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.exp-card__panel { height: 180px; position: relative; display: flex; align-items: flex-end; padding: 1.25rem; }
.exp-card__panel span {
  position: relative; z-index: 2; font-family: var(--font-display); font-size: 1.2rem;
  color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.exp-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.exp-card__body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.exp-card__body p { font-size: 0.875rem; color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; }
.exp-card__price { font-size: 0.75rem; letter-spacing: 0.08em; color: var(--brushed-gold); margin-bottom: 1rem; font-weight: 500; }
.exp-card__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* ---------- Boutique ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; margin-bottom: 2.5rem;
}
.filter-pill {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.55rem 1.1rem; border: 1px solid rgba(212, 175, 55, 0.45);
  background: var(--white); color: var(--french-blue); border-radius: 999px; cursor: pointer;
  transition: all var(--transition);
}
.filter-pill:hover { border-color: var(--brushed-gold); }
.filter-pill[aria-pressed="true"] {
  background: var(--french-blue); color: var(--white); border-color: var(--french-blue);
}

.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.35rem;
}
.product-card {
  background: var(--white); border: 1px solid var(--brushed-gold); overflow: hidden;
  display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.product-card.is-hidden { display: none; }
.product-card__img {
  height: 200px; position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card__img span {
  font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25); text-align: center; padding: 0 1rem; position: relative; z-index: 2;
}
.product-card__body { padding: 1.15rem; flex: 1; display: flex; flex-direction: column; }
.product-card__cat { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brushed-gold); margin-bottom: 0.35rem; }
.product-card__title { font-size: 1.15rem; margin-bottom: 0.35rem; }
.product-card__price { font-size: 0.875rem; color: var(--french-blue); font-weight: 500; margin-bottom: 1rem; }
.product-card__actions { display: flex; gap: 0.5rem; margin-top: auto; }
.product-card__actions .btn { flex: 1; padding: 0.65rem 0.5rem; font-size: 0.6rem; }

.demo-note {
  text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 2rem;
  letter-spacing: 0.04em; font-style: italic;
}

/* Boutique highlights slider */
.boutique-slider {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem;
}
.boutique-slider .product-card { scroll-snap-align: start; min-width: 0; }

/* ---------- Forms ---------- */
.form { max-width: 640px; margin: 0 auto; }
.form--wide { max-width: 720px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form__group { margin-bottom: 1.15rem; }
.form__group label {
  display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--french-blue); margin-bottom: 0.45rem;
}
.form__group input, .form__group select, .form__group textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.9rem; color: var(--text-body);
  background: var(--white); border: 1px solid rgba(212, 175, 55, 0.45); border-radius: var(--radius);
  padding: 0.8rem 1rem; transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231B365D' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 10px; padding-right: 2.5rem;
}
.form__group textarea { min-height: 130px; resize: vertical; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  outline: none; border-color: var(--brushed-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.form__group input.error, .form__group select.error, .form__group textarea.error { border-color: #B33A3A; }
.form__error { display: none; font-size: 0.7rem; color: #B33A3A; margin-top: 0.3rem; }
.form__group.has-error .form__error { display: block; }
.form__success {
  display: none; text-align: center; padding: 2.25rem 1.75rem; background: var(--muted-sage);
  border: 1px solid var(--brushed-gold); margin-top: 1.35rem;
}
.form__success.is-visible { display: block; animation: fadeIn 0.5s ease; }
.form__success h4 { margin-bottom: 0.45rem; }
.form__success p { color: var(--text-muted); font-size: 0.9rem; }
.form.is-submitted .form__fields { display: none; }

.newsletter { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.newsletter input {
  flex: 1; min-width: 180px; font-family: var(--font-body); font-size: 0.8125rem;
  padding: 0.8rem 1rem; border: 1px solid rgba(212,175,55,0.5);
  background: rgba(255,255,255,0.08); color: var(--white); border-radius: var(--radius);
}
.newsletter input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter input:focus { outline: none; border-color: var(--brushed-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.25); }
.newsletter__msg { width: 100%; font-size: 0.75rem; margin-top: 0.45rem; color: var(--brushed-gold); display: none; }
.newsletter__msg.is-visible { display: block; }

/* ---------- Features / About ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.feature-block { background: var(--white); border: 1px solid rgba(212,175,55,0.3); padding: 1.85rem; }
.feature-block h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }
.feature-block p, .feature-block li { font-size: 0.875rem; color: var(--text-muted); }
.feature-block ul li { position: relative; padding-left: 1rem; margin-bottom: 0.45rem; }
.feature-block ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 5px; height: 1px; background: var(--brushed-gold); }

.ideal-list { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; margin-top: 1.35rem; }
.ideal-tag {
  display: inline-block; padding: 0.45rem 1rem; border: 1px solid var(--brushed-gold);
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--french-blue); background: var(--white);
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.75rem; align-items: start; }
.contact-details { margin-top: 1.75rem; }
.contact-details dt { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brushed-gold); font-weight: 500; margin-bottom: 0.2rem; }
.contact-details dd { margin-bottom: 1.15rem; color: var(--text-body); font-size: 0.9rem; }

.social-links { display: flex; gap: 0.85rem; margin-top: 0.45rem; }
.social-links a {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border: 1px solid var(--brushed-gold); border-radius: 50%; color: var(--french-blue); transition: all var(--transition);
}
.social-links a:hover { background: var(--french-blue); color: var(--white); border-color: var(--french-blue); }
.social-links svg { width: 16px; height: 16px; fill: currentColor; }
.social-links--footer a { color: var(--white); border-color: rgba(212,175,55,0.6); }
.social-links--footer a:hover { background: var(--brushed-gold); color: var(--french-blue); border-color: var(--brushed-gold); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.25rem; }
.section-header .gold-line { margin: 1.15rem auto; }
.section-header p { color: var(--text-muted); font-size: 1rem; }
.section-header__eyebrow { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brushed-gold); margin-bottom: 0.65rem; }

.cta-band {
  text-align: center; padding: 4rem 0; background: linear-gradient(135deg, var(--french-blue) 0%, #2A4A73 100%);
  color: var(--white); position: relative;
}
.cta-band::before, .cta-band::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--brushed-gold); }
.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }
.cta-band h2 { color: var(--white); margin-bottom: 0.85rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 1.75rem; }

.page-intro {
  padding: 4rem 0 2.75rem; text-align: center;
  background: linear-gradient(180deg, var(--pale-peach) 0%, var(--alabaster) 100%);
}
.page-intro h1 { margin-bottom: 0.2rem; }
.page-intro .gold-line { margin: 1.15rem auto; }
.page-intro p { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--french-blue); color: rgba(255,255,255,0.85);
  padding: 3.75rem 0 0; border-top: 1px solid var(--brushed-gold);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 2.75rem; }
.footer__brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.footer__tagline { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brushed-gold); margin-bottom: 1.1rem; }
.footer__brand-desc { font-size: 0.8125rem; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 280px; }
.footer__heading { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brushed-gold); margin-bottom: 1.1rem; }
.footer__links a { display: block; color: rgba(255,255,255,0.75); font-size: 0.8125rem; margin-bottom: 0.55rem; }
.footer__links a:hover { color: var(--brushed-gold); }
.footer__bottom {
  border-top: 1px solid rgba(212,175,55,0.35); padding: 1.35rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.85rem;
}
.footer__copy { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* Quick view modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(27,54,93,0.4); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--alabaster); border: 1px solid var(--brushed-gold); max-width: 480px; width: 100%;
  padding: 2rem; position: relative; max-height: 90vh; overflow-y: auto;
}
.modal__close {
  position: absolute; top: 0.75rem; right: 0.75rem; background: none; border: 1px solid transparent;
  width: 36px; height: 36px; cursor: pointer; font-size: 1.4rem; color: var(--french-blue); border-radius: var(--radius);
}
.modal__close:hover { border-color: var(--brushed-gold); }
.modal__panel { height: 160px; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; }
.modal__panel span { font-family: var(--font-display); color: var(--white); font-size: 1.25rem; position: relative; z-index: 2; }
.modal h3 { margin-bottom: 0.35rem; }
.modal__price { color: var(--brushed-gold); font-weight: 500; margin-bottom: 0.85rem; }
.modal__desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.35rem; }

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .nav__center { gap: 0; }
  .nav__link { padding: 0.65rem 0.45rem; font-size: 0.625rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .boutique-slider { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .path-grid, .pricing-grid, .exp-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .boutique-slider { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 900px) {
  :root { --nav-height: 70px; }
  .nav__toggle { display: flex; }
  .nav__center {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--alabaster); flex-direction: column; align-items: stretch;
    gap: 0; padding: 0.5rem 0 1.25rem; border-bottom: 1px solid var(--brushed-gold);
    box-shadow: var(--shadow-soft); max-height: calc(100vh - var(--nav-height));
    overflow-y: auto; transform: translateY(-120%); opacity: 0; visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition); z-index: 999;
  }
  .nav__center.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__item { border-bottom: 1px solid rgba(212,175,55,0.15); }
  .nav__link { width: 100%; justify-content: space-between; padding: 1rem 1.35rem; font-size: 0.75rem; }
  .nav__link::after { display: none; }
  .nav__dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    display: none; box-shadow: none; border: none; border-top: 1px solid rgba(212,175,55,0.15);
    background: var(--pale-peach); min-width: 0; padding: 0.35rem 0;
  }
  .nav__item.is-open > .nav__dropdown { display: block; }
  .nav__dropdown a { padding: 0.65rem 1.75rem; }
  .nav__book { display: none; }
  .nav__actions .nav__book-mobile { display: inline-flex; margin: 0.75rem 1.35rem; width: calc(100% - 2.7rem); }
}

@media (min-width: 901px) {
  .nav__book-mobile { display: none !important; }
}

@media (max-width: 768px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.25rem 0; }
  .form__row { grid-template-columns: 1fr; }
  .zone__panel { height: 190px; }
  .tabs__list { flex-direction: column; }
  .tabs__btn { text-align: left; border-bottom: 1px solid rgba(212,175,55,0.2); }
  .tabs__btn[aria-selected="true"] { background: rgba(212,175,55,0.06); }
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 520px) {
  .product-grid, .boutique-slider { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .newsletter { flex-direction: column; }
  .product-card__actions { flex-direction: column; }
}

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

/* ========== Real property photography ========== */
.hero--photo {
  min-height: clamp(420px, 72vh, 680px);
  display: flex;
  align-items: center;
  padding: 5rem 0 4.5rem;
}

.hero--photo .hero__bg {
  background:
    linear-gradient(
      165deg,
      rgba(250, 249, 245, 0.82) 0%,
      rgba(250, 249, 245, 0.55) 38%,
      rgba(27, 54, 93, 0.35) 100%
    ),
    url("../images/exterior-hero.jpg") center / cover no-repeat;
}

.hero--photo .hero__title,
.hero--photo .hero__subtitle {
  text-shadow: 0 1px 18px rgba(250, 249, 245, 0.85);
}

.hero--photo .hero__content {
  background: rgba(250, 249, 245, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 2.75rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.space-panel--photo,
.zone__panel--photo,
.exp-card__panel--photo,
.accent-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.space-panel--photo {
  height: 220px;
  display: block;
}

.zone__panel--photo {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.exp-card__panel--photo {
  height: 200px;
  display: flex;
  align-items: flex-end;
}

.space-panel--photo img,
.zone__panel--photo img,
.exp-card__panel--photo img,
.accent-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.space-panel--photo .space-panel__scrim,
.zone__panel--photo .zone__scrim,
.exp-card__panel--photo .exp-card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(27, 54, 93, 0.72) 0%,
    rgba(27, 54, 93, 0.2) 45%,
    rgba(27, 54, 93, 0.05) 100%
  );
  pointer-events: none;
}

.space-panel--photo .space-panel__label,
.zone__panel--photo h3,
.zone__panel--photo .vibe,
.exp-card__panel--photo > span {
  position: relative;
  z-index: 2;
}

.zone__panel--photo {
  padding: 1.75rem 1.5rem;
}

.zone__panel--photo h3 {
  margin-bottom: 0.15rem;
}

.about-accent {
  border: 1px solid rgba(212, 175, 55, 0.4);
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.about-accent img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.boutique-accent-band {
  height: 160px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.boutique-accent-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.boutique-accent-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,249,245,0.55), rgba(250,249,245,0.15));
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero--photo { min-height: 0; padding: 3.5rem 0 3rem; }
  .hero--photo .hero__content { padding: 2rem 1.25rem; }
  .zone__panel--photo { height: 240px; }
  .space-panel--photo { height: 200px; }
}


/* ---------- Zone secondary gallery (batch 2) ---------- */
.zone__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0.65rem 0.65rem 0;
  background: var(--alabaster);
}
.zone__gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  aspect-ratio: 16 / 10;
  background: var(--muted-sage);
}
.zone__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.zone__gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(27,54,93,0.7), transparent);
}

/* About story photo pair */
.about-story-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.about-accent--short {
  min-height: 160px;
  height: 180px;
}
.about-accent--short img {
  min-height: 160px;
  height: 100%;
}

/* Boutique lifestyle inspiration tiles */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.lifestyle-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  aspect-ratio: 16 / 9;
  background: var(--muted-sage);
}
.lifestyle-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.lifestyle-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  background: linear-gradient(to top, rgba(27,54,93,0.65), transparent);
}

/* Polish product CSS lifestyle placeholders */
.product-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(160deg, transparent 40%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
  z-index: 1;
}
.product-card__img::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .zone__gallery { grid-template-columns: 1fr; }
  .about-story-photos { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .about-accent--short { height: 200px; }
}


/* ---------- Pricing price + notes ---------- */
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--french-blue);
  margin: 0.15rem 0 0.85rem;
  letter-spacing: 0.02em;
}
.pricing-card__price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brushed-gold);
  margin-left: 0.25rem;
}
.pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card--featured .pricing-card__price span { color: var(--brushed-gold); }
.pricing-notes {
  max-width: 720px;
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--white);
}
.pricing-notes p { font-size: 0.875rem; color: var(--text-body); margin-bottom: 0.75rem; }
.pricing-notes p:last-child { margin-bottom: 0; }
.pricing-notes__soft { font-size: 0.8125rem !important; color: var(--text-muted) !important; font-style: italic; }

/* ---------- Coming Soon ---------- */
.coming-soon {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--brushed-gold);
  padding: 2.75rem 2rem 2.5rem;
  box-shadow: var(--shadow-soft, 0 8px 30px rgba(27,54,93,0.06));
}
.coming-soon .section-header__eyebrow { margin-bottom: 0.75rem; }
.coming-soon h2 { margin-bottom: 0.85rem; }
.coming-soon__promise {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 1.25rem auto 2rem;
  max-width: 36rem;
  line-height: 1.7;
}
.coming-soon .form { margin-top: 0.5rem; text-align: left; }
.coming-soon__aside {
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.coming-soon__aside a { color: var(--french-blue); text-decoration: underline; text-underline-offset: 3px; }


/* ===== Garden Estate — distinctive layout & ornament ===== */
.style-preview-bar {
  position: sticky; top: 0; z-index: 2000;
  background: #5F6F5A; color: #FBF8F2;
  text-align: center; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.55rem 1rem; border-bottom: 1px solid rgba(184,149,108,0.45);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display); color: var(--french-blue); font-weight: 400;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.35rem, 5vw, 3.5rem); line-height: 1.18; }
a { color: var(--accent-sage); }
a:hover { color: var(--brushed-gold); }

.section { padding: 5.75rem 0; }
.section--peach { background-color: var(--pale-peach); }
.section--sage { background-color: var(--muted-sage); }

.gold-line {
  width: 72px; height: 1px; background: var(--brushed-gold); position: relative;
}
.gold-line::before, .gold-line::after {
  content: "◆"; position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 0.45rem; color: var(--accent-sage); opacity: 0.7;
}
.gold-line::before { left: -1.1rem; }
.gold-line::after { right: -1.1rem; }
.gold-line--center::before { left: -1.1rem; }
.gold-line--center::after { right: -1.1rem; }

.banner {
  background: var(--accent-sage); color: var(--white);
  border-bottom: 1px solid var(--brushed-gold);
  letter-spacing: 0.12em;
}
.banner--note {
  background: var(--pale-peach); color: var(--french-blue);
  border-color: rgba(184,149,108,0.55);
}

.site-header {
  background: rgba(251, 248, 242, 0.96);
  border-bottom: 1px solid rgba(95,111,90,0.22);
}
.nav__logo { color: var(--french-blue); }
.nav__logo span { color: var(--accent-sage); }
.nav__link { color: var(--french-blue); letter-spacing: 0.08em; }
.nav__link::after { background: var(--accent-sage); }
.nav__dropdown {
  border-radius: var(--radius); border-color: rgba(184,149,108,0.45);
}
.nav__dropdown a:hover { background: var(--pale-peach); color: var(--accent-sage); }
.nav__cart { color: var(--accent-sage); }
.btn--gold {
  color: var(--accent-sage); border-color: var(--brushed-gold); background: rgba(232,213,208,0.35);
}
.btn--gold:hover { background: var(--accent-sage); color: var(--white); border-color: var(--accent-sage); }

.btn {
  border-radius: 999px; letter-spacing: 0.1em;
  border-width: 1.5px;
}
.btn--primary {
  background: var(--accent-sage); border-color: var(--accent-sage); color: var(--white);
}
.btn--primary:hover {
  background: transparent; color: var(--accent-sage); border-color: var(--brushed-gold);
}
.btn--secondary {
  background: transparent; color: var(--french-blue);
  border-color: var(--brushed-gold); background: rgba(232,213,208,0.25);
}
.btn--secondary:hover {
  background: var(--pale-peach); color: var(--accent-sage); border-color: var(--accent-sage);
}
.btn--ghost { border-radius: 999px; }

.hero { padding: 5.75rem 0 5rem; text-align: center; }
.hero__ornament {
  width: 140px; height: 12px; margin: 1.5rem auto;
  background:
    radial-gradient(circle at 50% 50%, var(--accent-sage) 0 2px, transparent 2.5px),
    linear-gradient(90deg, transparent, var(--brushed-gold), transparent);
  background-size: 18px 12px, 100% 1px;
  background-position: center, center;
  background-repeat: repeat-x, no-repeat;
  opacity: 0.85;
}
.hero--photo .hero__bg {
  background:
    linear-gradient(
      180deg,
      rgba(251, 248, 242, 0.55) 0%,
      rgba(232, 213, 208, 0.35) 40%,
      rgba(95, 111, 90, 0.28) 100%
    ),
    url("../images/exterior-hero.jpg") center / cover no-repeat;
}
.hero--photo .hero__content {
  background: rgba(251, 248, 242, 0.88);
  border: 1px solid rgba(184,149,108,0.55);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.path-card, .space-card, .pricing-card, .feature-block, .exp-card, .product-card, .zone, .modal {
  border-radius: var(--radius-lg);
  border-color: rgba(184,149,108,0.4);
}
.path-card { padding: 2.6rem 1.85rem; }
.path-card__icon {
  border-color: var(--accent-sage); color: var(--accent-sage);
  border-radius: 50%;
}
.ideal-tag { border-radius: 999px; border-color: var(--accent-sage); color: var(--accent-sage); }

.pricing-card--featured {
  background: linear-gradient(160deg, #5F6F5A 0%, #4A5747 100%);
}
.pricing-card--featured .pricing-card__badge {
  background: var(--brushed-gold); color: var(--french-blue);
}
.pricing-card__price {
  font-family: var(--font-display); font-size: 1.75rem; color: var(--accent-sage);
  margin: 0.35rem 0 0.85rem;
}
.pricing-card__price span { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-body); }
.pricing-card--featured .pricing-card__price { color: #FBF8F2; }
.pricing-card--featured .pricing-card__price span { color: rgba(251,248,242,0.7); }

.page-intro {
  background: linear-gradient(180deg, var(--pale-peach) 0%, var(--alabaster) 72%);
  padding: 4.5rem 0 3rem;
}
.cta-band {
  background: linear-gradient(135deg, #5F6F5A 0%, #3E4A3A 100%);
}
.cta-band::before, .cta-band::after { background: var(--brushed-gold); }
.site-footer {
  background: #2C2A26; border-top: 1px solid var(--brushed-gold);
}
.footer__tagline, .footer__heading { color: #B8956C; }
.footer__links a:hover { color: #C9B896; }

.section-header__eyebrow { color: var(--accent-sage); }
.hero__eyebrow { color: var(--accent-sage); }
.zone__vibe-label, .pricing-card__tier, .contact-details dt { color: var(--accent-sage); }

.space-panel--photo .space-panel__scrim,
.zone__panel--photo .zone__scrim,
.exp-card__panel--photo .exp-card__scrim {
  background: linear-gradient(
    to top,
    rgba(44, 42, 38, 0.62) 0%,
    rgba(95, 111, 90, 0.25) 55%,
    rgba(251, 248, 242, 0.05) 100%
  );
}

.filter-pill[aria-pressed="true"] {
  background: var(--accent-sage); border-color: var(--accent-sage);
}

.coming-soon {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: 3.75rem 2.25rem;
  border: 1px solid rgba(184,149,108,0.5);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.coming-soon__ornament {
  width: 56px; height: 56px; margin: 0 auto 1.5rem;
  border: 1px solid var(--brushed-gold); border-radius: 50%;
  position: relative;
}
.coming-soon__ornament::before {
  content: "✿"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-sage); font-size: 1.1rem;
}
.coming-soon__note { color: var(--text-muted); font-size: 0.95rem; margin-top: 1rem; font-style: italic; }

.form__group label { color: var(--accent-sage); }
.form__success { background: var(--muted-sage); border-radius: var(--radius); }

@media (max-width: 900px) {
  .nav__center { background: var(--alabaster); }
  .nav__dropdown { background: var(--pale-peach); border-radius: 0; }
}


.coming-soon {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: 3.75rem 2.25rem;
  border: 1px solid rgba(184,149,108,0.5);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.coming-soon::before {
  content: "✿"; display: block; color: var(--accent-sage);
  font-size: 1.15rem; margin-bottom: 1rem; opacity: 0.85;
}


/* Three-up zone galleries (e.g. Piano Salon) */
.zone__gallery:has(.zone__gallery-item:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .zone__gallery:has(.zone__gallery-item:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }
}

/* ---------- Created Here mosaic (7-tile: feature + 6) ---------- */
.section--created-here {
  background: var(--alabaster, #FAF9F5);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}
.created-here-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.created-here-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--muted-sage, #C9D4C4);
  aspect-ratio: 3 / 4;
}
.created-here-item--feature {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  aspect-ratio: auto;
  min-height: 100%;
}
/* Bottom row pairs span two columns for balanced 7-tile mosaic */
.created-here-item:nth-child(6),
.created-here-item:nth-child(7) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.created-here-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}
.created-here-item:hover img {
  transform: scale(1.03);
}
.created-here-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.85rem 1rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to top, rgba(27, 54, 93, 0.78), transparent);
}
.created-here-credit {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.04em;
}
/* Gatherings family celebration proof strip */
.gatherings-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.gatherings-proof__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: var(--muted-sage, #C9D4C4);
  aspect-ratio: 4 / 5;
}
.gatherings-proof__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.6s ease;
}
.gatherings-proof__item:hover img {
  transform: scale(1.03);
}
.gatherings-proof__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1rem 1.1rem 0.9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--white);
  background: linear-gradient(to top, rgba(27, 54, 93, 0.82), transparent);
  text-transform: none;
}
@media (max-width: 900px) {
  .created-here-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .created-here-item--feature {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
  .created-here-item:nth-child(6),
  .created-here-item:nth-child(7) {
    grid-column: auto;
    aspect-ratio: 3 / 4;
  }
  .gatherings-proof { gap: 1rem; margin-top: 1.75rem; }
}
@media (max-width: 540px) {
  .created-here-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .created-here-item--feature { aspect-ratio: 3 / 4; min-height: 0; }
  .created-here-item figcaption { font-size: 0.55rem; padding: 0.55rem 0.6rem; }
  .gatherings-proof { grid-template-columns: 1fr; max-width: 360px; }
  .gatherings-proof__item figcaption { font-size: 0.92rem; padding: 0.75rem 0.85rem; }
}


/* ---------- Referral Partners ---------- */
.referral-step-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}
.referral-rewards.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
.referral-code-card {
  background: var(--white);
  border: 1px solid rgba(184,149,108,0.45);
  padding: 2rem 1.75rem;
}
.referral-code-sample {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--accent-sage);
  letter-spacing: 0.04em;
  margin: 0.35rem 0 1rem;
}
.form__hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  margin-bottom: 0;
  line-height: 1.45;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(184,149,108,0.4);
  border-radius: var(--radius-lg);
  padding: 0.15rem 1.25rem 0.15rem;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--french-blue);
  padding: 1rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-sage);
  font-family: var(--font-body);
  font-weight: 500;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-right: 1.5rem;
}

.calendly-panel {
  background: var(--white);
  border: 1px solid rgba(184,149,108,0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 0.5rem;
  overflow: hidden;
}
.calendly-panel__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 1.25rem;
  text-align: center;
}
.calendly-inline-wrap {
  min-height: 680px;
}
.partner-band {
  padding: 1.75rem 0;
  background: var(--pale-peach);
  border-top: 1px solid rgba(184,149,108,0.35);
  border-bottom: 1px solid rgba(184,149,108,0.35);
  text-align: center;
}
.partner-band p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-body);
}
.partner-band a {
  color: var(--accent-sage);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (max-width: 900px) {
  .referral-rewards.pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .calendly-inline-wrap { min-height: 620px; }
}
