@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&display=swap');

:root {
  --cream: #F6F1E8;
  --sand: #EDE4D4;
  --warm-white: #FBF8F2;
  --paper: #FFFCF7;
  --sage: #8FA88A;
  --sage-dark: #5F7A5C;
  --sage-deep: #4A6348;
  --sage-light: #C5D6C1;
  --olive: #6B7F4F;
  --terracotta: #C56A4A;
  --terracotta-deep: #A85236;
  --terracotta-soft: #E8B29A;
  --clay: #B8795E;
  --dusty-rose: #C9A09A;
  --dusty-rose-soft: #E8D5D0;
  --brown: #5C4336;
  --brown-soft: #8B6B5A;
  --charcoal: #2C2622;
  --text-body: #4A3F37;
  --text-muted: #7A6B60;
  --shadow-soft: 0 10px 36px rgba(92, 67, 54, 0.08);
  --shadow-card: 0 6px 24px rgba(92, 67, 54, 0.06);
  --radius-card: 22px;
  --radius-pill: 999px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  background-image: var(--grain);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ── */
nav {
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 184, 150, 0.45);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0 1.25rem;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 1.55rem; line-height: 1; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.logo-text span {
  font-family: var(--font-body);
  color: var(--sage-dark);
  font-size: 0.68rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.6rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.35rem 0;
}

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

.nav-links .cta-btn {
  background: var(--terracotta);
  color: #fff !important;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(197, 106, 74, 0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-links .cta-btn:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(197, 106, 74, 0.35);
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: var(--paper);
  border: 1px solid rgba(212, 184, 150, 0.55);
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
  min-width: 44px;
  min-height: 44px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  display: block;
  margin: 0 auto;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  background:
    linear-gradient(145deg, rgba(237, 228, 212, 0.95) 0%, rgba(214, 228, 208, 0.75) 48%, rgba(232, 213, 208, 0.55) 100%);
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 40%, rgba(143, 168, 138, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(197, 106, 74, 0.14) 0%, transparent 38%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(255, 252, 247, 0.8);
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
  border: 1px solid rgba(143, 168, 138, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.2vw, 3.85rem);
  color: var(--brown);
  line-height: 1.12;
  margin-bottom: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}

.hero p {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  font-weight: 400;
  opacity: 0.92;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 22px rgba(197, 106, 74, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 106, 74, 0.38);
}

.btn-secondary {
  background: rgba(255, 252, 247, 0.65);
  color: var(--brown);
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid rgba(139, 107, 90, 0.35);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--brown);
  background: var(--paper);
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-label {
  font-family: var(--font-body);
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.55rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  color: var(--brown);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ── CATEGORIES ── */
.categories {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  background: var(--warm-white);
}

.categories-inner { max-width: 1160px; margin: 0 auto; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 1.15rem;
}

.cat-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 1.65rem 1.2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-body);
  border: 1px solid rgba(212, 184, 150, 0.4);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--sage-light);
}

.cat-icon { font-size: 2.15rem; margin-bottom: 0.7rem; display: block; }

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brown);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.cat-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* ── SWAP CARDS ── */
.swaps {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--warm-white) 72%);
  position: relative;
}

.swaps::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.5;
  pointer-events: none;
}

.swaps-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }

.swap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.swap-card {
  background: var(--paper);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(212, 184, 150, 0.42);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.swap-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.swap-card-body {
  padding: 1.25rem 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.swap-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0.55rem;
}

.swap-from, .swap-to {
  padding: 0.85rem 0.7rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: center;
  min-height: 88px;
}

.swap-from {
  background: linear-gradient(180deg, #FBF0EE 0%, #F7E4E0 100%);
  border: 1px solid rgba(184, 92, 78, 0.22);
  color: #8F3B32;
}

.swap-to {
  background: linear-gradient(180deg, #EEF5EC 0%, #E2EEDF 100%);
  border: 1px solid rgba(95, 122, 92, 0.28);
  color: var(--sage-deep);
}

.swap-side-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.swap-side-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.swap-arrow {
  font-size: 1.35rem;
  color: var(--terracotta);
  align-self: center;
  font-weight: 700;
  line-height: 1;
}

.swap-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

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

.toxin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.toxin-tag {
  font-size: 0.68rem;
  background: rgba(232, 213, 208, 0.65);
  color: #7A4E45;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(201, 160, 154, 0.35);
}

.swap-cta {
  margin-top: auto;
  padding-top: 0.35rem;
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0) 0%, var(--paper) 28%);
  padding-bottom: 0.1rem;
}

.swap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--terracotta);
  color: #fff !important;
  text-align: center;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(197, 106, 74, 0.32);
  min-height: 48px;
}

.swap-btn:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(197, 106, 74, 0.4);
}

/* Legacy header tags (if any remain) */
.swap-card-header {
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(212, 184, 150, 0.4);
}
.swap-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
}
.tag-danger { background: #F7E4E0; color: #8F3B32; }
.tag-safe { background: #E2EEDF; color: var(--sage-deep); }

/* ── WHY ── */
.why {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  background: var(--cream);
}

.why-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

.why-visual {
  background: linear-gradient(145deg, var(--sage-light), var(--sand));
  border-radius: 28px;
  padding: 2.75rem 2rem;
  text-align: center;
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1.35;
  box-shadow: inset 0 2px 24px rgba(0,0,0,0.04), var(--shadow-card);
  border: 1px solid rgba(143, 168, 138, 0.25);
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.25rem);
  color: var(--brown);
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.why-content > p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.why-list { list-style: none; margin: 1.4rem 0 1.75rem; }

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-body);
}

.why-list li::before {
  content: '✓';
  background: var(--sage-dark);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, #6A4B3C 0%, #5C4336 55%, #4A5240 100%);
  padding: clamp(3rem, 6vw, 4.25rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.35;
  pointer-events: none;
}

.newsletter > * { position: relative; z-index: 1; }

.newsletter h2 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(1.7rem, 3.5vw, 2.15rem);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.newsletter p {
  color: rgba(237, 228, 212, 0.88);
  margin-bottom: 1.75rem;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.7rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  min-width: 200px;
  background: var(--cream);
  color: var(--charcoal);
}

.newsletter-form input:focus {
  box-shadow: 0 0 0 3px rgba(197, 106, 74, 0.35);
}

.newsletter-form button {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.2s;
  min-height: 48px;
}

.newsletter-form button:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

.newsletter-note {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: rgba(237, 228, 212, 0.65);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: #B5A79D;
  padding: 2.75rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}

.footer-brand .logo-text { color: var(--cream); }
.footer-brand .logo-text span { color: var(--sage-light); }
.footer-brand p { font-size: 0.88rem; margin-top: 0.85rem; line-height: 1.65; max-width: 280px; }

.footer-col h4 {
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  color: #B5A79D;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.affiliate-disclosure {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  font-size: 0.8rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
  color: #A8988E;
}

.affiliate-disclosure strong {
  color: var(--dusty-rose-soft);
  font-weight: 700;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--sand), #DCE8D8 70%, var(--dusty-rose-soft));
  padding: clamp(2.75rem, 6vw, 4rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.55;
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  color: var(--brown);
  margin-bottom: 0.7rem;
  font-weight: 600;
  position: relative;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
  position: relative;
}

/* ── FILTER BAR ── */
.filter-bar {
  padding: 1rem 1.25rem;
  background: rgba(246, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 184, 150, 0.45);
  display: flex;
  gap: 0.55rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: sticky;
  top: var(--nav-h);
  z-index: 150;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.filter-btn {
  background: var(--paper);
  border: 1.5px solid rgba(212, 184, 150, 0.65);
  color: var(--text-body);
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: white;
}

/* ── PRODUCTS ── */
.products-section {
  padding: clamp(2rem, 4vw, 3rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
  max-width: 1160px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.about-content h2 {
  font-family: var(--font-display);
  color: var(--brown);
  font-size: 1.7rem;
  margin: 2rem 0 0.9rem;
  font-weight: 600;
}

.about-content p {
  color: var(--text-body);
  margin-bottom: 1.15rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-content a { color: var(--terracotta); }

.mission-box {
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 18px 18px 0;
  padding: 1.4rem 1.6rem;
  margin: 0.5rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.55;
  box-shadow: var(--shadow-card);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin: 1.75rem 0;
}

.value-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 1.35rem;
  border: 1px solid rgba(212, 184, 150, 0.4);
  box-shadow: var(--shadow-card);
}

.value-card .v-icon { font-size: 1.8rem; margin-bottom: 0.45rem; }
.value-card h3 {
  font-family: var(--font-display);
  color: var(--brown);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-section {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1rem;
  border: 1.5px solid rgba(212, 184, 150, 0.7);
  border-radius: 14px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(95, 122, 92, 0.18);
}

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

.form-submit {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  min-height: 48px;
}

.form-submit:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 360px;
  margin-left: auto;
  background: var(--sage-deep);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.35s;
  z-index: 1000;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; animation: fadeUp 0.55s ease forwards; }
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.12s; }
.fade-up:nth-child(3) { animation-delay: 0.19s; }
.fade-up:nth-child(4) { animation-delay: 0.26s; }
.fade-up:nth-child(5) { animation-delay: 0.33s; }
.fade-up:nth-child(6) { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(246, 241, 232, 0.98);
    padding: 1rem 1.15rem 1.35rem;
    border-bottom: 1px solid rgba(212, 184, 150, 0.45);
    gap: 0.15rem;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.85rem 0.7rem;
    border-radius: 12px;
  }

  .nav-links a:hover { background: rgba(255, 252, 247, 0.8); }

  .nav-links .cta-btn {
    text-align: center;
    margin-top: 0.35rem;
  }

  .hamburger { display: flex; }

  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }

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

  .swap-comparison {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .swap-arrow {
    transform: rotate(90deg);
    justify-self: center;
    font-size: 1.15rem;
  }

  .swap-from, .swap-to { min-height: 72px; }

  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; }

  .filter-bar {
    padding: 0.85rem 1rem;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logo-text { font-size: 1.05rem; }
  .swap-grid { grid-template-columns: 1fr; gap: 1.15rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .cat-card { padding: 1.25rem 0.85rem; }
}
