:root {
  --onyx: #0c0b0a;
  --ivory: #f6f1e8;
  --antique-gold: #c4a46a;
  --smoke: #3e3b36;
  --line: rgba(12, 11, 10, 0.15);
  --shadow: 0 28px 80px rgba(12, 11, 10, 0.18);
  --radius: 18px;
}

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

body {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  background: var(--ivory);
  color: var(--onyx);
  line-height: 1.6;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(246, 241, 232, 0.88);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
}

.brand img {
  height: 48px;
  filter: saturate(0) contrast(1.2);
}

.nav__links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--onyx);
  transition: width 0.3s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--onyx);
  color: var(--ivory);
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 14px 40px rgba(12, 11, 10, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(12, 11, 10, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--onyx);
  border: 1px solid var(--onyx);
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  color: var(--onyx);
  border: 1px solid var(--line);
  font-size: 12px;
  padding: 10px 20px;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  padding: 120px 8vw 120px;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: -10% -10% 0 -10%;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(246, 241, 232, 0.92), rgba(246, 241, 232, 0.4) 55%, rgba(12, 11, 10, 0.85));
}

.hero__monogram {
  position: absolute;
  right: 6vw;
  top: 15vh;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(196, 164, 106, 0.6);
  transform: rotate(45deg);
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(40px, 4vw, 72px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero__meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--smoke);
}

.section {
  padding: 100px 8vw;
  position: relative;
  z-index: 2;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 50px;
}

.section h2 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 48px);
  margin-bottom: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}

.stat__value {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: 28px;
}

.section__media .media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.section__media .media-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.media-card__label {
  padding: 16px 20px;
  background: var(--onyx);
  color: var(--ivory);
  font-family: "Bodoni Moda", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.section--panel {
  background: #12100e;
  color: var(--ivory);
}

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(196, 164, 106, 0.2), transparent 50%), #0f0d0b;
  border-radius: 24px;
  padding: 60px;
  box-shadow: var(--shadow);
}

.panel__image img {
  border-radius: 18px;
  filter: saturate(0.9) contrast(1.05);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
}

.pill-list li {
  padding: 10px 16px;
  border: 1px solid rgba(246, 241, 232, 0.3);
  border-radius: 999px;
  font-size: 14px;
}

.section--steps .steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step span {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: 20px;
  color: var(--antique-gold);
}

.step h3 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.section--gallery {
  background: linear-gradient(180deg, var(--ivory), #efe6d6);
}

.gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.gallery__item img {
  transition: transform 0.5s ease;
  height: 100%;
  object-fit: cover;
}

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(12, 11, 10, 0.7));
  color: var(--ivory);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.section--cta {
  padding-bottom: 120px;
}

.cta {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 50px 60px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer {
  background: #0d0b0a;
  color: var(--ivory);
  padding: 80px 8vw 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer__logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer h3 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  margin-bottom: 10px;
}

.footer__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-top: 1px solid rgba(246, 241, 232, 0.15);
  padding-top: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .hero__content {
    max-width: 100%;
  }

  .section--split,
  .panel {
    grid-template-columns: 1fr;
  }

  .section--steps .steps,
  .gallery,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__meta {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .nav__inner {
    padding: 14px 20px;
  }

  .hero {
    padding: 120px 8vw 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
