/* ================================================================
   AMAIA VALLEY × ODE WINERY — Combined Site
   Editorial luxury aesthetic. Inspired by Aman, Rosewood, Belmond.
   ================================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, video { max-width: 100%; display: block; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Design tokens ---------- */
:root {
  /* Palette — warm Mediterranean editorial */
  --ink:        #1a1814;
  --ink-soft:   #2c2823;
  --bone:       #f5f1ea;
  --paper:      #ede6db;
  --paper-warm: #e3d9c8;
  --terra:      #9c5836;
  --terra-soft: #b87555;
  --sage:       #6b7058;
  --olive:      #4a4d3a;
  --gold:       #b08c5a;
  --line:       rgba(26,24,20,0.18);
  --line-soft:  rgba(26,24,20,0.10);
  --overlay:    rgba(26,24,20,0.45);

  /* Type */
  --serif: 'Cormorant Garamond', 'Apple Garamond', Garamond, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --max:        1320px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
  --rhythm:     clamp(4rem, 9vw, 8rem);
  --rhythm-sm:  clamp(2rem, 5vw, 3.5rem);
}

/* ---------- Body ---------- */
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  display: inline-block;
}

.eyebrow--quiet { color: var(--ink-soft); opacity: 0.7; }
.eyebrow--light { color: rgba(245,241,234,0.85); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.display--xl {
  font-size: clamp(3.25rem, 8vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; line-height: 1.3; }

p { font-size: clamp(1rem, 1.1vw, 1.075rem); line-height: 1.75; }
p.lede { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.4; font-style: italic; color: var(--ink-soft); }

em { font-style: italic; }
strong { font-weight: 500; }

.italic { font-style: italic; }
.serif { font-family: var(--serif); }
.uppercase { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.85em; }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: 880px; }
.container--reading { max-width: 720px; }

.section { padding: var(--rhythm) 0; }
.section--sm { padding: var(--rhythm-sm) 0; }
.section--ink { background: var(--ink); color: var(--bone); }
.section--ink .eyebrow { color: var(--gold); }
.section--paper { background: var(--paper); }
.section--paper-warm { background: var(--paper-warm); }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.divider--light { background: rgba(245,241,234,0.2); }

.hr-rule {
  width: 60px;
  height: 1px;
  background: var(--terra);
  margin: 1.5rem 0;
  border: 0;
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--bone); }

.btn--primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--terra); border-color: var(--terra); }

.btn--light {
  border-color: var(--bone);
  color: var(--bone);
}
.btn--light:hover { background: var(--bone); color: var(--ink); }

.btn--gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--gold:hover { background: var(--gold); color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35rem;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.link-arrow:hover { color: var(--terra); border-color: var(--terra); gap: 1rem; }
.link-arrow--light { color: var(--bone); border-color: rgba(245,241,234,0.3); }
.link-arrow--light:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease, color 0.4s ease;
  color: var(--bone);
}
.site-header.is-scrolled,
.site-header.is-light {
  background: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  color: var(--ink);
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 11px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.brand img.brand__logo--dark { display: none; }
.site-header.is-scrolled .brand img.brand__logo--light,
.site-header.is-light .brand img.brand__logo--light { display: none; }
.site-header.is-scrolled .brand img.brand__logo--dark,
.site-header.is-light .brand img.brand__logo--dark { display: block; }

@media (max-width: 480px) {
  .brand img { height: 9px; }
}

.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.3s ease;
}
.nav a:hover { color: var(--terra); }
.nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
}

.nav-cta {
  padding: 0.65rem 1.4rem;
  border: 1px solid currentColor;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav-cta:hover { background: var(--terra); border-color: var(--terra); color: var(--bone); }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: stretch;
}
.nav-toggle span { display: block; height: 1px; background: currentColor; transition: transform 0.3s ease; }

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bone);
    color: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 0 var(--gutter);
  }
  .nav.is-open a { font-size: 0.95rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  overflow: hidden;
  padding: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.prod.website-files.com/6953fd650ba83b3777eb3332/6954019b1c2a53105912adc5_render-02.avif');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0.55) 0%, rgba(26,24,20,0.2) 35%, rgba(26,24,20,0.7) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) clamp(3rem, 7vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
}
.hero__eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  opacity: 0.92;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero--secondary { min-height: 70vh; }
.hero--winery::before { background-image: url('images/ode-vineyards-golden-hour.jpg'); }
.hero--residences::before { background-image: url('images/residences/villa-4br-terrace.jpg'); }
.hero--lifestyle::before { background-image: url('images/experiences/outdoor-celebration.jpg'); }
.hero--story::before { background-image: url('https://cdn.prod.website-files.com/6953fd650ba83b3777eb3332/6954019be5db8acfbe970aef_render-01.avif'); }
.hero--hotel::before { background-image: url('images/hotel/hotel-from-back.jpg'); }
.hero--inquire { min-height: 50vh; }
.hero--inquire::before { background-image: url('https://cdn.prod.website-files.com/6953fd650ba83b3777eb3332/6954019b1c2a53105912adc5_render-02.avif'); }

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: var(--bone);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.3); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Two-column layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.split--narrow { grid-template-columns: 5fr 7fr; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 800px) { .split--reverse > :first-child { order: 0; } }

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__media--wide img { aspect-ratio: 3 / 2; }

.split__body .eyebrow { margin-bottom: 1.5rem; }
.split__body h2 { margin-bottom: 1.5rem; }
.split__body p + p { margin-top: 1.25rem; }
.split__body .btn, .split__body .link-arrow { margin-top: 2rem; }

/* ---------- Stats / inline figures ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat { text-align: center; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  display: block;
  line-height: 1;
  color: var(--ink);
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.75rem;
  display: block;
}

/* ---------- Card grids ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.4s ease;
}
.card:hover { transform: translateY(-3px); }
.card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.75rem; }
.card__eyebrow { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.75rem; display: block; }
.card__title { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin-bottom: 0.75rem; line-height: 1.2; }
.card__meta { font-size: 0.85rem; opacity: 0.75; }

.cards--ink .card { background: var(--ink-soft); color: var(--bone); }
.cards--ink .card__title { color: var(--bone); }

/* ---------- Pillar / overlay tile ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
}
@media (max-width: 800px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--bone);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  transition: background 0.4s ease;
}
.tile:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%); }
.tile__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem;
}
.tile__eyebrow { color: var(--gold); margin-bottom: 0.75rem; }
.tile__title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.1; }
.tile__cta { margin-top: 1.25rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.85; }

/* ---------- Quote / pull ---------- */
.quote {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.35;
  max-width: 28ch;
  margin: 0 auto;
}
.quote::before { content: '"'; opacity: 0.3; margin-right: 0.15em; }
.quote::after { content: '"'; opacity: 0.3; margin-left: 0.15em; }
.quote-attribution {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- Amenities list ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 700px) { .amenities { grid-template-columns: 1fr; } }

.amenity {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
}
.amenity__num {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  opacity: 0.4;
  width: 30px;
  flex-shrink: 0;
}
.amenities--two-col .amenity:nth-child(odd) { padding-right: 2rem; }

/* ---------- Villa table / listings ---------- */
.villa-table {
  width: 100%;
  border-top: 1px solid var(--line);
}
.villa-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1fr 180px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 800px) {
  .villa-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; }
}
.villa-row__num { font-family: var(--serif); font-size: 1.5rem; opacity: 0.5; }
.villa-row__name { font-family: var(--serif); font-size: 1.4rem; }
.villa-row__name small { display: block; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; margin-top: 0.25rem; }
.villa-row__spec { font-size: 0.9rem; opacity: 0.85; }
.villa-row__spec b { font-weight: 500; display: block; font-size: 1rem; }
.villa-row__cta { text-align: right; }
@media (max-width: 800px) { .villa-row__cta { text-align: left; margin-top: 0.5rem; } }

/* ---------- Wine card ---------- */
.wines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
}
@media (max-width: 950px) { .wines { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .wines { grid-template-columns: repeat(2, 1fr); } }

.wine { text-align: center; }
.wine__media {
  background: var(--paper);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.wine__media img {
  height: 90%;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.wine:hover .wine__media img { transform: scale(1.05); }
.wine__name { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; line-height: 1.3; margin-bottom: 0.4rem; }
.wine__name small { display: block; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; margin-top: 0.4rem; }
.wine__price { font-family: var(--serif); font-size: 1rem; opacity: 0.85; }

/* ---------- Experience list ---------- */
.experience {
  display: grid;
  grid-template-columns: 60px 1fr 120px 120px 140px;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 800px) {
  .experience { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.5rem 0; }
}
.experience:first-child { border-top: 1px solid var(--line); }
.experience__num { font-family: var(--serif); font-size: 1.4rem; opacity: 0.4; }
.experience__name { font-family: var(--serif); font-size: 1.4rem; line-height: 1.2; }
.experience__name small { display: block; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0; text-transform: none; opacity: 0.7; margin-top: 0.5rem; line-height: 1.55; max-width: 60ch; }
.experience__spec { font-size: 0.85rem; opacity: 0.75; }
.experience__cta { text-align: right; }
@media (max-width: 800px) {
  .experience__cta { text-align: left; margin-top: 0.5rem; }
  .experience__num { display: none; }
}

/* ---------- Press / logos row ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 700px) { .press-grid { grid-template-columns: 1fr; } }

.press {
  padding: 1.75rem;
  border-top: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.press:nth-child(2n) { border-right: 0; }
@media (max-width: 700px) { .press { border-right: 0; } }
.press__date { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }
.press__source { font-family: var(--serif); font-size: 1.1rem; margin-top: 0.5rem; font-style: italic; }
.press__title { font-family: var(--serif); font-size: 1.25rem; margin-top: 0.5rem; line-height: 1.35; }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.85rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  transition: border-color 0.3s ease;
  outline: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--terra); }
.field textarea { min-height: 130px; resize: vertical; }
.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
}
.field--checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.field--checkbox label { font-size: 0.85rem; letter-spacing: 0; text-transform: none; opacity: 0.85; line-height: 1.55; font-weight: 300; }
.field--checkbox a { text-decoration: underline; text-underline-offset: 3px; }

.form__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form__success {
  display: none;
  padding: 1.5rem;
  background: var(--paper);
  border-left: 2px solid var(--terra);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}
.form.is-submitted .form__success { display: block; }
.form.is-submitted .form-row,
.form.is-submitted .field,
.form.is-submitted .form__actions { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: var(--rhythm) var(--gutter) 2rem;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,241,234,0.15);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 1rem; opacity: 0.75; max-width: 30ch; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul li { padding: 0.4rem 0; }
.footer-col a { font-size: 0.92rem; opacity: 0.85; transition: opacity 0.3s ease, color 0.3s ease; }
.footer-col a:hover { color: var(--gold); opacity: 1; }
.footer-col p { font-size: 0.92rem; opacity: 0.8; line-height: 1.7; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > :nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > :nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > :nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.is-visible > :nth-child(5) { transition-delay: 0.48s; }

/* ---------- Floor plan placeholders ---------- */
.floor-plan {
  background: var(--paper);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.floor-plan svg { width: 80%; height: 80%; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.55;
  font-style: italic;
  max-width: 65ch;
  margin: 3rem auto 0;
  text-align: center;
}

/* ---------- Page-specific intro ---------- */
.page-intro {
  padding: clamp(7rem, 14vw, 10rem) 0 var(--rhythm);
  text-align: center;
}
.page-intro h1 { margin: 1rem auto 1.5rem; max-width: 18ch; }
.page-intro p { max-width: 60ch; margin: 0 auto; opacity: 0.85; font-size: clamp(1.05rem, 1.4vw, 1.2rem); }

/* ---------- Ode Winery co-brand strip ---------- */
.footer-ode {
  margin-top: 3rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(176, 140, 90, 0.4);
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.88rem;
}
.footer-ode a { color: var(--gold); white-space: nowrap; }
.footer-ode a:hover { opacity: 0.8; }
