:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --gold: #c9a24b;
  --gold-2: #d4af37;
  --ivory: #f5f1e8;
  --wine: #8b1e2f;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;
  --line: rgba(201, 162, 75, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  color: var(--gold-2);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--ivory);
}

h3 {
  font-size: 1.5rem;
  color: var(--gold-2);
}

p {
  color: rgba(245, 241, 232, 0.7);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.rule {
  width: 76px;
  height: 1px;
  margin: 1.6rem 0 1.8rem;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

.rule--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  width: 130px;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 5vw, 4rem);
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.nav.is-stuck {
  border-color: var(--line);
  background: rgba(10, 10, 10, 0.9);
}

.nav__brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  color: var(--gold-2);
}

.nav__brand span {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  color: rgba(245, 241, 232, 0.55);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav__links a {
  color: rgba(245, 241, 232, 0.72);
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--gold-2);
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem clamp(1.4rem, 6vw, 6rem) 6rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  right: -260px;
  top: -220px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.16), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero__sub {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  max-width: 30ch;
  margin-bottom: 2.4rem;
}

.portrait {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 10px rgba(201, 162, 75, 0.05), 0 40px 90px -30px rgba(0, 0, 0, 0.9);
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.55);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(201, 162, 75, 0.6);
  animation: float 2.6s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateX(-50%) translateY(-7px);
  }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1.05rem 2.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.4s;
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #0a0a0a;
  font-weight: 500;
}

.btn--gold:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn--outline {
  color: var(--gold-2);
}

.btn--outline:hover {
  background: rgba(139, 30, 47, 0.9);
  border-color: var(--wine);
  color: var(--ivory);
}

/* SECTIONS */
.section {
  padding: clamp(5rem, 11vw, 9.5rem) clamp(1.4rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 162, 75, 0.12);
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.4rem, 6vw, 5.5rem);
  align-items: center;
}

.section__head {
  text-align: center;
  margin-bottom: 3.6rem;
}

.section__lead {
  max-width: 52ch;
  margin: 0 auto;
}

.pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 2rem 0 0;
}

.pills li {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  color: rgba(245, 241, 232, 0.72);
}

.address {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-2);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--black-2), var(--black));
  padding: 2.6rem 2rem;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.card:hover {
  border-color: var(--gold-2);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -40px rgba(201, 162, 75, 0.5);
}

.card svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1.6rem;
}

.card h3 {
  margin-bottom: 0.8rem;
}

/* GALLERY */
.gallery {
  columns: 3;
  column-gap: 1.4rem;
}

.frame {
  position: relative;
  margin: 0 0 1.4rem;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--black-2);
  break-inside: avoid;
  overflow: hidden;
  transition: border-color 0.4s;
}

.frame img {
  width: 100%;
  filter: grayscale(0.08) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s;
}

.frame:hover {
  border-color: var(--gold-2);
}

.frame:hover img {
  transform: scale(1.045);
  filter: none;
}

.frame figcaption {
  padding: 0.9rem 0.4rem 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201, 162, 75, 0.8);
  text-align: center;
}

/* QUOTES */
.quotes {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  min-height: 240px;
}

.quote {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s, transform 0.7s;
  pointer-events: none;
}

.quote.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.quote::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.6;
  color: rgba(201, 162, 75, 0.55);
  margin-bottom: 1.2rem;
}

.quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.5;
  color: var(--ivory);
}

.quote cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.quotes__dots {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.quotes__dots button {
  width: 26px;
  height: 1px;
  border: 0;
  padding: 0;
  background: rgba(245, 241, 232, 0.25);
  cursor: pointer;
  transition: background 0.4s;
}

.quotes__dots button[aria-selected="true"] {
  background: var(--gold-2);
}

/* MAP */
.map {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 60% 40%, #16130d, var(--black));
  overflow: hidden;
}

.map__grid {
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(rgba(201, 162, 75, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 75, 0.13) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: rotate(-14deg);
}

.map__pin {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 34px rgba(212, 175, 55, 0);
  }
}

.map__label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* CTA */
.cta {
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem;
  background: linear-gradient(180deg, var(--black), #14100a, var(--black));
  border-top: 1px solid rgba(201, 162, 75, 0.12);
}

.cta h2 {
  color: var(--gold-2);
  margin-bottom: 0.4rem;
}

.cta .btn {
  margin-top: 1.4rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(201, 162, 75, 0.16);
  padding: 3.4rem clamp(1.4rem, 6vw, 6rem) 5rem;
  text-align: center;
}

.footer__brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  color: var(--gold-2);
}

.footer__brand span {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  color: rgba(245, 241, 232, 0.5);
  margin-top: 4px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin: 2rem 0 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer__links a {
  color: rgba(245, 241, 232, 0.7);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.footer__links a:hover {
  color: var(--gold-2);
  border-color: var(--gold-2);
}

.footer__legal {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.4);
}

/* FLOAT WA */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 10, 0.92);
  transition: background 0.4s, transform 0.4s;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-2);
  transition: fill 0.4s;
}

.wa-float:hover {
  background: var(--gold-2);
  transform: translateY(-3px);
}

.wa-float:hover svg {
  fill: #0a0a0a;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .gallery {
    columns: 2;
  }
}

@media (max-width: 820px) {
  .hero__inner,
  .section--split {
    grid-template-columns: 1fr;
  }
  .hero__inner {
    text-align: center;
  }
  .hero__text .rule,
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__photo {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
  .gallery {
    columns: 1;
  }
}
