/* =============================================
   MAISON DE CHARLOTTE — Global Styles
   ============================================= */

:root {
  --navy:      #23224B;
  --blush:     #EBCBC7;
  --blush-light: #F5E6E3;
  --gray-light: #F0F0F0;
  --gray-mid:  #D8D8D8;
  --gray-dark: #888888;
  --white:     #FFFFFF;
  --text:      #1A1A2E;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 80px;
  --max-width:  1280px;
  --transition: 0.35s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; }

p { font-size: 1rem; color: #555; line-height: 1.8; }

/* ---- Utility ---- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-navy  { color: var(--navy); }
.bg-navy    { background: var(--navy); }
.bg-blush   { background: var(--blush-light); }
.bg-gray    { background: var(--gray-light); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}
.label--light { color: rgba(255,255,255,0.6); }

.divider {
  width: 48px;
  height: 1px;
  background: var(--blush);
  margin: 1.5rem auto;
}
.divider--left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid currentColor;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn--navy {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: transparent;
  color: var(--navy);
}
.btn--outline-navy {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.nav--dark { background: var(--navy); }
.nav.nav--transparent { background: transparent; }
.nav.scrolled {
  background: var(--white) !important;
  box-shadow: 0 1px 0 var(--gray-mid);
}

.nav__inner {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: color var(--transition);
}
.nav--dark .nav__logo,
.nav--transparent .nav__logo { color: var(--white); }
.nav.scrolled .nav__logo { color: var(--navy) !important; }

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
}
.nav--dark .nav__links a,
.nav--transparent .nav__links a { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--navy) !important; }

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--blush);
  transition: width var(--transition);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { font-weight: 600; }

/* Menu toggle button */
.nav__menu-btn {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
}
.nav__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}
.nav__menu-icon span {
  display: block;
  height: 1px;
  background: var(--navy);
  transition: width 0.3s ease, transform 0.35s ease, background var(--transition);
}
.nav__menu-icon span:first-child { width: 28px; }
.nav__menu-icon span:last-child  { width: 18px; }

/* Colour variants */
.nav--dark .nav__menu-icon span,
.nav--transparent .nav__menu-icon span { background: var(--white); }
.nav.scrolled .nav__menu-icon span { background: var(--navy) !important; }

/* Animated close state — lines meet at centre and form an × */
.menu-open .nav__menu-icon span:first-child {
  width: 24px;
  transform: translateY(4px) rotate(45deg);
}
.menu-open .nav__menu-icon span:last-child {
  width: 24px;
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile menu — fullscreen overlay */
.nav__mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* 100dvh = dynamic viewport height: accounts for iOS Safari's
     collapsible URL bar so no layout shift occurs              */
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}
.nav__mobile.open { transform: translateX(0); }

/* Fade the nav logo out when menu is open so nothing
   competes with the fullscreen overlay                */
.menu-open .nav__logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Toggle button lines turn white above the navy overlay */
.menu-open .nav__menu-icon span { background: var(--white) !important; }

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 6px;
}
.nav__mobile a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--blush);
  transition: width 0.4s ease;
}
.nav__mobile a:hover::after  { width: 100%; }
.nav__mobile a:hover { color: var(--blush); }

/* Subtle brand stamp at the bottom */
.nav__mobile-footer {
  position: absolute;
  bottom: 36px;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  font-family: var(--font-body);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  background: linear-gradient(135deg, #23224B 0%, #3d3b73 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 34, 75, 0.45);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(235,203,199,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(235,203,199,0.1) 0%, transparent 50%);
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5% 80px;
  max-width: 700px;
}
.hero__content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  display: block;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.intro__visual {
  background: var(--blush-light);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.intro__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.intro__visual-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(160deg, var(--blush-light) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
}
.intro__text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.intro__text p  { margin-bottom: 2rem; max-width: 420px; }

/* =============================================
   FEATURED COLLECTION (Home)
   ============================================= */
.featured-header {
  padding: 80px 0 50px;
  text-align: center;
}
.featured-header h2 { color: var(--navy); margin-bottom: 0.5rem; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.featured-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.featured-item:first-child {
  grid-column: span 2;
  aspect-ratio: auto;
}
.featured-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-item__placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-item:hover .featured-item__img { transform: scale(1.04); }
.featured-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(35,34,75,0.7) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.featured-item:hover .featured-item__caption { transform: translateY(0); opacity: 1; }
.featured-item__caption h4 { color: var(--white); font-size: 0.8rem; }
.featured-item__caption p  { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* =============================================
   BRAND BANNER
   ============================================= */
.banner {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}
.banner h2 { color: var(--white); margin-bottom: 1rem; }
.banner p  { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* =============================================
   LOOKBOOK GRID
   ============================================= */
.lookbook-intro {
  padding: 100px 0 60px;
  text-align: center;
}
.lookbook-intro h1, .lookbook-intro h2 { color: var(--navy); }
.lookbook-intro p { max-width: 560px; margin: 1rem auto 0; }

.lookbook-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gray-mid);
  background: transparent;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.lookbook-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.look-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.look-item--tall { grid-row: span 2; }
.look-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.look-item__placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.look-item--tall .look-item__placeholder { min-height: 763px; }
.look-item:hover .look-item__img { transform: scale(1.04); }
.look-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35,34,75,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.look-item:hover .look-item__overlay { background: rgba(35,34,75,0.35); }
.look-item__label {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.look-item:hover .look-item__label { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20,20,40,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 80vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(160deg, var(--navy) 0%, #3a3870 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.about-hero__content {
  position: relative;
  z-index: 1;
}
.about-hero__content h1 { color: var(--white); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.about-split__img {
  position: relative;
}
.about-split__img-inner {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--blush-light);
  overflow: hidden;
}
.about-split__img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-split__img::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--blush);
  z-index: -1;
}
.about-split__text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-split__text p  { margin-bottom: 1.2rem; }

.values {
  background: var(--blush-light);
  padding: 100px 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
}
.value-card__icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.value-card h4 { color: var(--navy); margin-bottom: 0.75rem; }
.value-card p  { font-size: 0.92rem; }

.team {
  padding: 100px 0;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--blush-light);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--blush-light), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--navy);
  opacity: 0.4;
}
.team-card h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 0.25rem; }
.team-card .role {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  padding-top: var(--nav-height);
}
.contact-info {
  background: var(--navy);
  padding: 100px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h2 { color: var(--white); margin-bottom: 2rem; }
.contact-info p  { color: rgba(255,255,255,0.65); margin-bottom: 3rem; }
.contact-detail {
  margin-bottom: 2rem;
}
.contact-detail h4 {
  color: var(--blush);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.4rem;
}
.contact-detail p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.contact-detail a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.contact-detail a:hover { color: var(--blush); }

.contact-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 3rem;
}
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover {
  border-color: var(--blush);
  color: var(--blush);
}

.contact-form-wrap {
  padding: 100px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.contact-form-wrap h2 { color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2.5rem; }

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--navy);
}
.form-success h3 { color: var(--navy); margin-bottom: 0.5rem; }

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.hours-table td {
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.hours-table td:last-child { text-align: right; }
.hours-table tr.closed td { opacity: 0.4; }

/* =============================================
   NEWSLETTER STRIP
   ============================================= */
.newsletter {
  background: var(--blush-light);
  padding: 80px 0;
  text-align: center;
}
.newsletter h3 { color: var(--navy); margin-bottom: 0.5rem; }
.newsletter p  { margin-bottom: 2rem; }
.newsletter__form {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter__form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--gray-mid);
  border-right: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
.newsletter__form input:focus { border-color: var(--navy); }
.newsletter__form .btn { white-space: nowrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1rem;
}
.footer__brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 260px; }
.footer__col h4 {
  color: var(--blush);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
}
.footer__col ul li { margin-bottom: 0.6rem; }
.footer__col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__col address {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 2;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* =============================================
   PAGE TRANSITIONS
   ============================================= */
.page-enter {
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* =============================================
   PLACEHOLDER COLORS (for missing images)
   ============================================= */
.ph-1 { background: linear-gradient(160deg, #2e2d5e 0%, #4a4880 100%); }
.ph-2 { background: linear-gradient(160deg, #EBCBC7 0%, #d9a8a3 100%); }
.ph-3 { background: linear-gradient(160deg, #e8e0f0 0%, #c9c0dc 100%); }
.ph-4 { background: linear-gradient(160deg, #f5ebe9 0%, #EBCBC7 100%); }
.ph-5 { background: linear-gradient(160deg, #1e1d40 0%, #23224B 100%); }
.ph-6 { background: linear-gradient(160deg, #d8c9e8 0%, #b8a8d0 100%); }
.ph-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* =============================================
   MAP EMBED
   ============================================= */
.map-section { height: 420px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }
.map-placeholder {
  width: 100%; height: 420px;
  background: var(--blush-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--navy);
}
.map-placeholder p {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.6;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-item:first-child { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about-split { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }

  .hero__content { padding-bottom: 60px; }
  .hero__scroll { display: none; }

  .intro { grid-template-columns: 1fr; }
  .intro__visual { min-height: 300px; }
  .intro__visual-placeholder { min-height: 300px; }

  .featured-grid { grid-template-columns: 1fr; gap: 3px; }
  .featured-item:first-child { grid-column: 1; }

  .lookbook-masonry { grid-template-columns: 1fr 1fr; }
  .look-item--tall { grid-row: span 1; }
  .look-item--tall .look-item__placeholder { min-height: 380px; }

  .about-split { grid-template-columns: 1fr; }
  .about-split__img { order: -1; }
  .about-split__img::after { display: none; }

  .values__grid { grid-template-columns: 1fr; gap: 32px; }

  .team__grid { grid-template-columns: 1fr; max-width: 320px; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 6%; }
  .contact-form-wrap { padding: 60px 6%; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .newsletter__form { flex-direction: column; }
  .newsletter__form input { border-right: 1px solid var(--gray-mid); border-bottom: none; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lookbook-masonry { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
}
