:root {
  --bg: #f8f3f0;
  --surface: #ffffff;
  --text: #2b2b33;
  --muted: #747184;
  --accent: #d85f78;
  --accent-soft: #fde6eb;
  --border: #efd7db;
  --highlight: #2d1f2f;
  --ink-soft: rgba(45, 31, 47, .72);
  --glass: rgba(255, 255, 255, .66);
  --shadow: 0 26px 80px rgba(45, 31, 47, .16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(239, 215, 219, .42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(239, 215, 219, .36) 1px, transparent 1px),
    linear-gradient(135deg, #f8f3f0 0%, #fff 44%, #fde6eb 100%);
  background-size: 72px 72px, 72px 72px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select, .btn { font: inherit; }
.container { width: min(1180px, 100%); margin: 0 auto; padding: 0 1.25rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(239, 215, 219, .9);
  background: rgba(248, 243, 240, .82);
  backdrop-filter: blur(18px);
}
.top-line {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 5vw, 5rem);
  padding: .45rem 1rem;
  color: rgba(255,255,255,.82);
  background: var(--highlight);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--highlight));
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 6px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(216, 95, 120, .28);
}
.brand > span:last-child { display: grid; gap: .1rem; }
.brand-title { font-size: 1rem; font-weight: 900; }
.eyebrow {
  display: block;
  margin: 0 0 .78rem;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.brand-eyebrow { margin: 0; font-size: .62rem; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  padding: .72rem .85rem;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover { color: var(--highlight); background: var(--accent-soft); }
.menu-toggle {
  display: none;
  border: 0;
  border-radius: 6px;
  padding: .75rem .95rem;
  color: #fff;
  background: var(--highlight);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 103px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/aura-editorial-hero.png");
  background-size: cover;
  background-position: 52% center;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(45,31,47,.88) 0%, rgba(45,31,47,.62) 35%, rgba(45,31,47,.12) 74%),
    linear-gradient(0deg, rgba(45,31,47,.44), transparent 52%);
}
.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  bottom: -18vw;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.hero-content {
  padding-top: 6rem;
  padding-bottom: min(12vh, 7rem);
}
.hero-content .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  max-width: 10.4ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 9vw, 8.8rem);
  line-height: .84;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-lead {
  max-width: 43rem;
  margin: 1.45rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.78;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }
.btn {
  min-height: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: .95rem 1.25rem;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 18px 40px rgba(216, 95, 120, .34); }
.btn-glass { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.14); backdrop-filter: blur(10px); }
.hero-board {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(1rem, 6vw, 4rem);
  width: min(270px, calc(100vw - 2rem));
  padding: 1.15rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 6px;
  background: rgba(45, 31, 47, .56);
  backdrop-filter: blur(14px);
}
.hero-board span { display: block; color: rgba(255,255,255,.62); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-board strong { display: block; margin-top: .6rem; font-size: 2.4rem; line-height: 1; }
.hero-board p { margin: .65rem 0 0; color: rgba(255,255,255,.74); line-height: 1.5; }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--accent-soft);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker span {
  padding: .9rem 2.4rem;
  color: var(--highlight);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-header { margin-bottom: 2.4rem; }
.split-header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .62fr);
  gap: 2rem;
  align-items: end;
}
.center-header { max-width: 680px; margin-inline: auto; text-align: center; }
.section-header h2, .lookbook-copy h2, .fit-panel h2 {
  margin: 0;
  color: var(--highlight);
  font-size: clamp(2.15rem, 4.6vw, 4.7rem);
  line-height: .94;
  letter-spacing: 0;
}
.section-header p { margin: 1rem 0 0; color: var(--muted); line-height: 1.78; }

.collection-layout {
  display: grid;
  grid-template-columns: minmax(310px, .95fr) minmax(0, 1.05fr);
  gap: 1rem;
  min-height: 520px;
}
.collection-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 1.5rem;
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(45,31,47,.9), rgba(45,31,47,.2)),
    url("assets/aura-editorial-hero.png") center / cover;
  box-shadow: var(--shadow);
}
.collection-feature::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,.26);
  pointer-events: none;
}
.card-number {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .18em;
}
.collection-feature .card-number { color: rgba(255,255,255,.62); }
.collection-feature h3 { margin: 1rem 0 .6rem; font-size: clamp(2rem, 4vw, 3.8rem); line-height: .9; }
.collection-feature p { max-width: 31rem; margin: 0 0 1.2rem; color: rgba(255,255,255,.74); line-height: 1.68; }
.collection-feature a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: .2rem; font-weight: 900; }
.collection-stack { display: grid; grid-template-rows: repeat(3, 1fr); gap: 1rem; }
.mini-look {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 150px;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 50px rgba(45,31,47,.08);
  overflow: hidden;
}
.mini-look::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -34px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(216,95,120,.34);
  border-radius: 999px;
}
.mini-look span { color: var(--accent); font-weight: 950; }
.mini-look h3 { margin: 1.7rem 0 .45rem; color: var(--highlight); font-size: 1.55rem; }
.mini-look p { margin: 0; color: var(--muted); line-height: 1.65; }

.lookbook-section {
  border-block: 1px solid rgba(239, 215, 219, .82);
  background: rgba(255,255,255,.48);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: stretch;
}
.lookbook-image {
  min-height: 640px;
  border-radius: 6px;
  background:
    linear-gradient(0deg, rgba(45,31,47,.14), transparent 48%),
    url("assets/aura-editorial-hero.png") 29% center / cover;
  box-shadow: var(--shadow);
}
.lookbook-copy {
  display: grid;
  align-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.look-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.look-row span { color: var(--accent); font-size: 1.2rem; font-weight: 950; }
.look-row h3 { margin: 0 0 .4rem; color: var(--highlight); font-size: 1.3rem; }
.look-row p { margin: 0; color: var(--muted); line-height: 1.7; }

.experience-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.experience-flow article {
  min-height: 290px;
  display: grid;
  align-content: space-between;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 20px 54px rgba(45,31,47,.08);
}
.experience-flow span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--highlight);
  border-radius: 50%;
  font-weight: 950;
}
.experience-flow h3 { margin: 3rem 0 .55rem; color: var(--highlight); font-size: 1.45rem; }
.experience-flow p { margin: 0; color: var(--muted); line-height: 1.7; }

.fit-section { padding-top: 0; }
.fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  color: #fff;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(45,31,47,.96), rgba(216,95,120,.82)),
    url("assets/aura-editorial-hero.png") center / cover;
  box-shadow: var(--shadow);
}
.fit-panel .eyebrow, .fit-panel h2 { color: #fff; }
.style-picker { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem; }
.style-chip {
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  padding: .8rem 1rem;
  color: #fff;
  background: rgba(255,255,255,.13);
  cursor: pointer;
  font-weight: 900;
}
.style-chip.active { color: var(--highlight); background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(330px, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.contact-copy {
  height: 100%;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--accent-soft);
}
.contact-note {
  display: grid;
  gap: .35rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.contact-note strong { color: var(--highlight); }
.contact-note span { color: var(--muted); line-height: 1.6; }
.form-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
.form-grid label { display: grid; gap: .5rem; color: var(--highlight); font-weight: 900; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
  color: var(--text);
  background: #fff;
}
.form-grid textarea { min-height: 150px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  outline: 2px solid rgba(216,95,120,.24);
  border-color: var(--accent);
}
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.6);
}
.footer-inner { padding: 1.5rem 0; text-align: center; color: var(--muted); }

@media (max-width: 980px) {
  .top-line { gap: 1rem; justify-content: space-between; overflow: hidden; }
  .site-nav {
    position: absolute;
    top: calc(100% + .6rem);
    right: 1.25rem;
    width: min(320px, calc(100vw - 2.5rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .7rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: 760px; align-items: end; }
  .hero h1 { max-width: 9.8ch; }
  .hero-board { position: relative; right: auto; bottom: auto; margin: -5rem 1.25rem 1.25rem auto; }
  .split-header, .collection-layout, .lookbook-grid, .fit-panel, .contact-grid { grid-template-columns: 1fr; }
  .collection-stack { grid-template-rows: none; }
  .lookbook-image { min-height: 480px; }
  .experience-flow { grid-template-columns: 1fr; }
  .style-picker { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .top-line span:nth-child(2) { display: none; }
  .container { padding: 0 1rem; }
  .header-inner { align-items: flex-start; }
  .brand-title { font-size: .95rem; }
  .hero { min-height: 720px; }
  .hero-media { background-position: 56% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(45,31,47,.9) 0%, rgba(45,31,47,.58) 52%, rgba(45,31,47,.12) 100%); }
  .hero-content { padding-top: 5rem; padding-bottom: 7.5rem; }
  .hero h1 { max-width: 8.7ch; font-size: clamp(3.1rem, 17vw, 5rem); }
  .hero-board { width: calc(100% - 2rem); margin: -6rem auto 1rem; }
  .ticker span { padding-inline: 1.3rem; }
  .collection-feature { min-height: 430px; }
  .lookbook-image { min-height: 390px; background-position: 33% center; }
  .look-row { grid-template-columns: 42px 1fr; }
  .experience-flow article { min-height: 230px; }
}
