/* =============================================
   MAISON ÉLITE — Luxury Wardrobe Advisory
   Light Theme Redesign
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary palette */
  --navy-deep:   #0F1C2D;
  --navy:        #1C2B3A;
  --navy-mid:    #2D4A6B;
  --navy-light:  #4A6585;
  --gray-dark:   #3A4550;
  --gray-mid:    #8A9AAA;
  --gray-border: #DDE2E8;
  --gray-bg:     #F4F5F7;
  --white:       #FFFFFF;
  --gold:        #B8975A;
  --gold-dark:   #9A7A45;

  /* Legacy map */
  --black:     #0F1C2D;
  --off-black: #1C2B3A;
  --dark:      #2D4A6B;
  --charcoal:  #4A6585;
  --mid:       #5A6A7A;
  --light:     #8A9AAA;
  --cream:     #F4F5F7;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--gray-bg);
  color: var(--gray-dark);
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

/* Em / italic accent: navy-mid (not gold) */
em { font-style: italic; color: var(--navy-mid); }

p { font-size: 0.95rem; line-height: 1.8; color: var(--gray-dark); font-weight: 300; }

/* Eyebrow label */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 16px;
}

/* On dark sections, label uses gray-mid */
.process .label,
.pricing .label,
.footer .label,
.services-cta .label {
  color: var(--gray-mid);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header h2 { margin-bottom: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Primary: navy bg, white text */
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn--primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

/* Ghost navy: on light backgrounds */
.btn--ghost-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--ghost-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* Ghost: on dark backgrounds */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Outline: on dark backgrounds */
.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn--full { width: 100%; text-align: center; }
.btn span { position: relative; z-index: 1; }

/* ---------- PHOTO PANEL TREATMENT ---------- */
/* ADD PHOTO: set background-image: url(photo.jpg) — overlay auto-applies navy duotone */
.photo-panel {
  background-color: var(--navy-mid);
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 45, 0.45);
  z-index: 1;
  mix-blend-mode: multiply;
}
.photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 74, 107, 0.25);
  z-index: 2;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--navy-mid);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(44,74,107,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor.cursor--hover { width: 16px; height: 16px; }
.cursor-follower.cursor--hover { width: 60px; height: 60px; opacity: 0.5; }

@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: var(--white);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--white);
  padding: 18px 48px;
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 2px 20px rgba(15, 28, 45, 0.06);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-deep);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--navy-mid);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--navy-mid); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 12px 24px;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--navy-deep) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--navy-deep);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin-bottom: 32px; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gray-mid); }

/* ---------- HERO — Split Editorial Layout ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

/* Left text panel */
.hero__text {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px 80px;
  position: relative;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 28px;
}

.hero__title {
  color: var(--navy-deep);
  margin-bottom: 28px;
  line-height: 1.0;
}
.hero__title em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy-mid);
}
.hero__mark {
  position: relative;
  display: inline-block;
}
.hero__draw {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  color: var(--navy-mid);
  overflow: visible;
}
.hero__draw-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.hero__title.visible .hero__draw-path {
  animation: drawLine 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.hero__subtitle {
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 440px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Down arrow at bottom-left of text panel */
.hero__arrow {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray-mid);
}
.hero__arrow span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__arrow svg {
  width: 18px;
  height: 30px;
  color: var(--gray-mid);
}

/* Right photo panel */
/* ADD PHOTO: set background-image: url(photo.jpg) — overlay auto-applies navy duotone */
.hero__photo {
  background-color: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.hero__photo-bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: left top;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.18); }
  to   { transform: scale(1.00); }
}
.hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 45, 0.25);
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 74, 107, 0.10);
  z-index: 2;
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(15, 28, 45, 0.5) 0%,
    transparent 40%
  );
}

.hero__photo-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 4;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.hero__photo-num {
  position: absolute;
  bottom: -0.05em;
  right: -0.05em;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.marquee__track .sep {
  color: rgba(255,255,255,0.2);
  opacity: 1;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- INTRO ---------- */
.intro {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}
.intro .label { margin-bottom: 16px; }
.intro__heading {
  color: var(--navy-deep);
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.intro__body {
  max-width: 600px;
  margin: 0 auto 40px;
}
.intro__body p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--navy);
  line-height: 1.9;
  margin-bottom: 24px;
}
.intro__body p:last-child { margin-bottom: 0; }

/* Stat boxes: white bg, navy left border, navy numbers */
.intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat {
  padding: 32px;
  border: 1px solid var(--gray-border);
  background: var(--white);
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--navy-mid);
}
.stat__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--navy-deep);
  line-height: 1;
}
.stat__plus {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy-mid);
}
.stat p {
  margin-top: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  font-weight: 400;
}

/* ---------- SERVICES ---------- */
/* ---------- HOME SERVICE CARDS ---------- */
.home-cards {
  padding: 60px 0 140px;
  background: var(--white);
}
.home-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 90%;
  margin: 0 auto;
}
.home-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
}
.home-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.home-card__image--advisory {
  background-image: url('images/advisory.jpg');
}
.home-card__image--curation {
  background-image: url('images/curation.jpg');
}
.home-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,28,45,0.25);
  mix-blend-mode: multiply;
  z-index: 1;
}
.home-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44,74,107,0.10);
  z-index: 2;
}
.home-card__num {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 3;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}
.home-card__body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy-deep);
  margin: 8px 0 12px;
  line-height: 1.2;
}
.home-card__title em {
  font-style: italic;
  color: var(--navy-mid);
}
.home-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.home-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--gray-border);
}
.home-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-border);
}
.home-card__list svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--navy-mid);
}
.home-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.home-card__price {
  display: flex;
  flex-direction: column;
}
.home-card__price span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.home-card__price strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy-deep);
}
@media (max-width: 640px) {
  .home-cards__grid { grid-template-columns: 1fr; }
}

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 0;
  background: var(--white);
}
.services .section-header h2 { color: var(--navy-deep); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.services__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 2px;
}

/* White background cards, navy text, hover navy bg white text */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 48px 40px;
  position: relative;
  transition: background 0.4s, border-color 0.4s;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--navy-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover h3,
.service-card:hover .service-card__number,
.service-card:hover .service-card__icon,
.service-card:hover .service-card__link { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.55); }

.service-card__number {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 20px;
  transition: color 0.4s;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--navy-mid);
  margin-bottom: 24px;
  transition: color 0.4s;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  color: var(--navy-deep);
  margin-bottom: 16px;
  transition: color 0.4s;
}
.service-card p { font-size: 0.875rem; transition: color 0.4s; }
.service-card__link {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-mid);
  transition: color 0.4s, gap 0.3s;
}
.service-card__link span { transition: margin 0.3s; }
.service-card:hover .service-card__link span { margin-left: 6px; }

/* ---------- PROCESS ---------- */
/* Dark navy-deep background, white text */
.process {
  padding: 120px 0;
  background: var(--navy-deep);
}
.process .section-header .label { color: var(--gray-mid); }
.process .section-header h2 { color: var(--white); }

.process__steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  left: 30px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(74, 101, 133, 0.4), transparent);
}

.process__step {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 64px;
  position: relative;
}
.process__step:last-child { margin-bottom: 0; }

/* Step numbers: faint navy-light */
.process__step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(74, 101, 133, 0.35);
  min-width: 60px;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}
.process__step:hover .process__step-num { color: var(--navy-light); }

.process__step-content h3 { color: var(--white); margin-bottom: 12px; }
.process__step-content p { color: rgba(255,255,255,0.5); }
.process__list {
  list-style: none;
  padding: 0;
  margin: 10px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process__list li {
  color: rgba(255,255,255,0.5);
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}
.process__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--navy-light);
  font-size: 0.85em;
}

/* ---------- LOOKBOOK ---------- */
.lookbook {
  padding: 120px 0;
  background: var(--gray-bg);
}
.lookbook .section-header h2 { color: var(--navy-deep); }

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 4px;
  margin-top: 0;
}
.look-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.look-card--tall { grid-row: span 2; }

/* ADD PHOTO: set background-image: url(photo.jpg) — overlay auto-applies navy duotone */
.look-card__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
  position: relative;
}
.look-card:hover .look-card__img { transform: scale(1.06); }

/* Photo-panel treatment on look cards */
.look-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 45, 0.20);
  z-index: 1;
  mix-blend-mode: multiply;
}
.look-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 74, 107, 0.10);
  z-index: 2;
}

/* Navy gradient placeholders for look cards */
.look-card__img--1 {
  background-image: url('images/lookbook.png');
  background-size: cover;
  background-position: center;
}
.look-card__img--2 {
  background-image: url('images/lookbook2.png');
  background-size: cover;
  background-position: center;
}
.look-card__img--3 {
  background-image: url('images/lookbook3.jpg');
  background-size: cover;
  background-position: center;
}
.look-card__img--4 {
  background-image: url('images/lookbook4.jpg');
  background-size: cover;
  background-position: center;
}
.look-card__img--5 {
  background-image: url('images/lookbook5.png');
  background-size: cover;
  background-position: center;
}

.look-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,28,45,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 3;
}
.look-card:hover .look-card__overlay { opacity: 1; }

.look-card__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.look-card__overlay h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.look-card__overlay p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}
.testimonials .section-header h2 { color: var(--navy-deep); }

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

/* White cards, navy-mid top border */
.testimonial {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--gray-border);
  border-top: 2px solid var(--navy-mid);
}

/* Stars: navy-mid */
.testimonial__stars {
  color: var(--navy-mid);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

/* Blockquote: navy color */
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial__author { display: flex; align-items: center; gap: 16px; }
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial__avatar--1 { background: linear-gradient(135deg, #4A6585, #2D4A6B); }
.testimonial__avatar--2 { background: linear-gradient(135deg, #2D4A6B, #1C2B3A); }
.testimonial__avatar--3 { background: linear-gradient(135deg, #4A6585, #8A9AAA); }
.testimonial__author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.testimonial__author span {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
  background: var(--gray-bg);
}
.about .section-header h2 { color: var(--navy-deep); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 100px;
  row-gap: 40px;
}
.about__visual {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
}
.about__heading {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}
.about__body {
  grid-column: 2;
  grid-row: 2;
}
.about__visual { position: relative; }
.about__img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

/* ADD PHOTO: set background-image: url(photo.jpg) — overlay auto-applies navy duotone */
.about__img {
  width: 100%;
  height: 100%;
  background-color: var(--navy-mid);
  background-image: url('images/bear.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
}
.about__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 45, 0.15);
  z-index: 1;
  mix-blend-mode: multiply;
}
.about__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 74, 107, 0.1);
  z-index: 2;
}

.about__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gray-border);
  z-index: -1;
}

/* Badge: navy background, white text */
.about__badge {
  position: absolute;
  bottom: -36px;
  left: -36px;
  background: var(--navy);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}
.about__badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.about__badge-text {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.about__text h2 {
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.about__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy-mid);
  margin-bottom: 28px !important;
}
.about__text p { margin-bottom: 20px; }

.about__signature {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-border);
}
.about__signature-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-deep);
  line-height: 1.6;
  margin-bottom: 12px !important;
}
.about__signature-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

/* Credentials: navy text, gray-mid secondary */
.about__credentials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-border);
}
.credential {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-border);
}
.credential strong {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-deep);
}
.credential span {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

/* ---------- PRICING ---------- */
/* Dark navy-deep background, white text */
.pricing {
  padding: 120px 0;
  background: var(--navy-deep);
}
.pricing .section-header .label { color: var(--gray-mid); }
.pricing .section-header h2 { color: var(--white); }

.pricing__note {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 12px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}
.pricing-card {
  background: var(--navy);
  padding: 56px 48px;
  position: relative;
  transition: background 0.4s;
}

/* Featured card: navy-mid border-top */
.pricing-card--featured {
  background: var(--navy-mid);
  border-top: 3px solid var(--navy-light);
  padding-top: 72px;
}

/* Pricing badge: navy-mid background */
.pricing-card__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
}
.pricing-card__tier {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

/* Currency: gray-mid (subdued) */
.pricing-card__currency {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gray-mid);
}

/* Price amount: white */
.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.pricing-card__period {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
}
.pricing-card__desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-card__features {
  margin-bottom: 40px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
}

/* Feature list dashes: navy-light */
.pricing-card__features li::before {
  content: '—';
  color: var(--navy-light);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---------- CONTACT ---------- */
/* White background */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.contact__info h2 {
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.contact__info > p { margin-bottom: 48px; }
.contact__details { display: flex; flex-direction: column; gap: 32px; }
.contact__detail { display: flex; flex-direction: column; gap: 6px; }
.contact__detail-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-mid);
}
.contact__detail span:last-child {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.7;
}

.contact__form-wrap {
  background: var(--gray-bg);
  padding: 56px 48px;
  border: 1px solid var(--gray-border);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-light);
}

/* Form inputs: gray-bg background, gray-border border */
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gray-border);
  background: var(--white);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--navy-deep);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6A7A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--white);
  padding-right: 40px;
}

/* Navy focus border */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-mid);
}

.form-privacy {
  font-size: 0.75rem;
  text-align: center;
  color: var(--gray-mid);
  margin-top: -8px;
}

.contact__success {
  display: none;
  text-align: center;
  padding: 64px 32px;
}
.contact__success.visible { display: block; }

.contact__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.contact__success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.contact__success p { color: var(--gray-dark); }

/* ---------- FOOTER ---------- */
/* Background: navy-deep */
.footer {
  background: var(--navy-deep);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}

/* Logo: white */
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 28px;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.3s, color 0.3s;
}

/* Social hover: gray-mid */
.footer__social a:hover { border-color: var(--gray-mid); color: var(--gray-mid); }
.footer__social svg { width: 16px; height: 16px; }

.footer__links h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
  font-weight: 300;
}

/* Link hover: gray-mid */
.footer__links a:hover { color: var(--gray-mid); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer__credit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3) !important;
}
.footer__credit a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__credit a:hover { color: rgba(255,255,255,0.7); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .intro__grid,
  .about__grid,
  .contact__grid { gap: 60px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 24px 32px; }
  .nav.scrolled { padding: 16px 32px; }

  /* Hero becomes stacked on mobile */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 60vw auto;
    min-height: auto;
  }
  .hero__photo { order: -1; }
  .hero__text {
    padding: 48px 40px 64px 40px;
    min-height: auto;
    justify-content: flex-start;
  }

  .intro__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .about { padding: 80px 0; }
  .about__grid { display: flex; flex-direction: column; gap: 0; }
  .about__heading { order: 1; margin-bottom: 24px; }
  .about__visual { order: 2; max-width: 440px; margin: 0 auto; width: 100%; padding-bottom: 48px; }
  .about__body { order: 3; margin-top: 28px; }
  .about__img-frame { min-height: 360px; }
  .about__img { position: absolute; inset: 0; }
  .about__badge { bottom: 12px; left: -12px; }

  .testimonials__grid,
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .lookbook__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
  .look-card--tall { grid-row: span 1; }

  .process { padding: 80px 0; }
  .process__steps::before { display: none; }
  .process__step { gap: 24px; }
  .process__step-num { font-size: 2.5rem; min-width: 44px; }

  .contact__form-wrap { padding: 40px 32px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }

  .hero__text { padding: 40px 24px 56px 24px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__btn-secondary { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .lookbook__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .look-card { height: 280px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .pricing-card { padding: 40px 32px; }
  .contact__form-wrap { padding: 32px 24px; }

  .intro__stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat { padding: 24px; }

  .process__step { flex-direction: column; gap: 8px; margin-bottom: 48px; }
  .process__step-num { font-size: 1.8rem; min-width: unset; }
}

/* ---------- FORM VALIDATION ---------- */
.field-error {
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.input--invalid {
  border-color: #c0392b !important;
}
