/* ============================================================
   ALICIA MAY — LUXURY MAKEUP ARTISTRY
   Aesop restraint × Joy Adenuga editorial × Dana Leviston minimal
   ============================================================ */

/* ── TOKENS ── */
:root {
  --noir:       #1A1410;
  --espresso:   #3A2318;
  --bronze:     #946E4B;
  --gold:       #C9A06A;
  --champagne:  #F5ECD8;
  --off-white:  #FAF7F2;
  --burgundy:   #6B2737;
  --burg-hover: #7E3044;
  --ink:        #2C1F16;
  --mid:        #7A6355;
  --muted:      #B8A898;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--sans); }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

/* ── SHARED ── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
}
.eyebrow.light { color: var(--gold); }

/* Gold rule — Aesop section breath */
.section-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 64px auto;
  opacity: 0.5;
}

/* ── SCROLL FADE-IN ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── BUTTONS ── */
.btn-burg {
  display: inline-block;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  width: fit-content;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-burg:hover {
  background: var(--burg-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 68px;
  background: rgba(26, 20, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 160, 106, 0.12);
}

.nav-left, .nav-right {
  display: flex;
  gap: 40px;
}
.nav-right { justify-content: flex-end; }

.nav-left a,
.nav-right a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}

/* Animated underline on hover — Aesop style */
.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-left a:hover,
.nav-right a:hover { color: var(--champagne); }
.nav-left a:hover::after,
.nav-right a:hover::after { width: 100%; }

.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--champagne);
  text-align: center;
  white-space: nowrap;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--noir);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px 0;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img-wrap img {
  object-fit: contain;
  object-position: center center;
  opacity: 0.72;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,20,16,0.08) 0%,
    rgba(26,20,16,0.0) 30%,
    rgba(26,20,16,0.5) 68%,
    rgba(26,20,16,0.92) 100%
  );
}

.hero-text, .hero-sub, .hero-cta {
  position: relative;
  z-index: 2;
}

.hero-text {
  padding: 0 6vw;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--champagne);
  display: flex;
  flex-direction: column;
}
.hero-title .line { display: block; }
.hero-title .indent { padding-left: 12vw; }

.hero-sub {
  padding: 0 6vw;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(245, 236, 216, 0.6);
  margin-bottom: 36px;
}

.hero-cta {
  margin-left: 6vw;
  display: inline-block;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  width: fit-content;
  transition: background 0.3s;
}
.hero-cta:hover {
  background: var(--burg-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── STATEMENT ── */
.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--champagne);
}

.statement-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 120px 10vw;
}
.statement-inner .eyebrow { margin-bottom: 40px; }

.statement-hed {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--noir);
  margin-bottom: 40px;
}
.statement-hed em {
  font-style: italic;
  color: var(--espresso);
}

.statement-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--mid);
  max-width: 420px;
}

.statement-img-wrap { overflow: hidden; }
.statement-img-wrap img { transition: transform 1.2s ease; }
.statement-img-wrap:hover img { transform: scale(1.03); }

/* ── INTERLUDE — full-width Aesop text moment ── */
.interlude {
  background: var(--noir);
  padding: 120px 10vw;
  text-align: center;
}

.interlude-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--champagne);
  max-width: 820px;
  margin: 0 auto;
}

.interlude-text em {
  color: var(--gold);
  font-style: normal;
}

/* ── SERVICES ── */
.services {
  background: var(--off-white);
  padding: 140px 10vw;
}
.services-header { margin-bottom: 80px; }

.services-list { display: flex; flex-direction: column; }

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 0 48px;
  padding: 60px 0;
  border-top: 1px solid rgba(148, 110, 75, 0.18);
  align-items: start;
}
.service-item:last-child {
  border-bottom: 1px solid rgba(148, 110, 75, 0.18);
}

.service-n {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.14em;
  padding-top: 6px;
}

.service-name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.service-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  padding-top: 6px;
}

/* ── EXPERIENCE ── */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: var(--espresso);
}

.experience-img-wrap { overflow: hidden; }
.experience-img-wrap img { transition: transform 1.2s ease; }
.experience-img-wrap:hover img { transform: scale(1.03); }

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 10vw 120px 80px;
}
.experience-copy .eyebrow { margin-bottom: 36px; }

.experience-hed {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--champagne);
  margin-bottom: 48px;
}
.experience-hed em {
  font-style: italic;
  color: var(--gold);
}

.experience-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(245, 236, 216, 0.62);
  margin-bottom: 20px;
  max-width: 440px;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--noir);
  padding: 100px 0 0;
}
.portfolio-header { padding: 0 10vw 60px; }
.portfolio-header .eyebrow { color: var(--gold); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}

.p-item { overflow: hidden; margin: 0; }
.p-item img {
  transition: transform 0.9s ease, opacity 0.4s ease;
  opacity: 0.85;
}
.p-item:hover img { transform: scale(1.04); opacity: 1; }

.p-item:nth-child(1) { grid-column: 1 / 5;  grid-row: 1 / 3; aspect-ratio: 3/4; }
.p-item:nth-child(2) { grid-column: 5 / 9;  grid-row: 1;     aspect-ratio: 4/3; }
.p-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1;     aspect-ratio: 4/3; }
.p-item:nth-child(4) { grid-column: 5 / 9;  grid-row: 2;     aspect-ratio: 4/3; }
.p-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 4; aspect-ratio: 3/4; }
.p-item:nth-child(6) { grid-column: 1 / 9;  grid-row: 3;     aspect-ratio: 16/7; }

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--champagne);
  padding: 140px 10vw;
}
.testimonials > .eyebrow { margin-bottom: 80px; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
}

.testi {
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-top: 1px solid rgba(148, 110, 75, 0.22);
  padding-top: 40px;
  background: transparent;
}

.testi-q {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--noir);
  background: transparent;
}

.testi-who {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  font-style: normal;
}

/* ── BOOKING ── */
.booking {
  background: var(--noir);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 140px 10vw;
  gap: 80px;
  align-items: start;
}

.booking-copy .eyebrow { margin-bottom: 36px; }

.booking-hed {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--champagne);
  margin-bottom: 32px;
}
.booking-hed em { font-style: italic; color: var(--gold); }

.booking-sub {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245, 236, 216, 0.4);
  letter-spacing: 0.06em;
}

.booking-form { display: flex; flex-direction: column; }

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 160, 106, 0.18);
  color: var(--champagne);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 20px 0;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(184, 168, 152, 0.35); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-bottom-color: var(--gold); }
.booking-form select option { background: var(--noir); color: var(--champagne); }
.booking-form textarea { resize: none; margin-bottom: 8px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.booking-form .btn-burg {
  align-self: flex-start;
  margin-top: 40px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--noir);
  border-top: 1px solid rgba(201, 160, 106, 0.1);
  padding: 56px 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--champagne);
}

.footer-nav { display: flex; gap: 40px; }
.footer-nav a {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: rgba(184, 168, 152, 0.3);
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .statement, .experience {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .statement-img-wrap, .experience-img-wrap { height: 60vw; }
  .statement-inner { padding: 80px 8vw; }
  .experience-copy { padding: 80px 8vw; }

  .service-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .service-desc { grid-column: 2; padding-top: 14px; }

  .testimonials-track { grid-template-columns: 1fr; gap: 40px; }
  .booking { grid-template-columns: 1fr; gap: 64px; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .p-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4/5 !important; }
  .p-item:nth-child(6) { grid-column: span 2 !important; aspect-ratio: 16/7 !important; }
}

@media (max-width: 680px) {
  .site-header { padding: 0 24px; }
  .nav-left a:last-child, .nav-right a:first-child { display: none; }

  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-title .indent { padding-left: 8vw; }

  .services { padding: 80px 6vw; }
  .interlude { padding: 80px 6vw; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .p-item { aspect-ratio: 4/5 !important; }
  .p-item:nth-child(6) { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }

  .booking { padding: 80px 6vw; }
  .field-row { grid-template-columns: 1fr; }
}
