@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../fonts/inter.woff2") format("woff2");
}

:root {
  --black: #0A0A0A;
  --text: #1A1A1A;
  --gold: #B8860B;
  --gold-light: #C9A84C;
  --white: #FFFFFF;
  --muted: #6B6B6B;
  --rule: #E6E4DE;
  --paper: #F7F7F5;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 72px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

picture {
  display: block;
}

a {
  color: var(--gold);
}

a:hover {
  color: #8B6508;
}

h1, h2, h3, p {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

.rule--gold {
  width: 56px;
  height: 1px;
  background: var(--gold);
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-light);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
  min-width: 0;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.brand-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang {
  display: flex;
  border: 1px solid var(--black);
  overflow: hidden;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang button.is-active {
  background: var(--black);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--black);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 16px 28px;
  border: 0;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.btn:hover,
.btn:focus-visible {
  background: var(--gold);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-light);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.btn--ghost:hover {
  background: transparent;
  color: #8B6508;
}

/* ——— Hero ——— */
.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 80px);
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.15rem, 4.4vw, 3.55rem);
  line-height: 1.14;
  color: var(--black);
  text-wrap: pretty;
  margin-bottom: 28px;
}

.hero-copy .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 36px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.hero-media {
  position: relative;
  width: min(100%, 500px);
  height: 470px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(15px) scale(1.015);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
}

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

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100%, 500px);
}

.hero-dot {
  width: 18px;
  height: 2px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dot::after {
  content: "";
  display: block;
  height: 2px;
  background: #D4D0C8;
  transition: width 300ms var(--ease), background 300ms var(--ease);
}

.hero-dot.active::after {
  width: 36px;
  background: var(--gold);
}

.hero-dot:not(.active)::after {
  width: 18px;
}

.hero-dot:hover::after {
  background: var(--gold-light);
}

/* ——— About ——— */
.about {
  background: var(--paper);
  padding: 108px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
}

.about h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--black);
  margin: 16px 0 8px;
}

.about-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.about-bio {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.founder {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}

.badge-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.badge-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
}

.diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ——— Stats ——— */
.stats {
  padding: 88px 0;
}

.stats .kicker {
  text-align: center;
  margin-bottom: 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid var(--rule);
}

.stat:first-child {
  border-left: 0;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Offers ——— */
.offers {
  background: var(--paper);
  padding: 108px 0;
}

.offers .kicker {
  margin-bottom: 48px;
}

.offers-list {
  display: grid;
  gap: 0;
}

.offer {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}

.offer:last-child {
  border-bottom: 1px solid var(--rule);
}

.offer-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--gold);
  padding-top: 4px;
}

.offer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.offer p {
  max-width: 62ch;
  margin-bottom: 16px;
}

.offer-points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.offer-points li {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

/* ——— Proof ——— */
.proof {
  padding: 108px 0;
  text-align: center;
}

.proof blockquote {
  margin: 0 auto 56px;
  max-width: 820px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.35;
  color: var(--black);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

/* ——— Band CTA ——— */
.band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}

.band-media {
  position: absolute;
  inset: 0;
}

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

.band-shade {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.58);
}

.band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

.band .kicker {
  color: var(--gold-light);
  margin-bottom: 22px;
}

.band h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  color: #E8C87A;
  line-height: 1.15;
}

.band .rule--gold {
  background: var(--gold-light);
  margin: 32px 0;
}

.band p {
  color: #F5F0E8;
  margin-bottom: 36px;
  font-size: 1.1rem;
}

/* ——— Session CTA ——— */
.session {
  background: var(--paper);
  padding: 120px 0;
  text-align: center;
}

.session h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--black);
  max-width: 18ch;
  margin: 0 auto 24px;
}

.session p {
  max-width: 36rem;
  margin: 0 auto 40px;
}

.session-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 36px;
  font-size: 15px;
}

.session-links a {
  text-decoration: none;
}

/* ——— Contact ——— */
.contact {
  padding: 108px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}

.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin: 14px 0 16px;
  max-width: 16ch;
}

.contact-intro {
  max-width: 36rem;
  margin-bottom: 36px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.contact-list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}

.contact-list a:hover .contact-value {
  color: var(--gold);
}

.contact-list span:first-child {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-size: 17px;
  color: var(--black);
  word-break: break-word;
}

.form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--gold-light);
  padding: 32px 28px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form textarea {
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  padding: 10px 0;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form .btn {
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 28px 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid var(--gold-light);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

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

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    align-items: stretch;
  }

  .hero-media,
  .hero-dots {
    width: 100%;
  }

  .hero-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .stats-row,
  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }

  .stat {
    border-left: 0;
    padding: 12px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 12px 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .about,
  .offers,
  .proof,
  .session,
  .contact {
    padding: 72px 0;
  }

  .offer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
