/* Food4Confidence — hoja de estilos compartida */

:root {
  --primary: #C1662F;
  --primary-dark: #A34F20;
  --secondary: #7C8B6F;
  --secondary-dark: #5F6E54;
  --bg: #FAF4EC;
  --bg-alt: #F1E6D4;
  --bg-deep: #2C2117;
  --text: #33291F;
  --text-soft: #6B5C4A;
  --cream: #FFFDF8;
  --shadow: 0 18px 40px -18px rgba(44, 33, 23, 0.35);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw + 1rem, 2.7rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 1rem, 1.6rem); }
p { margin: 0 0 1.1em; }
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 0.9em;
}
.lede {
  font-size: clamp(1.05rem, 1vw + 1rem, 1.25rem);
  color: var(--text-soft);
  max-width: 62ch;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 33, 23, 0.08);
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link img { width: 40px; height: 40px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.main-nav {
  display: flex;
  gap: 16px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: var(--primary-dark);
  border-color: var(--primary);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.tel-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { background: var(--secondary-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 4px 8px;
}
.header-social { align-items: center; gap: 10px; margin: 0; flex-shrink: 0; }
.social-links.header-social a { display: inline-flex; color: var(--primary); padding: 4px; }
.header-social a:hover { color: var(--primary); }
.social-links svg { width: 18px; height: 18px; display: block; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.social-link-instagram svg { fill: none; }
.social-link-instagram .social-dot { fill: currentColor; stroke: none; }

@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 16px;
    border-bottom: 1px solid rgba(44,33,23,0.08);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(44,33,23,0.06); }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .logo-text { display: none; }
  .header-social { margin-left: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 100px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--text); }
.btn-outline:hover { background: var(--text); color: var(--cream); }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.4em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-home { object-position: center 28%; }
.recipes-hero-bg { object-position: center 38%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,33,23,0.25) 0%, rgba(44,33,23,0.55) 65%, rgba(28,21,14,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 64px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.hero-content .eyebrow { color: #F4D9B8; }
.hero-content h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.35); max-width: 16ch; }
.hero-content p { color: #F3EADC; max-width: 52ch; font-size: clamp(1rem, 0.5vw + 1rem, 1.2rem); }

/* smaller page hero (non-home) */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero .hero-content { padding: 48px 24px 52px; }
.page-hero h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.page-hero:has(.recipes-hero-bg) { min-height: 0; height: 66.6667vw; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-deep {
  background: var(--bg-deep);
  color: #F3EADC;
}
.section-deep h2, .section-deep h3 { color: #fff; }
.section-deep .lede { color: #D9C9B4; }
.section-head { max-width: 720px; margin: 0 0 3em; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* two-column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

/* card grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
}
.feature-card .icon {
  width: 46px; height: 46px;
  color: var(--primary);
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 0.4em; }
.feature-card p { color: var(--text-soft); margin: 0; }

/* pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
  font-weight: 500;
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
  padding: 0.2em 0 0.2em 1.1em;
  margin: 1.6em 0;
  font-style: italic;
}

/* recipe teaser cards */
.recipe-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .recipe-teaser-grid { grid-template-columns: 1fr; } }
.recipe-teaser {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow);
}
.recipe-teaser img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.recipe-teaser:hover img { transform: scale(1.06); }
.recipe-teaser .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(28,21,14,0.85) 100%);
}
.recipe-teaser .label {
  position: absolute; left: 20px; bottom: 18px; right: 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.recipe-teaser .tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F4D9B8;
  margin-bottom: 4px;
}

/* recipes page */
.recipe-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 3em;
}
.recipe-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--bg-alt);
  padding: 8px 16px;
  border-radius: 100px;
}
.recipe-nav a:hover { background: var(--primary); color: #fff; }

.recipe-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid rgba(44,33,23,0.12);
}
.recipe-card:first-of-type { border-top: none; padding-top: 0; }
@media (max-width: 800px) { .recipe-card { grid-template-columns: 1fr; gap: 24px; } }
.recipe-card img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.recipe-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 10px 0 18px;
}
.recipe-meta span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-dark);
  background: rgba(124, 139, 111, 0.14);
  padding: 5px 12px;
  border-radius: 100px;
}
.recipe-cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  margin-top: 1.4em;
}
@media (max-width: 560px) { .recipe-cols { grid-template-columns: 1fr; } }
.recipe-cols h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.7em;
}
.recipe-cols ul, .recipe-cols ol { margin: 0; padding-left: 1.2em; color: var(--text-soft); }
.recipe-cols li { margin-bottom: 0.5em; }
.recipe-why {
  margin-top: 1.4em;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: 12px;
  font-style: italic;
  color: var(--text-soft);
}

/* contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin: 0 0 2em; padding: 0; }
.contact-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(44,33,23,0.1);
}
.contact-list .k { font-weight: 600; min-width: 110px; color: var(--text-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-list .v a { text-decoration: none; font-weight: 600; }
.contact-list .v a:hover { color: var(--primary-dark); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  height: 320px;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 90px 0;
  background: var(--bg-deep);
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #D9C9B4; max-width: 54ch; margin-left: auto; margin-right: auto; }
.cta-band .cta-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: #D9C9B4;
  padding: 56px 0 28px;
}
.footer-inner { text-align: center; }
.footer-logo { width: 44px; height: 44px; margin: 0 auto 14px; filter: invert(1) brightness(1.6); }
.footer-claim {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  max-width: 34ch;
  margin: 0 auto 22px;
}
.footer-contact {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-bottom: 22px;
  font-size: 0.92rem;
}
.footer-contact a { text-decoration: none; color: #F3EADC; font-weight: 600; }
.footer-contact a:hover { color: var(--primary); }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  margin-bottom: 26px;
  font-size: 0.88rem;
}
.footer-nav a { text-decoration: none; color: #C9B8A2; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; color: #8C7C68; margin: 0; }
.footer-legal { margin: 0 0 18px; font-size: 0.82rem; }
.footer-legal a { color: #C9B8A2; text-decoration: none; }
.footer-legal a:hover { color: #fff; }
.social-links { display: flex; justify-content: center; gap: 14px; margin: 0 0 18px; }
.social-links:empty { display: none; }
.social-links.header-social { margin: 0; }
.social-links a { color: #F3EADC; text-decoration: none; transition: color 0.2s, transform 0.2s; }
.social-links a:hover { transform: translateY(-1px); }
.social-links a:hover { color: var(--primary); }

/* New editorial, pricing and form pages */
.ingredient-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.ingredient-card { background: var(--cream); padding: 0 26px 28px; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.ingredient-card .eyebrow { margin-top: 22px; margin-bottom: 0.45em; }
.ingredient-card h2 { font-size: 1.9rem; }
.ingredient-image { height: 220px; margin: 0 -26px; background-position: center; background-size: cover; }
.ingredient-ginger { background-image: url("assets/ingredient-ginger.jpg"); }
.ingredient-garlic { background-image: url("assets/ingredient-garlic.jpg"); }
.ingredient-onion { background-image: url("assets/ingredient-onion.jpg"); }
.ingredient-turmeric { background-image: url("assets/ingredient-turmeric-new.png"); }
.ingredient-mustard { background-image: url("assets/mustard-seeds.png"); }
.ingredient-mustard span { display: none; }
.ingredient-card details { border-top: 1px solid rgba(44,33,23,0.12); margin-top: 20px; padding-top: 14px; color: var(--text-soft); }
.ingredient-card summary { color: var(--primary-dark); cursor: pointer; font-weight: 600; }
.salt-comparison { border: 1px solid rgba(44,33,23,0.14); border-radius: var(--radius); overflow: hidden; background: var(--cream); }
.salt-heading, .salt-row { display: grid; grid-template-columns: minmax(130px, 0.8fr) repeat(2, minmax(0, 1fr)); }
.salt-heading { background: var(--primary-dark); color: #fff; }
.salt-heading h3, .salt-row > * { margin: 0; padding: 16px 18px; }
.salt-heading h3 { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }
.salt-row { border-top: 1px solid rgba(44,33,23,0.12); }
.salt-row strong { color: var(--primary-dark); font-weight: 700; }
.salt-row span { color: var(--text-soft); }
.ingredient-card details a, .form-link a { color: var(--primary-dark); font-weight: 600; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card { background: var(--cream); border: 1px solid rgba(44,33,23,0.12); padding: 32px 26px; border-radius: var(--radius); display: flex; flex-direction: column; align-items: flex-start; }
.pricing-card h2 { font-size: 1.8rem; }
.price { font-family: var(--font-display); color: var(--primary-dark); font-size: 2rem; font-weight: 600; margin-bottom: 0.4em; }
.price span { font-family: var(--font-body); font-size: 1rem; color: var(--text-soft); font-weight: 500; }
.pricing-note { color: var(--text-soft); min-height: 3.4em; }
.pricing-card .btn { margin-top: auto; }
.pricing-card-featured, .founding-circle-aside { background: var(--bg-alt); border-color: var(--primary); }
.founding-circle-aside { padding: 34px; border-radius: var(--radius); }
.founding-circle-aside .text-link { display: block; color: var(--primary-dark); font-weight: 600; margin-top: 18px; }
.form-container, .legal-content, .dosha-intro { max-width: 760px; }
.wellbeing-form { margin-top: 2.2em; }
.wellbeing-form label { color: var(--text); display: block; font-weight: 600; margin-bottom: 20px; }
.wellbeing-form input:not([type="checkbox"]), .wellbeing-form textarea { display: block; width: 100%; margin-top: 8px; padding: 12px 14px; background: var(--cream); border: 1px solid rgba(44,33,23,0.24); border-radius: 8px; color: var(--text); font: inherit; line-height: 1.5; }
.wellbeing-form textarea { resize: vertical; }
.wellbeing-form input:focus, .wellbeing-form textarea:focus { outline: 3px solid rgba(193,102,47,0.2); border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--text-soft) !important; font-weight: 500 !important; }
.consent input { margin-top: 0.3em; }
.form-footnote, .form-link { font-size: 0.9rem; color: var(--text-soft); margin-top: 1.2em; }
.dosha-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 2.4em 0; }
.dosha-grid article { background: var(--bg-alt); border-radius: 8px; padding: 22px; }
.dosha-grid h3 { color: var(--primary-dark); }
.quiz-note { color: var(--secondary-dark); font-weight: 600; }
.dosha-quiz { background: var(--cream); border: 1px solid rgba(44,33,23,0.12); border-radius: var(--radius); padding: clamp(24px, 5vw, 52px); margin-top: 2em; box-shadow: var(--shadow); }
.quiz-start { text-align: center; padding: 22px 0; }
.quiz-progress { color: var(--text-soft); font-weight: 600; margin-bottom: 2.2em; }
.progress-track { height: 8px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; margin-top: 10px; }
.progress-track span { display: block; height: 100%; background: var(--primary); border-radius: inherit; transition: width 0.3s ease; }
.dosha-quiz fieldset { border: 0; padding: 0; margin: 0; }
.dosha-quiz legend { font-family: var(--font-display); font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); color: var(--text); margin-bottom: 1em; }
.answer-list { display: grid; gap: 12px; }
.answer-option { display: flex; align-items: flex-start; gap: 12px; border: 1px solid rgba(44,33,23,0.16); border-radius: 10px; padding: 16px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.answer-option:hover, .answer-option:has(input:checked) { border-color: var(--primary); background: rgba(193,102,47,0.08); }
.answer-option input { accent-color: var(--primary); margin-top: 0.35em; }
.quiz-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 2em; }
.needs-answer { animation: nudge 0.25s linear; }
@keyframes nudge { 25% { transform: translateX(4px); } 75% { transform: translateX(-4px); } }
.result-name { font-size: clamp(2rem, 4vw, 3rem); color: var(--primary-dark); text-transform: uppercase; }
.strength-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.strength-list li { background: var(--bg-alt); color: var(--secondary-dark); font-weight: 600; padding: 7px 12px; border-radius: 99px; }
.score-board { margin: 2em 0; padding: 22px; background: var(--bg-alt); border-radius: 12px; }
.score-row { margin: 14px 0; }
.score-row strong { display: flex; justify-content: space-between; font-size: 0.9rem; }
.path-section { border-top: 1px solid rgba(44,33,23,0.12); padding-top: 1.8em; margin-top: 2em; }
.health-note { color: var(--text-soft); font-size: 0.85rem; margin-top: 2em; }
.benefit-block { border-top: 1px solid rgba(44,33,23,0.12); margin-top: 24px; padding-top: 18px; }
.benefit-block h3 { font-size: 1.25rem; color: var(--primary-dark); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.benefit-grid article { padding: 14px 16px; background: rgba(241,230,212,0.55); border-radius: 8px; }
.benefit-grid h4 { font-family: var(--font-body); font-size: 0.95rem; color: var(--text); margin-bottom: 0.35em; }
.benefit-grid p { color: var(--text-soft); font-size: 0.9rem; margin: 0; }
.wellness-note { background: var(--bg-alt); padding: 42px 0; }
.wellness-note h2 { font-size: 1.5rem; }
.wellness-note p { max-width: 78ch; color: var(--text-soft); margin: 0; }
@media (max-width: 700px) { .benefit-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .dosha-quiz { padding: 22px 18px; } .quiz-actions .btn { padding: 12px 16px; } }
.legal-content h2 { margin-top: 1.6em; font-size: 1.65rem; }
.recipe-category-note { border-top: 1px solid rgba(44,33,23,0.12); padding: 34px 0 0; margin-top: 26px; color: var(--text-soft); }
.recipe-category-note h2 { color: var(--text); font-size: 1.55rem; }
.instagram-follow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.instagram-follow-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}
.instagram-follow-link svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 860px) { .pricing-grid, .ingredient-grid { grid-template-columns: 1fr; } .pricing-note { min-height: auto; } }
@media (max-width: 700px) { .salt-heading, .salt-row { grid-template-columns: 1fr; } .salt-heading h3:not(:first-child) { border-top: 1px solid rgba(255,255,255,0.18); } .salt-row > * + * { border-top: 1px solid rgba(44,33,23,0.08); } }
@media (max-width: 560px) { section { padding: 64px 0; } .form-row, .dosha-grid { grid-template-columns: 1fr; } .ingredient-image { height: 190px; } }
@media (max-width: 700px) { .page-hero:has(.recipes-hero-bg) { height: 66.6667vw; } .recipes-hero-bg { object-position: center center; } }

/* utility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
