:root {
  --bg: #f7f6f3;
  --bg-alt: #efede8;
  --surface: #ffffff;
  --text: #1a1d23;
  --text-secondary: #4f5663;
  --text-tertiary: #7a818c;
  --accent: #c4372a;
  --accent-hover: #a82f24;
  --accent-soft: #fdf2f1;
  --border: rgba(26, 29, 35, 0.09);
  --shadow-sm: 0 1px 2px rgba(26, 29, 35, 0.04), 0 2px 8px rgba(26, 29, 35, 0.03);
  --shadow-md: 0 4px 16px rgba(26, 29, 35, 0.06), 0 12px 40px rgba(26, 29, 35, 0.05);
  --shadow-lg: 0 8px 30px rgba(26, 29, 35, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1080px;
  --narrow: 640px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover { color: var(--accent-hover); }

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

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover { color: var(--text); }

.logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(26, 29, 35, 0.04);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(26, 29, 35, 0.06);
}

.nav-links .nav-cta {
  margin-left: 4px;
  background: var(--text);
  color: #fff !important;
  padding: 9px 18px;
}

.nav-links .nav-cta:hover {
  background: #2d3139;
  color: #fff !important;
}

/* ── Brand lockup (hero + about) ── */
.brand-lockup {
  text-align: center;
}

.brand-lockup .mark {
  width: 72px;
  height: auto;
  margin: 0 auto 20px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--text);
}

.brand-motto {
  margin-top: 12px;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

/* ── Hero ── */
.hero {
  padding: 80px 0 96px;
  text-align: center;
}

.hero-subtitle {
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.hero-lead {
  margin: 16px auto 0;
  max-width: 46ch;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(196, 55, 42, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 55, 42, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  color: var(--text);
  border-color: rgba(26, 29, 35, 0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-header p {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── Store cards ── */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.store-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.store-card:hover {
  color: var(--text);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26, 29, 35, 0.12);
}

.store-card.featured {
  border-color: rgba(196, 55, 42, 0.2);
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
}

.store-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.store-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.store-card .desc {
  margin-top: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.store-card .link {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── Values row ── */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.values .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--accent);
}

.values h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.values p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── About teaser ── */
.about-teaser {
  max-width: var(--narrow);
  margin: 0 auto;
  text-align: center;
}

.about-teaser p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-teaser .btn {
  margin-top: 28px;
}

/* ── Prose (about page) ── */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.prose {
  max-width: 38rem;
  margin: 0 auto;
  padding: 64px 28px 80px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.prose p {
  margin-bottom: 1.25em;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.prose p strong {
  color: var(--text);
  font-weight: 600;
}

.prose .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2.5rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand .brand-motto {
  text-align: left;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li { margin-top: 10px; }

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 60ch;
}

.footer-bottom p + p { margin-top: 6px; }

/* ── Newsletter (footer-adjacent, minimal) ── */
.newsletter {
  max-width: 400px;
}

.newsletter p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.signup-form {
  display: flex;
  gap: 8px;
}

.signup-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
}

.signup-form input::placeholder { color: rgba(255, 255, 255, 0.35); }

.signup-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.signup-form button {
  padding: 10px 16px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.signup-form button:hover { opacity: 0.9; }

.form-msg {
  margin-top: 8px;
  font-size: 0.8125rem;
  min-height: 1.2em;
}

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

  .hero { padding: 56px 0 72px; }

  .section { padding: 56px 0; }

  .store-grid,
  .values,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid { gap: 32px; }

  .signup-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover,
  .store-card:hover { transform: none; }
}
