:root {
  --black: #080706;
  --ink: #191714;
  --muted: #6f6a63;
  --line: #ded8cf;
  --paper: #f7f4ef;
  --white: #fffdf8;
  --gold: #b99a5b;
  --gold-soft: #eadfc8;
  --shadow: 0 24px 80px rgba(8, 7, 6, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 102px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(222, 216, 207, 0.72);
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 380px;
}

.brand-logo {
  width: min(385px, 28vw);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-style: italic;
  line-height: 1.05;
  margin-top: 2px;
  margin-left: clamp(166px, 12.4vw, 220px);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--black);
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.language-switch button.active {
  background: var(--black);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1fr);
  min-height: calc(100vh - 102px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.68) 42%, rgba(8, 7, 6, 0.34) 100%),
    url("assets/images/marcella-portrait.jpg") center 18% / cover no-repeat,
    var(--black);
}

.hero-media {
  display: none;
}

.portrait-frame,
.founder-image {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 440px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(rgba(8, 7, 6, 0.18), rgba(8, 7, 6, 0.1)),
    linear-gradient(135deg, #15120f 0%, #f1eadf 48%, #9d8554 100%);
  box-shadow: var(--shadow);
}

.portrait-frame::after,
.founder-image::after {
  content: none;
}

.portrait-frame img,
.founder-image img,
.experience-panel img,
.mia-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 78px);
  color: var(--white);
}

.hero-copy h1 {
  color: var(--white);
}

.hero-copy .hero-text {
  color: rgba(255, 253, 248, 0.82);
}

.hero-copy .eyebrow {
  color: var(--gold-soft);
}

.hero-copy .button.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-copy .button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.66);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.02;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.6vw, 72px);
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-text,
.intro-band p,
.contact p,
.founder p,
.experience p,
.mia p,
.waitlist p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  text-align: justify;
}

.hero-actions,
.contact-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--black);
  color: var(--white);
}

.button.secondary {
  background: transparent;
}

.intro-band,
.founder,
.waitlist,
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}

.academy-story {
  display: grid;
  gap: 28px;
}

.academy-story img {
  width: 100%;
  height: clamp(440px, 34vw, 560px);
  object-fit: cover;
  object-position: center 34%;
  border: 1px solid var(--line);
}

.service-moments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.service-moments figure {
  position: relative;
  min-height: clamp(260px, 28vw, 420px);
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.service-moments img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.service-moments figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 60px);
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}

.services-hero,
.services-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(82px, 10vw, 150px) clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}

.services-hero p,
.service-detail p,
.services-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.service-detail {
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.44fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-detail:nth-of-type(even) {
  background: var(--white);
}

.service-detail > span {
  color: var(--gold);
  font-weight: 800;
}

.service-visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}

.service-detail h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 62px);
}

.detail-note {
  max-width: 760px;
  margin-top: 22px;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
}

.services-cta {
  align-items: center;
  background: var(--black);
  color: var(--white);
}

.services-cta h2 {
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  margin-bottom: 54px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  display: block;
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--black);
  color: var(--white);
}

.service-card span {
  display: block;
  margin-bottom: 84px;
  color: var(--gold);
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card.featured p {
  color: rgba(255, 253, 248, 0.72);
}

.experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: stretch;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background: var(--black);
}

.experience-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.experience h2 {
  color: var(--white);
}

.experience p {
  color: rgba(255, 253, 248, 0.76);
}

.experience ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.experience li {
  padding-left: 22px;
  color: rgba(255, 253, 248, 0.76);
  line-height: 1.55;
  border-left: 1px solid var(--gold);
  text-align: justify;
}

.experience .button.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.experience-panel {
  display: block;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.experience-panel img {
  object-position: center top;
}

.founder {
  align-items: center;
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.86) 0%, rgba(8, 7, 6, 0.66) 43%, rgba(8, 7, 6, 0.16) 100%),
    url("assets/images/marcella-founder.jpg") center 38% / cover no-repeat;
}

.founder-image {
  display: none;
}

.founder > div:last-child {
  position: relative;
  z-index: 1;
  grid-column: 1 / 2;
  max-width: 620px;
}

.founder h2 {
  color: var(--white);
}

.founder p {
  color: rgba(255, 253, 248, 0.76);
}

.mia,
.method {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: stretch;
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.mia {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 46%, rgba(255, 253, 248, 0.2) 100%),
    url("assets/images/mia-screens.png") right center / min(50vw, 720px) auto no-repeat,
    var(--white);
}

.mia-copy {
  position: relative;
  z-index: 1;
}

.mia-showcase,
.method-brand {
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(185, 154, 91, 0.18), rgba(255, 253, 248, 0.72)),
    var(--paper);
}

.mia-showcase {
  display: none;
}

.mia-showcase img {
  object-fit: contain;
  padding: clamp(16px, 3vw, 34px);
}

.method {
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  background: var(--black);
  color: var(--white);
}

.method h2 {
  color: var(--white);
}

.method p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.method-brand {
  min-height: 320px;
  background: transparent;
  overflow: visible;
}

.method-brand img {
  width: min(74%, 420px);
}

.method .button.primary {
  margin-top: 24px;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

blockquote p {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.waitlist {
  align-items: start;
  background: var(--paper);
}

.waitlist-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  min-height: calc(100vh - 102px);
  padding: clamp(82px, 10vw, 150px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.98), rgba(247, 244, 239, 0.84)),
    url("assets/images/nyfe-poster.jpg") right center / auto 100% no-repeat,
    var(--paper);
}

.waitlist-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  text-align: justify;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.waitlist-form textarea {
  min-height: 118px;
  padding-top: 16px;
  resize: vertical;
}

.waitlist-form button {
  width: fit-content;
}

.contact {
  align-items: center;
  background: var(--black);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-actions {
  justify-content: flex-end;
}

.contact .button.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.contact .button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.42);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 80px);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro-band,
  .services-hero,
  .services-cta,
  .section-heading,
  .experience,
  .mia,
  .method,
  .founder,
  .waitlist,
  .waitlist-page,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 102px);
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.58) 0%, rgba(8, 7, 6, 0.72) 46%, rgba(8, 7, 6, 0.9) 100%),
      url("assets/images/marcella-portrait.jpg") center 18% / cover no-repeat;
  }

  .hero-media {
    order: 2;
    place-items: center;
  }

  .hero-copy {
    order: 1;
    min-height: calc(100svh - 102px);
    justify-content: flex-end;
  }

  .academy-story img {
    height: 380px;
    object-position: center 28%;
  }

  .service-moments {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-moments figure {
    min-height: 320px;
  }

  .experience-panel {
    min-height: 420px;
  }

  .mia {
    padding-bottom: 360px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.94) 54%, rgba(255, 253, 248, 0.54) 100%),
      url("assets/images/mia-screens.png") center bottom / min(112vw, 520px) auto no-repeat,
      var(--white);
  }

  .founder {
    min-height: 720px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.24) 0%, rgba(8, 7, 6, 0.6) 44%, rgba(8, 7, 6, 0.94) 100%),
      url("assets/images/marcella-founder.jpg") center top / cover no-repeat;
  }

  .service-grid,
  .testimonial-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    font-size: 8px;
    margin-left: 108px;
  }

  .brand-logo {
    width: 220px;
    height: auto;
    max-height: 44px;
  }

  .service-moments {
    grid-template-columns: 1fr;
  }

  .service-moments figure {
    min-height: 360px;
  }

  .academy-story img,
  .experience-panel {
    min-height: 340px;
  }

  h1 {
    font-size: 46px;
  }

  .button {
    width: 100%;
  }

  .waitlist-form button {
    width: 100%;
  }

  .service-card {
    min-height: 250px;
  }

  .footer {
    flex-direction: column;
  }
}
