/* ============================================
   Kelmorvai ATELIER - MAIN STYLESHEET
   Claymorphism Design System
   ============================================ */


:root {
  --color-bg: #faf7f2;
  --color-bg-warm: #f5efe6;
  --color-bg-cream: #ede8df;
  --color-nav: #2d2418;
  --color-text: #2d2418;
  --color-text-muted: #6b5e4e;
  --color-text-light: #9c8c7a;
  --color-primary: #c17f3e;
  --color-primary-dark: #a0662a;
  --color-primary-light: #e8c49a;
  --color-secondary: #7a9e7e;
  --color-secondary-dark: #5a7d5e;
  --color-accent: #d4956a;
  --color-rose: #e8b4a0;
  --color-sage: #b8cbb8;
  --color-lavender: #c4b8d4;
  --color-tinted: #f0e8de;
  --color-inverted-bg: #2d2418;
  --color-inverted-text: #faf7f2;
  --color-border: #e0d5c8;

  --shadow-clay-sm: 
    inset 0 1px 3px rgba(255,255,255,0.6),
    inset 0 -1px 3px rgba(0,0,0,0.08),
    0 2px 8px rgba(45,36,24,0.08),
    0 4px 16px rgba(45,36,24,0.06);
  --shadow-clay-md: 
    inset 0 2px 6px rgba(255,255,255,0.7),
    inset 0 -2px 6px rgba(0,0,0,0.1),
    0 4px 16px rgba(45,36,24,0.1),
    0 8px 32px rgba(45,36,24,0.08);
  --shadow-clay-lg: 
    inset 0 3px 8px rgba(255,255,255,0.8),
    inset 0 -3px 8px rgba(0,0,0,0.12),
    0 8px 32px rgba(45,36,24,0.12),
    0 16px 48px rgba(45,36,24,0.1);
  --shadow-nav: 0 0 0 rgba(45,36,24,0);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-pill: 100px;

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

  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition-smooth); }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


.nav-dark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-nav);
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.2s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img { width: 36px; height: 36px; }

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-inverted-text);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--color-primary);
}

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

.nav-link {
  color: rgba(250,247,242,0.75);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 6px 0;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-inverted-text);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-hamburger:hover { background: rgba(255,255,255,0.1); }


.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--color-nav);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.drawer.is-open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--color-inverted-text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.drawer-close:hover { background: rgba(255,255,255,0.2); }

.drawer-links {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-links a {
  color: rgba(250,247,242,0.85);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  display: block;
}

.drawer-links a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-inverted-text);
}

.drawer-contact {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
}

.drawer-contact p {
  color: rgba(250,247,242,0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.drawer-contact a { color: rgba(250,247,242,0.6); }
.drawer-contact a:hover { color: var(--color-primary); }


.stage-curtain {
  position: fixed;
  inset: 0;
  background: rgba(45,36,24,0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.stage-curtain.is-visible {
  opacity: 1;
  pointer-events: auto;
}


.page-pusher {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
}

.page-pusher.is-pushed {
  transform: translateX(-280px) scale(0.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

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

.stage-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45,36,24,0.65) 0%,
    rgba(45,36,24,0.45) 50%,
    rgba(45,36,24,0.7) 100%
  );
}

.stage-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
  padding-bottom: calc(var(--space-xl) + 80px);
}

.stage-eyebrow {
  display: inline-block;
  background: rgba(193,127,62,0.25);
  color: var(--color-primary-light);
  border: 1px solid rgba(193,127,62,0.4);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  backdrop-filter: blur(8px);
}

.stage-heading {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--color-inverted-text);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.stage-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250,247,242,0.85);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}

.stage-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(45,36,24,0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  height: 72px;
  overflow-x: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(250,247,242,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  flex-shrink: 0;
}

.trust-item i {
  color: var(--color-primary);
  font-size: 1rem;
}


.btn-clay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-clay--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 
    inset 0 1px 3px rgba(255,255,255,0.3),
    0 4px 16px rgba(193,127,62,0.35),
    0 2px 6px rgba(193,127,62,0.2);
}

.btn-clay--primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    inset 0 1px 3px rgba(255,255,255,0.3),
    0 8px 24px rgba(193,127,62,0.45),
    0 4px 12px rgba(193,127,62,0.3);
  color: #fff;
}

.btn-clay--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--color-inverted-text);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn-clay--ghost:hover {
  background: rgba(255,255,255,0.2);
  color: var(--color-inverted-text);
  transform: translateY(-2px);
}

.btn-clay--light {
  background: rgba(250,247,242,0.15);
  color: var(--color-inverted-text);
  border: 1.5px solid rgba(250,247,242,0.35);
  backdrop-filter: blur(8px);
}

.btn-clay--light:hover {
  background: rgba(250,247,242,0.25);
  color: var(--color-inverted-text);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }


.clay-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-clay-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.clay-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

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

.clay-card--tinted { background: var(--color-tinted); }
.clay-card--warm { background: #fdf0e6; }
.clay-card--sage { background: #eef4ee; }
.clay-card--rose { background: #fdf0ed; }
.clay-card--info { background: #eef2f8; display: flex; align-items: flex-start; gap: var(--space-sm); }
.clay-card--info i { color: var(--color-primary); font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.clay-card--form { padding: var(--space-lg); }

.clay-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  box-shadow: 
    inset 0 1px 3px rgba(255,255,255,0.4),
    0 4px 12px rgba(193,127,62,0.3);
}

.clay-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.clay-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}


.clay-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-clay-lg);
  position: relative;
}

.clay-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
  pointer-events: none;
}

.clay-frame--tall { aspect-ratio: 3/4; }
.clay-frame--dark { box-shadow: var(--shadow-clay-lg), 0 0 0 3px rgba(250,247,242,0.1); }

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}


.intro-strip {
  background: var(--color-bg-warm);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.intro-strip-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  font-style: italic;
}


.features-section {
  padding: var(--space-2xl) 0;
}

.shelf--feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.shelf--feature:last-child { margin-bottom: 0; }

.shelf--reverse { direction: rtl; }
.shelf--reverse > * { direction: ltr; }

.feature-visual { position: relative; }

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  box-shadow: 
    inset 0 1px 3px rgba(255,255,255,0.4),
    0 4px 12px rgba(193,127,62,0.25);
}

.feature-text h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.feature-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
  position: relative;
  padding-bottom: 2px;
}

.feature-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.feature-link:hover::after { width: 100%; }
.feature-link:hover { color: var(--color-primary-dark); }


.spotlight--inverted {
  background: var(--color-inverted-bg);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.spotlight--inverted::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193,127,62,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight--inverted::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122,158,126,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotlight-eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.spotlight-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-inverted-text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.spotlight-text p {
  color: rgba(250,247,242,0.75);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.spotlight-text .btn-clay--light { margin-top: var(--space-sm); }


.accordion-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}

.accordion-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  box-shadow: var(--shadow-clay-md);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  gap: var(--space-sm);
  transition: var(--transition-smooth);
}

.accordion-trigger:hover { background: var(--color-tinted); }
.accordion-trigger[aria-expanded="true"] { background: var(--color-tinted); }

.accordion-icon {
  color: var(--color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-text-muted);
  line-height: 1.75;
  display: none;
}

.accordion-panel.is-open { display: block; }


.newsletter-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.95);
  color: var(--color-text);
  box-shadow: 
    inset 0 2px 6px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.1);
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  background: #fff;
  box-shadow: 
    inset 0 2px 6px rgba(0,0,0,0.06),
    0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-input::placeholder { color: var(--color-text-light); }


.seasonal-section {
  padding: var(--space-2xl) 0;
}

.shelf--cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}


.cta-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}

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

.cta-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay-lg);
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.cta-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.cta-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.cta-detail-item i { color: var(--color-primary); width: 16px; }
.cta-detail-item a { color: var(--color-text-muted); }
.cta-detail-item a:hover { color: var(--color-primary); }


.site-footer {
  background: var(--color-inverted-bg);
}

.footer-canvas { padding: var(--space-xl) 0 0; }

.footer-shelf {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}

.footer-card h4 {
  color: var(--color-primary-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-card p {
  color: rgba(250,247,242,0.6);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.footer-card ul { display: flex; flex-direction: column; gap: 6px; }

.footer-card ul a {
  color: rgba(250,247,242,0.6);
  font-size: 0.88rem;
  transition: var(--transition-smooth);
  padding: 2px 0;
}

.footer-card ul a:hover { color: var(--color-primary-light); }

.footer-logo {
  width: 40px;
  height: 40px;
  margin-top: var(--space-sm);
  opacity: 0.7;
}

address { font-style: normal; }
address p {
  color: rgba(250,247,242,0.6);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  line-height: 1.5;
}

address i { color: var(--color-primary); margin-top: 3px; flex-shrink: 0; }
address a { color: rgba(250,247,242,0.6); }
address a:hover { color: var(--color-primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(250,247,242,0.4);
  font-size: 0.82rem;
}


.page-hero {
  padding: calc(72px + var(--space-xl)) 0 var(--space-xl);
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193,127,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero--story { background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 100%); }
.page-hero--legal { background: var(--color-bg); }

.page-hero-inner {
  max-width: 720px;
}

.page-hero-inner h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}


.story-section {
  padding: var(--space-2xl) 0;
}

.story-section--alt {
  background: var(--color-bg-warm);
}

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

.story-grid--reverse {
  grid-template-columns: 1.2fr 1fr;
}

.story-grid--reverse .story-visual { order: 2; }
.story-grid--reverse .story-text { order: 1; }

.story-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.story-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.story-inverted .story-quote-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}

.story-quote-icon {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

blockquote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-inverted-text);
  line-height: 1.5;
  font-style: italic;
  letter-spacing: -0.01em;
}


.values-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}


.products-section {
  padding: var(--space-2xl) 0;
}

.product-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-accordion-item {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-clay-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-accordion-item:hover { box-shadow: var(--shadow-clay-lg); }

.product-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  gap: var(--space-sm);
  transition: var(--transition-smooth);
}

.product-accordion-trigger:hover { background: var(--color-tinted); }

.product-trigger-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-trigger-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 
    inset 0 1px 3px rgba(255,255,255,0.4),
    0 4px 12px rgba(193,127,62,0.3);
}

.product-accordion-trigger h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.product-trigger-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.product-chevron {
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.product-accordion-trigger[aria-expanded="true"] .product-chevron {
  transform: rotate(180deg);
}

.product-accordion-panel {
  padding: 0 var(--space-lg) var(--space-lg);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-lg);
  align-items: start;
  padding-top: var(--space-sm);
}

.product-detail-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  margin-top: var(--space-sm);
}

.product-detail-text h4:first-child { margin-top: 0; }

.product-detail-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.product-detail-text--full { padding-top: var(--space-sm); }


.testimonials-section {
  padding: var(--space-2xl) 0;
}

.testimonials-note {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-clay-md);
  transition: var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-clay-lg);
}

.testimonial-card--tinted { background: var(--color-tinted); }
.testimonial-card--warm { background: #fdf0e6; }
.testimonial-card--sage { background: #eef4ee; }

.testimonial-quote-mark {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.testimonial-text {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-sm);
}

.testimonial-source {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
}

.testimonial-product {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
}

.cta-centered {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-centered h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-inverted-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.cta-centered p {
  color: rgba(250,247,242,0.75);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}


.contact-section {
  padding: var(--space-2xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-card {
  margin-bottom: var(--space-sm);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 
    inset 0 1px 2px rgba(255,255,255,0.4),
    0 3px 8px rgba(193,127,62,0.25);
}

.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info-item a { color: var(--color-text); }
.contact-info-item a:hover { color: var(--color-primary); }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-note i {
  color: var(--color-secondary);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-note strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}

.contact-note p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}


.clay-card--form h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.required-mark { color: var(--color-primary); }

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition-smooth);
  outline: none;
  box-shadow: 
    inset 0 2px 6px rgba(0,0,0,0.04),
    0 1px 3px rgba(0,0,0,0.04);
}

.form-input:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 
    inset 0 2px 6px rgba(0,0,0,0.04),
    0 0 0 4px rgba(193,127,62,0.12);
}

.form-input::placeholder { color: var(--color-text-light); }

.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5e4e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

.form-textarea { resize: vertical; min-height: 120px; }

.form-group--checkbox {
  margin-top: var(--space-sm);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.checkbox-input { display: none; }

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: var(--transition-smooth);
  position: relative;
  background: var(--color-bg);
}

.checkbox-input:checked + .checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #dc2626;
  font-size: 0.88rem;
  margin-bottom: var(--space-sm);
}


.timeline-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-warm);
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    inset 0 1px 3px rgba(255,255,255,0.5),
    0 4px 12px rgba(193,127,62,0.3);
}

.timeline-dot span {
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.timeline-content {
  padding: var(--space-sm) var(--space-md);
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.timeline-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}


.map-section {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.map-section .section-heading {
  margin-bottom: var(--space-md);
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-clay-lg);
}

.map-wrap iframe { display: block; }


.thanks-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
}

.thanks-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.thanks-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  box-shadow: 
    inset 0 3px 8px rgba(255,255,255,0.6),
    0 8px 32px rgba(193,127,62,0.4);
  animation: dotPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform: scale(0);
}

@keyframes dotPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-heading {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.6s forwards;
}

.thanks-link {
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.1s forwards;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: rgba(193,127,62,0.1);
  transition: var(--transition-smooth);
}

.thanks-link:hover {
  background: rgba(193,127,62,0.15);
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

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


.legal-section {
  padding: var(--space-2xl) 0;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-md);
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-content a { color: var(--color-primary); }
.legal-content a:hover { color: var(--color-primary-dark); }

.legal-intro {
  font-size: 1.05rem;
  color: var(--color-text) !important;
  background: var(--color-tinted);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-md) !important;
}

.legal-term {
  color: var(--color-primary-dark);
  background: rgba(193,127,62,0.1);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.legal-definition-box {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-sm) 0 var(--space-md);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-definition-box strong {
  display: block;
  color: var(--color-secondary-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-clay-sm);
}

.legal-table th, .legal-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-table th {
  background: var(--color-bg-warm);
  font-weight: 700;
  color: var(--color-text);
  width: 35%;
}

.legal-table td { color: var(--color-text-muted); }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: none; }
.legal-table a { color: var(--color-primary); }

.legal-clause {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.legal-clause:last-child { border-bottom: none; }


.cookie-intro-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.cookie-icon {
  color: var(--color-primary);
  font-size: 2rem;
  flex-shrink: 0;
}

.cookie-intro-box strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}

.cookie-intro-box p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-category-block {
  margin-bottom: var(--space-lg);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cookie-category-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.cookie-category-badge {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-category-badge--required {
  background: rgba(122,158,126,0.15);
  color: var(--color-secondary-dark);
}

.cookie-category-badge--optional {
  background: rgba(193,127,62,0.12);
  color: var(--color-primary-dark);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-clay-sm);
}

.cookie-table th, .cookie-table td {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
  background: var(--color-bg-warm);
  font-weight: 700;
  color: var(--color-text);
}

.cookie-table td { color: var(--color-text-muted); }
.cookie-table tr:last-child td { border-bottom: none; }

.cookie-table-wrap { overflow-x: auto; }

code {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--color-primary-dark);
}


@media (max-width: 1024px) {
  .shelf--cards { grid-template-columns: repeat(2, 1fr); }
  .footer-shelf { grid-template-columns: 1fr 1fr; }
  .shelf--feature, .shelf--reverse { grid-template-columns: 1fr; gap: var(--space-md); }
  .shelf--reverse { direction: ltr; }
  .spotlight-inner { grid-template-columns: 1fr; gap: var(--space-md); }
  .story-grid, .story-grid--reverse { grid-template-columns: 1fr; }
  .story-grid--reverse .story-visual, .story-grid--reverse .story-text { order: unset; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shelf--testimonials { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

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

  .trust-bar-inner {
    justify-content: flex-start;
    gap: var(--space-md);
  }

  .shelf--cards { grid-template-columns: 1fr; }
  .footer-shelf { grid-template-columns: 1fr; }
  .shelf--testimonials { grid-template-columns: 1fr; }

  .newsletter-inner {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .newsletter-form { min-width: unset; width: 100%; }

  .timeline { padding-left: 30px; }
  .timeline::before { left: 15px; }
  .timeline-dot { left: -30px; width: 32px; height: 32px; }

  .trust-bar { display: none; }
  .stage-content { padding-bottom: var(--space-xl); }

  .product-accordion-trigger { padding: var(--space-sm); }
  .product-accordion-panel { padding: 0 var(--space-sm) var(--space-sm); }

  .clay-card--form { padding: var(--space-md); }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stage-actions { flex-direction: column; align-items: center; }
  .btn-clay { width: 100%; justify-content: center; }
  .stage-actions .btn-clay { max-width: 280px; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-clay { width: 100%; justify-content: center; }
}