/* ==========================================================================
   Besprens Delight — Lucena City, Quezon
   Lightweight stylesheet. No frameworks. ~1 file, no render-blocking JS.
   Layout language follows a classic coffee-house one-pager:
   fixed nav > full-bleed slider > about > counters > menu > reviews >
   blog > faq > contact > footer.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Coffee-house browns */
  --coffee:        #592b1c;
  --coffee-mid:    #3d1c12;
  --coffee-dark:   #22100b;
  --coffee-black:  #170a06;

  /* Brand gold (from the pouch foil) */
  --gold:          #c99a3b;
  --gold-light:    #e8c874;
  --gold-pale:     #f3e2b8;
  --tan:           #e7bd91;

  /* Chili accent */
  --chili:         #b8391f;
  --chili-light:   #e2603f;

  /* Neutrals */
  --cream:         #f7f1e6;
  --cream-dim:     #e6d9c2;
  --paper:         #fffaf2;
  --ink:           #241a12;
  --ink-soft:      #5d4a37;

  --line:          rgba(201, 154, 59, .32);
  --line-soft:     rgba(89, 43, 28, .14);

  --shadow-sm:     0 6px 18px -8px rgba(23, 10, 6, .35);
  --shadow-md:     0 18px 40px -18px rgba(23, 10, 6, .45);
  --shadow-lg:     0 34px 70px -28px rgba(23, 10, 6, .6);

  --font-display:  'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body:     'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap:          1200px;
  --nav-h:         84px;
  --radius:        16px;
  --ease:          cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--coffee);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

:focus-visible {
  outline: 3px solid var(--chili-light);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--coffee-black); }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--dark { background: var(--coffee-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 999;
  background: var(--chili);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--chili);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(184, 57, 31, .8);
}
.btn--primary:hover { background: var(--chili-light); box-shadow: 0 20px 38px -12px rgba(184, 57, 31, .9); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--coffee-black);
  box-shadow: 0 14px 30px -14px rgba(201, 154, 59, .85);
}
.btn--gold:hover { box-shadow: 0 20px 40px -14px rgba(201, 154, 59, .95); }

.btn--ghost {
  border: 1.5px solid rgba(231, 189, 145, .55);
  color: var(--cream);
}
.btn--ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--coffee-black); }

.btn--outline {
  border: 1.5px solid var(--coffee);
  color: var(--coffee);
}
.btn--outline:hover { background: var(--coffee); color: var(--cream); }

.btn--sm { padding: 11px 22px; font-size: 11.5px; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              padding .35s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 10, 6, .72), rgba(23, 10, 6, 0));
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.site-header.is-stuck {
  background: rgba(23, 10, 6, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .7);
}
.site-header.is-stuck::before { opacity: 0; }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
  transition: height .35s var(--ease);
}
.site-header.is-stuck .nav-bar { height: 68px; }

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__seal {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-light), var(--gold) 55%, #a67d2c);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--coffee-black);
  box-shadow: 0 6px 16px -6px rgba(201, 154, 59, .8), inset 0 2px 6px rgba(255, 255, 255, .5);
}
.brand__text { line-height: 1.05; }
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .12em;
  color: var(--cream);
  text-transform: uppercase;
}
.brand__sub {
  display: block;
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 3px;
}

/* Desktop links */
.nav-links { display: none; align-items: center; gap: 6px; }
.nav-links a {
  position: relative;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 10px 14px;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { display: none; }

/* Hamburger */
.nav-toggle {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(231, 189, 145, .35);
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.nav-toggle:hover { background: rgba(201, 154, 59, .2); border-color: var(--gold); }
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), width .3s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle span:nth-child(2) { width: 14px; margin-left: auto; margin-right: 0; }
.nav-toggle:hover span:nth-child(2) { width: 20px; }

/* --------------------------------------------------------------------------
   6. Slide-in side menu
   -------------------------------------------------------------------------- */
.side-menu {
  position: fixed; inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.side-menu__scrim {
  position: absolute; inset: 0;
  background: rgba(23, 10, 6, .7);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.side-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(460px, 100%);
  background: linear-gradient(165deg, var(--coffee-mid), var(--coffee-black) 70%);
  border-left: 1px solid var(--line);
  padding: 32px 40px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.side-menu.is-open { visibility: visible; pointer-events: auto; }
.side-menu.is-open .side-menu__scrim { opacity: 1; }
.side-menu.is-open .side-menu__panel { transform: none; }
body.menu-open { overflow: hidden; }

.side-menu__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.side-menu__close {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(231, 189, 145, .35);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.side-menu__close:hover { background: var(--chili); transform: rotate(90deg); }

.side-nav { display: grid; gap: 2px; }
.side-nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
  color: var(--cream);
  padding: 9px 0;
  border-bottom: 1px solid rgba(231, 189, 145, .13);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.side-nav a span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--gold);
}
.side-nav a:hover { color: var(--gold-light); padding-left: 10px; }

.side-menu__foot { margin-top: auto; display: grid; gap: 18px; }
.side-contact { display: grid; gap: 6px; }
.side-contact a, .side-contact span {
  color: var(--cream-dim);
  font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
}
.side-contact a:hover { color: var(--gold-light); }
.side-contact .ic { color: var(--gold); font-size: 15px; width: 18px; text-align: center; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(231, 189, 145, .3);
  color: var(--cream-dim);
  transition: background-color .25s var(--ease), color .25s var(--ease),
              transform .25s var(--ease), border-color .25s var(--ease);
}
.social-row a:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--coffee-black); transform: translateY(-3px);
}
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.side-menu__legal { font-size: 12px; color: rgba(231, 189, 145, .55); }

/* --------------------------------------------------------------------------
   7. Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  isolation: isolate;
  background: var(--coffee-black);
  overflow: hidden;
}
.hero__slide {
  position: absolute; inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; position: relative; z-index: 2; }

/* Backdrop: darkened, scaled product photography + warm light pools */
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.14);
  filter: blur(7px) saturate(1.15) brightness(.42);
  transition: transform 9s linear;
}
.hero__slide.is-active .hero__bg img { transform: scale(1.24); }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 12% 0%,  rgba(201, 154, 59, .34), transparent 60%),
    radial-gradient(ellipse 60% 55% at 92% 20%, rgba(184, 57, 31, .30),  transparent 58%),
    linear-gradient(180deg, rgba(23, 10, 6, .74) 0%, rgba(23, 10, 6, .5) 45%, rgba(23, 10, 6, .92) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 120px;
  width: 100%;
}

.hero__copy { max-width: 620px; }
.hero__slide--center .hero__copy { margin-inline: auto; text-align: center; }
.hero__slide--center .hero__ctas,
.hero__slide--center .hero__meta { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line);
  background: rgba(23, 10, 6, .4);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--chili-light);
  box-shadow: 0 0 0 3px rgba(226, 96, 63, .28);
}

.hero h1,
.hero .h1-like {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 5.1rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .5);
}
.hero h1 em,
.hero .h1-like em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
}
.hero__lead {
  color: var(--cream-dim);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  margin: 22px 0 30px;
  max-width: 52ch;
}
.hero__slide--center .hero__lead { margin-inline: auto; }
.hero__lead strong { color: var(--gold-light); font-weight: 600; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 13.5px;
  color: var(--cream-dim);
}
.hero__meta li { display: flex; align-items: center; gap: 8px; }
.hero__meta .ic { color: var(--gold-light); font-size: 15px; line-height: 1; }

/* Floating pouch art */
.hero__art { display: none; position: relative; justify-self: center; }
.hero__art img {
  width: min(370px, 34vw);
  filter: drop-shadow(0 48px 60px rgba(0, 0, 0, .75));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50%      { transform: translateY(-20px) rotate(1.5deg); }
}
.hero__badge {
  position: absolute;
  top: 4%; right: -10px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  border: 3px solid var(--coffee-black);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--coffee-black);
  transform: rotate(13deg);
  box-shadow: var(--shadow-md);
}
.hero__badge small { display: block; font-size: 9px; letter-spacing: .18em; opacity: .75; }

/* Slider controls */
.hero__dots {
  position: absolute;
  left: 50%; bottom: 92px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 12px;
}
.hero__dots button {
  width: 34px; height: 4px;
  border-radius: 4px;
  background: rgba(247, 241, 230, .3);
  transition: background-color .3s var(--ease), width .3s var(--ease);
}
.hero__dots button[aria-selected="true"] { background: var(--gold-light); width: 54px; }

.hero__social {
  position: absolute;
  left: 30px; top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.hero__social::after {
  content: "";
  width: 1px; height: 60px;
  background: linear-gradient(var(--gold), transparent);
  margin: 8px auto 0;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(231, 189, 145, .8);
}
.hero__scroll i {
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: drop 1.9s ease-in-out infinite;
}
@keyframes drop {
  0%, 100% { transform: scaleY(.35); opacity: .4; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1;  transform-origin: top; }
}

/* --------------------------------------------------------------------------
   8. Marquee strip
   -------------------------------------------------------------------------- */
.marquee {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-block: 2px solid var(--coffee-black);
  overflow: hidden;
  padding: 13px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide-left 34s linear infinite;
}
.marquee__track > span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coffee-black);
  white-space: nowrap;
}
.marquee__track b { color: var(--chili); font-size: 11px; }
@keyframes slide-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. Section heading pattern
   -------------------------------------------------------------------------- */
.head {
  max-width: 700px;
  margin: 0 auto 62px;
  text-align: center;
}
.head--left { margin-inline: 0; text-align: left; }
.ornament { display: block; margin: 0 auto 20px; width: 132px; color: var(--gold); }
.head--left .ornament { margin-inline: 0; }
.head__sub {
  display: block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--chili);
  margin-bottom: 14px;
}
.section--dark .head__sub { color: var(--gold-light); }
.head__title {
  font-size: clamp(1.9rem, 4.4vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -.022em;
}
.head__text {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16.5px;
}
.section--dark .head__text { color: var(--cream-dim); }

/* --------------------------------------------------------------------------
   10. About — features left / art / features right
   -------------------------------------------------------------------------- */
.about { background: var(--paper); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  align-items: center;
}

.feat-col { display: grid; gap: 34px; }
.feature { display: grid; grid-template-columns: 52px 1fr; gap: 18px; }
.feature__ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(201, 154, 59, .2), rgba(184, 57, 31, .12));
  border: 1px solid var(--line);
  color: var(--coffee);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.feature__ic svg { width: 25px; height: 25px; }
.feature:hover .feature__ic {
  background: var(--coffee); color: var(--gold-light); transform: translateY(-4px) rotate(-6deg);
}
.feature h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 7px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.72; }

/* Centre seal */
.about__art { display: grid; place-items: center; }
.seal {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, var(--gold-light), var(--gold) 52%, #9d7529 100%);
  display: grid; place-items: center;
  text-align: center;
  box-shadow: 0 34px 70px -26px rgba(201, 154, 59, .7), inset 0 5px 20px rgba(255, 255, 255, .4);
  animation: spin-slow 42s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.seal::before {
  content: "";
  position: absolute; inset: 15px;
  border: 2px dashed rgba(23, 10, 6, .32);
  border-radius: 50%;
}
.seal__text { animation: spin-slow 42s linear infinite reverse; color: var(--coffee-black); padding: 20px; }
.seal__top, .seal__bot {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .72;
}
.seal__mid {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  margin: 8px 0;
}

/* --------------------------------------------------------------------------
   11. Counters band
   -------------------------------------------------------------------------- */
.counters {
  position: relative;
  padding: 84px 0;
  background: var(--coffee-black);
  isolation: isolate;
  overflow: hidden;
}
.counters::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 80% at 18% 15%, rgba(201, 154, 59, .3), transparent 62%),
    radial-gradient(ellipse 50% 70% at 84% 85%, rgba(184, 57, 31, .28), transparent 58%),
    repeating-linear-gradient(135deg, rgba(231, 189, 145, .045) 0 2px, transparent 2px 12px);
}
.counters__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.counter {
  text-align: center;
  padding: 26px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(231, 189, 145, .16);
  background: rgba(23, 10, 6, .4);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background-color .3s var(--ease);
}
.counter:hover {
  border-color: var(--gold); transform: translateY(-6px);
  background: rgba(89, 43, 28, .4);
}
.counter__ic { color: var(--gold-light); margin: 0 auto 12px; width: 34px; height: 34px; }
.counter__ic svg { width: 100%; height: 100%; }
.counter__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
}
.counter__num .pre, .counter__num .suf { color: var(--gold-light); }
.counter__label {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* --------------------------------------------------------------------------
   12. Menu
   -------------------------------------------------------------------------- */
.menu { background: var(--coffee-dark); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.dish {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(165deg, #2c170f, #170a06);
  border: 1px solid rgba(201, 154, 59, .26);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.dish:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.dish__media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(201, 154, 59, .16), rgba(23, 10, 6, .1));
}
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .7s var(--ease);
}
.dish:hover .dish__media img { transform: scale(1.08); }

/* Variant tiles without a photo get a crisp pattern + chili glyph */
.dish__pattern {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(226, 96, 63, .22), transparent 62%),
    repeating-linear-gradient(135deg, rgba(226, 96, 63, .14) 0 12px, rgba(226, 96, 63, .03) 12px 26px);
}
.dish__pattern svg { width: 74px; height: 74px; color: var(--chili-light); }

.dish__tag {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--coffee-black);
  box-shadow: var(--shadow-sm);
}
.dish__tag--spicy {
  left: auto; right: 12px;
  background: var(--chili);
  color: #fff;
}
.dish__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dish__body h3 { color: var(--cream); font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.dish__variant {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.dish__desc { margin-top: 12px; font-size: 14px; color: rgba(231, 189, 145, .82); line-height: 1.65; }
.dish__foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px dashed rgba(201, 154, 59, .28);
}
.price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -.02em;
  line-height: 1;
}
.price small { font-size: 11px; font-weight: 500; letter-spacing: .1em; color: rgba(231, 189, 145, .6); display: block; margin-top: 4px; }
.dish__link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream);
  padding: 10px 16px;
  border: 1px solid rgba(247, 241, 230, .26);
  border-radius: 100px;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.dish__link:hover { background: var(--chili); border-color: var(--chili); color: #fff; }

.menu-note {
  margin-top: 40px;
  text-align: center;
  color: var(--cream-dim);
  font-size: 14.5px;
}
.menu-note strong { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   12b. Order steps — Paano mag-order
   -------------------------------------------------------------------------- */
.paano { background: var(--paper); position: relative; }
.paano::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 154, 59, .09), transparent 46%),
    radial-gradient(circle at 88% 84%, rgba(184, 57, 31, .06), transparent 44%);
  pointer-events: none;
}
.paano > .wrap { position: relative; }

.steps {
  list-style: none;
  display: grid;
  gap: 22px;
  counter-reset: none;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.step__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  color: var(--coffee-black);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 22px -10px rgba(201, 154, 59, .8);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--coffee-dark);
  letter-spacing: -.012em;
}
.step p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.76;
}

/* Connector line between steps on wide screens */
@media (min-width: 860px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -24px;
    width: 26px;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 5px, transparent 5px 10px);
  }
}

/* --------------------------------------------------------------------------
   13. Delivery banner
   -------------------------------------------------------------------------- */
.delivery {
  background: linear-gradient(135deg, var(--coffee), var(--coffee-mid) 65%, var(--coffee-black));
  padding: 62px 0;
  position: relative;
  overflow: hidden;
}
.delivery::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 59, .28), transparent 68%);
}
.delivery__inner {
  position: relative; z-index: 2;
  display: grid;
  gap: 26px;
  align-items: center;
}
.delivery__ic {
  width: 68px; height: 68px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(201, 154, 59, .18);
  border: 1px solid var(--line);
  color: var(--gold-light);
}
.delivery__ic svg { width: 34px; height: 34px; }
.delivery h2 { color: var(--cream); font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 800; }
.delivery p { color: var(--cream-dim); margin-top: 12px; font-size: 15.5px; max-width: 58ch; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500;
  color: var(--cream);
  background: rgba(23, 10, 6, .45);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 100px;
}
.pill .ic { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   14. Reviews
   -------------------------------------------------------------------------- */
.reviews { background: var(--paper); overflow: hidden; }
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.rating-card {
  border-radius: 22px;
  padding: 44px 34px;
  text-align: center;
  background: linear-gradient(165deg, var(--coffee), var(--coffee-black));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.rating-card__score {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 5.4rem);
  font-weight: 800;
  line-height: .9;
  color: var(--gold-light);
  letter-spacing: -.04em;
}
.stars { display: flex; justify-content: center; gap: 4px; margin: 14px 0 10px; color: var(--gold-light); }
.stars svg { width: 20px; height: 20px; fill: currentColor; }
.rating-card p {
  color: var(--cream-dim);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}
.rating-card__divider { height: 1px; background: var(--line); margin: 26px 0; }
.rating-card__note { font-family: var(--font-body); font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 400; line-height: 1.7; }

/* Testimonial carousel */
.quotes { position: relative; }
.quotes__viewport { overflow: hidden; }
.quotes__track {
  display: flex;
  transition: transform .6s var(--ease);
}
.quote {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px;
}
.quote__card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 38px 32px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.quote__mark {
  position: absolute;
  top: 20px; right: 26px;
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
  color: rgba(201, 154, 59, .3);
}
.quote .stars { justify-content: flex-start; margin: 0 0 16px; color: var(--gold); }
.quote .stars svg { width: 17px; height: 17px; }
.quote__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--coffee-mid);
  font-style: italic;
  position: relative;
  z-index: 2;
}
.quote__who { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.quote__avatar {
  width: 48px; height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--coffee), var(--coffee-black));
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
}
.quote__name { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--coffee); }
.quote__src { font-size: 12px; color: var(--ink-soft); letter-spacing: .06em; }

.quotes__nav { display: flex; align-items: center; gap: 10px; margin-top: 26px; }
.quotes__nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--coffee);
  display: grid; place-items: center;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.quotes__nav button:hover { background: var(--coffee); color: var(--gold-light); border-color: var(--coffee); }
.quotes__nav svg { width: 17px; height: 17px; }
.quotes__count {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   15. Blog
   -------------------------------------------------------------------------- */
.blog-split {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.blog-split__copy {
  background: linear-gradient(160deg, var(--coffee), var(--coffee-black));
  padding: 74px 32px;
  display: grid;
  align-content: center;
}
.blog-split__copy .wrap-inner { max-width: 520px; margin-left: auto; width: 100%; }
.blog-split__art {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--coffee-mid);
}
.blog-split__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(.78) saturate(1.1);
  transition: transform 1.1s var(--ease);
}
.blog-split__art:hover img { transform: scale(1.06); }
.blog-split__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23, 10, 6, .85), transparent 55%);
}

.posts { background: var(--cream); }
.post-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.post {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.post:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--line); }
.post__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(201, 154, 59, .16);
  color: var(--coffee);
  border: 1px solid var(--line);
}
.chip--chili { background: rgba(184, 57, 31, .12); color: var(--chili); border-color: rgba(184, 57, 31, .3); }
.post h3 { font-size: 19.5px; font-weight: 700; line-height: 1.32; }
.post h3 a:hover { color: var(--chili); }
.post p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.72; }
.post__more {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chili);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s var(--ease);
}
.post:hover .post__more { gap: 14px; }

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq { background: var(--paper); }
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item[open] { border-color: var(--line); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--coffee);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--chili); }
.faq__q i {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--coffee);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-style: normal;
  font-size: 17px;
  line-height: 1;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.faq__item[open] .faq__q i { transform: rotate(45deg); background: var(--chili); color: #fff; }
.faq__a { padding: 0 24px 22px; font-size: 15px; color: var(--ink-soft); line-height: 1.78; }
.faq__a a { color: var(--chili); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   17. Contact / order builder
   -------------------------------------------------------------------------- */
.contact { background: var(--coffee-dark); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.info-card {
  background: linear-gradient(165deg, var(--coffee-mid), var(--coffee-black));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
}
.info-row { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 15px 0; }
.info-row + .info-row { border-top: 1px solid rgba(231, 189, 145, .12); }
.info-row__ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201, 154, 59, .16);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--gold-light);
}
.info-row__ic svg { width: 20px; height: 20px; }
.info-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.info-row span, .info-row a { color: var(--cream-dim); font-size: 14.5px; line-height: 1.6; }
.info-row a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

.map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--coffee-black);
  aspect-ratio: 16 / 11;
  margin-top: 24px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.85) contrast(1.05); }

/* Order form */
.order-card {
  background: linear-gradient(165deg, #2c170f, var(--coffee-black));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px 30px;
  box-shadow: var(--shadow-lg);
}
.order-card > .head { margin-bottom: 28px; }
.order-card .head__title { font-size: clamp(1.5rem, 3.6vw, 2rem); color: var(--cream); }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  background: rgba(23, 10, 6, .6);
  border: 1px solid rgba(231, 189, 145, .22);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(231, 189, 145, .45); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(89, 43, 28, .45);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8c874' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}
.field select option { background: var(--coffee-black); color: var(--cream); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.order-preview {
  margin: 20px 0;
  border: 1px dashed rgba(201, 154, 59, .4);
  border-radius: 12px;
  background: rgba(23, 10, 6, .5);
  padding: 16px 18px;
}
.order-preview__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.copy-btn {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--cream-dim);
  border: 1px solid rgba(231, 189, 145, .28);
  border-radius: 100px;
  padding: 4px 12px;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.copy-btn:hover { background: var(--gold); color: var(--coffee-black); border-color: var(--gold); }
.order-preview pre {
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--cream-dim);
  white-space: pre-wrap;
  word-break: break-word;
}
.order-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(201, 154, 59, .14);
  border: 1px solid var(--line);
}
.order-total span {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light);
}
.order-total b {
  font-family: var(--font-display);
  font-size: 27px; font-weight: 800;
  color: #fff; letter-spacing: -.02em;
}
.order-alt {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: rgba(231, 189, 145, .7);
}
.order-alt a { color: var(--gold-light); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--coffee-black);
  border-top: 1px solid rgba(201, 154, 59, .2);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201, 154, 59, .14);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col p, .footer-col li, .footer-col address {
  color: var(--cream-dim);
  font-size: 14.5px;
  font-style: normal;
  line-height: 1.8;
}
.footer-col ul { display: grid; gap: 8px; }
.footer-col a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.footer-brand { display: grid; gap: 16px; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-social { margin-top: 6px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(231, 189, 145, .55);
}
.footer-bottom .glory {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 11px;
}

/* --------------------------------------------------------------------------
   19. Sticky CTA + back to top
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(23, 10, 6, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
}
.sticky-cta .btn { flex: 1; padding: 14px 18px; }
.sticky-cta__tel {
  flex: 0 0 52px;
  width: 52px;
  display: grid; place-items: center;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--gold-light);
}
.sticky-cta__tel svg { width: 21px; height: 21px; }

.to-top {
  position: fixed;
  right: 20px; bottom: 84px;
  z-index: 80;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--coffee);
  color: var(--gold-light);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s,
              background-color .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--chili); color: #fff; }
.to-top svg { width: 19px; height: 19px; }

/* --------------------------------------------------------------------------
   20. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

/* --------------------------------------------------------------------------
   21. Breakpoints
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .counters__grid { gap: 24px; }
  .delivery__inner { grid-template-columns: auto 1fr; column-gap: 30px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__social { display: flex; }
}

@media (min-width: 860px) {
  .section { padding: 112px 0; }
  .hero__inner { grid-template-columns: 1.06fr .94fr; padding-bottom: 140px; }
  .hero__art { display: block; }
  .hero__slide--center .hero__inner { grid-template-columns: 1fr; }
  .hero__slide--reverse .hero__copy { order: 2; }
  .hero__slide--reverse .hero__art { order: 1; }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 48px; }
  .counters__grid { grid-template-columns: repeat(4, 1fr); }
  .reviews__grid { grid-template-columns: .82fr 1.18fr; gap: 56px; }
  .blog-split { grid-template-columns: 1fr 1fr; }
  .blog-split__copy { padding: 96px 48px; }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1.08fr .92fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
  .sticky-cta { display: none; }
  .to-top { bottom: 24px; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .about__grid { grid-template-columns: 1fr 1.02fr 1fr; gap: 40px; }
  .about__art { order: 2; }
  .feat-col:first-child { order: 1; text-align: right; }
  .feat-col:first-child .feature { grid-template-columns: 1fr 52px; }
  .feat-col:first-child .feature__ic { order: 2; }
  .feat-col:last-child { order: 3; }
}

@media (min-width: 1200px) {
  .menu-grid { gap: 26px; }
}

/* --------------------------------------------------------------------------
   22. Blog article pages
   -------------------------------------------------------------------------- */
.article-hero {
  position: relative;
  padding: calc(var(--nav-h) + 62px) 0 64px;
  background: linear-gradient(150deg, var(--coffee-black), var(--coffee-mid) 55%, var(--coffee));
  overflow: hidden;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 154, 59, .22), transparent 52%),
    radial-gradient(circle at 8% 92%, rgba(184, 57, 31, .18), transparent 48%);
  pointer-events: none;
}
.article-hero .wrap { position: relative; max-width: 860px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.back-link:hover { color: #fff; }
.back-link svg { width: 15px; height: 15px; }

.article-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.022em;
  margin-top: 16px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article { background: var(--paper); padding: 64px 0 88px; }
.article .wrap { max-width: 780px; }

.prose > * + * { margin-top: 22px; }
.prose p, .prose li {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.prose strong { color: var(--coffee-dark); font-weight: 600; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.72rem);
  font-weight: 800;
  color: var(--coffee-dark);
  letter-spacing: -.018em;
  margin-top: 46px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coffee);
  margin-top: 32px;
}
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 10px; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  transform: rotate(45deg);
}
.prose ol { list-style: decimal; }
.prose ol li::marker { color: var(--gold); font-weight: 700; }
.prose a { color: var(--chili); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--coffee); }

.prose blockquote {
  margin: 38px 0;
  padding: 26px 28px;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--coffee-dark);
  line-height: 1.6;
}

.prose figure { margin: 38px 0; }
.prose img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.prose figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  text-align: center;
}

.article-cta {
  margin-top: 56px;
  padding: 38px 30px;
  text-align: center;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(140deg, var(--coffee), var(--coffee-black));
  box-shadow: var(--shadow-md);
}
.article-cta h2 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  border: 0;
  margin: 0;
  padding: 0;
}
.article-cta p { color: var(--cream-dim); margin: 12px auto 24px; max-width: 48ch; font-size: 15.5px; }

.article-more { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--line-soft); }
.article-more h2 {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--coffee-dark);
  margin-bottom: 18px;
  border: 0; padding: 0;
}
.article-more ul { list-style: none; display: grid; gap: 12px; padding: 0; }
.article-more a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--coffee);
}
.article-more a:hover { color: var(--chili); }
.article-more svg { width: 14px; height: 14px; flex: none; color: var(--gold); }

/* --------------------------------------------------------------------------
   23. Motion & print preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .side-menu, .sticky-cta, .to-top, .hero__dots,
  .hero__social, .hero__scroll, .marquee, .map-frame { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .section--dark, .menu, .contact, .counters, .site-footer { background: #fff !important; }
  * { color: #000 !important; box-shadow: none !important; }
}
