/* ============================================
   ASTHETIC KAPDA — Editorial Luxury Design
   Palette: Terracotta Studio + Noir Editorial
   Fonts: Cormorant Garamond + Syne + DM Sans
   ============================================ */

/* --- CSS Variables --- */
:root {
  --noir: #0F0F0F;
  --noir-2: #1a1a1a;
  --noir-3: #2A2A2A;
  --terra: #B5563E;
  --terra-light: #D4896A;
  --cream: #F2E6D9;
  --cream-2: #F9F3EB;
  --warm-white: #FDFAF7;
  --brown-deep: #3D2B1F;
  --gold: #C9A87C;
  --muted: #8a7a6e;

  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--noir);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* --- Custom Cursor --- */
.cursor {
  width: 8px; height: 8px;
  background: var(--terra);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), background 0.2s;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), width 0.3s, height 0.3s, border-color 0.2s;
  opacity: 0.7;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--terra-light);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-index="2"] { transition-delay: 0.1s; }
.reveal[data-index="3"] { transition-delay: 0.2s; }
.reveal[data-index="4"] { transition-delay: 0.15s; }
.reveal[data-index="5"] { transition-delay: 0.25s; }
.reveal[data-index="6"] { transition-delay: 0.1s; }

/* --- Typography Helpers --- */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--noir);
}

.section-title em {
  font-style: italic;
  color: var(--terra);
}

.italic { font-style: italic; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--noir);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--noir);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terra);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.btn-primary span, .btn-primary { z-index: 1; }

.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { color: var(--cream); border-color: var(--terra); }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
}

.full-width { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(253, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-ak {
  width: 36px; height: 36px;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color 0.4s;
}

.nav.scrolled .logo-text { color: var(--noir); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--cream); }

.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--noir); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  color: rgba(255,255,255,0.85);
  transition: color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
}

.nav-icon:hover { color: var(--cream); transform: scale(1.1); }
.nav.scrolled .nav-icon { color: var(--muted); }
.nav.scrolled .nav-icon:hover { color: var(--noir); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.nav.scrolled .hamburger span { background: var(--noir); }

.hamburger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--noir);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--terra); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding: 0 4vw 8vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.85) 0%,
    rgba(10,8,6,0.4) 50%,
    rgba(10,8,6,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1.2rem;
  animation: fadeUp 1s 0.3s var(--ease-out) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span,
.hero-title .line {
  animation: lineReveal 1s var(--ease-out) both;
}

.hero-title .line:nth-child(1) { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) { animation-delay: 0.55s; font-style: italic; color: var(--terra-light); }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }

@keyframes lineReveal {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(242, 230, 217, 0.75);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  animation: fadeUp 1s 0.85s var(--ease-out) both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 1s var(--ease-out) both;
}

.hero-scroll {
  position: absolute;
  bottom: 8vh;
  right: 4vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(242,230,217,0.5);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s var(--ease-out) both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(242,230,217,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Hero Badge */
.hero-badge {
  position: absolute;
  top: calc(var(--nav-h) + 2rem);
  right: 4vw;
  z-index: 2;
  animation: fadeUp 1s 1.4s var(--ease-out) both;
}

.badge-ring {
  position: relative;
  width: 110px; height: 110px;
}

.badge-svg {
  width: 110px; height: 110px;
  animation: rotateBadge 20s linear infinite;
}

.badge-svg text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  fill: rgba(242,230,217,0.7);
  text-transform: uppercase;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--terra-light);
  letter-spacing: 0.05em;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--terra);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.marquee-track .dot {
  color: rgba(242,230,217,0.5);
  font-size: 0.6rem;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   COLLECTION
   ============================================ */
.collection {
  padding: 8rem 4vw;
  background: var(--warm-white);
}

.section-header {
  margin-bottom: 4rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.product-wide { grid-column: span 2; }
.product-tall { grid-row: span 2; }

.product-card {
  position: relative;
  background: var(--cream-2);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-wide .product-img-wrap { aspect-ratio: 16/9; }
.product-tall .product-img-wrap { aspect-ratio: 3/5; height: 100%; }

.product-img {
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.product-card:hover .product-overlay { opacity: 1; }

.quick-add {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1.5px solid var(--cream);
  padding: 0.6rem 1.8rem;
  background: transparent;
  transition: background 0.3s, color 0.3s;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--cream);
  color: var(--noir);
}

.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--noir);
  color: var(--cream);
  padding: 0.3rem 0.7rem;
}

.product-tag.featured {
  background: var(--terra);
}

.product-info {
  padding: 1.2rem 1rem 1rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--noir);
  margin-bottom: 0.2rem;
}

.product-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--noir);
  letter-spacing: 0.05em;
}

.product-colors {
  display: flex;
  gap: 0.4rem;
}

.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  cursor: none;
  transition: transform 0.2s;
}

.color-dot:hover { transform: scale(1.3); }

.collection-cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* ============================================
   LOOKBOOK
   ============================================ */
.lookbook {
  background: var(--noir);
  padding: 8rem 4vw;
  overflow: hidden;
}

.lookbook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.lookbook-text .section-title { color: var(--cream); }
.lookbook-text .section-eyebrow { color: var(--terra-light); }

.lookbook-body {
  color: rgba(242,230,217,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
  font-weight: 300;
}

.lookbook-images {
  position: relative;
  height: 560px;
}

.lb-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lb-img img {
  transition: transform 0.7s var(--ease);
}

.lb-img:hover img { transform: scale(1.05); }

.lb-img-1 {
  width: 55%;
  aspect-ratio: 3/4;
  top: 0; left: 0;
  z-index: 2;
}

.lb-img-2 {
  width: 48%;
  aspect-ratio: 3/4;
  top: 10%;
  right: 0;
  z-index: 3;
}

.lb-img-3 {
  width: 38%;
  aspect-ratio: 1/1;
  bottom: 0;
  left: 20%;
  z-index: 4;
  border: 3px solid var(--terra);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--cream);
  padding: 5rem 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--terra);
}

.stat p {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(181,86,62,0.2);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 8rem 4vw;
  background: var(--warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-col {
  position: relative;
  height: 620px;
}

.about-img-main {
  position: absolute;
  width: 70%;
  aspect-ratio: 3/4;
  top: 0; left: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-img-accent {
  position: absolute;
  width: 45%;
  aspect-ratio: 1/1;
  bottom: 0; right: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 4px solid var(--warm-white);
}

.about-quote-card {
  position: absolute;
  bottom: 15%;
  left: -2rem;
  background: var(--terra);
  color: var(--cream);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 220px;
  z-index: 5;
  box-shadow: 0 10px 40px rgba(181,86,62,0.3);
}

.about-text .section-title { margin-bottom: 1.5rem; }

.about-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  color: var(--terra);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.value-item strong {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
  display: block;
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream-2);
  padding: 8rem 4vw;
  overflow: hidden;
}

.testimonials .section-header {
  text-align: center;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.4rem);
  background: var(--warm-white);
  padding: 2.5rem;
  border-top: 3px solid var(--terra);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.stars {
  color: var(--terra);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--noir-3);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
  display: block;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(181,86,62,0.25);
  transition: background 0.3s, transform 0.3s;
}

.dot-btn.active {
  background: var(--terra);
  transform: scale(1.3);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: var(--noir);
  padding: 7rem 4vw;
  text-align: center;
}

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.newsletter-inner .section-eyebrow { color: var(--terra-light); }

.newsletter-sub {
  color: rgba(242,230,217,0.55);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 1.5px solid rgba(242,230,217,0.2);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder { color: rgba(242,230,217,0.35); }

.newsletter-form button {
  padding: 1rem 1.8rem;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  transition: background 0.3s;
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--terra-light); }

.newsletter-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--terra-light);
  min-height: 1.2em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 8rem 4vw;
  background: var(--cream-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-text .section-title { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-item svg { color: var(--terra); flex-shrink: 0; }

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(181,86,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.social-link:hover {
  background: var(--terra);
  color: var(--cream);
  border-color: var(--terra);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  padding: 0.9rem 1rem;
  background: var(--warm-white);
  border: 1.5px solid rgba(0,0,0,0.08);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--noir);
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terra);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--noir-2);
  padding: 5rem 4vw 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: rgba(242,230,217,0.45);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(242,230,217,0.45);
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col a:hover { color: var(--terra-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(242,230,217,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(242,230,217,0.3);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--terra-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-wide { grid-column: span 2; }
  .product-tall { grid-row: span 1; }
  .product-tall .product-img-wrap { aspect-ratio: 3/4; height: auto; }

  .lookbook-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lookbook-images { height: 400px; }
  .about-img-col { height: 450px; }
  .about-quote-card { left: 0; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }

  .collection-grid {
    grid-template-columns: 1fr;
  }
  .product-wide { grid-column: span 1; }
  .product-wide .product-img-wrap { aspect-ratio: 3/4; }

  .stats-strip {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .stat { flex: 0 0 45%; }
  .stat-divider { display: none; }

  .testimonials-track {
    flex-direction: column;
  }
  .testimonial-card { flex: 0 0 100%; }

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

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .lookbook-images { height: 320px; }

  .hero-badge { display: none; }

  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}