/* ===========================
   BASE & TOKENS
   =========================== */
:root {
  --ocean-deep: #0d2137;
  --ocean-mid: #1a4a6b;
  --ocean-light: #2e6b8a;
  --sand: #f5efe6;
  --sand-warm: #ede3d4;
  --terracotta: #b5624a;
  --terracotta-light: #d4846e;
  --cream: #faf7f2;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.nav-logo {
  text-decoration: none;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
}

.nav-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* White nav link variant (used on dark hero nav) */
.nav-link--white {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link--white:hover {
  color: rgba(255,255,255,0.95);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #0a1e33 0%,
    #0d2137 20%,
    #1a4a6b 50%,
    #2e6b8a 75%,
    #3d8ba8 100%
  );
}

/* Animated shimmer over gradient */
.hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,255,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(181,98,78,0.08) 0%, transparent 60%);
  animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Geometric wave 1 — big, soft */
.hero-wave-1 {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 28vh;
  background: var(--sand);
  clip-path: polygon(
    0% 45%, 8% 38%, 16% 44%, 22% 36%, 30% 42%, 38% 32%, 45% 40%,
    52% 28%, 60% 38%, 68% 26%, 75% 36%, 82% 30%, 90% 40%, 100% 34%,
    100% 100%, 0% 100%
  );
}

/* Geometric wave 2 — layered, subtler */
.hero-wave-2 {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 22vh;
  background: linear-gradient(to bottom, transparent, var(--sand-warm));
  clip-path: polygon(
    0% 55%, 6% 48%, 14% 54%, 20% 46%, 28% 52%, 36% 42%,
    44% 50%, 50% 38%, 58% 48%, 66% 36%, 74% 46%, 82% 38%,
    90% 48%, 100% 40%, 100% 100%, 0% 100%
  );
}

/* Horizon line */
.hero-water-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.15) 70%, transparent);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 2.5rem 0 5vw;
  max-width: 860px;
  padding-top: 8vh;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.97);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), rgba(255,255,255,0));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.scroll-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}

/* ===========================
   BENEFITS
   =========================== */
.benefits {
  background: var(--sand);
  padding: var(--space-xl) 0;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

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

.benefits-overline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.benefits-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26,26,26,0.1);
}

.benefit-card {
  padding: 3rem 3rem 3rem 0;
  border-right: 1px solid rgba(26,26,26,0.1);
}

.benefit-card:last-child {
  border-right: none;
  padding-right: 0;
}

.benefit-card:not(:first-child) {
  padding-left: 3rem;
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.benefit-body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ===========================
   PHILOSOPHY
   =========================== */
.philosophy {
  background: var(--sand);
  padding: 0 0 var(--space-xl) 0;
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}

.philosophy-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 2rem;
}

.philosophy-quote p {
  display: block;
}

.philosophy-body {
  max-width: 540px;
}

.philosophy-body p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ===========================
   MANIFESTO
   =========================== */
.manifesto {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background: var(--ocean-deep);
}

.manifesto-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,74,107,0.5) 0%, transparent 70%);
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.manifesto-text {
  max-width: 720px;
}

.manifesto-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
}

.manifesto-line:not(:last-child) {
  margin-bottom: 1.5rem;
}

.manifesto-accent {
  color: var(--terracotta-light);
  font-style: italic;
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.closing-overline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}

.closing-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.closing-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.closing-promise {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ocean-mid);
  letter-spacing: 0.05em;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--sand-warm);
  padding: 3rem 0;
  border-top: 1px solid rgba(26,26,26,0.08);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-wordmark {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-descriptor {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 280px;
  line-height: 1.6;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: 0.4;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.5rem 0 1.5rem;
    padding-top: 6vh;
  }

  .hero-scroll-indicator {
    display: none;
  }

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

  .benefit-card {
    border-right: none;
    border-bottom: 1px solid rgba(26,26,26,0.1);
    padding: 2rem 0;
  }

  .benefit-card:last-child {
    border-bottom: none;
  }

  .benefit-card:not(:first-child) {
    padding-left: 0;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .footer-meta {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-tagline {
    display: none;
  }

  .benefits-inner,
  .philosophy-inner,
  .manifesto-inner,
  .closing-inner {
    padding: 0 1.5rem;
  }
}

/* ===========================
   NAV — LIGHT VARIANT (product pages)
   =========================== */
.nav--light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

.nav-wordmark--dark {
  color: var(--ink);
}

.nav-tagline--dark {
  color: var(--ink-soft);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link--active {
  color: var(--terracotta);
}

/* ===========================
   PRODUCT PAGE (PDP)
   =========================== */

/* Hero layout — two-column split */
.pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  padding-top: 80px; /* nav height */
  background: var(--cream);
}

/* Left: visual */
.pdp-hero-visual {
  position: relative;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdp-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 40%, rgba(13,33,55,0.06) 0%, transparent 70%);
}

/* CSS dress illustration */
.pdp-dress-frame {
  position: relative;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdp-dress-silhouette {
  --dress-color: #0d2137;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 12px 40px rgba(13,33,55,0.18));
  transition: --dress-color 0.4s ease;
}

.pdp-dress-body {
  width: 120px;
  height: 180px;
  background: var(--dress-color);
  border-radius: 60px 60px 20px 20px;
  position: relative;
  /* Subtle sheen */
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(0,0,0,0.08) 100%);
  background-blend-mode: overlay;
}

.pdp-dress-body::before {
  /* Neckline scoop */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: var(--sand);
  border-radius: 0 0 30px 30px;
}

.pdp-dress-skirt {
  width: 200px;
  height: 280px;
  background: var(--dress-color);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
  margin-top: -10px;
  /* Flowing hem illusion */
  background-image: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 30%, rgba(0,0,0,0.06) 100%);
  background-blend-mode: overlay;
}

.pdp-dress-shadow {
  width: 180px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, transparent 70%);
  margin-top: 8px;
}

/* Status chip */
.pdp-hero-label {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
}

.pdp-status-chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(181,98,74,0.1);
  border: 1px solid rgba(181,98,74,0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

/* Right: product info */
.pdp-hero-info {
  padding: 5rem 5vw 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.pdp-breadcrumb-link {
  color: var(--ink-soft);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.pdp-breadcrumb-link:hover { opacity: 1; }

.pdp-breadcrumb-sep {
  color: var(--ink-soft);
  opacity: 0.3;
}

.pdp-breadcrumb-current {
  color: var(--ink);
  opacity: 0.9;
}

.pdp-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pdp-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.pdp-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 420px;
  margin-bottom: 2.5rem;
}

/* Colorways */
.pdp-colorways {
  margin-bottom: 2.5rem;
}

.pdp-colorways-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-bottom: 0.9rem;
}

.pdp-swatches {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.pdp-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  appearance: none;
}

.pdp-swatch:hover {
  transform: scale(1.12);
}

.pdp-swatch--active {
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--ink);
}

.pdp-colorway-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

/* CTA block */
.pdp-cta-block {
  padding-top: 2rem;
  border-top: 1px solid rgba(26,26,26,0.08);
}

.pdp-cta-note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.pdp-back-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean-mid);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
}

.pdp-back-link:hover {
  color: var(--terracotta);
  letter-spacing: 0.16em;
}

/* ===========================
   PDP — DETAILS SECTION
   =========================== */
.pdp-details {
  background: var(--sand);
  padding: var(--space-xl) 0;
}

.pdp-details-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.pdp-section-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2rem;
}

/* Spec list */
.pdp-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(26,26,26,0.1);
}

.pdp-spec-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}

.pdp-spec-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}

.pdp-spec-value {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Craft copy */
.pdp-craft-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid rgba(26,26,26,0.1);
  padding-top: 0.5rem;
}

.pdp-craft-body p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ===========================
   PDP — BRAND STATEMENT
   =========================== */
.pdp-statement {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.pdp-statement-bg {
  position: absolute;
  inset: 0;
  background: var(--ocean-deep);
}

.pdp-statement-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,74,107,0.5) 0%, transparent 70%);
}

.pdp-statement-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.pdp-statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  quotes: none;
}

.pdp-statement-attr {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   PDP — RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .pdp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pdp-hero-visual {
    height: 55vw;
    min-height: 320px;
  }

  .pdp-hero-info {
    padding: 3rem 2.5rem 4rem;
    max-width: 100%;
  }

  .pdp-details-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 480px) {
  .pdp-hero-info {
    padding: 2rem 1.5rem 3rem;
  }

  .pdp-details-inner {
    padding: 0 1.5rem;
  }

  .pdp-statement-inner {
    padding: 0 1.5rem;
  }
}