/* =========================================================
   THE BAKEST — dark theme
   ========================================================= */

:root {
  /* brand */
  --brand-navy: #000044;
  --coral: #e78f73;
  --coral-hi: #f0a98f;
  --blush: #f8d1c5;

  /* dark surfaces */
  --bg-0: #060619;
  --bg-1: #0e0e2b;
  --bg-2: #16163f;

  /* text */
  --text: #fbf6f4;
  --muted: rgba(248, 209, 197, 0.72);
  --border: rgba(248, 209, 197, 0.14);

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --arch: 50% 50% 14px 14px / 68% 68% 14px 14px; /* oven-door arch */
  --font-script: "Caveat", "Segoe Script", cursive;
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background: var(--bg-0);
}
/* fixed backdrop: oven-glow + counter marks (cup rings, flour dust).
   position:fixed rather than background-attachment:fixed — iOS Safari ignores the latter. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='900' height='900' viewBox='0 0 900 900'><g fill='none' stroke='%23E78F73' stroke-opacity='0.10' stroke-width='1.5'><circle cx='165' cy='145' r='104'/><circle cx='165' cy='145' r='93'/><circle cx='700' cy='315' r='132'/><circle cx='700' cy='315' r='121'/><circle cx='400' cy='700' r='112'/><circle cx='400' cy='700' r='101'/><circle cx='860' cy='800' r='90'/><circle cx='860' cy='800' r='79'/><circle cx='40' cy='620' r='96'/><circle cx='40' cy='620' r='85'/></g><g fill='%23F8D1C5' fill-opacity='0.16'><circle cx='144' cy='511' r='1.9'/><circle cx='142' cy='551' r='2.2'/><circle cx='821' cy='619' r='1.4'/><circle cx='896' cy='187' r='1.8'/><circle cx='365' cy='93' r='1.8'/><circle cx='887' cy='435' r='1.6'/><circle cx='788' cy='331' r='1.6'/><circle cx='192' cy='781' r='1.1'/><circle cx='436' cy='527' r='1.3'/><circle cx='770' cy='271' r='2.1'/><circle cx='81' cy='71' r='1.4'/><circle cx='383' cy='814' r='1.8'/><circle cx='244' cy='890' r='2.2'/><circle cx='145' cy='557' r='0.9'/><circle cx='552' cy='64' r='1.9'/><circle cx='700' cy='715' r='1.6'/><circle cx='836' cy='681' r='1.3'/><circle cx='258' cy='89' r='2.0'/><circle cx='397' cy='89' r='2.5'/><circle cx='9' cy='359' r='2.1'/><circle cx='254' cy='356' r='1.3'/><circle cx='309' cy='194' r='2.3'/><circle cx='323' cy='18' r='1.1'/><circle cx='138' cy='315' r='1.0'/><circle cx='780' cy='744' r='2.4'/><circle cx='806' cy='693' r='2.0'/><circle cx='707' cy='17' r='1.0'/><circle cx='199' cy='187' r='2.5'/><circle cx='580' cy='32' r='1.1'/><circle cx='137' cy='80' r='2.1'/><circle cx='824' cy='312' r='1.1'/><circle cx='822' cy='621' r='1.7'/><circle cx='868' cy='379' r='1.4'/><circle cx='60' cy='577' r='1.5'/><circle cx='431' cy='637' r='2.6'/><circle cx='733' cy='180' r='2.4'/><circle cx='125' cy='710' r='1.9'/><circle cx='479' cy='624' r='1.8'/><circle cx='787' cy='120' r='1.9'/><circle cx='520' cy='421' r='2.0'/><circle cx='619' cy='412' r='1.7'/><circle cx='265' cy='196' r='1.7'/><circle cx='110' cy='868' r='1.2'/><circle cx='559' cy='494' r='1.4'/><circle cx='289' cy='178' r='1.4'/><circle cx='358' cy='173' r='1.4'/></g></svg>") repeat,
    radial-gradient(1100px 620px at 82% -8%, rgba(231, 143, 115, 0.16), transparent 60%),
    radial-gradient(900px 700px at -10% 32%, rgba(0, 0, 68, 0.55), transparent 55%),
    radial-gradient(1000px 800px at 50% 118%, rgba(231, 143, 115, 0.08), transparent 60%);
  background-size: 900px 900px, auto, auto, auto;
}
/* subtle flour-grain film over everything */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.05; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--coral); color: var(--brand-navy);
  padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem;
  font-weight: 600; color: var(--coral); margin: 0 0 14px;
}
.eyebrow::before { content: "✳"; font-size: 1.05em; line-height: 0; }

/* ---------- artistic primitives ---------- */
.arch { border-radius: var(--arch); overflow: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }

/* handwritten script accent */
.script { font-family: var(--font-script); font-weight: 700; color: var(--coral); }

/* rotating bakery seal / stamp */
.seal {
  position: absolute; width: 132px; height: 132px; border-radius: 50%;
  background: var(--brand-navy); border: 1px solid var(--coral);
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.8);
}
.seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.seal text { font-family: "Inter", sans-serif; font-size: 13.5px; font-weight: 600; letter-spacing: 1.5px; fill: var(--blush); }
.seal__mark { color: var(--coral); font-size: 1.7rem; line-height: 0; }

/* sticker tag (handwritten) */
.sticker {
  position: absolute; z-index: 3; display: grid; place-items: center; text-align: center;
  font-family: var(--font-script); font-weight: 700; font-size: 1.35rem; line-height: 0.95;
  color: var(--brand-navy); background: var(--coral);
  width: 76px; height: 76px; border-radius: 50%;
  transform: rotate(-10deg); box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.6);
}

/* hand-drawn underline under a heading word */
.squiggle {
  position: absolute; left: 0; bottom: -0.32em; width: 100%; height: 0.34em;
  color: var(--coral); overflow: visible;
}
.js .squiggle path { stroke-dasharray: 340; stroke-dashoffset: 340; }
.js .reveal.in .squiggle path,
.js .hero__content .squiggle path { animation: draw 1s var(--ease) 0.5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* marquee ticker */
.marquee {
  overflow: hidden; background: var(--blush); color: var(--brand-navy);
  border-block: 1.5px solid var(--brand-navy);
  transform: rotate(-1.4deg) scale(1.03); margin: 46px 0; position: relative; z-index: 2;
}
.marquee__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 34s linear infinite; }
.marquee__track span {
  font-family: "Fraunces", serif; font-style: italic; font-weight: 600;
  font-size: clamp(1.3rem, 4vw, 2.3rem); padding: 12px 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--coral); --btn-fg: var(--brand-navy);
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn--primary { box-shadow: 0 10px 30px -10px rgba(231, 143, 115, 0.6); }
.btn--primary:hover { background: var(--coral-hi); transform: translateY(-2px); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 0.85rem; }
.btn__wa { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }
.svg-sprite { display: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(6, 6, 25, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  height: 62px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand__plaque { display: inline-flex; align-items: center; }
.brand__plaque img { height: 30px; width: auto; }
.footer__brand .brand__plaque img { height: 34px; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 9px 14px; border-radius: 999px; color: var(--muted);
  font-size: 0.92rem; font-weight: 500;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--coral); }
.nav__link--cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--coral); color: var(--brand-navy); font-weight: 600; margin-left: 6px;
}
.nav__link--cta .btn__wa { width: 16px; height: 16px; }
.nav__link--cta:hover { background: var(--coral-hi); color: var(--brand-navy); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero (editorial split) ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 34px) 0 20px; overflow: hidden; }
.hero__glow {
  position: absolute; width: 620px; height: 620px; right: -140px; top: -120px; z-index: 0;
  background: radial-gradient(circle, rgba(231, 143, 115, 0.28), transparent 62%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center;
}
.hero__content { animation: heroIn 0.9s var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero__title { font-size: clamp(3rem, 11vw, 5.4rem); font-weight: 600; letter-spacing: -0.02em; }
.hero__em { position: relative; display: inline-block; color: var(--coral); font-style: italic; }
.hero__script { font-family: var(--font-script); color: var(--blush); font-size: clamp(1.5rem, 5vw, 2rem); margin: 14px 0 0; transform: rotate(-2deg); }
.hero__text { font-size: clamp(1rem, 2.5vw, 1.15rem); color: var(--muted); margin: 22px 0 30px; max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 26px; font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.hero__trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: 0 0 auto; }

.hero__media { position: relative; justify-self: center; width: min(88vw, 440px); }
.hero__arch { margin: 0; aspect-ratio: 3 / 4; border: 1px solid var(--border); box-shadow: var(--shadow); animation: heroIn 1s var(--ease) 0.1s both; }
.hero__arch img { width: 100%; height: 100%; object-fit: cover; }
.hero__media .seal { left: -34px; bottom: -26px; }
.hero__media .sticker--fresh { top: -22px; right: 6px; }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section__head { max-width: 640px; margin-bottom: 48px; }
.section__title { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.section__lead { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

/* ---------- about ---------- */
.about__grid { display: grid; gap: 54px; align-items: center; }
.about__media { position: relative; width: min(88vw, 420px); justify-self: center; }
.about__arch { margin: 0; aspect-ratio: 4 / 5; border: 1px solid var(--border); box-shadow: var(--shadow); }
.about__arch img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: auto; }
.about__media .sticker--since { bottom: 40px; right: -16px; width: 84px; height: 84px; font-size: 1.25rem; transform: rotate(8deg); }
.about__seal { width: 108px; height: 108px; left: -30px; top: -26px; }
.about__seal text { font-size: 12px; }
.about__text p { color: var(--muted); margin: 0 0 16px; }
.about__stats {
  list-style: none; padding: 22px 0 0; margin: 28px 0 0; display: flex; gap: 30px; flex-wrap: wrap;
  border-top: 1px dashed var(--border);
}
.about__stats li { display: flex; flex-direction: column; }
.about__stats b { font-family: "Fraunces", serif; font-size: 2.1rem; color: var(--coral); line-height: 1; }
.about__stats span { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ---------- bestsellers carousel ---------- */
.bestsellers__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  max-width: none;
}
.bestsellers__intro { max-width: 640px; }
.carousel__nav { display: none; gap: 10px; flex: 0 0 auto; }
.carousel__btn {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: var(--bg-1); border: 1px solid var(--border); color: var(--text);
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.carousel__btn:hover { border-color: var(--coral); color: var(--coral); }
.carousel__btn[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }

.carousel__track {
  counter-reset: bcard;
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 0 24px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar { display: none; }

.bcard {
  flex: 0 0 min(80vw, 310px); scroll-snap-align: start;
  display: flex; flex-direction: column;
  counter-increment: bcard;
}
.bcard__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  background: var(--bg-1);
}
.bcard__media::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(to top, rgba(6, 6, 25, 0.82) 0%, rgba(6, 6, 25, 0.12) 42%, rgba(6, 6, 25, 0) 62%);
  pointer-events: none;
}
.bcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.bcard:hover .bcard__media img { transform: scale(1.06); }

/* order button — hover-reveals over the image on desktop */
.bcard__order {
  position: absolute; z-index: 2; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--blush); color: var(--brand-navy);
  font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.8);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), background 0.2s var(--ease);
}
.bcard__order .btn__wa { width: 15px; height: 15px; }
.bcard:hover .bcard__order,
.bcard__order:focus-visible { opacity: 1; transform: translateY(0); }
.bcard__order:hover { background: var(--coral); }

.bcard__body {
  padding: 16px 4px 4px; display: flex; flex-direction: column; gap: 6px;
}
.bcard__tag {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--coral); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.bcard__tag::before {
  content: counter(bcard, decimal-leading-zero);
  font-family: "Fraunces", serif; letter-spacing: 0; color: var(--muted); font-weight: 400;
}
.bcard__name { font-size: 1.22rem; font-weight: 600; line-height: 1.2; }

/* touch devices can't hover — keep the order button visible */
@media (hover: none) {
  .bcard__order { opacity: 1; transform: none; }
}

/* ---------- coffee ---------- */
.coffee { position: relative; }
.coffee__grid { display: grid; gap: 56px; align-items: center; }
.coffee__text .section__lead { max-width: 46ch; }
.coffee__tags {
  list-style: none; padding: 0; margin: 26px 0 30px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.coffee__tags li {
  padding: 7px 15px; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  color: var(--blush); background: var(--bg-1); border: 1px solid var(--border);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.coffee__tags li:hover { color: var(--coral); border-color: var(--coral); }

.coffee__media {
  position: relative; width: min(88vw, 460px); justify-self: center;
  padding: 20px 0 34px;
}
.coffee__arch { margin: 0; border: 1px solid var(--border); box-shadow: var(--shadow); }
.coffee__arch img { width: 100%; height: 100%; object-fit: cover; }
.coffee__arch--hot { width: 68%; aspect-ratio: 3 / 4; }
.coffee__arch--cold {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 3 / 4;
  border: 4px solid var(--bg-0);
}
.coffee__sticker {
  position: absolute; z-index: 2; top: 2px; right: 8%;
  width: 78px; height: 78px; font-size: 0.92rem; transform: rotate(-10deg);
}

/* ---------- reviews ---------- */
.reviews__grid { display: grid; gap: 20px; }
.review {
  position: relative; margin: 0; background: var(--bg-1); border: 1px solid var(--border);
  border-radius: 22px 22px 22px 4px; padding: 30px 26px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.review::before {
  content: "\201C"; position: absolute; top: 10px; right: 20px;
  font-family: "Fraunces", serif; font-weight: 700; font-size: 5.5rem; line-height: 1;
  color: var(--coral); opacity: 0.22;
}
.review:nth-child(odd) { transform: rotate(-1.2deg); }
.review:nth-child(even) { transform: rotate(1deg); }
.review:hover { transform: rotate(0deg) translateY(-4px); border-color: var(--coral); }
.review__stars { color: var(--coral); letter-spacing: 3px; margin-bottom: 12px; position: relative; }
.review__text { margin: 0 0 16px; color: var(--text); font-size: 1.02rem; position: relative; }
.review__author { color: var(--blush); font-style: normal; font-weight: 600; font-size: 0.9rem; font-family: var(--font-script); font-size: 1.35rem; }
.reviews__cta { margin-top: 32px; text-align: center; }

/* ---------- locations ---------- */
.loc-grid { display: grid; gap: 18px; }
.loc-card {
  position: relative; overflow: hidden;
  background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.loc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), transparent);
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.loc-card:hover {
  border-color: var(--coral); transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(231, 143, 115, 0.55);
}
.loc-card:hover::before { opacity: 1; }

.loc-card__icon {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px;
  border-radius: 14px; color: var(--coral);
  background: rgba(231, 143, 115, 0.1);
  border: 1px solid rgba(231, 143, 115, 0.28);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.loc-card__icon svg { width: 24px; height: 24px; }
.loc-card:hover .loc-card__icon { background: var(--coral); color: var(--bg-0); }

.loc-card__title { font-size: 1.35rem; margin-bottom: 10px; }
.loc-card address { font-style: normal; color: var(--muted); line-height: 1.7; }
.loc-card__hours {
  display: flex; align-items: center; gap: 8px;
  margin: 18px 0 0; padding-top: 16px;
  border-top: 1px dashed var(--border);
  color: var(--coral); font-size: 0.9rem; font-weight: 500;
}
.loc-card__hours svg { width: 16px; height: 16px; flex: 0 0 auto; }
.loc-card__actions { display: flex; gap: 10px; margin-top: 18px; }

/* ---------- contact ---------- */
.contact {
  background: var(--bg-1);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.contact__inner { text-align: center; max-width: 780px; }
.contact__script {
  font-family: var(--font-script); font-size: 1.7rem; line-height: 1.2;
  color: var(--coral); margin: 4px 0 0;
}

/* the chat: a preview of the message the button actually sends */
.chat { margin: 34px auto 0; max-width: 620px; }
.chat__bubble {
  position: relative; text-align: left; margin: 0;
  background: var(--blush); color: var(--brand-navy);
  border-radius: 18px 18px 4px 18px;
  padding: 16px 18px 12px;
  font-size: 1.02rem; line-height: 1.5;
  box-shadow: var(--shadow);
}
.chat__bubble::after {
  content: ""; position: absolute; right: -7px; bottom: 0; width: 14px; height: 14px;
  background: var(--blush);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.chat__meta {
  display: flex; align-items: center; justify-content: flex-end; gap: 5px;
  margin-top: 6px; font-size: 0.72rem; color: rgba(0, 0, 68, 0.55);
}
.chat__ticks { width: 17px; height: 11px; flex: 0 0 auto; }
.chat__cta { width: 100%; margin-top: 18px; }
.chat__hint { color: var(--muted); font-size: 0.85rem; margin: 12px 0 0; }

/* quieter fallbacks: call, email, instagram */
.contact__links {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; gap: 10px;
}
.contact__links li { display: grid; }
.contact__links a {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: 12px; row-gap: 1px; text-align: left;
  padding: 14px 16px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact__links a:hover { border-color: var(--coral); transform: translateY(-3px); }
.contact__links svg {
  grid-row: span 2; width: 20px; height: 20px; color: var(--coral); flex: 0 0 auto;
}
.contact__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--coral); }
.contact__value { font-weight: 600; word-break: break-word; }

/* ---------- footer ---------- */
.footer { background: var(--bg-1); padding-top: 70px; overflow: hidden; }
.footer__grid { display: grid; gap: 34px; grid-template-columns: 1fr; padding-bottom: 20px; }
.footer__wordmark {
  font-family: "Fraunces", serif; font-weight: 700; font-style: italic;
  font-size: clamp(3.5rem, 17vw, 13rem); line-height: 0.8; text-align: center;
  letter-spacing: -0.03em; margin: 10px 0 -0.14em; user-select: none;
  color: transparent; -webkit-text-stroke: 1px rgba(248, 209, 197, 0.28);
}
.footer__wordmark em { color: var(--coral); -webkit-text-stroke: 0; font-style: italic; }
.footer__brand p { color: var(--muted); margin: 16px 0 0; max-width: 30ch; }
.footer__col h4 { font-family: "Inter", sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--coral); margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; color: var(--muted); margin: 0 0 8px; font-size: 0.92rem; }
.footer__col a { transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--text); }

.footer__col--icons a,
.footer__col--icons p { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
.footer__col--icons svg {
  width: 16px; height: 16px; margin-top: 3px; flex: 0 0 auto;
  color: var(--coral); fill: currentColor;
}
.footer__col--icons a:hover svg { color: var(--coral-hi); }

.footer__note {
  color: var(--blush) !important; margin-top: 12px !important; font-weight: 500;
  padding-left: 25px;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 22px 20px; border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.85rem;
}
.footer__top { transition: color 0.2s var(--ease); }
.footer__top:hover { color: var(--coral); }

/* ---------- floating action button ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease);
}
.fab svg { width: 30px; height: 30px; fill: currentColor; }
.fab:hover { transform: scale(1.08); }

/* ---------- reveal animation (progressive enhancement — only hides when JS is on) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 700px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__links { grid-template-columns: repeat(3, 1fr); }
  .contact__links a {
    grid-template-columns: 1fr; justify-items: center; align-content: center;
    text-align: center; row-gap: 6px; padding: 20px 14px;
  }
  .contact__links .contact__value { font-size: 0.84rem; }
  .contact__links svg { grid-row: auto; }
  .chat__cta { width: auto; min-width: 280px; }
  .carousel__nav { display: flex; }
  .bcard { flex-basis: 300px; }
}

@media (min-width: 860px) {
  .hero { padding-top: calc(var(--header-h) + 46px); }
  .hero__grid { grid-template-columns: 1.02fr 0.98fr; gap: 40px; min-height: 78vh; }
  .hero__media { width: min(42vw, 470px); }
}

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .coffee__grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
  .coffee__media { justify-self: end; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; }
}

/* keep decorative overlaps inside narrow viewports */
@media (max-width: 560px) {
  .hero__media .seal { left: -8px; bottom: -14px; width: 104px; height: 104px; }
  .about__seal { left: -8px; width: 94px; height: 94px; }
  .about__media .sticker--since { right: -6px; }
  .seal text { font-size: 12px; }
}

/* mobile nav */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    background: var(--bg-2); padding: calc(var(--header-h) + 16px) 22px 30px;
    transform: translateX(100%); transition: transform 0.35s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.8); border-left: 1px solid var(--border);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { padding: 14px 12px; font-size: 1.05rem; border-radius: var(--radius-sm); }
  .nav__link--cta { margin: 12px 0 0; text-align: center; }
  body.nav-open { overflow: hidden; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .seal svg, .eyebrow::before, .hero__trust .dot { animation: none !important; }
  .js .squiggle path { stroke-dashoffset: 0 !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
