/* ==============================
   Call Me Suppli' — Polsia Landing Page
   Warm editorial: Italian craft, modern execution
   ============================== */

:root {
  --bg: #FDF6EC;
  --bg-alt: #F5EAD8;
  --sienna: #C8501A;
  --forest: #1E3A2F;
  --espresso: #2C1810;
  --warm-gray: #6B4F3A;
  --cream-dark: #E8D5BC;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--cream-dark);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.125rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-logo svg { color: var(--sienna); }

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

.nav-links a {
  text-decoration: none;
  color: var(--warm-gray);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--sienna); }

/* ── Manifesto ── */
.manifesto {
  padding: 5rem 2rem 4rem;
  background: var(--espresso);
  color: var(--bg);
  position: relative;
}

.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.manifesto-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 14ch;
}

.manifesto-body {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-dark);
  max-width: 52ch;
}

.manifesto-divider {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── Products ── */
.products {
  padding: 5rem 2rem;
  background: var(--bg);
}

.products-inner { max-width: 1280px; margin: 0 auto; }

.products-header {
  margin-bottom: 4rem;
  max-width: 44ch;
}

.products-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.products-header h2 em {
  color: var(--sienna);
  font-style: italic;
}

.products-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-dark);
}

.product-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
}

.product-card--hero {
  grid-column: span 2;
  padding: 3rem 2.5rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  background: rgba(200, 80, 26, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-note {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.product-note li {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  padding-left: 1rem;
  position: relative;
}

.product-note li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--sienna);
}

/* ── Provenance ── */
.provenance {
  padding: 5rem 2rem;
  background: var(--forest);
  color: var(--bg);
}

.provenance-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.provenance-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1rem;
}

.provenance-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.provenance-text > p {
  font-size: 0.9375rem;
  color: var(--cream-dark);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.provenance-pillars {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.provenance-pillars li strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.provenance-pillars li span {
  font-size: 0.8125rem;
  color: rgba(253, 246, 236, 0.55);
  line-height: 1.5;
}

.provenance-accent blockquote {
  border-left: 3px solid var(--sienna);
  padding-left: 2rem;
}

.provenance-accent blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--cream-dark);
  margin-bottom: 1rem;
}

.provenance-accent blockquote cite {
  font-size: 0.8125rem;
  color: rgba(253, 246, 236, 0.4);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ── Flavors ── */
.flavors {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.flavors-inner { max-width: 1280px; margin: 0 auto; }

.flavors-header {
  margin-bottom: 3.5rem;
}

.flavors-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 0.75rem;
}

.flavors-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.flavors-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-dark);
}

.flavor-item {
  background: var(--bg-alt);
  padding: 1.75rem 1.5rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.flavor-item:hover { border-left-color: var(--sienna); }

.flavor-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.flavor-item p {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

.flavor-item--premium { background: var(--bg); }

/* ── Closing ── */
.closing {
  padding: 6rem 2rem;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1.25rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-divider {
  font-size: 1.25rem;
  letter-spacing: 0.5em;
  color: var(--sienna);
  margin-bottom: 2.5rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
  padding: 3rem 2rem;
  background: var(--espresso);
  color: var(--bg);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.footer-brand svg { color: var(--sienna); }

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(253, 246, 236, 0.45);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sienna); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(253, 246, 236, 0.3);
  margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .manifesto { padding: 3.5rem 1.5rem 3rem; }

  .manifesto-headline { font-size: clamp(2rem, 10vw, 3.5rem); }

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

  .product-card--hero {
    grid-column: span 1;
    padding: 2rem 1.5rem;
  }

  .provenance-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .provenance-pillars { grid-template-columns: 1fr; }

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

  .closing { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .flavors-list { grid-template-columns: 1fr; }

  .footer-links { gap: 1.25rem; }
}