/* Bagel&Co — SEO landing pages
 * Shared stylesheet. Mirrors design tokens from deploy/index.html (single source of truth).
 * Used by every standalone SEO page so they look indistinguishable from the main site.
 */

:root {
  --c-cream:    #F9EEE4;
  --c-cream-2:  #F1E2D3;
  --c-cream-3:  #E8D4C0;
  --c-blue:     #1D4491;
  --c-blue-2:   #163677;
  --c-pink:     #F7C8C9;
  --c-pink-2:   #EFB1B3;
  --c-espresso: #1A1410;
  --c-coffee:   #3B2A1F;
  --c-mute:     #6E5B4D;
  --c-line:     #D9C7B6;
  --c-card:     #FFFFFF;
  --c-success:  #2E7D5B;
  --c-warn:     #C56A1D;

  --accent:        var(--c-blue);
  --accent-2:      var(--c-blue-2);
  --accent-soft:   var(--c-pink);
  --on-accent:     var(--c-cream);

  --r-card: 18px;
  --r-button: 999px;
  --r-input: 14px;

  --shadow-soft: 0 1px 2px rgba(26,20,16,.04), 0 8px 24px rgba(26,20,16,.06);
  --shadow-pop:  0 8px 28px rgba(26,20,16,.18);

  --font-display: "BioRhyme", Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;
}

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
img, svg, video { max-width: 100%; height: auto; }
body {
  font-family: var(--font-sans);
  background: var(--c-cream);
  color: var(--c-espresso);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; line-height: 0.95; }
.mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-mute);
}

/* ---------- Layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

/* ---------- Buttons (parity with main site) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border: none; border-radius: var(--r-button);
  font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap; cursor: pointer;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-2); }
.btn-dark { background: var(--c-espresso); color: var(--c-cream); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--c-espresso); border: 1.5px solid var(--c-espresso); }
.btn-ghost:hover { background: var(--c-espresso); color: var(--c-cream); }
.btn-soft { background: var(--c-cream-2); color: var(--c-espresso); }
.btn-soft:hover { background: var(--c-cream-3); }
.btn-lg { padding: 18px 28px; font-size: 17px; }

/* ---------- Header ---------- */
.seo-header {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in oklab, var(--c-cream) 88%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(217, 199, 182, 0.5);
}
.seo-header__row { display: flex; align-items: center; gap: 32px; height: 78px; }
.seo-header__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; color: var(--c-espresso);
  letter-spacing: -0.01em;
}
.seo-header__logo img { width: 48px; height: 48px; object-fit: contain; }
.seo-header__nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.seo-header__nav a {
  font-weight: 500; font-size: 14px; color: var(--c-espresso);
  padding: 8px 0; border-bottom: 1.5px solid transparent;
  transition: color .15s, border-color .15s;
}
.seo-header__nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.lang-row { display: inline-flex; gap: 2px; padding: 4px; background: var(--c-cream-2); border-radius: 999px; font-family: var(--font-mono); font-size: 11px; }
.lang-row a { padding: 5px 9px; border-radius: 999px; color: var(--c-mute); font-weight: 600; text-transform: uppercase; }
.lang-row a.active { background: var(--c-espresso); color: var(--c-cream); }
@media (max-width: 860px) { .seo-header__nav a:not(.btn) { display: none; } }

/* ---------- Hero ---------- */
.seo-hero {
  padding: 56px 0 24px; position: relative;
}
.seo-hero__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: stretch;
}
.seo-hero__copy { padding: 24px 0; display: flex; flex-direction: column; justify-content: center; }
.seo-hero__copy h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 6.5vw, 92px); line-height: 0.94;
  letter-spacing: -0.025em; margin: 18px 0 22px;
  text-wrap: balance;
}
.seo-hero__copy h1 em {
  font-style: italic; color: var(--accent); font-family: Georgia, serif; font-weight: 400;
}
.seo-hero__lede {
  font-size: 18px; max-width: 52ch; color: var(--c-coffee); margin: 0 0 30px;
  line-height: 1.55; text-wrap: pretty;
}
.seo-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.seo-hero__photo {
  border-radius: 28px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--c-coffee); position: relative;
  box-shadow: 0 30px 80px -20px rgba(26,20,16,.35);
}
.seo-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.seo-hero__sticker {
  position: absolute; top: 24px; right: 24px;
  width: 124px; height: 124px;
  border-radius: 999px;
  background: var(--accent-soft); color: var(--c-espresso);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2px;
  box-shadow: 0 12px 28px rgba(26,20,16,.22);
  transform: rotate(-10deg);
  border: 2px dashed rgba(26,20,16,.3);
  text-align: center; padding: 8px;
}
.seo-hero__sticker .num { font-family: var(--font-display); font-size: 28px; line-height: 1; }
.seo-hero__sticker .lbl { font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 880px) {
  .seo-hero { padding: 28px 0 12px; }
  .seo-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .seo-hero__photo { aspect-ratio: 4/3; }
}

/* ---------- Quick facts strip ---------- */
.facts {
  margin: 24px 0 8px;
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: 22px; padding: 20px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  box-shadow: var(--shadow-soft);
}
.facts__item { display: flex; flex-direction: column; gap: 4px; }
.facts__item .lbl { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-mute); }
.facts__item .val { font-family: var(--font-display); font-size: 22px; line-height: 1.05; color: var(--c-espresso); }
.facts__item .sub { font-size: 13px; color: var(--c-coffee); }
@media (max-width: 880px) {
  .facts { grid-template-columns: 1fr 1fr; gap: 18px; padding: 18px; }
}

/* ---------- Section ---------- */
.section { padding: 80px 0; }
.section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4.2vw, 56px); line-height: 1.02; margin: 10px 0 24px;
  letter-spacing: -0.02em; text-wrap: balance;
}
.section h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.section p { font-size: 16.5px; color: var(--c-coffee); margin: 0 0 16px; text-wrap: pretty; max-width: 70ch; }
.section ul { padding-left: 22px; margin: 0 0 16px; }
.section ul li { font-size: 16px; color: var(--c-coffee); margin-bottom: 8px; }
.section--alt { background: var(--c-cream-2); }
.section--dark { background: var(--c-espresso); color: var(--c-cream); }
.section--dark h2, .section--dark h3 { color: var(--c-cream); }
.section--dark p, .section--dark ul li { color: rgba(249, 238, 228, 0.86); }
@media (max-width: 720px) { .section { padding: 56px 0; } }

/* Two-column long-form */
.copy-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; }
@media (max-width: 880px) { .copy-grid { grid-template-columns: 1fr; gap: 32px; } }

.callout {
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--r-card); padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}
.callout .eyebrow { margin-bottom: 8px; display: block; }
.callout h3 { margin: 0 0 10px; font-size: 22px; }
.callout p { font-size: 15px; margin: 0; }
.callout--accent { background: var(--accent); color: var(--on-accent); border-color: transparent; }
.callout--accent h3 { color: var(--on-accent); }
.callout--accent p { color: var(--on-accent); opacity: 0.92; }
.callout--accent .eyebrow { color: var(--on-accent); opacity: 0.7; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.product-card {
  background: var(--c-card); border: 1px solid rgba(217, 199, 182, 0.5);
  border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .15s;
  text-align: left;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -16px rgba(26,20,16,.18);
  border-color: rgba(217, 199, 182, 0.9);
}
.product-card__img { aspect-ratio: 4/3; background: var(--c-coffee); position: relative; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.product-card__title { font-family: var(--font-display); font-size: 19px; line-height: 1.12; font-weight: 800; letter-spacing: -0.01em; }
.product-card__desc { font-size: 13px; color: var(--c-mute); line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 12px; border-top: 1px solid rgba(217, 199, 182, 0.4); }
.product-card__price { font-family: var(--font-mono); font-weight: 600; font-size: 16px; }
.product-card__add {
  background: var(--c-espresso); color: var(--c-cream);
  border: none; border-radius: 999px;
  padding: 8px 14px; font-size: 12px; font-weight: 600;
  font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase;
  transition: background .15s;
}
.product-card:hover .product-card__add { background: var(--accent); }
.badge-popular {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-cream); color: var(--c-espresso);
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 6px;
}
.badge-popular::before { content: ""; width: 5px; height: 5px; border-radius: 999px; background: var(--accent); display: inline-block; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: 16px;
  padding: 0; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -0.01em;
  text-wrap: balance;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono); font-size: 28px; color: var(--c-mute);
  transition: transform .2s ease;
  font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item__body { padding: 0 26px 24px; }
.faq-item__body p { font-size: 15.5px; color: var(--c-coffee); margin: 0 0 10px; max-width: 75ch; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* ---------- Map card ---------- */
.loc-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.loc-card__body { padding: 32px 36px; display: flex; flex-direction: column; gap: 14px; }
.loc-card__map { background: var(--c-cream-2); position: relative; min-height: 320px; }
.loc-card__map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 320px; }
.loc-card h3 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.01em; }
.loc-card dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; margin: 8px 0 16px; }
.loc-card dt { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-mute); align-self: center; }
.loc-card dd { margin: 0; font-size: 15px; color: var(--c-espresso); }
.loc-card__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 12px; }
@media (max-width: 880px) {
  .loc-card { grid-template-columns: 1fr; }
  .loc-card__map { min-height: 240px; }
}

/* ---------- Delivery row ---------- */
.delivery-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 20px;
}
.delivery-card {
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--r-card);
  padding: 24px 26px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.delivery-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.delivery-card__brand {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  letter-spacing: -0.01em; color: var(--c-espresso);
}
.delivery-card__brand .dot { display: inline-block; width: 10px; height: 10px; border-radius: 999px; margin-right: 8px; vertical-align: middle; }
.delivery-card__brand.bolt .dot { background: #34D186; }
.delivery-card__brand.wolt .dot { background: #00C2E8; }
.delivery-card p { margin: 0; font-size: 14px; color: var(--c-mute); }
@media (max-width: 720px) { .delivery-row { grid-template-columns: 1fr; } }

/* ---------- Sister links / footer SEO graph ---------- */
.sister-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: 24px;
}
.sister-link {
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: 16px;
  padding: 20px 22px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .15s, border-color .15s;
}
.sister-link:hover { transform: translateY(-2px); border-color: var(--accent); }
.sister-link .eyebrow { color: var(--accent); }
.sister-link .ttl { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.sister-link .desc { font-size: 13px; color: var(--c-mute); }

/* ---------- Footer ---------- */
.seo-footer {
  background: var(--c-espresso); color: var(--c-cream);
  padding: 64px 0 32px;
}
.seo-footer a { color: rgba(249, 238, 228, 0.78); }
.seo-footer a:hover { color: var(--c-cream); }
.seo-footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.seo-footer__col h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(249, 238, 228, 0.5); margin: 0 0 16px; font-weight: 600; }
.seo-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.seo-footer__col li { font-size: 14px; }
.seo-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.seo-footer__brand img { width: 56px; height: 56px; object-fit: contain; }
.seo-footer__brand .name { font-family: var(--font-display); font-size: 24px; }
.seo-footer__about { font-size: 14px; color: rgba(249, 238, 228, 0.72); max-width: 34ch; line-height: 1.55; }
.seo-footer__bottom { border-top: 1px solid rgba(249, 238, 228, 0.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; font-family: var(--font-mono); font-size: 11px; color: rgba(249, 238, 228, 0.5); letter-spacing: 0.04em; }
@media (max-width: 880px) { .seo-footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .seo-footer__top { grid-template-columns: 1fr; } .seo-footer__bottom { flex-direction: column; gap: 8px; } }

/* ---------- Big breadcrumbs ---------- */
.crumbs {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--c-mute);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 18px 0 0; display: flex; gap: 8px; flex-wrap: wrap;
}
.crumbs a { color: var(--c-coffee); }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { opacity: 0.5; }

/* ---------- Lang-alt strip (visible language switcher per page) ---------- */
.lang-alt { padding: 14px 0; font-family: var(--font-mono); font-size: 12px; color: var(--c-mute); text-align: center; border-top: 1px solid var(--c-line); }
.lang-alt a { color: var(--c-coffee); margin: 0 8px; }
.lang-alt a:hover { color: var(--accent); text-decoration: underline; }
