/* ============================================================
   Still Beside Me – Design System & Storefront Styles
   ============================================================ */

/* --- Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-primary: #2C2C2C;
  --color-secondary: #8B9D83;
  --color-warm: #C4A882;
  --color-bg: #FAF8F5;
  --color-surface: #FFFFFF;
  --color-muted: #9B9590;
  --color-border: #E8E4DF;
  --color-error: #C47070;
  --color-success: #6B7D63;

  /* Dark palette */
  --color-dark-bg: #0f0d0b;
  --color-dark-surface: #1a1714;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-warm);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-success);
  color: #fff;
}

.btn-warm {
  background: var(--color-warm);
  color: #fff;
}
.btn-warm:hover {
  background: #b89a74;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-primary);
}
.btn-outline:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Header / Nav --- */
.site-header {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav a:not(.btn) {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-nav a:not(.btn):hover {
  color: var(--color-primary);
}

/* ============================================================
   FRAME MOCKUP – CSS-rendered matted frame
   ============================================================ */

.frame-mockup {
  --frame-width: 14px;
  --mat-padding: 16px;
  --panel-gap: 2px;
  border-radius: 2px;
  transition: transform 0.3s;
  position: relative;
}

/* Glass reflection */
.frame-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 30%,
    transparent 55%,
    transparent 80%,
    rgba(255, 255, 255, 0.015) 100%
  );
}

.frame-mockup .frame-border {
  background: linear-gradient(145deg, #2c2018, #3a2a1c 15%, #1e1610 40%, #2a1e14 70%, #1a120c);
  padding: var(--frame-width);
  border-radius: 2px;
  position: relative;
  box-shadow:
    0 10px 45px rgba(0, 0, 0, 0.55),
    0 3px 15px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 1px 0 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.frame-mockup .mat-board {
  background: #0a0908;
  padding: var(--mat-padding);
  border: 1px solid #181410;
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.mockup-panels {
  display: flex;
  gap: var(--panel-gap);
  position: relative;
  background: #0a0908;
}

.mockup-photo {
  flex: 1;
  aspect-ratio: 4 / 5;
  background: #12100c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Single mat-opening bevel – one continuous cut around the entire print */
.mockup-panels::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  border-top: 3px solid rgba(0, 0, 0, 0.45);
  border-left: 3px solid rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid rgba(200, 185, 155, 0.35);
  border-right: 3px solid rgba(200, 185, 155, 0.25);
  box-shadow:
    inset 0 6px 14px -4px rgba(0, 0, 0, 0.35),
    inset 5px 0 10px -4px rgba(0, 0, 0, 0.18),
    inset 0 -5px 10px -4px rgba(200, 185, 155, 0.12),
    inset -4px 0 8px -4px rgba(200, 185, 155, 0.06);
}

.mockup-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  position: relative;
  z-index: 0;
}

.mockup-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-body);
  font-size: 0.75rem;
}

.mockup-photo-fill {
  width: 100%;
  height: 100%;
}
.mockup-photo-fill.dark {
  background: radial-gradient(ellipse at 40% 40%, #4a3f36, #252220);
}
.mockup-photo-fill.warm {
  background: radial-gradient(ellipse at 40% 40%, #8a7560, #4a3f36);
}
.mockup-photo-fill.light {
  background: radial-gradient(ellipse at 40% 40%, #b0a898, #706860);
}

.mockup-tribute {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  text-align: center;
  position: relative;
}

.mockup-tribute-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: #FAF8F5;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.mockup-tribute-dates {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: #9B9590;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.mockup-tribute-divider {
  width: 30px;
  height: 1px;
  background: var(--color-warm);
  margin: 6px 0;
  opacity: 0.6;
}

.mockup-tribute-poem {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.55rem;
  line-height: 1.6;
  color: var(--color-warm);
  opacity: 0.9;
  max-width: 90%;
}

.mockup-tribute-poem.small-poem {
  font-size: 0.5rem;
}

.mockup-tribute-nickname {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.5rem;
  color: #9B9590;
  margin-top: 4px;
}

.mockup-tribute-family {
  font-family: var(--font-body);
  font-size: 0.45rem;
  color: #9B9590;
  opacity: 0.7;
  margin-top: 2px;
}

/* Theme: Warm Natural */
.frame-mockup.theme-warm .frame-border {
  background: linear-gradient(145deg, #b8956a, #c9a87c 15%, #a0804f 40%, #c4a06d 70%, #96783f);
  box-shadow:
    0 10px 45px rgba(0, 0, 0, 0.3),
    0 3px 15px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 1px 0 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
.frame-mockup.theme-warm .mat-board {
  background: #F5EDE0;
  border-color: #E0D8CC;
}
.frame-mockup.theme-warm .mockup-panels {
  background: #E8DDD0;
}
.frame-mockup.theme-warm .mockup-photo {
  background: #E8DDD0;
}
.frame-mockup.theme-warm .mockup-tribute {
  background: #F5EDE0;
}
/* Warm mat-opening bevel – cream mat with white core */
.frame-mockup.theme-warm .mockup-panels::before {
  border-top-color: rgba(0, 0, 0, 0.12);
  border-left-color: rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.55);
  border-right-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 6px 12px -4px rgba(0, 0, 0, 0.1),
    inset 5px 0 10px -4px rgba(0, 0, 0, 0.05),
    inset 0 -5px 10px -4px rgba(255, 255, 255, 0.35),
    inset -4px 0 8px -4px rgba(255, 255, 255, 0.18);
}
.frame-mockup.theme-warm .mockup-tribute-name { color: #2C2420; }
.frame-mockup.theme-warm .mockup-tribute-dates { color: #6B5D52; }
.frame-mockup.theme-warm .mockup-tribute-poem { color: #4A3F36; }
.frame-mockup.theme-warm .mockup-tribute-nickname { color: #6B5D52; }
.frame-mockup.theme-warm .mockup-tribute-family { color: #6B5D52; }

/* Theme: Soft Light */
.frame-mockup.theme-light .frame-border {
  background: linear-gradient(145deg, #e8e4e0, #f0ece8 15%, #d8d4d0 40%, #ece8e4 70%, #d0ccc8);
  box-shadow:
    0 10px 45px rgba(0, 0, 0, 0.14),
    0 3px 15px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 1px 0 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    inset -1px 0 0 rgba(0, 0, 0, 0.04);
}
.frame-mockup.theme-light .mat-board {
  background: #FFFFFF;
  border-color: #ebe8e4;
}
.frame-mockup.theme-light .mockup-panels {
  background: #EDEBE8;
}
.frame-mockup.theme-light .mockup-photo {
  background: #f0ede8;
}
.frame-mockup.theme-light .mockup-tribute {
  background: #FFFFFF;
}
/* Light mat-opening bevel – white mat, ultra-subtle */
.frame-mockup.theme-light .mockup-panels::before {
  border-top-color: rgba(0, 0, 0, 0.07);
  border-left-color: rgba(0, 0, 0, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.7);
  border-right-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 6px 12px -4px rgba(0, 0, 0, 0.05),
    inset 5px 0 10px -4px rgba(0, 0, 0, 0.025),
    inset 0 -5px 10px -4px rgba(255, 255, 255, 0.4),
    inset -4px 0 8px -4px rgba(255, 255, 255, 0.2);
}
.frame-mockup.theme-light .mockup-tribute-name { color: #3a3a3a; }
.frame-mockup.theme-light .mockup-tribute-dates { color: #8a8a8a; }
.frame-mockup.theme-light .mockup-tribute-divider { background: #c0b8a8; }
.frame-mockup.theme-light .mockup-tribute-poem { color: #5a5a5a; }
.frame-mockup.theme-light .mockup-tribute-nickname { color: #8a8a8a; }
.frame-mockup.theme-light .mockup-tribute-family { color: #8a8a8a; }

/* Small variant for showcase */
.frame-mockup.small {
  --frame-width: 10px;
  --mat-padding: 10px;
}
.frame-mockup.small .mockup-tribute-name { font-size: 0.85rem; }
.frame-mockup.small .mockup-tribute-dates { font-size: 0.5rem; }
.frame-mockup.small .mockup-tribute-poem { font-size: 0.45rem; }

/* ============================================================
   SECTION 1: CINEMATIC HERO
   ============================================================ */

.hero {
  background:
    radial-gradient(ellipse at 30% 80%, rgba(196, 168, 130, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-dark-bg) 0%, var(--color-dark-surface) 100%);
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  color: #FAF8F5;
}

.hero h1 {
  font-weight: 300;
  color: #FAF8F5;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #9B9590;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #9B9590;
  letter-spacing: 0.02em;
}

.trust-item svg {
  color: var(--color-warm);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Hero mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-mockup .frame-mockup {
  max-width: 440px;
  width: 100%;
  /* Wall texture behind */
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.4));
}

/* ============================================================
   SECTION 2: COLLECTIONS
   ============================================================ */

.collections {
  padding: var(--space-4xl) 0;
  background: var(--color-surface);
  text-align: center;
}

.collections h2 {
  margin-bottom: var(--space-md);
}

.collection-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 800px;
  margin: var(--space-2xl) auto 0;
}

.collection-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-2xl);
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--color-primary);
}

.collection-card-mockup .frame-mockup {
  max-width: 100%;
}

.collection-card-text {
  text-align: left;
}

.collection-card-text h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.collection-card-text p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.collection-card-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-warm);
  margin-top: var(--space-sm);
}

.collection-card:hover .collection-card-cta {
  color: #b89a74;
}

/* ============================================================
   SECTION 3: STYLE SHOWCASE
   ============================================================ */

.showcase {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
  text-align: center;
}

.showcase h2 {
  margin-bottom: var(--space-md);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.showcase-item {
  text-align: center;
}

.showcase-item .frame-mockup {
  max-width: 280px;
  margin: 0 auto var(--space-lg);
  transition: transform 0.3s;
}

.showcase-item:hover .frame-mockup {
  transform: translateY(-4px);
}

.showcase-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.showcase-item p {
  color: var(--color-muted);
  font-size: 0.9rem;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   TRANSFORMATION (How It Works, reframed)
   ============================================================ */

.transformation {
  padding: var(--space-4xl) 0;
  background: var(--color-surface);
}

.transformation h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.transformation-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 640px;
  margin: 0 auto;
}

.transformation-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.transformation-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-warm);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  flex-shrink: 0;
}

.transformation-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.transformation-content p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   BENEFITS (Emotional outcomes)
   ============================================================ */

.benefits {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
}

.benefits h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.benefit-card {
  text-align: center;
  padding: var(--space-xl);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-warm);
  margin-bottom: var(--space-lg);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   FEATURES (How we deliver)
   ============================================================ */

.features {
  padding: var(--space-4xl) 0;
  background: var(--color-surface);
  text-align: center;
}

.features h2 {
  margin-bottom: var(--space-md);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.feature-item {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-warm);
  margin-bottom: var(--space-md);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.feature-item p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.styles-row {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.styles-row-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
}

/* ============================================================
   COMPARE (Why us vs alternatives)
   ============================================================ */

.compare {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
}

.compare h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.compare-card {
  border-radius: var(--radius);
  padding: var(--space-2xl);
}

.compare-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.compare-others {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.compare-others svg {
  color: var(--color-error);
  flex-shrink: 0;
}

.compare-ours {
  background: var(--color-surface);
  border: 2px solid var(--color-warm);
  box-shadow: var(--shadow);
}

.compare-ours svg {
  color: var(--color-success);
  flex-shrink: 0;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.5;
}

.compare-list li span {
  color: var(--color-primary);
}

.compare-list li strong {
  font-weight: 600;
}

.compare-footer {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-warm);
  margin-top: var(--space-2xl);
}

/* ============================================================
   FAQ (Objections)
   ============================================================ */

.faq {
  padding: var(--space-4xl) 0;
  background: var(--color-surface);
}

.faq h2 {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: var(--space-lg);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.faq-item p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   SECTION 4: SOCIAL PROOF
   ============================================================ */

.social-proof {
  padding: var(--space-4xl) 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 168, 130, 0.06) 0%, transparent 60%),
    var(--color-bg);
}

.proof-count {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.proof-subline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: var(--space-3xl);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.stars {
  color: var(--color-warm);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: normal;
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */

.founder-story {
  padding: var(--space-4xl) 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 168, 130, 0.06) 0%, transparent 60%),
    var(--color-bg);
}

.founder-inner {
  max-width: 640px;
  margin: 0 auto;
}

.founder-story h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.founder-text p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.founder-text p:nth-child(3) {
  font-weight: 500;
  font-size: 1.2rem;
}

.founder-sign {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-warm);
  margin-top: var(--space-xl);
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  padding: var(--space-4xl) 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196, 168, 130, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-dark-bg) 0%, var(--color-dark-surface) 100%);
  text-align: center;
}

.final-cta h2 {
  color: #FAF8F5;
  margin-bottom: var(--space-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-sub {
  color: #9B9590;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
}

/* ============================================================
   SECTION 7: FOOTER
   ============================================================ */

.site-footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-muted);
}
.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  font-size: 0.9rem;
  color: var(--color-warm);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.8rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-mockup .frame-mockup {
    max-width: 320px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .collection-card {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .collection-card-text {
    text-align: center;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: var(--space-3xl);
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: var(--space-2xl) 0;
  }

  .trust-bar {
    justify-content: center;
  }

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

  .site-nav a:not(.btn) {
    display: none;
  }
}
