:root {
  --black: #050505;
  --near-black: #101010;
  --white: #ffffff;
  --ivory: #f7f2ea;
  --champagne: #d9b85f;
  --gold: #f0db9a;
  --rose: #9a5b61;
  --taupe: #d8cec0;
  --muted: #766f66;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(5, 5, 5, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--near-black);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: 104px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 12px 32px;
  background: rgba(5, 5, 5, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  min-height: 54px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  padding: 138px 0 86px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 43%, rgba(0, 0, 0, 0.2) 100%),
    url("assets/hero-academy.jpg");
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 5.5rem;
  line-height: 0.95;
  font-weight: 300;
}

h2 {
  margin-bottom: 22px;
  font-size: 3.05rem;
  line-height: 1.05;
  font-weight: 300;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 600;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Snell Roundhand", "Brush Script MT", cursive;
  font-size: 2.55rem;
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 44px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--champagne);
  border-color: var(--champagne);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-stats {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-stats div {
  padding: 18px 18px 18px 0;
}

.hero-stats div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
}

.hero-stats dt {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.intro-section {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.6fr;
  gap: 70px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 850px;
}

.intro-grid p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--black);
}

.image-band img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.image-band img:nth-child(1) {
  object-position: center 45%;
}

.image-band img:nth-child(2) {
  object-position: center 42%;
}

.image-band img:nth-child(3) {
  object-position: center 36%;
}

.dark-section {
  color: var(--white);
  background: var(--black);
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 80px;
  align-items: start;
}

.rich-copy {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.07rem;
}

.rich-copy p:last-child,
.content-panel p:last-child,
.business-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.experience {
  background: #efe7dc;
}

.split-media {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 72px;
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 610px;
}

.media-main,
.media-overlap {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.media-main {
  height: 500px;
  object-position: center center;
}

.media-overlap {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 48%;
  height: 280px;
  border: 10px solid #efe7dc;
  object-position: center center;
}

.content-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #342c27;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  content: "";
  border: 1px solid var(--champagne);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--champagne) 0 3px, transparent 4px);
}

.highlight-line {
  padding: 22px 0 0;
  color: var(--near-black);
  border-top: 1px solid rgba(154, 91, 97, 0.28);
  font-weight: 700;
}

.programs {
  color: var(--white);
  background: var(--near-black);
}

.section-head {
  max-width: 820px;
  margin-bottom: 46px;
}

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

.program-card {
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.program-card.featured {
  background: var(--ivory);
  color: var(--near-black);
}

.program-icon {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  color: var(--champagne);
  border: 1px solid rgba(217, 184, 95, 0.6);
  border-radius: 50%;
  background: rgba(217, 184, 95, 0.07);
}

.program-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-card.featured .program-icon {
  color: #7f6020;
  border-color: rgba(127, 96, 32, 0.42);
  background: rgba(217, 184, 95, 0.22);
}

.program-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.program-card.featured ul,
.program-card.featured p {
  color: var(--muted);
}

.format-section {
  padding: 64px 0;
  background: var(--champagne);
  color: var(--black);
}

.format-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.format-grid h2 {
  margin-bottom: 0;
}

.format-grid .section-kicker {
  color: rgba(5, 5, 5, 0.72);
}

.format-grid p:last-child {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.business {
  background: var(--ivory);
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 76px;
  align-items: center;
}

.business-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.partner-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(34, 21, 22, 0.94)),
    url("assets/lash-workshop.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.partner-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.62);
}

.partner-panel > * {
  position: relative;
}

.panel-label {
  display: inline-flex;
  margin-bottom: 80px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-panel h3 {
  color: var(--champagne);
  font-family: "Snell Roundhand", "Brush Script MT", cursive;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 400;
}

.partner-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.support {
  background: #e8ded0;
}

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

.support-card {
  padding: 34px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.support-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--black);
  border: 1px solid var(--champagne);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 800;
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  overflow: hidden;
  background: var(--black);
}

.gallery-track {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1.15fr 0.9fr;
  gap: 8px;
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 8px;
}

.gallery-track img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.9) contrast(1.05);
}

.gallery-track img:nth-child(2),
.gallery-track img:nth-child(3) {
  object-position: center 35%;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)),
    url("assets/students-certificates.jpg");
  background-size: cover;
  background-position: center 35%;
}

.final-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 90px;
  align-items: center;
}

.final-grid p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

address {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  color: var(--gold);
  font-style: normal;
}

address a {
  width: fit-content;
  border-bottom: 1px solid rgba(240, 219, 154, 0.48);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.34);
  outline: none;
}

.field select option {
  color: var(--near-black);
}

.field input:focus,
.field select:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(217, 184, 95, 0.16);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  left: auto;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  color: #082113;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-float span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.66);
  background: #000000;
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.86rem;
}

.footer-inner img {
  width: 92px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card {
    min-height: 360px;
  }

  .split-media,
  .business-grid,
  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: 92px;
    min-height: 44px;
  }

  .menu-toggle {
    position: relative;
    z-index: 61;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(217, 184, 95, 0.46);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  }

  .menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 18px;
    height: 1px;
    margin: 0;
    background: var(--gold);
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    display: grid;
    width: 100vw;
    height: 100svh;
    align-content: center;
    justify-items: center;
    gap: 28px;
    background: rgba(5, 5, 5, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 1rem;
  }

  .section-pad {
    padding: 76px 0;
  }

  main,
  .hero-content,
  .intro-grid,
  .two-col,
  .content-panel,
  .business-copy,
  .partner-panel,
  .support-card,
  .final-grid,
  .contact-copy,
  .program-card,
  .lead-form {
    text-align: center;
  }

  .field input,
  .field select {
    text-align: left;
  }

  address {
    justify-items: center;
  }

  .hero {
    min-height: 92svh;
    align-items: flex-end;
    padding: 120px 0 46px;
  }

  .hero-bg {
    background-image:
      linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 50%, rgba(0, 0, 0, 0.28) 100%),
      url("assets/hero-academy.jpg");
    background-position: center top;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 2.05rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 16px 0;
  }

  .hero-stats div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .hero-actions {
    justify-content: center;
  }

  .check-list li {
    padding-left: 0;
  }

  .check-list li::before {
    position: static;
    display: block;
    margin: 0 auto 8px;
  }

  .program-card ul {
    padding-left: 0;
    list-style-position: inside;
  }

  .support-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .intro-grid,
  .two-col,
  .split-media,
  .format-grid,
  .business-grid,
  .final-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    height: 300px;
  }

  .media-stack {
    min-height: 0;
  }

  .media-main {
    height: 420px;
  }

  .media-overlap {
    position: relative;
    right: auto;
    bottom: auto;
    width: 76%;
    height: 250px;
    margin: -92px 0 0 auto;
    border-width: 8px;
  }

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

  .gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-track img {
    min-width: 78vw;
    height: 360px;
    scroll-snap-align: center;
  }

  .whatsapp-float {
    top: auto;
    bottom: 14px;
    left: auto;
    right: 10px;
    width: 50px;
    min-height: 50px;
    flex-direction: row;
    padding: 0;
    border-radius: 999px;
    transform: none;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: translateX(-3px);
  }

  .whatsapp-float span {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-content {
    width: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 1.72rem;
  }

  .hero-copy,
  .intro-grid p,
  .final-grid p:last-child {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
  }

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

  .program-card {
    min-height: 0;
    padding: 24px;
  }

  .program-icon {
    margin-bottom: 36px;
  }

  .media-main {
    height: 330px;
  }

  .media-overlap {
    width: 88%;
    height: 210px;
  }

  .partner-panel,
  .lead-form,
  .support-card {
    padding: 26px;
  }

  .panel-label {
    margin-bottom: 52px;
  }

  .partner-panel h3 {
    font-size: 2.8rem;
  }
}
