:root {
  --wine: #4a1022;
  --wine-deep: #2a0a14;
  --ink: #12090c;
  --gold: #c4a574;
  --gold-bright: #e2c89a;
  --ivory: #f4ece3;
  --muted: rgba(244, 236, 227, 0.72);
  --line: rgba(196, 165, 116, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ivory);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-kicker--light {
  color: var(--gold-bright);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--ivory);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
  filter: saturate(0.92) contrast(1.05);
}

.hero__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 9, 12, 0.88) 0%, rgba(18, 9, 12, 0.55) 42%, rgba(18, 9, 12, 0.2) 68%, rgba(18, 9, 12, 0.55) 100%),
    linear-gradient(180deg, rgba(18, 9, 12, 0.45) 0%, transparent 28%, rgba(18, 9, 12, 0.82) 100%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.topbar__tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(640px, 100%);
  padding: 0 1.6rem 3.75rem;
  animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero__content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.45rem, 7.2vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 12ch;
}

.hero__lead {
  margin: 1.35rem 0 0;
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.65;
}

.hero__sub {
  margin: 0.9rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-bright);
  max-width: 34ch;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink);
}

.btn--gold:hover {
  filter: brightness(1.06);
}

.btn--outline {
  background: rgba(244, 236, 227, 0.06);
  border-color: rgba(244, 236, 227, 0.45);
  color: var(--ivory);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  background: rgba(244, 236, 227, 0.14);
  border-color: var(--gold-bright);
}

.btn--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Intro —— */
.intro {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at top right, rgba(196, 165, 116, 0.12), transparent 45%),
    linear-gradient(180deg, #1a0d12 0%, var(--ink) 100%);
}

.intro__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .intro__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.intro__copy h2,
.split__copy h2,
.moment__inner h2,
.gallery-lux__title,
.pillars h2,
.final__inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.intro__copy p,
.split__copy > p,
.moment__inner > p,
.final__inner > p {
  margin: 1.1rem 0 0;
  color: rgba(244, 236, 227, 0.7);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 42ch;
}

.intro__visual {
  margin: 0;
  position: relative;
}

.intro__visual img {
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  filter: saturate(0.95);
}

.intro__visual figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* —— Split editorial —— */
.split {
  display: grid;
  background: var(--wine-deep);
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    min-height: 78vh;
  }

  .split--reverse .split__media {
    order: 2;
  }

  .split--reverse .split__copy {
    order: 1;
  }
}

.split__media {
  margin: 0;
  min-height: 420px;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 1.6rem;
}

@media (min-width: 900px) {
  .split__copy {
    padding: 4rem 4.5rem;
  }
}

.split__points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.split__points li {
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  color: rgba(244, 236, 227, 0.78);
  font-weight: 300;
  font-size: 0.98rem;
}

.split__quote {
  margin-top: 1.75rem !important;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem !important;
  line-height: 1.35;
  color: var(--gold-bright) !important;
}

/* —— Full-bleed moment —— */
.moment {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.moment__bg {
  position: absolute;
  inset: 0;
}

.moment__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  animation: softZoom 18s ease-in-out infinite alternate;
}

.moment__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 9, 12, 0.82) 0%, rgba(18, 9, 12, 0.35) 55%, rgba(18, 9, 12, 0.55) 100%),
    linear-gradient(180deg, transparent 20%, rgba(18, 9, 12, 0.88) 100%);
}

.moment__inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  max-width: 640px;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
  margin-right: 1.25rem;
}

@keyframes softZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

/* —— Gallery —— */
.gallery-lux {
  padding: 5rem 0 4rem;
  background: #160b10;
}

.gallery-lux__title {
  margin-bottom: 2rem;
  max-width: 14ch;
}

.gallery-lux__grid {
  display: grid;
  gap: 0.65rem;
  width: min(1200px, calc(100% - 1.5rem));
  margin-inline: auto;
}

@media (min-width: 760px) {
  .gallery-lux__grid {
    grid-template-columns: 1.15fr 0.9fr 1fr;
    gap: 0.85rem;
    align-items: stretch;
  }
}

.gallery-lux__grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gallery-lux__grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: saturate(0.93);
}

@media (min-width: 760px) {
  .gallery-lux__grid figure:nth-child(2) img {
    height: 420px;
    margin-top: 2rem;
  }

  .gallery-lux__grid figure:nth-child(3) img {
    height: 380px;
    margin-top: 0.5rem;
  }
}

.gallery-lux__grid figure:hover img {
  transform: scale(1.04);
}

.gallery-lux__grid figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ivory);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

/* —— Pillars —— */
.pillars {
  padding: 5rem 0;
  background:
    linear-gradient(180deg, var(--wine) 0%, var(--wine-deep) 100%);
}

.pillars h2 {
  max-width: 12ch;
}

.pillars__row {
  margin-top: 2.75rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .pillars__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.pillars__row article {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.pillars__row span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.pillars__row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
}

.pillars__row p {
  margin: 0.75rem 0 0;
  color: rgba(244, 236, 227, 0.68);
  font-weight: 300;
  font-size: 0.98rem;
}

/* —— Final —— */
.final {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.final__media {
  position: absolute;
  inset: 0;
}

.final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.final__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(18, 9, 12, 0.9) 0%, rgba(18, 9, 12, 0.55) 48%, rgba(74, 16, 34, 0.45) 100%);
}

.final__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 620px;
}

.site-footer {
  background: #0c0608;
  color: rgba(244, 236, 227, 0.55);
  padding: 1.6rem 0;
  font-size: 0.88rem;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand--footer img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.brand--footer span {
  color: var(--ivory);
}

@media (max-width: 640px) {
  .topbar__tag {
    display: none;
  }

  .hero__content {
    padding-bottom: 2.75rem;
  }

  .gallery-lux__grid img {
    height: 300px;
  }
}
