/* ============================================================
   LIE LAY LLC — STYLESHEET
   style.css

   Table of Contents:
   01. CSS Custom Properties (Design Tokens)
   02. Reset & Base
   03. Typography
   04. Utility Classes
   05. Layout Helpers
   06. Scroll Animation Classes
   07. Navigation / Header
   08. Hero Section
   09. Categories Section
   10. Featured Products Section
   11. About Section
   12. Newsletter Section
   13. Footer
   14. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   01. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* — Color Palette — */
  --color-navy:          #1a2232;
  --color-navy-mid:      #1f2b40;
  --color-navy-light:    #243552;
  --color-cream:         #f5f0e8;
  --color-cream-mid:     #ede7d9;
  --color-cream-dark:    #e0d8c8;
  --color-gold:          #c9a84c;
  --color-gold-light:    #dfc07a;
  --color-gold-pale:     #f0e4c0;
  --color-white:         #ffffff;
  --color-text-dark:     #1a2232;
  --color-text-body:     #3a3f4d;
  --color-text-muted:    #6b7280;
  --color-text-light:    rgba(245, 240, 232, 0.78);

  /* — Typography — */
  --font-display:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:      'DM Sans', system-ui, -apple-system, sans-serif;

  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-md:    1.125rem;   /* 18px */
  --text-lg:    1.25rem;    /* 20px */
  --text-xl:    1.5rem;     /* 24px */
  --text-2xl:   2rem;       /* 32px */
  --text-3xl:   2.75rem;    /* 44px */
  --text-4xl:   3.5rem;     /* 56px */
  --text-5xl:   4.5rem;     /* 72px */
  --text-6xl:   6rem;       /* 96px */

  /* — Spacing Scale — */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* — Layout — */
  --max-width:       1200px;
  --max-width-narrow: 760px;
  --gutter:          clamp(1rem, 4vw, 2rem);

  /* — Borders — */
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   12px;
  --radius-xl:   20px;

  /* — Shadows — */
  --shadow-sm:   0 2px 8px rgba(26, 34, 50, 0.06);
  --shadow-md:   0 6px 24px rgba(26, 34, 50, 0.10);
  --shadow-lg:   0 12px 40px rgba(26, 34, 50, 0.15);
  --shadow-xl:   0 24px 60px rgba(26, 34, 50, 0.20);

  /* — Transitions — */
  --ease-base:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:   180ms;
  --duration-base:   280ms;
  --duration-slow:   500ms;

  /* — Nav height (used for scroll padding) — */
  --nav-height: 72px;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-body);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
}

p {
  max-width: 68ch;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}


/* ============================================================
   04. UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.section--dark {
  background-color: var(--color-navy);
  color: var(--color-cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-cream);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.section-eyebrow--light {
  color: var(--color-gold-light);
}

.section-title {
  font-size: clamp(var(--text-2xl), 4.5vw, var(--text-4xl));
  font-weight: 400;
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.section-header--light .section-title,
.section-header--light .section-subtitle {
  color: var(--color-cream);
}

.section-header--light .section-subtitle {
  color: var(--color-text-light);
}

.br-desktop {
  display: none;
}

@media (min-width: 768px) {
  .br-desktop { display: block; }
}


/* ============================================================
   05. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85em 1.8em;
  border-radius: var(--radius-sm);
  transition:
    background-color var(--duration-base) var(--ease-base),
    color var(--duration-base) var(--ease-base),
    transform var(--duration-fast) var(--ease-base),
    box-shadow var(--duration-base) var(--ease-base),
    border-color var(--duration-base) var(--ease-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary — gold fill on dark bg */
.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* Ghost — outlined on dark bg */
.btn--ghost {
  background-color: transparent;
  color: var(--color-cream);
  border-color: rgba(245, 240, 232, 0.4);
}

.btn--ghost:hover {
  background-color: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.65);
}

/* Gold — on light or dark backgrounds */
.btn--gold {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}


/* ============================================================
   06. SCROLL ANIMATION CLASSES
   ============================================================ */

/* Elements start hidden; JS adds .is-visible when in viewport */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

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

/* Staggered delay helpers */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   07. NAVIGATION / HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  transition:
    background-color var(--duration-slow) var(--ease-base),
    border-color var(--duration-slow) var(--ease-base),
    backdrop-filter var(--duration-slow) var(--ease-base);
}

/* Scrolled state — added via JS */
.site-header.is-scrolled {
  background-color: rgba(26, 34, 50, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Wordmark logo */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  text-decoration: none;
  transition: opacity var(--duration-base) var(--ease-base);
}

.nav-logo:hover { opacity: 0.82; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-cream);
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
  position: relative;
  transition: color var(--duration-base) var(--ease-base);
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-base) var(--ease-out);
}

.nav-link:hover {
  color: var(--color-cream);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* CTA nav link */
.nav-link--cta {
  background-color: rgba(201, 168, 76, 0.12);
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.4em 0.9em;
  transition:
    background-color var(--duration-base) var(--ease-base),
    border-color var(--duration-base) var(--ease-base),
    color var(--duration-base) var(--ease-base);
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background-color: var(--color-cream);
  border-radius: 2px;
  transition:
    transform var(--duration-base) var(--ease-base),
    opacity var(--duration-base) var(--ease-base);
}

/* Toggle open state */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   08. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  overflow: hidden;
  padding-block: var(--space-32);
  padding-inline: var(--gutter);
}

/* Animated background orbs (CSS-only, no image needed) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: orb-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-orb--1 {
  width: clamp(400px, 55vw, 700px);
  height: clamp(400px, 55vw, 700px);
  background: radial-gradient(circle, #c9a84c 0%, #1a2232 70%);
  top: -20%;
  right: -15%;
  animation-duration: 20s;
}

.hero-orb--2 {
  width: clamp(300px, 40vw, 550px);
  height: clamp(300px, 40vw, 550px);
  background: radial-gradient(circle, #243552 0%, #1a2232 70%);
  bottom: -15%;
  left: -10%;
  animation-duration: 25s;
  animation-delay: -8s;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(3%, 4%) scale(1.06); }
}

/* Grain texture overlay (CSS-generated, SVG data URI) */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  max-width: none;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 8vw, var(--text-6xl));
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-cream);
  margin-bottom: var(--space-8);
  max-width: none;
}

.hero-headline em {
  color: var(--color-gold-light);
  font-style: italic;
  font-weight: 300;
}

.hero-subheadline {
  font-size: clamp(var(--text-base), 2.2vw, var(--text-lg));
  font-weight: 300;
  color: rgba(245, 240, 232, 0.70);
  line-height: 1.7;
  margin-bottom: var(--space-12);
  max-width: none;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
  opacity: 0.45;
  animation: scroll-hint-fade 3s ease-in-out 2s infinite alternate;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-cream));
}

.hero-scroll-label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
}

@keyframes scroll-hint-fade {
  from { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0.15; transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   09. CATEGORIES SECTION
   ============================================================ */
.categories {
  background-color: var(--color-cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.category-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-base);
  cursor: default;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--duration-slow) var(--ease-out);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-pale);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card__icon {
  color: var(--color-gold);
  margin-bottom: var(--space-5);
  transition: transform var(--duration-base) var(--ease-out);
}

.category-card:hover .category-card__icon {
  transform: scale(1.08);
}

.category-card__title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-navy);
}

.category-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.category-card__arrow {
  display: block;
  font-size: var(--text-lg);
  color: var(--color-gold);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Teaser card — "Coming Soon" */
.category-card--teaser {
  background-color: var(--color-navy);
  border-color: rgba(201, 168, 76, 0.2);
}

.category-card--teaser .category-card__title {
  color: var(--color-cream);
}

.category-card--teaser .category-card__desc {
  color: rgba(245, 240, 232, 0.6);
}

.category-card--teaser .category-card__icon {
  color: var(--color-gold);
}

.category-card--teaser:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.category-card__notify {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  padding-bottom: 1px;
  transition:
    color var(--duration-base) var(--ease-base),
    border-color var(--duration-base) var(--ease-base);
}

.category-card__notify:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}


/* ============================================================
   10. FEATURED PRODUCTS SECTION
   ============================================================ */
.featured-products {
  background-color: var(--color-navy-mid);
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-16), 8vw, var(--space-24));
}

/* Product row — alternating layout */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

/* Reverse: image on right */
.product-row--reverse {
  direction: rtl;
}

.product-row--reverse > * {
  direction: ltr;
}

/* Product placeholder card (CSS-only, no image) */
.product-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-row:hover .product-placeholder {
  transform: scale(1.015);
}

.product-placeholder__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-8);
}

.product-placeholder__category {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.product-placeholder__name {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.product-placeholder__detail {
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* Handmer placeholder — dark workshop aesthetic */
.product-placeholder--handmer {
  background-color: #111827;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #111827 0%, #1e2a3a 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.product-placeholder--handmer .product-placeholder__category {
  color: var(--color-gold);
}

.product-placeholder--handmer .product-placeholder__name {
  color: var(--color-cream);
}

.product-placeholder--handmer .product-placeholder__detail {
  color: rgba(245, 240, 232, 0.55);
}

/* Santa Claus book placeholder — warm holiday aesthetic */
.product-placeholder--santa {
  background-color: #2d1a0e;
  background-image:
    radial-gradient(ellipse at 70% 25%, rgba(200, 80, 50, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #2d1a0e 0%, #1e1408 100%);
  border: 1px solid rgba(200, 120, 80, 0.2);
}

.product-placeholder--santa .product-placeholder__category {
  color: #e8a87c;
}

.product-placeholder--santa .product-placeholder__name {
  color: var(--color-cream);
}

.product-placeholder--santa .product-placeholder__detail {
  color: rgba(245, 240, 232, 0.55);
}

/* Product real image style (used when image is swapped in) */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Product content */
.product-row__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.product-row__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: var(--radius-sm);
}

.badge--pending {
  background-color: rgba(201, 168, 76, 0.15);
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.badge--available {
  background-color: rgba(74, 160, 100, 0.15);
  color: #7fd4a0;
  border: 1px solid rgba(74, 160, 100, 0.3);
}

.badge--category {
  background-color: rgba(245, 240, 232, 0.06);
  color: rgba(245, 240, 232, 0.45);
  border: 1px solid rgba(245, 240, 232, 0.12);
}

.product-row__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.15;
}

.product-row__desc {
  font-size: var(--text-base);
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.75;
}

.product-row__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5);
  background-color: rgba(245, 240, 232, 0.04);
  border-left: 2px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.product-meta-item {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.6);
}

.product-meta-item strong {
  color: rgba(245, 240, 232, 0.85);
  font-weight: 500;
}


/* ============================================================
   11. ABOUT SECTION
   ============================================================ */
.about {
  background-color: var(--color-cream-mid);
  position: relative;
}

/* Subtle linen-texture effect via CSS */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-title {
  color: var(--color-navy);
}

.about-title em {
  color: var(--color-gold);
}

.about-body {
  font-size: var(--text-md);
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.about-body:last-of-type {
  margin-bottom: var(--space-8);
}

/* Signature element */
.about-signature {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.about-signature__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-navy);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.about-signature__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* Side panel with stats */
.about-panel {
  background-color: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  min-width: 240px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-stat {
  text-align: center;
}

.about-stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.about-stat__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.4;
}

.about-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
}

.about-pill {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(245, 240, 232, 0.55);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 100px;
  padding: 0.4em 0.9em;
}

.about-pill svg {
  color: var(--color-gold);
  flex-shrink: 0;
}


/* ============================================================
   12. NEWSLETTER SECTION
   ============================================================ */
.newsletter {
  background-color: var(--color-navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.newsletter-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

/* Decorative gold accent line above section */
.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width-narrow);
  margin-inline: auto;
}

.newsletter-title {
  font-size: clamp(var(--text-2xl), 4.5vw, var(--text-4xl));
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: var(--space-5);
}

.newsletter-subtitle {
  font-size: var(--text-md);
  color: rgba(245, 240, 232, 0.60);
  line-height: 1.75;
  margin-bottom: var(--space-10);
  max-width: none;
}

.newsletter-form__group {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
}

.newsletter-form__input {
  flex: 1;
  min-width: 0;
  padding: 0.85em 1.2em;
  font-size: var(--text-base);
  color: var(--color-cream);
  background-color: rgba(245, 240, 232, 0.07);
  border: 1.5px solid rgba(245, 240, 232, 0.18);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color var(--duration-base) var(--ease-base),
    background-color var(--duration-base) var(--ease-base);
}

.newsletter-form__input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.newsletter-form__input:focus {
  border-color: var(--color-gold);
  background-color: rgba(245, 240, 232, 0.10);
}

.newsletter-form__submit {
  flex-shrink: 0;
}

.newsletter-form__privacy {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.04em;
  max-width: none;
}

.newsletter-form__message {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
}

.newsletter-form__message.is-success {
  background-color: rgba(74, 160, 100, 0.15);
  color: #7fd4a0;
  border: 1px solid rgba(74, 160, 100, 0.3);
}

.newsletter-form__message.is-error {
  background-color: rgba(220, 80, 70, 0.12);
  color: #f49090;
  border: 1px solid rgba(220, 80, 70, 0.25);
}


/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background-color: #12192a;
  color: rgba(245, 240, 232, 0.55);
  padding-block: var(--space-16) var(--space-10);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-12);
  align-items: start;
  margin-bottom: var(--space-12);
}

/* Footer wordmark */
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  text-decoration: none;
  margin-bottom: var(--space-3);
  transition: opacity var(--duration-base);
}

.footer-logo:hover { opacity: 0.75; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-cream);
  line-height: 1;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.40);
  font-style: italic;
  max-width: none;
}

/* Footer nav */
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.50);
  text-decoration: none;
  transition: color var(--duration-base);
}

.footer-nav a:hover {
  color: var(--color-cream);
}

/* Footer social */
.footer-social__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  max-width: none;
}

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

.footer-social__list a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.50);
  text-decoration: none;
  transition: color var(--duration-base);
}

.footer-social__list a:hover {
  color: var(--color-cream);
}

.footer-social__list a svg {
  flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(245, 240, 232, 0.07);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
}

.footer-legal,
.footer-trademark {
  font-size: var(--text-xs);
  color: rgba(245, 240, 232, 0.30);
  max-width: none;
}


/* ============================================================
   14. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Large tablets and small desktops (max 1024px) ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── Tablets (max 768px) ── */
@media (max-width: 768px) {

  /* Nav: show hamburger */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: rgba(26, 34, 50, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    transform: translateY(-110%);
    opacity: 0;
    transition:
      transform var(--duration-slow) var(--ease-out),
      opacity var(--duration-slow) var(--ease-out);
    pointer-events: none;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
  }

  .nav-link--cta {
    display: inline-block;
    margin: var(--space-4) auto;
    padding: 0.6em 1.6em;
  }

  /* Product rows: stack vertically */
  .product-row,
  .product-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .product-row__visual {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  /* About: stack panel below text */
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-panel {
    max-width: 100%;
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .about-divider {
    display: none;
  }

  /* Footer: stack all columns */
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
  }

  .footer-social__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
  }
}

/* ── Small phones (max 480px) ── */
@media (max-width: 480px) {

  .hero-headline {
    font-size: clamp(var(--text-3xl), 11vw, var(--text-4xl));
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }

  .newsletter-form__group {
    flex-direction: column;
  }

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

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