/* =================================================================
   Site vente maison — Saint-Vivien-de-Médoc
   Palette éditoriale chaleureuse : ivoire, terre, vert sombre, or
   ================================================================= */

:root {
  --c-ivory:     #f5f0e6;
  --c-cream:     #ece4d3;
  --c-sand:      #d9cdb5;
  --c-warm:      #b89968;     /* terre dorée */
  --c-warm-dark: #8a6f48;
  --c-ink:       #1b1f1c;
  --c-ink-soft:  #2f3b2f;     /* vert pin sombre */
  --c-forest:    #3b4a3a;
  --c-text:      #2a2a25;
  --c-muted:     #6e6a5e;
  --c-line:      rgba(27, 31, 28, 0.10);

  --font-serif:  'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(20, 24, 20, 0.06), 0 4px 12px rgba(20, 24, 20, 0.05);
  --shadow-md: 0 4px 12px rgba(20, 24, 20, 0.08), 0 12px 32px rgba(20, 24, 20, 0.08);
  --shadow-lg: 0 10px 30px rgba(20, 24, 20, 0.12), 0 30px 60px rgba(20, 24, 20, 0.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --container: 1240px;
  --container-narrow: 820px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--c-warm); color: white; }

/* ----------------- Typographie ----------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: -0.005em; }

em { font-style: italic; color: var(--c-warm-dark); }

p { margin: 0 0 1em; }
strong { color: var(--c-ink); font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }
.text-center { text-align: center; }

/* ----------------- Sections ----------------- */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.section-light { background: var(--c-ivory); }
.section-tone  { background: var(--c-cream); }
.section-dark  { background: var(--c-ink-soft); color: rgba(255,255,255,.88); }
.section-dark h2, .section-dark h3 { color: white; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--c-warm-dark);
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-warm);
}
.section-eyebrow.light { color: var(--c-warm); border-color: rgba(184,153,104,.6); }

.section-title {
  max-width: 22ch;
  margin-bottom: 28px;
}
.section-title.light { color: white; max-width: none; }
.section-intro {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 60ch;
  margin-bottom: 48px;
}
.section-intro.light { color: rgba(255,255,255,.7); }
.text-center .section-eyebrow,
.text-center .section-title,
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.text-center .section-title { max-width: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(245, 240, 230, 0);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  transition: color .35s var(--ease);
}
.site-header.scrolled .brand { color: var(--c-ink); }
.brand-mark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .04em;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.brand-text {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .85;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: .92rem;
  font-weight: 500;
  color: white;
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.site-header.scrolled .nav a { color: var(--c-ink); }
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--c-warm);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--c-warm-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: white;
  transition: transform .3s, opacity .3s, background .3s;
}
.site-header.scrolled .nav-toggle span { background: var(--c-ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 120px);
  color: white;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.05) 30%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: .9;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  display: inline-block;
}
.hero h1 {
  color: white;
  max-width: 18ch;
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero h1 em { color: var(--c-warm); font-weight: 500; }
.hero-sub {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 640px;
  margin-bottom: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
}
.hero-meta strong {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-meta span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .8;
}

.hero-price {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 28px;
  margin-bottom: 36px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 3px solid var(--c-warm);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-price-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}
.hero-price-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 500;
  color: white;
  line-height: 1.1;
}
.hero-price-currency {
  color: var(--c-warm);
  margin-left: 4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: 999px;
  transition: all .3s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--c-warm);
  color: white;
  box-shadow: 0 6px 20px rgba(184,153,104,.4);
}
.btn-primary:hover {
  background: var(--c-warm-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(138,111,72,.5);
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: white;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.scroll-cue span {
  display: block;
  width: 2px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: cueDrop 1.8s infinite var(--ease);
}
@keyframes cueDrop {
  0%   { transform: translateY(-6px); opacity: 0; }
  40%  { opacity: 1; }
  80%  { transform: translateY(6px); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   PRÉSENTATION
   ============================================================ */
.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  line-height: 1.55;
  color: var(--c-ink);
  margin: 0 0 48px;
  padding: 32px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.lede p:last-child { margin-bottom: 0; }
.lede strong { color: var(--c-warm-dark); font-weight: 500; }

.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 20px;
}
.prose strong { color: var(--c-ink); font-weight: 600; }

/* ============================================================
   ROOMS GRID
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.room-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--c-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.room-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.room-card.highlight {
  background: linear-gradient(135deg, #fff, #faf4e8);
  border-color: rgba(184,153,104,.35);
}
.room-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--c-cream);
  color: var(--c-warm-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.room-card.highlight .room-icon { background: rgba(184,153,104,.18); color: var(--c-warm-dark); }
.room-icon svg { width: 22px; height: 22px; }
.room-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.room-card p { font-size: .92rem; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* ============================================================
   FEATURES LIST
   ============================================================ */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px 32px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 1rem;
  color: var(--c-ink);
}
.check {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-warm);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================================
   GALERIE
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.filter {
  padding: 9px 18px;
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  transition: all .25s var(--ease);
}
.filter:hover { color: white; border-color: rgba(255,255,255,.5); }
.filter.active {
  background: var(--c-warm);
  color: white;
  border-color: var(--c-warm);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-rows: 200px;
}
.g-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  background: #2a2a25;
}
.g-item.wide { grid-column: span 8; grid-row: span 2; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .35s var(--ease);
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.g-item:hover img { transform: scale(1.05); }
.g-item:hover::after { opacity: 1; }
.g-item.is-hidden { display: none; }

/* tall items for portrait photos */
.g-item:nth-child(6),
.g-item:nth-child(11),
.g-item:nth-child(15) { grid-row: span 2; }

/* ============================================================
   PLAN
   ============================================================ */
.plan-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.plan-image {
  background: white;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.plan-image a { display: block; }
.plan-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}
.plan-missing-msg {
  padding: 60px 24px;
  border: 2px dashed var(--c-sand);
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--c-cream);
  color: var(--c-muted);
}
.plan-missing-msg p { margin: 4px 0; }
.plan-missing-msg code {
  background: rgba(0,0,0,.06);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .9em;
}

.plan-info h3 { font-size: 1.1rem; margin-bottom: 18px; }
.surface-list {
  margin: 0 0 24px;
}
.surface-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  margin: 0;
}
.surface-list > div:last-child { border-bottom: 0; }
.surface-list dt {
  font-size: .95rem;
  color: var(--c-muted);
}
.surface-list dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-ink);
}
.plan-note {
  font-size: .92rem;
  color: var(--c-muted);
  font-style: italic;
  border-left: 2px solid var(--c-warm);
  padding-left: 16px;
}

/* ============================================================
   COÛTS / DPE
   ============================================================ */
.costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.cost-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--c-line);
}
.cost-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-muted);
  margin: 0 0 12px;
  font-weight: 500;
}
.cost-figure {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1;
  margin: 0 0 8px;
}
.cost-figure span {
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--c-muted);
  margin-left: 6px;
}
.cost-detail {
  font-size: .88rem;
  color: var(--c-muted);
  margin: 0;
}

.cost-card.dpe { padding: 24px; }

.cost-card.price {
  background: linear-gradient(160deg, var(--c-ink-soft) 0%, var(--c-forest) 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
}
.cost-card.price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(184,153,104,.35), transparent 60%);
  pointer-events: none;
}
.cost-card.price .cost-label { color: rgba(255,255,255,.75); position: relative; }
.cost-card.price .cost-figure { color: white; font-size: 2.6rem; position: relative; }
.cost-card.price .cost-figure span { color: var(--c-warm); }
.cost-card.price .cost-detail { color: rgba(255,255,255,.78); position: relative; }
.dpe-scale {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px 0 14px;
}
.dpe-row {
  display: block;
  padding: 7px 14px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  font-size: .85rem;
  font-family: var(--font-sans);
  position: relative;
  transition: transform .25s var(--ease);
}
.dpe-row.a { background: #319834; width: 38%; }
.dpe-row.b { background: #57a83b; width: 47%; }
.dpe-row.c { background: #c8d44d; width: 56%; color: #2a2a25; }
.dpe-row.d { background: #f5d23c; width: 66%; color: #2a2a25; }
.dpe-row.e { background: #f0a13b; width: 76%; }
.dpe-row.f { background: #e76a39; width: 86%; }
.dpe-row.g { background: #d8312d; width: 96%; }
.dpe-row.active {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  outline: 2px solid var(--c-ink);
  outline-offset: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 16px;
  border-top: 1px solid var(--c-line);
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
  transition: background .25s var(--ease);
}
.faq-item[open] { background: rgba(184,153,104,.05); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border: 1px solid var(--c-warm);
  border-radius: 50%;
  color: var(--c-warm-dark);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--c-warm);
  color: white;
  transform: rotate(180deg);
}
.faq-item summary:hover { color: var(--c-warm-dark); }
.faq-answer {
  padding: 0 4px 22px;
  animation: faqIn .35s var(--ease);
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0;
}
.faq-answer a { color: var(--c-warm-dark); border-bottom: 1px solid currentColor; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   LOCALISATION
   ============================================================ */
.loc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.loc-map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--c-cream);
}
.loc-map iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}
.loc-map-link {
  display: block;
  padding: 12px 16px;
  background: white;
  color: var(--c-warm-dark);
  font-size: .9rem;
  font-weight: 500;
  border-top: 1px solid var(--c-line);
  transition: background .2s;
}
.loc-map-link:hover { background: var(--c-cream); }

.loc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.loc-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}
.loc-list li:last-child { border-bottom: 0; }
.loc-dist {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--c-warm-dark);
  flex-shrink: 0;
  min-width: 70px;
}
.loc-place {
  color: var(--c-ink);
  font-size: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 22px 36px;
  background: var(--c-warm);
  color: white !important;
  border-radius: 999px;
  transition: all .3s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.contact-phone:hover {
  background: var(--c-warm-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.contact-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .85;
}
.contact-value {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-top: 2px;
}
.contact-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
}
.contact-meta p { margin: 0; }
.contact-meta strong {
  color: white;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.6);
  padding: 32px 0;
  text-align: center;
  font-size: .85rem;
}
.site-footer p { margin: 4px 0; }
.footer-note { opacity: .7; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 18, 15, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}
.lightbox.is-open {
  display: flex;
  animation: fadeIn .3s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb-figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#lbImage {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: imgIn .35s var(--ease);
}
@keyframes imgIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
#lbCaption {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-style: italic;
  text-align: center;
  max-width: 60ch;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: white;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(8px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.05);
}
.lb-close { top: 20px; right: 24px; font-size: 1.8rem; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  letter-spacing: .1em;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .plan-grid,
  .loc-grid { grid-template-columns: 1fr; gap: 32px; }
  .loc-map iframe { height: 320px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }

  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
  .g-item { grid-column: span 3; }
  .g-item.wide { grid-column: span 6; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80%, 320px);
    background: var(--c-ink-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.3);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a, .site-header.scrolled .nav a { color: white; font-size: 1.1rem; }
  .nav-cta { padding: 14px 28px !important; margin-top: 12px; }
  .nav-toggle { display: flex; }
  body.nav-locked { overflow: hidden; }

  .brand-text { display: none; }

  .section { padding: 60px 0; }
  .hero { min-height: 90vh; padding-bottom: 60px; }
  .hero-meta { gap: 16px; padding-top: 20px; margin-bottom: 32px; }
  .hero-actions { width: 100%; }
  .btn { flex: 1; padding: 14px 20px; font-size: .9rem; }

  .lede { font-size: 1.15rem; padding: 24px 0; margin-bottom: 32px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-item, .g-item.wide { grid-column: span 1; grid-row: auto; }
  .g-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; }

  .lightbox { padding: 20px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }

  .contact-card { padding: 32px 24px; }
  .contact-phone { padding: 18px 24px; gap: 14px; width: 100%; }
  .contact-icon { width: 40px; height: 40px; }
}

@media (max-width: 420px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta strong { font-size: 1.6rem; }
  .filters { gap: 6px; }
  .filter { padding: 7px 12px; font-size: .78rem; }
}
