/* =========================================================
   AyalaLand Premier — Static Site Stylesheet
   Palette: Cream / Ink / Gold · Fonts: Cormorant Garamond + Manrope
   ========================================================= */

:root {
  --cream: #f5f0e6;
  --cream-soft: #ede5d4;
  --ink: #0b0b0c;
  --ink-soft: #1a1a1c;
  --charcoal: #2a2a2d;
  --gold: #b89968;
  --gold-bright: #d4b382;
  --gold-deep: #8c6f45;
  --muted-ink: #6b6b6e;
  --line: rgba(11, 11, 12, 0.12);
  --line-light: rgba(245, 240, 230, 0.18);
  --maxw: 1440px;
}

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

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

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream-soft); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border: 2px solid var(--cream-soft); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Typography ---------- */
.font-display { font-family: "Cormorant Garamond", "Times New Roman", serif; font-weight: 400; letter-spacing: -0.015em; }
.font-display-italic { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.kicker .rule { width: 48px; height: 1px; background: currentColor; display: inline-block; }

.kicker--on-dark { color: var(--gold-bright); }

h1,h2,h3,h4 { font-family: "Cormorant Garamond", serif; font-weight: 400; letter-spacing: -0.015em; line-height: 1.02; }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  cursor: pointer;
}
.btn i { font-size: 0.65rem; transition: transform 0.3s ease; }
.btn:hover i { transform: translateX(4px); }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: transparent; color: var(--gold-bright); border-color: var(--gold-bright); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(245,240,230,.35); }
.btn--ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--outline-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: var(--cream); }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }
@media (min-width: 1280px) { .container { padding: 0 4rem; } }

section { position: relative; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background-color .5s ease, border-color .5s ease, backdrop-filter .5s ease, padding .4s ease;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px){ .nav__inner { padding: 0 3rem; } }
@media (min-width: 1280px){ .nav__inner { padding: 0 4rem; } }

.nav__brand { display: flex; align-items: baseline; gap: 0.45rem; color: var(--cream); transition: color .5s ease; }
.nav__brand .mark { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; line-height: 1; }
.nav__brand .mark--italic { font-style: italic; color: var(--gold); font-size: 1.25rem; }
.nav__links { display: none; gap: 2.1rem; }
@media (min-width: 1024px){ .nav__links { display: flex; align-items: center; } }
.nav__link {
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  transition: color .4s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform .45s ease;
}
.nav__link:hover::after { transform-origin: left center; transform: scaleX(1); }

.nav__cta { display: none; }
@media (min-width: 768px){ .nav__cta { display: inline-flex; } }

.nav__burger {
  display: inline-flex;
  font-size: 1.25rem;
  color: var(--cream);
  transition: color .4s ease;
  background: transparent;
}
@media (min-width: 1024px){ .nav__burger { display: none; } }

.nav.is-scrolled {
  background: rgba(245,240,230,.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.is-scrolled .nav__brand,
.nav.is-scrolled .nav__link,
.nav.is-scrolled .nav__burger { color: var(--ink); }

.nav__mobile {
  display: none;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line-light);
}
.nav__mobile.is-open { display: block; }
.nav__mobile ul { list-style: none; padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; gap: 1.15rem; }
.nav__mobile a { letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.85rem; }
.nav__mobile a:hover { color: var(--gold-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
.hero__slide.is-active .hero__slide-bg {
  animation: kenburns 14s ease-in-out alternate infinite;
}
@keyframes kenburns {
  0%   { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.18) translate(-1%,-1%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11,11,12,.55) 0%,
      rgba(11,11,12,.22) 35%,
      rgba(11,11,12,.82) 100%);
}
.hero__frame {
  position: absolute;
  inset: 1.6rem;
  border: 1px solid rgba(245,240,230,.18);
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px){ .hero__frame { inset: 2.5rem; } }

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px){ .hero__content { padding: 0 3rem 7rem; } }
@media (min-width: 1280px){ .hero__content { padding: 0 4rem 7rem; } }
.hero__kicker { margin-bottom: 1.4rem; opacity: 0; animation: fadeIn .9s ease forwards; animation-delay: .15s; }
.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 900px;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: .2s;
}
.hero__sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  margin-top: 0.9rem;
  color: rgba(245,240,230,.9);
  max-width: 580px;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: .4s;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 2.2rem;
  opacity: 0;
  animation: slideUp 1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: .55s;
}

.hero__indicator {
  position: absolute;
  bottom: 2rem; right: 1.5rem;
  z-index: 4;
  display: flex; align-items: center; gap: 1rem;
  color: var(--cream);
}
@media (min-width: 768px){ .hero__indicator { right: 3rem; bottom: 3rem; } }
.hero__indicator .num { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; line-height: 1; }
.hero__indicator .line { width: 80px; height: 1px; background: rgba(245,240,230,.35); position: relative; overflow: hidden; }
.hero__indicator .line i { position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); }
.hero__slide.is-active ~ .hero__indicator .line i,
.hero__indicator.is-playing .line i { animation: progress 6.5s linear forwards; }
@keyframes progress { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.hero__thumbs {
  position: absolute;
  bottom: 2rem; left: 1.5rem;
  z-index: 4;
  display: none;
  gap: 0.65rem;
}
@media (min-width: 768px){ .hero__thumbs { display: flex; left: 3rem; bottom: 3rem; } }
.hero__thumb {
  width: 54px; height: 72px;
  overflow: hidden;
  border: 1px solid rgba(245,240,230,.25);
  opacity: .55;
  transition: all .4s ease;
}
.hero__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero__thumb.is-active { border-color: var(--gold); opacity: 1; transform: scale(1.06); }
.hero__thumb:hover { opacity: .95; }

.hero__scroll {
  position: absolute; bottom: 0.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(245,240,230,.7);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero__scroll .dash {
  display: block;
  width: 1px; height: 20px;
  background: var(--gold);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
@media (min-width: 768px){ .section { padding: 8rem 0; } }

.philosophy { background: var(--cream); }
.philosophy__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px){ .philosophy__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }

.philosophy__aside .no { font-family: "Cormorant Garamond", serif; font-size: 2rem; line-height: 1.1; }
.philosophy__aside .no em { color: var(--gold-deep); font-style: italic; }
.philosophy__aside p { color: var(--muted-ink); font-size: 0.9rem; letter-spacing: 0.05em; max-width: 20rem; margin-top: 1rem; line-height: 1.75; }

.philosophy__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  color: var(--ink);
}
.philosophy__title em { color: var(--gold-deep); font-style: italic; }

.philosophy__body { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 768px){ .philosophy__body { grid-template-columns: 1fr 1fr; } }
.philosophy__body p { color: rgba(26,26,28,.82); font-size: 1.04rem; line-height: 1.85; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  margin-top: 3.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 768px){ .stats { grid-template-columns: repeat(4, 1fr); } }
.stats__k { font-family: "Cormorant Garamond", serif; font-size: 2.6rem; line-height: 1; color: var(--ink); }
.stats__v { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-ink); margin-top: 0.5rem; }

/* ---------- Residences ---------- */
.residences {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.residences::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 15% 0%, rgba(184,153,104,.10), transparent 60%);
  pointer-events: none;
}
.residences__head {
  display: flex; flex-direction: column; gap: 2rem;
  margin-bottom: 3.5rem; position: relative;
}
@media (min-width: 1024px){ .residences__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.residences__title { font-size: clamp(2.6rem, 5.5vw, 5rem); line-height: 0.98; max-width: 820px; }
.residences__title em { color: var(--gold-bright); font-style: italic; }
.residences__desc { max-width: 420px; color: rgba(245,240,230,.72); font-size: 1rem; line-height: 1.85; }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px){ .cards { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.15) brightness(.9);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}
.card:hover .card__img { transform: scale(1.08); filter: grayscale(0) brightness(1); }
.card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0) 0%, rgba(11,11,12,.15) 45%, rgba(11,11,12,.85) 100%);
}
.card__content {
  position: absolute; inset: 0;
  padding: 1.8rem 1.8rem 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.card__no { color: var(--gold-bright); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; }
.card__year { color: rgba(245,240,230,.7); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; text-align: right; }
.card__loc { color: rgba(245,240,230,.7); font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 0.5rem; }
.card__name { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 0.95; }
.card__sub { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.1rem; color: rgba(245,240,230,.88); margin-top: 0.4rem; }
.card__foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(245,240,230,.2);
  padding-top: 0.85rem;
  margin-top: 1.25rem;
}
.card__price { color: var(--gold-bright); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; }
.card__cta { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.6rem; transition: color .3s ease; }
.card:hover .card__cta { color: var(--gold-bright); }
.card__cta i { font-size: 0.65rem; transition: transform .3s ease; }
.card:hover .card__cta i { transform: translateX(4px); }

/* ---------- Property showcase (full section per property) ---------- */
.showcase { padding: 6rem 0; }
@media (min-width: 768px){ .showcase { padding: 9rem 0; } }
.showcase--light { background: var(--cream); color: var(--ink); }
.showcase--dark  { background: var(--ink); color: var(--cream); }
.showcase--tone  { background: var(--cream-soft); color: var(--ink); }

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px){ .showcase__grid { grid-template-columns: 6fr 6fr; gap: 5rem; } }
.showcase__grid.is-reversed > .showcase__media { order: -1; }
@media (min-width: 1024px){ .showcase__grid.is-reversed > .showcase__media { order: 2; } }

.showcase__media {
  position: relative;
  display: grid;
  grid-template-columns: 6fr 4fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}
.showcase__media .big {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.showcase__media .small1 { aspect-ratio: 3 / 4; overflow: hidden; }
.showcase__media .small2 { aspect-ratio: 3 / 4; overflow: hidden; }
.showcase__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.showcase__media .tile:hover img { transform: scale(1.05); }

.showcase__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(11,11,12,.78);
  color: var(--gold-bright);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(245,240,230,.15);
  z-index: 2;
}

.showcase__title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  margin-top: 1.2rem;
}
.showcase__title em { color: var(--gold-deep); font-style: italic; }
.showcase--dark .showcase__title em { color: var(--gold-bright); }
.showcase__sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-top: 0.6rem;
  color: rgba(11,11,12,.72);
}
.showcase--dark .showcase__sub { color: rgba(245,240,230,.85); }
.showcase__text {
  margin-top: 1.6rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(11,11,12,.82);
  max-width: 560px;
}
.showcase--dark .showcase__text { color: rgba(245,240,230,.75); }

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
  margin: 2.4rem 0;
  border-top: 1px solid currentColor;
  padding-top: 1.8rem;
  border-color: var(--line);
}
.showcase--dark .specs { border-color: var(--line-light); }
@media (min-width: 560px){ .specs { grid-template-columns: repeat(4, 1fr); } }
.specs__k { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; line-height: 1; }
.specs__v { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: .7; margin-top: 0.4rem; }

.amenities-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.5rem; margin-top: 1rem; }
.amenities-list li { font-size: 0.9rem; letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.6rem; }
.amenities-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  display: inline-block;
  transform: rotate(45deg);
}

.showcase__ctas { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Gallery strip (in showcase) ---------- */
.gallery-strip {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
}
.gallery-strip .tile { aspect-ratio: 1; overflow: hidden; cursor: zoom-in; position: relative; }
.gallery-strip .tile img { width:100%; height:100%; object-fit: cover; transition: transform 1s ease; }
.gallery-strip .tile:hover img { transform: scale(1.08); }
.gallery-strip .tile.more {
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,11,12,.82); color: var(--gold-bright);
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  cursor: pointer;
}
.showcase--dark .gallery-strip .tile.more { background: rgba(245,240,230,.08); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(11,11,12,.96);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
}
.lightbox.is-open { display: flex; }
.lightbox__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem;
  color: var(--cream);
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 768px){ .lightbox__head { padding: 1.5rem 3rem; } }
.lightbox__title { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; letter-spacing: .03em; }
.lightbox__count { color: var(--gold-bright); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; }
.lightbox__close {
  color: var(--cream);
  font-size: 1.4rem;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-light);
  transition: all .3s ease;
}
.lightbox__close:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: rotate(90deg); }

.lightbox__stage {
  position: relative;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 1rem;
  overflow: hidden;
}
.lightbox__img {
  max-width: min(92vw, 1400px);
  max-height: calc(100vh - 220px);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.lightbox__img.is-visible { opacity: 1; transform: translateY(0); }

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  border: 1px solid var(--line-light);
  background: rgba(11,11,12,.35);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}
.lightbox__arrow:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(11,11,12,.55); }
.lightbox__arrow--prev { left: 1rem; }
.lightbox__arrow--next { right: 1rem; }
@media (min-width: 768px){
  .lightbox__arrow--prev { left: 2rem; }
  .lightbox__arrow--next { right: 2rem; }
}

.lightbox__thumbs {
  display: flex; gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.lightbox__thumbs::-webkit-scrollbar { display: none; }
.lightbox__thumbs button {
  flex: 0 0 auto;
  width: 78px; height: 56px;
  overflow: hidden;
  border: 1px solid rgba(245,240,230,.2);
  opacity: .5;
  transition: all .3s ease;
}
.lightbox__thumbs button img { width:100%; height:100%; object-fit: cover; }
.lightbox__thumbs button:hover { opacity: .9; }
.lightbox__thumbs button.is-active { border-color: var(--gold); opacity: 1; transform: scale(1.05); }

/* ---------- Quote / CTA banner ---------- */
.quote {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}
.quote__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
  filter: grayscale(.4);
}
.quote::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.65), rgba(11,11,12,.9));
}
.quote__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.quote__mark { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 4rem; color: var(--gold); line-height: 1; }
.quote__text { font-family: "Cormorant Garamond", serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.25; margin-top: 1rem; }
.quote__src { color: var(--gold-bright); letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.72rem; margin-top: 1.8rem; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); color: var(--ink); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px){ .contact__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.contact__title { font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.04; }
.contact__title em { color: var(--gold-deep); font-style: italic; }
.contact__lead { margin-top: 1.2rem; color: rgba(11,11,12,.75); font-size: 1rem; line-height: 1.85; max-width: 420px; }
.contact__details { margin-top: 2rem; display: grid; gap: 1.2rem; }
.contact__row { display: flex; gap: 1rem; align-items: flex-start; }
.contact__row i { color: var(--gold-deep); font-size: 1rem; margin-top: .25rem; }
.contact__row strong { display: block; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.7rem; color: var(--muted-ink); margin-bottom: 0.2rem; }
.contact__row span { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; }

.form {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--line);
}
@media (min-width: 768px){ .form { padding: 2.8rem; } }
.form__grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px){ .form__grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-ink); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 0.1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .3s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); }
.field--full.submit { margin-top: 1rem; display: flex; justify-content: flex-end; }
.form__note { margin-top: 0.8rem; font-size: 0.78rem; color: var(--muted-ink); }
.form__toast {
  display: none;
  padding: 0.9rem 1rem;
  background: rgba(184,153,104,0.15);
  border-left: 2px solid var(--gold-deep);
  color: var(--ink);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.form__toast.is-visible { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(245,240,230,.75);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line-light);
}
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px){ .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand { color: var(--cream); display: flex; align-items: baseline; gap: .5rem; }
.footer__brand .mark { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; line-height: 1; }
.footer__brand .mark--italic { font-style: italic; color: var(--gold-bright); font-size: 1.3rem; }
.footer__intro { margin-top: 1rem; max-width: 360px; font-size: 0.92rem; line-height: 1.8; }
.footer h4 { font-family: "Manrope", sans-serif; color: var(--cream); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a { font-size: 0.9rem; transition: color .3s ease; }
.footer ul a:hover { color: var(--gold-bright); }

.footer__social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-light);
  color: var(--cream);
  transition: all .3s ease;
}
.footer__social a:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-2px); }

.footer__bar {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  display: flex; flex-direction: column; gap: 0.6rem;
  align-items: center; justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
@media (min-width: 768px){ .footer__bar { flex-direction: row; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
