/* Buona Terra — site chrome + components */

/* ===== Announcement bar ===== */
.announce {
  background: var(--bt-navy); color: var(--bt-cream);
  font-size: 0.82rem; letter-spacing: 0.06em;
  text-align: center; padding: 0.55rem var(--gutter);
}
.announce a { color: var(--bt-cream); border-bottom: 1px solid rgba(246,241,231,0.5); }
.announce a:hover { color: #fff; border-bottom-color: #fff; text-decoration: none; }

/* ===== Header / Nav ===== */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--bt-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
  gap: 1.5rem;
}

.brand-lockup { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-lockup img { height: 48px; width: auto; }
.brand-lockup:hover { text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 0.4rem;
  cursor: pointer; color: var(--bt-navy);
}
.nav-toggle svg { width: 28px; height: 28px; }

.site-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 1.85rem; align-items: center;
}
.site-nav a {
  position: relative;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.92rem;
  color: var(--bt-navy); text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.4rem 0;
}
.site-nav a:hover { color: var(--bt-red); text-decoration: none; }
.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--bt-red);
}
.site-nav .nav-cta {
  background: var(--bt-red); color: #fff;
  padding: 0.6rem 1.2rem; border-radius: 999px;
  letter-spacing: 0.06em;
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover { background: var(--bt-red-deep); color: #fff; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bt-cream); border-bottom: 1px solid var(--bt-line);
    padding: 1.2rem var(--gutter);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 1rem; align-items: stretch; }
  .site-nav .nav-cta { text-align: center; }
}

/* ===== Footer ===== */

.site-footer {
  background: var(--bt-navy); color: var(--bt-cream);
  padding: 4rem 0 2rem; margin-top: 5rem;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--avocado-deep), var(--sunflower-deep), var(--bt-red));
}
.site-footer .container {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem;
}
.site-footer img.footer-logo { width: 80px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer h4 { color: var(--bt-cream); margin-bottom: 0.8rem; font-size: 0.82rem; }
.site-footer p, .site-footer li { font-size: 0.94rem; color: rgba(250,246,236,0.78); line-height: 1.6; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--bt-cream); }
.site-footer a:hover { color: var(--sunflower-bg); text-decoration: none; }

.newsletter input {
  width: 100%; padding: 0.7rem 0.9rem; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); color: var(--bt-cream);
  border-radius: var(--radius); font-family: var(--font-sans);
}
.newsletter input::placeholder { color: rgba(250,246,236,0.5); }
.newsletter input:focus { outline: 2px solid var(--bt-red); outline-offset: 1px; }
.newsletter button {
  margin-top: 0.6rem; width: 100%;
  background: var(--bt-red); color: #fff; padding: 0.7rem; border: 0;
  border-radius: var(--radius); font-family: var(--font-sans); font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; transition: background .15s;
}
.newsletter button:hover { background: var(--bt-red-deep); }

.socials {
  display: flex; gap: 0.85rem; margin-top: 1rem;
}
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); transition: background .15s;
}
.socials a:hover { background: var(--bt-red); }
.socials svg { width: 18px; height: 18px; fill: var(--bt-cream); }

.site-footer__legal {
  border-top: 1px solid rgba(250,246,236,0.18);
  margin-top: 3rem; padding: 1.5rem var(--gutter) 0;
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  font-size: 0.82rem; color: rgba(250,246,236,0.6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}

@media (max-width: 880px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .site-footer .container { grid-template-columns: 1fr; }
  .site-footer__legal { flex-direction: column; }
}

/* ===== Hero ===== */

.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(ellipse 60% 50% at 78% 30%, rgba(245, 200, 75, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 60% at 18% 88%, rgba(205, 227, 138, 0.25), transparent 60%),
    var(--bt-cream);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.4), transparent 30%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero__copy h1 {
  color: var(--bt-navy); margin-bottom: 1.25rem;
}
.hero__copy h1 em {
  font-family: var(--font-display); font-style: italic; color: var(--bt-red);
  font-weight: 500;
}
.hero__copy .lede {
  font-size: 1.18rem; color: var(--bt-muted); max-width: 42ch; line-height: 1.6;
}
.hero__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem;
}
.hero__media {
  position: relative; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.hero__media img.bottle {
  max-height: 620px; width: auto; position: relative; z-index: 2;
  filter: drop-shadow(var(--shadow-bottle));
  animation: floatBottle 7s ease-in-out infinite;
}
.hero__media::before {
  content: ""; position: absolute; bottom: 8%; left: 50%;
  transform: translateX(-50%); width: 70%; max-width: 360px; height: 30px;
  background: radial-gradient(ellipse, rgba(20,33,39,0.18), transparent 65%);
  filter: blur(8px); z-index: 1;
}
.hero__badge {
  position: absolute; top: 8%; right: 6%;
  background: var(--bt-red); color: #fff;
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; line-height: 1.1; text-align: center;
  box-shadow: 0 8px 22px -6px rgba(196,56,46,0.5);
  transform: rotate(-8deg); z-index: 3;
}
.hero__badge strong { font-family: var(--font-sans); font-style: normal; font-weight: 800; font-size: 1.4rem; letter-spacing: 0.04em; }

@keyframes floatBottle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy .lede { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__media { min-height: 420px; }
  .hero__media img.bottle { max-height: 460px; }
  .hero__badge { width: 90px; height: 90px; font-size: 0.9rem; right: 4%; }
}

/* ===== Trust strip ===== */

.trust-strip {
  background: var(--bt-paper);
  border-top: 1px solid var(--bt-line);
  border-bottom: 1px solid var(--bt-line);
  padding: 2rem 0;
}
.trust-strip__row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem 2rem; align-items: center; justify-items: center;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bt-navy);
}
.trust-item svg { width: 22px; height: 22px; color: var(--avocado-deep); flex-shrink: 0; }

/* ===== Product grid (home) ===== */

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.product-card {
  position: relative;
  background: var(--bt-paper);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
}
.product-card::before {
  content: ""; position: absolute; inset: 0; bottom: auto; height: 8px;
  background: var(--accent, var(--bt-red));
}
.product-card[data-sku="avocado"] { --accent: linear-gradient(90deg, var(--avocado-deep), var(--avocado-bg)); }
.product-card[data-sku="sunflower"] { --accent: linear-gradient(90deg, var(--sunflower-deep), var(--sunflower-bg)); }
.product-card[data-sku="olive"] { --accent: linear-gradient(90deg, var(--olive-deep), var(--olive-bg)); }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.product-card:hover img.bottle { transform: scale(1.04) rotate(-1deg); }
.product-card .bottle-wrap {
  height: 320px; display: flex; align-items: end; justify-content: center;
  margin-bottom: 1.5rem; position: relative;
}
@media (max-width: 540px) {
  .product-card .bottle-wrap { height: 280px; }
}
.product-card .bottle-wrap::before {
  content: ""; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 80%; height: 18px;
  background: radial-gradient(ellipse, rgba(20,33,39,0.18), transparent 65%);
  filter: blur(6px);
}
.product-card img.bottle {
  height: 100%; width: auto; transition: transform .35s var(--ease);
  filter: drop-shadow(0 18px 30px rgba(20,33,39,0.18));
}
.product-card .meta {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bt-red); font-weight: 700; margin-bottom: 0.35rem;
}
.product-card h3 { color: var(--bt-navy); margin-bottom: 0.25rem; }
.product-card .product-card__cta {
  margin-top: 1.25rem;
  color: var(--bt-navy); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.product-card:hover .product-card__cta { color: var(--bt-red); }
.product-card .product-card__cta .arrow { transition: transform .2s var(--ease); }
.product-card:hover .product-card__cta .arrow { transform: translateX(4px); }

/* ===== Pillars / values ===== */

.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pillar {
  background: var(--bt-paper); border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem; text-align: center;
  border: 1px solid var(--bt-line);
}
.pillar .icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: var(--bt-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--avocado-deep);
}
.pillar .icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--bt-muted); font-size: 0.95rem; line-height: 1.55; margin: 0; }

@media (max-width: 760px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ===== Story strip ===== */

.story-strip { background: var(--bt-cream-2); position: relative; }
.story-strip__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-strip__copy h2 em {
  font-family: var(--font-display); font-style: italic; color: var(--bt-red);
}
.story-strip__media {
  background: linear-gradient(135deg, rgba(127, 153, 91, 0.12), rgba(196, 56, 46, 0.04));
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3rem);
  position: relative; overflow: hidden;
}
.story-strip__media blockquote {
  margin: 0; font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic; line-height: 1.4; color: var(--bt-navy);
}
.story-strip__media cite {
  display: block; margin-top: 1.25rem; font-style: normal;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bt-red); font-weight: 700; font-family: var(--font-sans);
}
.story-strip__media::before {
  content: '“'; position: absolute; top: -1.25rem; left: -0.5rem;
  font-family: var(--font-display); font-size: 10rem; line-height: 1;
  color: rgba(196, 56, 46, 0.1); pointer-events: none;
}

@media (max-width: 880px) { .story-strip__grid { grid-template-columns: 1fr; } }

/* ===== Page header ===== */

.page-header {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(245, 200, 75, 0.18), transparent 65%),
    var(--bt-cream-2);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: var(--bt-muted); max-width: 60ch; margin: 0 auto; font-size: 1.1rem; }

/* ===== SKU Page ===== */

.sku-hero { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden; }
.sku-hero[data-sku="avocado"] {
  background:
    radial-gradient(circle at 90% 20%, rgba(205, 227, 138, 0.45), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(95, 130, 51, 0.12), transparent 55%),
    var(--bt-cream);
}
.sku-hero[data-sku="sunflower"] {
  background:
    radial-gradient(circle at 90% 20%, rgba(245, 200, 75, 0.42), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(184, 134, 11, 0.1), transparent 55%),
    var(--bt-cream);
}
.sku-hero[data-sku="olive"] {
  background:
    radial-gradient(circle at 90% 20%, rgba(242, 231, 133, 0.55), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(140, 156, 46, 0.14), transparent 55%),
    var(--bt-cream);
}
.sku-hero__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.sku-hero__media {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 500px;
}
.sku-hero__media img {
  max-height: 620px; width: auto; margin: 0 auto;
  filter: drop-shadow(var(--shadow-bottle));
  animation: floatBottle 8s ease-in-out infinite;
}
.sku-hero__media::after {
  content: ""; position: absolute; bottom: 6%; left: 50%;
  transform: translateX(-50%); width: 60%; max-width: 320px; height: 26px;
  background: radial-gradient(ellipse, rgba(20,33,39,0.22), transparent 65%);
  filter: blur(8px);
}
.sku-hero__badge {
  position: absolute; top: 5%; right: 8%;
  background: var(--bt-red); color: #fff;
  width: 130px; height: 130px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; line-height: 1.1;
  box-shadow: 0 10px 24px -6px rgba(196,56,46,0.5);
  transform: rotate(-8deg); z-index: 3;
}
.sku-hero__badge strong { font-family: var(--font-sans); font-style: normal; font-weight: 800; font-size: 1.5rem; }

.sku-hero__copy .meta {
  font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bt-red); font-weight: 700; margin-bottom: 1rem;
}
.sku-hero__copy h1 em { font-family: var(--font-display); font-style: italic; color: var(--bt-red); font-weight: 500; }
.sku-hero__copy .italic-tag { display: block; margin: 0.25rem 0 1.5rem; }
.sku-hero__copy p { color: var(--bt-muted); font-size: 1.1rem; line-height: 1.6; max-width: 50ch; }
.sku-hero__copy .price-row {
  display: inline-flex; align-items: baseline; gap: 0.5rem; margin: 1.5rem 0 0.5rem;
  font-family: var(--font-display); color: var(--bt-navy);
}
.sku-hero__copy .price { font-size: 2.5rem; font-weight: 600; }
.sku-hero__copy .price-meta { font-size: 1rem; color: var(--bt-muted); }

.claims { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.75rem 0 0; }
.claim {
  background: var(--bt-paper); border: 1px solid var(--bt-line); color: var(--bt-navy);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.claim::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--avocado-deep); }
.claim.is-warm::before { background: var(--bt-orange); }
.claim.is-leaf { background: var(--avocado-bg); border-color: var(--avocado-deep); }
.claim.is-sun { background: var(--sunflower-bg); border-color: var(--sunflower-deep); }
.claim.is-olive { background: var(--olive-bg); border-color: var(--olive-deep); }

@media (max-width: 880px) {
  .sku-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .claims { justify-content: center; }
  .sku-hero__copy p { margin-left: auto; margin-right: auto; }
}

/* ===== Specs grid ===== */

.specs-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 880px) { .specs-grid { grid-template-columns: 1fr; } }

.specs-card {
  background: var(--bt-paper); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow-card);
}
.specs-card h3 { color: var(--bt-navy); margin-bottom: 1.25rem; }
.specs-card dl {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0.75rem 1rem; margin: 0;
}
.specs-card dt {
  color: var(--bt-muted); font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; align-self: center; font-weight: 600;
}
.specs-card dd { margin: 0; color: var(--bt-ink); font-weight: 500; }

/* ===== Nutrition Facts ===== */

.nutrition {
  background: #fff; color: #000; border: 2px solid #000; padding: 0.6rem 0.85rem;
  font-family: Helvetica, Arial, sans-serif; font-size: 0.88rem; line-height: 1.25;
  max-width: 360px;
}
.nutrition h4 { font-family: inherit; color: #000; text-transform: none; letter-spacing: 0; font-weight: 900; font-size: 1.65rem; margin: 0 0 0.1rem; }
.nutrition .nf-row { display: flex; justify-content: space-between; border-top: 1px solid #000; padding: 0.18rem 0; }
.nutrition .nf-bold { font-weight: 700; }
.nutrition .nf-indent { padding-left: 1rem; }
.nutrition .nf-cal { font-weight: 900; font-size: 1.65rem; }
.nutrition .nf-foot { font-size: 0.7rem; line-height: 1.3; padding-top: 0.4rem; border-top: 3px solid #000; margin-top: 0.4rem; }
.nutrition .nf-dv { text-align: right; font-size: 0.78rem; padding: 0.2rem 0; border-top: 1px solid #000; }

/* ===== Use Cases ===== */

.use-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.use-card {
  background: var(--bt-paper); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; text-align: center;
  border: 1px solid var(--bt-line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.use-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.use-card .icon {
  width: 48px; height: 48px; margin: 0 auto 0.85rem; color: var(--bt-red);
}
.use-card h4 { color: var(--bt-navy); font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: 0; text-transform: none; margin-bottom: 0.4rem; }
.use-card p { color: var(--bt-muted); font-size: 0.92rem; margin: 0; }

/* ===== FAQ Accordion ===== */

.faq { display: grid; gap: 0.5rem; max-width: 880px; margin: 0 auto; }
.faq details {
  background: var(--bt-paper); border-radius: var(--radius);
  border: 1px solid var(--bt-line); padding: 0;
  transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 1.5rem; font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--bt-navy);
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--bt-red); margin-left: 1rem;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 1.5rem 1.5rem; color: var(--bt-muted); }

/* ===== Testimonials ===== */

.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--bt-paper); padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--bt-line); position: relative;
}
.testimonial::before {
  content: '“'; position: absolute; top: -10px; left: 1rem;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--bt-red); background: var(--bt-cream); padding: 0 0.4rem;
}
.testimonial .stars { color: var(--bt-orange); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testimonial blockquote {
  margin: 0 0 1rem; font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; line-height: 1.5; color: var(--bt-ink);
}
.testimonial cite {
  font-style: normal; font-size: 0.88rem; color: var(--bt-muted);
  font-weight: 600; letter-spacing: 0.04em;
}

/* ===== CTA banner ===== */

.cta-banner {
  background: linear-gradient(135deg, var(--bt-navy), #243b56);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center; color: var(--bt-cream);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: -40%; right: -10%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245, 200, 75, 0.3), transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: ""; position: absolute; bottom: -40%; left: -10%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(196, 56, 46, 0.25), transparent 70%);
  border-radius: 50%;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--bt-cream); }
.cta-banner h2 em { color: var(--sunflower-bg); font-family: var(--font-display); font-style: italic; font-weight: 500; }
.cta-banner p { color: rgba(250,246,236,0.85); max-width: 56ch; margin: 0 auto 1.75rem; font-size: 1.08rem; }

/* ===== Contact ===== */

.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--bt-paper); padding: 2.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.contact-form h3 { margin-top: 0; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bt-navy); margin-bottom: 0.4rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-sans); font-size: 1rem;
  border: 1px solid var(--bt-line); border-radius: var(--radius); background: var(--bt-cream);
  color: var(--bt-ink); margin-bottom: 1rem;
  transition: border-color .15s, background .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--bt-red); outline-offset: 1px; border-color: var(--bt-red); background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-info h3 { color: var(--bt-navy); margin-top: 0; }
.contact-info .info-block { margin-bottom: 2rem; }
.contact-info .info-block strong { color: var(--bt-navy); }
.contact-info address { font-style: normal; color: var(--bt-muted); }

.placeholder-note {
  background: rgba(245, 200, 75, 0.18); border-left: 3px solid var(--sunflower-deep);
  padding: 0.85rem 1.1rem; font-size: 0.85rem; color: var(--bt-ink);
  margin: 1rem 0; border-radius: 4px;
}

/* ===== Recipe / lifestyle teasers ===== */

.recipe-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.recipe-card {
  background: var(--bt-paper); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .2s var(--ease);
}
.recipe-card:hover { transform: translateY(-4px); text-decoration: none; }
.recipe-card .thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem;
  color: var(--bt-cream);
}
.recipe-card .body { padding: 1.5rem; }
.recipe-card .meta {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bt-red); font-weight: 700; margin-bottom: 0.4rem;
}
.recipe-card h4 { color: var(--bt-navy); font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; text-transform: none; letter-spacing: 0; margin-bottom: 0.3rem; }
.recipe-card p { color: var(--bt-muted); font-size: 0.92rem; margin: 0; }
