:root {
  --cream: #f7f2e7;
  --cream-soft: #fbf8f1;
  --ink: #1f1b16;
  --ink-soft: #4a4238;
  --muted: #8a7f70;
  --line: #e2d8c4;
  --burgundy: #6a1f30;
  --burgundy-dark: #4d1622;
  --sage: #5f6f4e;
  --gold: #b08a3e;
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
  --shadow-soft: 0 30px 80px -40px rgba(60, 40, 20, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.serif { font-family: "Fraunces", "Cormorant Garamond", Georgia, serif; font-weight: 300; font-style: normal; letter-spacing: -0.01em; }
.italic { font-style: italic; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

/* ———— NAV ———— */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(247, 242, 231, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 12px var(--gutter);
  box-shadow: 0 1px 0 var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  height: 48px;
}
.nav-brand img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-brand .logo-light { display: block; }
.nav-brand .logo-dark { display: none; }
.nav.scrolled .nav-brand .logo-light,
.nav-solid .nav-brand .logo-light { display: none; }
.nav.scrolled .nav-brand .logo-dark,
.nav-solid .nav-brand .logo-dark { display: block; }

/* Solid nav variant used on interior pages (no dark hero behind it) */
.nav-solid {
  background: rgba(247, 242, 231, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: 12px var(--gutter);
  box-shadow: 0 1px 0 var(--line);
}
.nav-solid .nav-links a { color: var(--ink); }
.nav-solid .nav-book { border-color: var(--burgundy); color: var(--burgundy); }
.nav-solid .nav-burger span { background: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 0;
  height: 1px;
  background: currentColor;
  transition: left 0.4s ease, right 0.4s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
.nav.scrolled .nav-links a { color: var(--ink); }

.nav-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s;
}
.nav.scrolled .nav-book { border-color: var(--burgundy); color: var(--burgundy); }
.nav-book:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }

.nav-burger { display: none; }

@media (max-width: 880px) {
  .nav-links, .nav-book { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    padding: 8px;
  }
  .nav-burger span {
    width: 24px; height: 1px; background: var(--cream); transition: background 0.4s;
  }
  .nav.scrolled .nav-burger span { background: var(--ink); }
  .nav-open .nav-burger span:first-child { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-burger span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: var(--cream);
    z-index: -1;
  }
  .nav-open .nav-links a { color: var(--ink); font-size: 18px; }
  .nav-open .nav-book { display: inline-flex; margin-top: 20px; border-color: var(--burgundy); color: var(--burgundy); }
}

/* ———— HERO ———— */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: grid;
  place-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
  z-index: 0;
}
/* When a playing video is present, let it cover the poster image */
.hero-video + .hero-media { opacity: 0; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 14, 10, 0.55) 0%,
    rgba(20, 14, 10, 0.2) 40%,
    rgba(20, 14, 10, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 960px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 28px;
  animation: fadeUp 1.2s 0.3s both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; display: block; width: 40px; height: 1px; background: currentColor; opacity: 0.6;
}
.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  animation: fadeUp 1.2s 0.5s both;
}
.hero-title .italic { font-style: italic; color: #f0d9a8; }
.hero-sub {
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0.88;
  line-height: 1.7;
  animation: fadeUp 1.2s 0.7s both;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1.2s 0.9s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--burgundy); color: var(--cream); }
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-2px); }
.btn-ghost { border-color: currentColor; }
.btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn-outline { border-color: var(--burgundy); color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 50px;
  background: currentColor;
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.2); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ———— SECTION HEADERS ———— */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 24px; height: 1px; background: currentColor;
}
.section-title {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 30px;
}
.section-title .italic { font-style: italic; color: var(--burgundy); }
.section-intro {
  max-width: 620px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ———— ABOUT SPLIT ———— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: "";
  position: absolute;
  top: 30px; left: 30px; right: 30px; bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.split-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}
.split-content p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-size: 64px;
  float: left;
  line-height: 0.85;
  padding: 8px 10px 0 0;
  color: var(--burgundy);
  font-weight: 300;
}

/* ———— STATS ———— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 44px 30px;
  text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
  color: var(--burgundy);
  letter-spacing: -0.03em;
}
.stat-num .plus { font-size: 0.5em; vertical-align: top; color: var(--gold); }
.stat-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.stat-desc {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
  line-height: 1.6;
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ———— FEATURE GRID (home-features) ———— */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 70px;
}
.feature-tile {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.feature-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.feature-tile:hover img { transform: scale(1.06); }
.feature-tile-label {
  position: absolute;
  bottom: 24px; left: 24px;
  color: white;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 700px) { .feature-row { grid-template-columns: 1fr; } }

/* ———— ROOMS ———— */
.section-alt { background: var(--cream-soft); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}
.room-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s, box-shadow 0.5s;
  border: 1px solid var(--line);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.room-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.room-card:hover .room-card-media img { transform: scale(1.05); }
.room-card-body {
  padding: 34px 30px 38px;
}
.room-card-num {
  font-family: "Fraunces", serif;
  font-size: 13px;
  font-style: italic;
  color: var(--burgundy);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.room-card-name {
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.room-card-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 26px;
}
.room-card-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 4px;
}
.room-card-link:hover { gap: 14px; }

@media (max-width: 900px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ———— AMENITIES ———— */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.amen {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.amen:nth-child(3n) { border-right: none; }
.amen-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--burgundy);
  margin-bottom: 18px;
}
.amen-name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.amen-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .amen:nth-child(3n) { border-right: 1px solid var(--line); }
  .amen:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .amen-grid { grid-template-columns: 1fr; }
  .amen { border-right: none; }
}

/* ———— DEALS ———— */
.deals-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}
.deal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
}
.deal-card:nth-child(even) { direction: rtl; }
.deal-card:nth-child(even) > * { direction: ltr; }
.deal-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.deal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.deal-card:hover .deal-media img { transform: scale(1.06); }
.deal-body {
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.deal-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.deal-title {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--ink);
}
.deal-title .italic { color: var(--burgundy); }
.deal-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.deal-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  font-style: italic;
}
@media (max-width: 800px) {
  .deal-card, .deal-card:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

/* ———— THINGS TO DO ———— */
.ttd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.ttd-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  transition: transform 0.4s, box-shadow 0.4s;
}
.ttd-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.ttd-media { aspect-ratio: 4/3; overflow: hidden; }
.ttd-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.ttd-card:hover .ttd-media img { transform: scale(1.05); }
.ttd-body { padding: 28px 26px 32px; }
.ttd-title {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.ttd-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 900px) { .ttd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ttd-grid { grid-template-columns: 1fr; } }

/* ———— GALLERY ———— */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  margin-top: 60px;
}
.gallery-masonry figure {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-masonry img {
  width: 100%;
  height: auto;
  transition: transform 0.8s, filter 0.6s;
  filter: saturate(0.95);
}
.gallery-masonry figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 14, 10, 0.5));
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-masonry figure:hover img { transform: scale(1.04); filter: saturate(1.1); }
.gallery-masonry figure:hover::after { opacity: 1; }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 560px) { .gallery-masonry { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 6, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  color: var(--cream);
  font-size: 24px;
  width: 44px; height: 44px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
}

/* ———— CONTACT ———— */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.contact-card {
  padding: 44px 34px;
  background: white;
  border: 1px solid var(--line);
  text-align: left;
}
.contact-card-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.contact-card-title {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}
.contact-card-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
}
.contact-card a { color: var(--burgundy); border-bottom: 1px solid var(--burgundy); padding-bottom: 1px; }

.directions {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.directions h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--ink);
}
.directions p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .directions { grid-template-columns: 1fr; } }

/* ———— PAGE HERO ———— */
.page-hero {
  padding: 220px var(--gutter) 120px;
  text-align: center;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(106, 31, 48, 0.05), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95, 111, 78, 0.06), transparent 50%);
}
.page-hero-eyebrow {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.page-hero-title {
  position: relative;
  font-family: "Fraunces", serif;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-hero-title .italic { font-style: italic; color: var(--burgundy); }
.page-hero-sub {
  position: relative;
  max-width: 560px;
  margin: 26px auto 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ———— FOOTER ———— */
.footer {
  background: #1a1610;
  color: #d7cdb8;
  padding: 100px var(--gutter) 40px;
  position: relative;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer h4 {
  font-family: "Fraunces", serif;
  font-size: 14px;
  font-weight: 400;
  color: #efe4cb;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.footer-brand {
  margin-bottom: 22px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(1.02);
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #a99a7c;
  max-width: 280px;
  margin-bottom: 24px;
  font-style: italic;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a, .footer-contact a {
  font-size: 13px;
  color: #a99a7c;
  transition: color 0.3s;
}
.footer ul a:hover { color: #efe4cb; }
.footer-contact p { font-size: 13px; color: #a99a7c; line-height: 1.7; margin-bottom: 10px; }
.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b5f49;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ———— REVEAL: only hidden once JS confirms it can re-show them ———— */
.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-enabled .reveal.in { opacity: 1; transform: none; }

/* ———— MISC ———— */
.divider {
  display: flex; align-items: center; gap: 20px;
  margin: 50px auto;
  max-width: 400px;
  justify-content: center;
  opacity: 0.6;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.divider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--burgundy);
}

.section-heading-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 10px;
}
@media (max-width: 760px) {
  .section-heading-wrap { grid-template-columns: 1fr; }
}
