/* ==========================================================================
   SUMMIT HORSE HAY — styles.css  v1.5
   ==========================================================================
   Editorial dark aesthetic, regenerative positioning, polished interactions.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --navy:         #1B2B5B;
  --navy-deep:    #14224A;
  --navy-darker:  #0F1A38;
  --navy-near-black: #0A1228;
  --sage:         #7C9E6E;
  --sage-light:   #A8C5A0;
  --sage-dark:    #5C7853;
  --sage-darker:  #41562F;
  --cream:        #F5F0E8;
  --cream-deep:   #ECE5D6;
  --cream-warm:   #FAF6EE;

  --ink:          #2A2A2A;
  --muted:        #6B6B6B;
  --muted-warm:   #8A7F70;
  --hairline:     #D9D2C4;
  --hairline-dim: rgba(245, 240, 232, 0.12);
  --white:        #FFFFFF;
  --danger:       #B0432F;
  --danger-soft:  #F4D9D3;
  --gold-warm:    #D4A574; /* used sparingly for "currently available" inventory hint */

  --fs-xs:    0.8125rem;
  --fs-sm:    0.9375rem;
  --fs-base:  1.0625rem;
  --fs-lg:    1.25rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   2rem;
  --fs-3xl:   2.5rem;
  --fs-hero:  2.75rem;

  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 5rem;
  --s-10: 6rem;
  --s-11: 8rem;

  --container-max: 1180px;
  --container-pad: 1.25rem;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'DM Mono', 'SF Mono', Menlo, Consolas, monospace;

  --shadow-soft: 0 1px 2px rgba(20, 34, 74, 0.05), 0 4px 16px rgba(20, 34, 74, 0.07);
  --shadow-lift: 0 4px 6px rgba(20, 34, 74, 0.06), 0 18px 40px rgba(20, 34, 74, 0.10);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.25), 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-hero: 0 30px 80px rgba(0, 0, 0, 0.45);
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--s-4) 0;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sage-dark);
}

p { margin: 0 0 var(--s-4) 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; }

::selection { background: var(--sage-light); color: var(--navy-deep); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section { padding: var(--s-9) 0; }
.section-dark { background: var(--navy-deep); color: rgba(245, 240, 232, 0.86); }
.section-cream { background: var(--cream-deep); }

.section-head {
  margin-bottom: var(--s-8);
  max-width: 720px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--s-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage);
}
.section-label-light { color: var(--sage-light); }
.section-label-light::before { background: var(--sage-light); }

.section-title { font-size: var(--fs-2xl); margin-bottom: var(--s-5); }
.section-title-light { color: var(--cream); }

.section-lead {
  font-size: var(--fs-lg);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.55;
}
.section-dark .section-lead { color: rgba(245, 240, 232, 0.78); }

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  position: relative;
}

.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 158, 110, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.section-dark .btn-secondary {
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.4);
}
.section-dark .btn-secondary:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.45);
}
.btn-outline:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: var(--cream);
}

.btn-submit {
  padding: 1.05rem 2rem;
  font-size: var(--fs-base);
  min-width: 220px;
}

.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  display: none;
  animation: spin 800ms linear infinite;
}
.btn.is-loading .btn-label { opacity: 0; }
.btn.is-loading .btn-spinner {
  display: block;
  position: absolute;
  left: 50%; top: 50%;
  margin-left: -8px; margin-top: -8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 26, 56, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--cream);
  border-radius: 4px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wordmark:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.wordmark-logo {
  height: 48px;
  width: auto;
  display: block;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.primary-nav a {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.72);
  padding: var(--s-2) 0;
  transition: color var(--transition);
}
.primary-nav a:hover { color: var(--sage-light); }
.primary-nav .nav-cta {
  background: var(--sage);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.primary-nav .nav-cta:hover {
  background: var(--sage-light);
  color: var(--navy-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: transparent; border: none;
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero — photo background with dramatic gradient overlay
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 var(--s-8);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--navy-near-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Florian Schindler — alpine meadow with wildflowers, Tyrol AT. Free Unsplash License. */
  background-image: url('https://images.unsplash.com/photo-1757330878339-0b0c3b02d9b5?w=2400&q=80&fm=jpg&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.85);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 18, 40, 0.55) 0%,
      rgba(15, 26, 56, 0.65) 60%,
      rgba(20, 34, 74, 0.92) 100%);
  z-index: 1;
}

.hero-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  opacity: 0.42;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

.hero-logo {
  display: inline-block;
  padding: 14px 22px;
  background: var(--cream);
  border-radius: 6px;
  margin-bottom: var(--s-6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
  opacity: 0;
  animation: fadeUp 800ms 80ms ease both;
}
.hero-logo img {
  height: 130px;
  width: auto;
  display: block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: var(--s-6);
  opacity: 0;
  animation: fadeUp 800ms 200ms ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--sage-light);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-3xl);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: var(--s-5);
  opacity: 0;
  animation: fadeUp 900ms 320ms ease both;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--sage-light);
}

.hero-subhead {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.82);
  max-width: 52ch;
  margin-bottom: var(--s-7);
  opacity: 0;
  animation: fadeUp 900ms 480ms ease both;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  opacity: 0;
  animation: fadeUp 900ms 620ms ease both;
}

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

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  padding-top: var(--s-8);
  margin-top: var(--s-8);
  border-top: 1px solid rgba(245, 240, 232, 0.16);
  opacity: 0;
  animation: fadeUp 900ms 800ms ease both;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.58);
}

/* --------------------------------------------------------------------------
   7. Inventory banner — currently available callout (NEW)
   -------------------------------------------------------------------------- */
.inventory-banner {
  background: linear-gradient(90deg, var(--sage-darker) 0%, var(--sage-dark) 100%);
  color: var(--cream);
  padding: var(--s-3) 0;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  border-top: 1px solid rgba(168, 197, 160, 0.3);
  border-bottom: 1px solid rgba(168, 197, 160, 0.3);
}
.inventory-banner-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s-3) var(--s-5);
  text-align: center;
}
.inventory-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.inventory-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-warm);
  box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(212, 165, 116, 0); }
}
.inventory-message { line-height: 1.5; }
.inventory-message strong {
  color: var(--white);
  font-weight: 600;
}
.inventory-link {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(245, 240, 232, 0.4);
  text-underline-offset: 3px;
  font-weight: 500;
}
.inventory-link:hover {
  color: var(--white);
  text-decoration-color: var(--cream);
}

/* --------------------------------------------------------------------------
   8. Intro strip
   -------------------------------------------------------------------------- */
.intro-strip {
  background: var(--cream);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-5) 0;
}
.intro-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  align-items: center;
  justify-content: center;
}
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.strip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. Science section
   -------------------------------------------------------------------------- */
.science {
  background: var(--cream);
  padding: var(--s-10) 0;
}

.science-head {
  max-width: 720px;
  margin: 0 auto var(--s-8);
  text-align: center;
}
.science-head .section-label { justify-content: center; }
.science-head .section-label::before { display: none; }
.science-head p {
  color: var(--ink);
  font-size: var(--fs-lg);
  line-height: 1.65;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-5);
  background: var(--cream-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: 0 8px 24px rgba(124, 158, 110, 0.15);
}

/* Custom SVG icon container */
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(124, 158, 110, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  margin-bottom: var(--s-2);
}
.pillar-icon svg {
  width: 26px; height: 26px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--s-1) 0;
}
.pillar p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. Products — dark section
   -------------------------------------------------------------------------- */
.products {
  background: var(--navy-darker);
  color: var(--cream);
  padding: var(--s-10) 0;
  position: relative;
}
.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(124, 158, 110, 0.10), transparent 60%);
  pointer-events: none;
}
.products-header {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
  position: relative;
}
.products-header h2 { color: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  position: relative;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--s-6);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.10);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition),
              background var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  background: rgba(245, 240, 232, 0.07);
  border-color: rgba(168, 197, 160, 0.4);
}
.product-card.featured {
  background: rgba(124, 158, 110, 0.10);
  border-color: rgba(168, 197, 160, 0.30);
}

.product-badge {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

.product-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(168, 197, 160, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-light);
  margin-bottom: var(--s-3);
}
.product-icon svg {
  width: 28px; height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-name,
.product-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 var(--s-1) 0;
}
.product-sub {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--sage-light);
  letter-spacing: 0.06em;
  margin-bottom: var(--s-4);
}
.product-desc,
.product-card > p {
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.6;
  margin-bottom: var(--s-5);
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  margin-top: auto;
}
.spec-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  font-size: var(--fs-xs);
}
.spec-key {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}
.spec-val {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--cream);
  text-align: right;
}

.products-note {
  margin-top: var(--s-7);
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.6);
  text-align: center;
}

.pricing-framing {
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
}
.pricing-framing h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--cream);
  margin-bottom: var(--s-3);
}
.pricing-framing p {
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.72);
  margin: 0;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   11. Values — trimmed to 3, photo-anchored
   -------------------------------------------------------------------------- */
.values {
  background: var(--cream-deep);
  padding: var(--s-10) 0;
  position: relative;
  overflow: hidden;
}
.values-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  position: relative;
  z-index: 1;
}
.values-photo {
  width: 100%;
  aspect-ratio: 4/5;
  /* Kristaps Ungurs — tall dry grass meadow at golden hour. Free Unsplash License. */
  background-image: url('https://images.unsplash.com/photo-1766767673683-168676b97f4c?w=900&q=80&fm=jpg&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.values-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 26, 56, 0.45));
  border-radius: var(--radius-md);
}

.values-left p {
  color: var(--muted);
  max-width: 38ch;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  align-items: start;
}
.value-num {
  font-family: var(--font-mono);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 0.35rem;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--s-2) 0;
}
.value-item p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   12. Service Area — dark with SVG map
   -------------------------------------------------------------------------- */
.service-area {
  padding: var(--s-10) 0;
  background: var(--navy-deep);
  color: rgba(245, 240, 232, 0.86);
}
.service-area-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: center;
}
.service-area-text h2 { color: var(--cream); }
.service-area-body {
  color: rgba(245, 240, 232, 0.78);
  font-size: var(--fs-lg);
  line-height: 1.55;
  max-width: 52ch;
}
.town-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-5);
  font-family: var(--font-body);
  margin-top: var(--s-5);
}
.town-list li {
  position: relative;
  padding-left: var(--s-4);
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.86);
  letter-spacing: 0.02em;
}
.town-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--sage-light);
}
.town-list-more {
  color: var(--sage-light) !important;
  font-style: italic;
}

/* SVG service area map */
.service-map {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.service-map svg {
  width: 100%; height: 100%;
}

/* --------------------------------------------------------------------------
   13. Founder — dark with photo background
   -------------------------------------------------------------------------- */
.founder {
  background: var(--navy-darker);
  color: var(--cream);
  padding: var(--s-10) 0;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 600px at 20% 30%, rgba(124, 158, 110, 0.12), transparent 60%),
    radial-gradient(ellipse 800px 500px at 80% 70%, rgba(168, 197, 160, 0.08), transparent 55%);
  z-index: 0;
}
.founder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-darker) 0%, rgba(15, 26, 56, 0.4) 50%, var(--navy-darker) 100%);
  z-index: 1;
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: center;
  position: relative;
  z-index: 2;
}

.founder-card {
  position: relative;
  padding: var(--s-7);
  background: linear-gradient(165deg, rgba(124, 158, 110, 0.18), rgba(245, 240, 232, 0.04));
  border: 1px solid rgba(168, 197, 160, 0.25);
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.founder-avatar {
  width: 88px; height: 88px;
  margin: 0 auto var(--s-5);
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.founder-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--s-1);
}
.founder-title {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--sage-light);
  margin-bottom: var(--s-4);
}
.founder-meta {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.58);
  margin-bottom: var(--s-5);
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  margin-bottom: var(--s-5);
}
.founder-tags .tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(168, 197, 160, 0.3);
  border-radius: 2px;
  color: var(--sage-light);
}
.connection-line {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(245, 240, 232, 0.10);
}
.connection-line strong {
  color: var(--cream);
  font-weight: 600;
  margin-left: 4px;
}

.founder-text h2 { color: var(--cream); }
.founder-text p { color: rgba(245, 240, 232, 0.82); line-height: 1.65; }

.founder-text blockquote {
  margin: var(--s-6) 0;
  padding: var(--s-5) 0 var(--s-5) var(--s-5);
  border-left: 2px solid var(--sage-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--cream);
}
.founder-text blockquote p { margin: 0; color: var(--cream); }

/* --------------------------------------------------------------------------
   14. FAQ — accordion (NEW)
   -------------------------------------------------------------------------- */
.faq {
  background: var(--cream);
  padding: var(--s-10) 0;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: var(--s-8);
}
.faq-head .section-label { justify-content: center; }
.faq-head .section-label::before { display: none; }
.faq-head p {
  color: var(--muted);
  font-size: var(--fs-base);
  max-width: 52ch;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.faq-item {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--cream-warm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--sage); }
.faq-item[open] {
  border-color: var(--sage-dark);
  box-shadow: 0 4px 16px rgba(124, 158, 110, 0.12);
}

.faq-item summary {
  cursor: pointer;
  padding: var(--s-5);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sage-dark); }

.faq-toggle-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform var(--transition);
}
.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--sage-dark);
  border-radius: 1px;
  transition: transform var(--transition), background var(--transition);
}
.faq-toggle-icon::before {
  width: 14px; height: 2px;
  top: 11px; left: 5px;
}
.faq-toggle-icon::after {
  width: 2px; height: 14px;
  top: 5px; left: 11px;
}
.faq-item[open] .faq-toggle-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  padding: 0 var(--s-5) var(--s-5);
  font-size: var(--fs-base);
  color: var(--muted);
  line-height: 1.65;
}
.faq-answer p { margin: 0 0 var(--s-3) 0; }
.faq-answer p:last-child { margin: 0; }
.faq-answer a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-answer a:hover { color: var(--navy); }

/* --------------------------------------------------------------------------
   15. Newsletter / Stay Informed (NEW)
   -------------------------------------------------------------------------- */
.newsletter {
  background: var(--navy-deep);
  color: var(--cream);
  padding: var(--s-9) 0;
  text-align: center;
}
.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
}
.newsletter h2 {
  color: var(--cream);
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-3);
}
.newsletter h2 em {
  color: var(--sage-light);
  font-style: italic;
}
.newsletter p {
  color: rgba(245, 240, 232, 0.78);
  font-size: var(--fs-base);
  line-height: 1.6;
  margin-bottom: var(--s-6);
}
.newsletter-action {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(168, 197, 160, 0.3);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.newsletter-action:hover {
  background: rgba(124, 158, 110, 0.15);
  border-color: var(--sage-light);
  color: var(--cream);
  transform: translateY(-1px);
}
.newsletter-action svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.newsletter-small {
  margin-top: var(--s-4);
  font-size: var(--fs-xs);
  color: rgba(245, 240, 232, 0.5);
}

/* --------------------------------------------------------------------------
   16. Order form
   -------------------------------------------------------------------------- */
.order {
  background: var(--navy-darker);
  padding: var(--s-10) 0;
  color: var(--cream);
}
.order .section-title { color: var(--cream); }
.order .section-lead { color: rgba(245, 240, 232, 0.78); }

.order-form {
  max-width: 840px;
  margin: 0 auto;
  background: var(--cream);
  color: var(--ink);
  padding: var(--s-7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
}

.form-section {
  border: none;
  padding: 0;
  margin: 0 0 var(--s-7) 0;
}
.form-section:last-of-type { margin-bottom: var(--s-5); }

.form-section legend {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-5);
  padding: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
  min-width: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.field label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.field .req { color: var(--sage-dark); margin-left: 2px; }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input::placeholder,
.field textarea::placeholder { color: #9b9b9b; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124, 158, 110, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.field-error {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--danger);
  min-height: 1.2em;
}
.field-error-active input,
.field-error-active select,
.field-error-active textarea {
  border-color: var(--danger);
  background: var(--danger-soft);
}
.field-warning input {
  border-color: var(--sage-dark);
  background: rgba(124, 158, 110, 0.08);
}
.field-help {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.5;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.checkbox-field input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--sage);
  cursor: pointer;
}
.checkbox-field label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
}

.delivery-fields {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px dashed var(--hairline);
}

.form-actions {
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: center;
  text-align: center;
}
.form-fallback {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}
.form-fallback a { color: var(--navy); font-weight: 500; }
.form-fallback a:hover { color: var(--sage-dark); }

.order-success,
.order-error {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  color: var(--ink);
  padding: var(--s-8) var(--s-7);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.success-mark {
  width: 64px; height: 64px;
  margin: 0 auto var(--s-5);
  color: var(--sage-dark);
}
.order-success h3,
.order-error h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-3);
}
.order-success p,
.order-error p {
  color: var(--muted);
  margin-bottom: var(--s-5);
}
.order-success a,
.order-error a { color: var(--navy); font-weight: 500; }

/* --------------------------------------------------------------------------
   17. Contact
   -------------------------------------------------------------------------- */
.contact {
  background: var(--cream);
  padding: var(--s-9) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  transition: transform var(--transition), border-color var(--transition);
}
a.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--sage);
}
.contact-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.contact-value {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--navy);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-darker);
  color: rgba(245, 240, 232, 0.7);
  padding: var(--s-8) 0 var(--s-6);
  font-size: var(--fs-sm);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
.footer-brand-logo {
  display: inline-block;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 4px;
  margin-bottom: var(--s-4);
}
.footer-brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-sm);
  color: rgba(245, 240, 232, 0.6);
  margin: 0;
}
.footer-contact p {
  margin: 0 0 var(--s-1) 0;
  font-size: var(--fs-sm);
}
.footer-contact a { color: rgba(245, 240, 232, 0.86); }
.footer-contact a:hover { color: var(--sage-light); }
.footer-meta {
  padding-top: var(--s-5);
  border-top: 1px solid rgba(245, 240, 232, 0.10);
  font-size: var(--fs-xs);
  color: rgba(245, 240, 232, 0.5);
}
.footer-meta p { margin: 0 0 var(--s-1) 0; }
.footer-credit a { color: rgba(245, 240, 232, 0.7); }
.footer-credit a:hover { color: var(--sage-light); }

/* --------------------------------------------------------------------------
   19. Breakpoints
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  :root {
    --fs-2xl:   2.25rem;
    --fs-3xl:   3rem;
    --fs-hero:  3.25rem;
  }

  .field-row { grid-template-columns: 1fr 1fr; }
  .field-row-address { grid-template-columns: 1.5fr 1fr 1.2fr; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; }
  .town-list { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  :root {
    --fs-2xl:   2.5rem;
    --fs-3xl:   3.5rem;
    --fs-hero:  4rem;
  }

  .section { padding: var(--s-11) 0; }
  .science, .products, .values, .founder, .order, .faq { padding: var(--s-11) 0; }

  .nav-toggle { display: none; }
  .primary-nav { display: block !important; }

  .pillars { grid-template-columns: repeat(4, 1fr); }

  .products-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .product-grid { grid-template-columns: repeat(3, 1fr); }

  .values-inner {
    grid-template-columns: 0.85fr 1fr;
    gap: var(--s-10);
    align-items: center;
  }

  .service-area-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-9);
  }

  .founder-inner {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--s-9);
  }

  .hero-headline { font-size: var(--fs-hero); }
}

@media (min-width: 1100px) {
  .hero { padding-top: 160px; }
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15, 26, 56, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    padding: var(--s-4) var(--container-pad) var(--s-5);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
  }
  .primary-nav a {
    display: block;
    padding: var(--s-3) 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  }
  .primary-nav a:last-child { border-bottom: none; }
  .primary-nav .nav-cta {
    text-align: center;
    margin-top: var(--s-2);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
