/* ============================================================================
   Leslie's Bakery & Antojitos - preview build by NH Media Web

   A Guatemalan panaderia, so the page is built out of a panaderia's own
   colours: cacao and coffee for the dark grounds, masa and flour for the
   light ones, jade for the accent that says Guatemala, honey for the crust,
   and sugar rose kept back for the cake line alone. The house ornament is a
   warp stripe drawn like the threads of a jaspe weave.

   Bilingual, Spanish leading. Every heading is a Spanish line with an
   English line set beneath it in the body face; every lede is a Spanish
   paragraph with an English paragraph behind a jade hairline. One system,
   two languages, no toggle and no JavaScript involved.
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-latin-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree-latin-var.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  /* dark grounds */
  --noche:   #22120A;
  --noche-2: #2C1810;
  --noche-3: #180C05;
  --cacao:   #3B2113;

  /* cards on dark */
  --card-d:  #2F2017;
  --card-d2: #382519;
  --card-jade: #123F35;

  /* light grounds */
  --masa:   #FDF5E7;
  --masa-2: #F7E9D2;
  --masa-3: #F2DFC0;
  --white:  #FFFFFF;

  /* ink on light */
  --ink:   #2A1508;
  --ink-2: #5A3A26;
  --ink-3: #75563F;

  /* cream on dark */
  --crema:   #FCF4E6;
  --crema-2: #DFCBB4;
  --crema-3: #BFA78C;

  /* jade, the Guatemalan note */
  --jade:    #0F7A63;
  --jade-dk: #0A5748;
  --jade-lt: #4ECBAC;

  /* honey, the crust */
  --miel:    #E39B27;
  --miel-lt: #FFC65C;
  --miel-dk: #7C4B02;

  /* sugar rose, held back for the cakes */
  --rosa:    #D9557E;
  --rosa-dk: #A82E55;
  --rosa-lt: #FFA3C0;

  --ff-d: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-b: "Figtree", "Segoe UI", system-ui, sans-serif;

  --shell: 1200px;
  --pad: clamp(20px, 5vw, 48px);

  --warp: repeating-linear-gradient(90deg,
    var(--jade) 0 9px, transparent 9px 13px,
    var(--miel) 13px 18px, transparent 18px 21px,
    var(--rosa) 21px 24px, transparent 24px 31px,
    var(--jade-lt) 31px 34px, transparent 34px 40px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--noche);
}

body {
  margin: 0;
  background: var(--masa);
  color: var(--ink);
  font-family: var(--ff-b);
  font-size: 17.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 900px) { body { font-size: 18px; } }

img { max-width: 100%; display: block; }
a { color: inherit; }

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  background: var(--miel); color: var(--ink);
  padding: 12px 20px; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

:focus-visible { outline: 3px solid var(--jade); outline-offset: 3px; border-radius: 2px; }
.pbar :focus-visible, .mast :focus-visible, .hero :focus-visible, .counter :focus-visible,
.kitchen :focus-visible, .words :focus-visible, .preview :focus-visible, .foot :focus-visible {
  outline-color: var(--miel);
}

/* -------------------------------------------------- the bilingual apparatus */

.h2 {
  font-family: var(--ff-d);
  font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700;
  font-size: clamp(2rem, 4.9vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0 0 .28em;
  color: var(--ink);
  text-wrap: balance;
}
.h2-d { color: var(--crema); }

/* The English line under every Spanish heading. Body face on purpose: the
   two languages are told apart by type, not by size alone. */
.h2-en {
  margin: 0 0 .9em;
  font-size: clamp(.95rem, 1.7vw, 1.12rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .01em;
  color: var(--ink-2);
}
.h2-en-d { color: var(--crema-2); }

.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-b);
  font-weight: 800; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--jade-dk);
  margin: 0 0 16px;
}
.label::before {
  content: ""; width: 40px; height: 4px; border-radius: 1px;
  background: var(--warp); flex: none;
}
.label-d { color: var(--jade-lt); }
.label .en {
  font-weight: 600; letter-spacing: .13em;
  color: var(--ink-3);
  border-left: 1px solid currentColor; padding-left: 11px; margin-left: -3px;
}
.label-d .en { color: var(--crema-3); }

.lede { font-size: 1.1rem; color: var(--ink-2); margin: 0 0 .5em; max-width: 48ch; }
.lede-d { color: var(--crema-2); }

/* The English paragraph rides behind a jade hairline, always. */
.en-p {
  margin: 0 0 1.2em;
  max-width: 48ch;
  font-size: .98rem; line-height: 1.6;
  color: var(--ink-3);
  border-left: 2px solid var(--jade);
  padding-left: 14px;
}
.en-p-d { color: var(--crema-3); border-left-color: var(--jade-lt); }

.stars {
  margin: 0 0 10px; font-size: 1rem; letter-spacing: .2em;
  color: var(--miel-dk);
  font-family: "Segoe UI Symbol", "Apple Color Emoji", sans-serif;
}
.stars-d { color: var(--miel); }

.q-src { display: block; font-size: .8rem; color: var(--ink-3); font-weight: 500; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  text-decoration: none; text-align: center;
  padding: 11px 24px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .16s ease, background-color .16s ease, color .16s ease;
}
.btn-es {
  font-family: var(--ff-d);
  font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.02rem; line-height: 1.25;
  letter-spacing: -.005em;
}
.btn-en {
  font-family: var(--ff-b);
  font-weight: 600; font-size: .66rem; line-height: 1.3;
  letter-spacing: .15em; text-transform: uppercase;
  opacity: .78;
}
.btn-lg { padding: 14px 30px; }
.btn-lg .btn-es { font-size: 1.16rem; }
.btn:hover { transform: translateY(-2px); }

.btn-jade { background: var(--jade); color: var(--crema); }
.btn-jade:hover { background: var(--jade-dk); }
.btn-miel { background: var(--miel); color: var(--noche); }
.btn-miel:hover { background: var(--miel-lt); }
.btn-rosa { background: var(--rosa-dk); color: var(--crema); }
.btn-rosa:hover { background: #8E2447; }
.btn-ghost { border-color: var(--crema-3); color: var(--crema); }
.btn-ghost:hover { background: var(--crema); color: var(--noche); }
.btn-line { border-color: var(--jade); color: var(--jade-dk); }
.btn-line:hover { background: var(--jade); color: var(--crema); }

/* ------------------------------------------------------------- decoration */

.warp { height: 5px; background: var(--warp); }

.dots {
  background-image: radial-gradient(rgba(252, 244, 230, .07) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ------------------------------------------------------- preview banner */

.pbar { background: var(--card-jade); color: var(--crema-2); font-size: .86rem; }
.pbar-in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 8px 22px; padding-block: 10px;
}
.pbar-txt { margin: 0; max-width: 66ch; line-height: 1.45; color: var(--crema); }
.pbar-txt .en { display: block; color: var(--crema-2); }
.pbar-acts { margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.pbar-btn {
  font-family: var(--ff-b); font-weight: 700; font-size: .82rem;
  background: var(--miel); color: var(--noche);
  padding: 7px 16px; border-radius: 999px; text-decoration: none;
}
.pbar-btn:hover { background: var(--miel-lt); }
.pbar-mail {
  color: var(--miel-lt); text-decoration: underline; text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
/* Both actions carry two languages, stacked the same way every other pair on
   the page is stacked. Spanish over English, no slash to strand on its own
   line when the strip wraps. */
.pbar-btn span, .pbar-mail span {
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; opacity: .8;
}
@media (max-width: 760px) {
  .pbar-acts { flex-direction: column; align-items: flex-start; gap: 9px; }
  .pbar-btn, .pbar-mail { max-width: 100%; }
}

/* ---------------------------------------------------------------- masthead */

.mast {
  position: sticky; top: 0; z-index: 40;
  background: var(--noche-3);
  border-bottom: 1px solid rgba(252, 244, 230, .10);
}
.mast-in { display: flex; align-items: center; gap: 18px; padding-block: 11px; }

.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand-mark { border-radius: 13px; flex: none; }
.brand-txt { display: block; }
.brand-name {
  display: block; white-space: nowrap;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.22rem; line-height: 1.12;
  letter-spacing: -.018em; color: var(--crema);
}
.brand-sub {
  display: block; white-space: nowrap;
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--crema-3); font-weight: 700; margin-top: 3px;
}

.nav { display: flex; gap: 24px; }
.nav a {
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 600; font-size: 1rem;
  color: var(--crema); text-decoration: none; padding: 6px 0;
  border-bottom: 2px solid transparent;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.nav .en {
  font-family: var(--ff-b); font-weight: 600; font-size: .64rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--crema-3);
  border-left: 1px solid var(--crema-3); padding-left: 8px;
}
.nav a:hover { color: var(--miel); border-bottom-color: var(--miel); }
.nav a:hover .en { color: var(--miel); border-left-color: var(--miel); }

.mast-cta { white-space: nowrap; padding: 8px 20px; }
.mast-cta .btn-es { font-size: .95rem; }

.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: var(--crema); margin: 5px 0; border-radius: 2px; }

@media (max-width: 1100px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; background: var(--noche-2);
    border-bottom: 1px solid rgba(252, 244, 230, .12); padding: 6px var(--pad) 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(252, 244, 230, .08); }
  .burger { display: block; order: 3; }
  .mast-in { position: relative; }
}
@media (max-width: 700px) {
  .mast-cta { display: none; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.12rem; }
}

/* -------------------------------------------------------------------- hero */

.hero {
  background: var(--noche);
  background-image: radial-gradient(rgba(252, 244, 230, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--crema);
  padding-block: clamp(42px, 5.5vw, 74px) clamp(50px, 6vw, 82px);
}
.hero-in {
  display: grid; gap: clamp(34px, 4.5vw, 58px);
  grid-template-columns: 1.02fr .98fr; align-items: center;
}
@media (max-width: 920px) { .hero-in { grid-template-columns: 1fr; } }

.hero-eyebrow {
  margin: 0 0 20px;
  font-family: var(--ff-b); font-weight: 800; font-size: .78rem;
  letter-spacing: .19em; text-transform: uppercase; color: var(--miel);
  line-height: 1.6;
}
.hero-eyebrow .en {
  display: block; color: var(--crema-3); font-weight: 600; letter-spacing: .15em;
}

.hero-h {
  font-family: var(--ff-d); font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 800;
  font-size: clamp(2.5rem, 5.6vw, 3.8rem);
  line-height: 1.02; letter-spacing: -.028em;
  margin: 0 0 12px; color: var(--crema);
  text-wrap: balance;
}
.hero-h-en {
  margin: 0 0 24px;
  font-size: clamp(1.02rem, 2vw, 1.24rem); font-weight: 500;
  color: var(--crema-2); line-height: 1.35; max-width: 34ch;
}

.hero-lede { font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 1.55; color: var(--crema); margin: 0 0 .6em; max-width: 34ch; }
.hero-lede-en { max-width: 34ch; margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }

/* photo frames */
.frame {
  position: relative; border-radius: 18px; overflow: hidden;
  background: var(--card-d);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .36);
}
.frame img { width: 100%; height: auto; }

.hero-fig { margin: 0; }
.hero-shot { position: relative; isolation: isolate; }
.hero-shot .frame { border: 3px solid var(--miel); position: relative; z-index: 1; }
.hero-shot::before {
  content: ""; position: absolute; inset: -14px 14px 14px -14px;
  border: 3px solid var(--jade); border-radius: 18px; z-index: 0;
}
@media (max-width: 470px) { .hero-shot::before { display: none; } }

.cap { font-size: .84rem; color: var(--ink-3); margin: 13px 2px 0; line-height: 1.5; max-width: 60ch; }
.cap-d { color: var(--crema-3); }
.cap-en { display: block; }
.cap-src { display: block; margin-top: 2px; }
.cap-note { display: inline; }

/* ------------------------------------------------------------- the two shops */

.shops { background: var(--masa); padding-block: clamp(54px, 7vw, 92px); }
.shops-head { max-width: 62ch; margin-bottom: 34px; }

.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 30px); }
@media (max-width: 880px) { .shop-grid { grid-template-columns: 1fr; } }

.shop {
  background: var(--white);
  border: 1px solid rgba(42, 21, 8, .13);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.shop-warp { height: 6px; background: var(--warp); }
.shop-in { padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; flex: 1; }

.shop-city {
  margin: 0 0 4px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.5rem); line-height: 1;
  letter-spacing: -.025em; color: var(--ink);
}
.shop-kind {
  margin: 0 0 18px; font-size: .74rem; font-weight: 800;
  letter-spacing: .17em; text-transform: uppercase; color: var(--jade-dk);
}
.shop-addr { margin: 0 0 4px; font-size: 1.04rem; font-weight: 600; color: var(--ink); }
.shop-note { margin: 0 0 16px; font-size: .9rem; color: var(--ink-3); }

.shop-acts { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.shop-acts .btn { padding: 10px 20px; }
.shop-acts .btn-es { font-size: .98rem; }

.hrs { margin: 0 0 20px; }
.hrs-h {
  margin: 0 0 10px; font-size: .74rem; font-weight: 800;
  letter-spacing: .17em; text-transform: uppercase; color: var(--ink-3);
}
.hrs dl { margin: 0; border-top: 1px solid rgba(42, 21, 8, .14); }
.hrs-row {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; align-items: baseline;
  padding: 9px 10px; border-bottom: 1px solid rgba(42, 21, 8, .1);
}
.hrs-row:nth-child(odd) { background: rgba(42, 21, 8, .035); }
.hrs dt { margin: 0; font-weight: 700; font-size: .98rem; color: var(--ink); }
.hrs dt .en { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); }
.hrs dd { margin: 0; font-weight: 600; font-size: .98rem; color: var(--ink); white-space: nowrap; }
.hrs dd .en { display: block; font-size: .74rem; font-weight: 500; color: var(--ink-3); text-align: right; }

.chip {
  display: inline-block;
  border: 2px dashed var(--miel-dk); color: var(--miel-dk);
  background: rgba(227, 155, 39, .12);
  border-radius: 999px; padding: 2px 13px;
  font-size: .78rem; font-weight: 800; letter-spacing: .1em;
}

.tags { list-style: none; margin: auto 0 0; padding: 16px 0 0; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid rgba(42, 21, 8, .12); }
.tags li {
  font-size: .82rem; color: var(--ink-2); font-weight: 600;
  background: var(--masa-2); border-radius: 999px; padding: 5px 13px;
}
.tags .en {
  color: var(--ink-3); font-weight: 500;
  border-left: 1px solid rgba(117, 86, 63, .5); padding-left: 8px; margin-left: 6px;
}

.hours-note {
  margin: 0 0 20px; font-size: .88rem; line-height: 1.55; color: var(--ink-2);
  border-left: 3px solid var(--miel); padding-left: 14px;
}
.hours-note .en { display: block; color: var(--ink-3); margin-top: 5px; }

.shops-reach { margin: 34px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.shops-reach p { margin: 0; font-size: 1rem; color: var(--ink-2); }
.shops-reach a.mail { color: var(--jade-dk); font-weight: 700; text-decoration: none; border-bottom: 2px solid rgba(10, 87, 72, .35); }
.shops-reach a.mail:hover { border-bottom-color: var(--jade-dk); }
.shops-reach .en { display: block; font-size: .86rem; color: var(--ink-3); }
.social-l { display: flex; flex-wrap: wrap; gap: 9px; }
.social-l .btn { padding: 7px 17px; }
.social-l .btn-es { font-size: .9rem; }

/* ------------------------------------------------------------- the counter */

.counter {
  background: var(--noche-2);
  background-image: radial-gradient(rgba(252, 244, 230, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--crema); padding-block: clamp(54px, 7vw, 92px);
}
.counter-head { max-width: 60ch; margin-bottom: 34px; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(252, 244, 230, .14);
  display: flex; flex-direction: column;
  background: var(--card-d);
}
.tile-ph { grid-row: span 2; }
@media (max-width: 900px) { .tile-ph { grid-row: auto; } }
.tile-wide { grid-column: span 3; }
@media (max-width: 900px) { .tile-wide { grid-column: span 2; } }
@media (max-width: 560px) { .tile-wide { grid-column: auto; } }

.tile-img { flex: 1; min-height: 0; background: var(--card-d2); }
.tile-img img { width: 100%; height: 100%; object-fit: cover; }
.tile-ph .tile-img img { min-height: 300px; }
.tile-wide .tile-img img { max-height: 430px; object-fit: cover; object-position: center 20%; }

.tile-b { padding: 18px 22px 20px; }
.tile-n {
  margin: 0 0 2px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.42rem; line-height: 1.15;
  letter-spacing: -.018em; color: var(--crema);
}
.tile-en { margin: 0; font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--crema-3); }

/* The plates: what a wrong photograph would have gone on. Guatemalan breads
   have no honest stock picture, so they get designed ground instead. */
.tile-type { justify-content: flex-end; min-height: 210px; position: relative; }
.tile-type::before {
  content: ""; position: absolute; left: 22px; top: 22px; width: 52px; height: 5px;
  background: var(--warp); border-radius: 1px;
}
.tile-type .tile-b { padding-top: 62px; }
.t-jade { background: var(--card-jade); border-color: rgba(78, 203, 172, .3); }
.t-miel { background: #4A2C08; border-color: rgba(227, 155, 39, .34); }
.t-cacao { background: var(--cacao); border-color: rgba(252, 244, 230, .2); }
.t-noche { background: var(--noche-3); border-color: rgba(252, 244, 230, .18); }

.tile-cap { padding: 0 22px 18px; font-size: .8rem; color: var(--crema-3); line-height: 1.5; margin: 0; }
.tile-cap .cap-src { display: block; }

/* -------------------------------------------------- honesty slots (furniture) */

.slot {
  border: 2px dashed rgba(42, 21, 8, .32);
  border-radius: 18px; padding: 26px 28px;
  background: rgba(227, 155, 39, .10);
  margin-top: 32px;
}
.slot p { margin: 0 0 .85em; font-size: 1rem; color: var(--ink-2); }
.slot p:last-child { margin-bottom: 0; }
.slot .en { display: block; color: var(--ink-3); font-size: .93rem; margin-top: 4px; }
.slot-k {
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 800; font-size: 1.08rem;
  letter-spacing: .01em;
  color: var(--miel-dk) !important; margin-bottom: .75em !important;
}
.slot-k .en { color: var(--ink-3) !important; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }

.slot-d { border-color: rgba(252, 244, 230, .34); background: rgba(227, 155, 39, .09); }
.slot-d p { color: var(--crema-2); }
.slot-d .en { color: var(--crema-3); }
.slot-d .slot-k { color: var(--miel) !important; }
.slot-d .slot-k .en { color: var(--crema-3) !important; }

.slot-band { display: grid; grid-template-columns: minmax(180px, .32fr) 1fr; gap: 8px 34px; }
@media (max-width: 760px) { .slot-band { grid-template-columns: 1fr; } }
.slot-band .slot-k { margin-bottom: 0 !important; }

/* ------------------------------------------------------------- the kitchen */

.kitchen {
  background: var(--cacao);
  background-image: radial-gradient(rgba(252, 244, 230, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--crema); padding-block: clamp(50px, 6.4vw, 84px);
}
.kitchen-in { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 920px) { .kitchen-in { grid-template-columns: 1fr; } }

.plates { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .plates { grid-template-columns: 1fr; } }
.plates li {
  background: rgba(24, 12, 5, .5);
  border: 1px solid rgba(252, 244, 230, .18);
  border-radius: 16px; padding: 20px 22px 18px;
}
.plate-w { display: block; height: 5px; width: 46px; background: var(--warp); border-radius: 1px; margin-bottom: 14px; }
.plate-n {
  margin: 0 0 2px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.34rem; line-height: 1.15; letter-spacing: -.018em;
  color: var(--crema);
}
.plate-en { margin: 0; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--crema-3); }

/* --------------------------------------------------------------- the cakes */

.cakes { background: var(--masa); padding-block: clamp(54px, 7vw, 92px); }
.cakes-head { max-width: 62ch; margin-bottom: 34px; }
.cakes-in { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 940px) { .cakes-in { grid-template-columns: 1fr; } }

.cakes-side { display: grid; gap: 24px; align-content: start; }
.cake-fig { margin: 0; }
.cake-fig .frame { border: 2px solid var(--rosa); box-shadow: 0 16px 34px rgba(42, 21, 8, .17); }

.bigquote {
  margin: 0; background: var(--jade-dk); color: var(--crema);
  border-radius: 20px; padding: 28px 28px 24px;
}
.bigquote .stars { color: var(--miel-lt); }
.bigquote blockquote { margin: 0 0 14px; }
.bigquote p {
  margin: 0; font-family: var(--ff-d); font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 600; font-size: clamp(1.1rem, 2.2vw, 1.36rem); line-height: 1.34; letter-spacing: -.012em;
}
.bigquote figcaption { font-weight: 700; font-size: .95rem; color: var(--crema); }
.bigquote .q-src { color: var(--crema-2); font-weight: 500; }
/* The location tag needs a darker seat on the jade card than it does on the
   review cards, or the jade-on-jade drops under AA. */
.bigquote .tag {
  background: rgba(4, 26, 21, .44); color: var(--crema);
  border-color: rgba(252, 244, 230, .34);
}

.form-card {
  background: var(--white); border: 1px solid rgba(42, 21, 8, .14);
  border-radius: 20px; padding: clamp(24px, 3.4vw, 36px);
}
.form-h {
  margin: 0 0 2px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.72rem; letter-spacing: -.02em; color: var(--ink);
}
.form-h-en { margin: 0 0 14px; font-size: .84rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); }
.form-sub { margin: 0 0 24px; font-size: .98rem; color: var(--ink-2); font-weight: 600; }
.form-sub .en { display: block; font-weight: 500; font-size: .89rem; color: var(--ink-3); }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 620px) { .f-row { grid-template-columns: 1fr; } }

.f { margin: 0 0 18px; display: block; }
.f label { display: block; margin-bottom: 7px; }
.f-es { display: block; font-family: var(--ff-b); font-weight: 800; font-size: .88rem; color: var(--ink); }
.f-en { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.f input, .f select, .f textarea {
  width: 100%; font-family: var(--ff-b); font-size: 1rem; color: var(--ink);
  background: var(--masa); border: 2px dashed rgba(42, 21, 8, .3);
  border-radius: 10px; padding: 11px 14px; line-height: 1.5;
}
.f textarea { resize: vertical; min-height: 100px; }
.f input::placeholder, .f textarea::placeholder { color: var(--ink-3); opacity: 1; }
.f input:disabled, .f select:disabled, .f textarea:disabled {
  color: var(--ink-3); background: #F1E6D2; cursor: not-allowed;
}

.f-send { margin: 4px 0 0; }
.btn-off {
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.04rem;
  background: transparent; color: #75563F;
  border: 2px dashed #987C63; border-radius: 999px;
  padding: 12px 26px; cursor: not-allowed; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.btn-off .btn-en { color: #75563F; opacity: 1; }
.f-note {
  margin: 14px 0 0; font-size: .87rem; line-height: 1.5; color: var(--ink-2);
  border-left: 3px solid var(--miel); padding-left: 14px;
}
.f-note .en { display: block; color: var(--ink-3); margin-top: 4px; }

.cakes-alt { margin: 28px 0 0; font-size: 1rem; color: var(--ink-2); }
.cakes-alt .en { display: block; font-size: .9rem; color: var(--ink-3); }
.cakes-alt a { color: var(--jade-dk); font-weight: 700; text-decoration: none; border-bottom: 2px solid rgba(10, 87, 72, .35); }
.cakes-alt a:hover { border-bottom-color: var(--jade-dk); }

/* ----------------------------------------------------------------- reviews */

.words {
  background: var(--noche-2);
  background-image: radial-gradient(rgba(252, 244, 230, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--crema); padding-block: clamp(54px, 7vw, 92px);
}
.words-head { max-width: 30ch; }
.pull {
  margin: 0 0 12px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 600; font-size: clamp(1.7rem, 3.8vw, 2.5rem); line-height: 1.14;
  letter-spacing: -.02em; color: var(--crema); max-width: 22ch; text-wrap: balance;
}
.words-head { max-width: none; margin-bottom: 34px; }
.words-attr { margin: 0; font-weight: 700; font-size: 1rem; color: var(--miel); }
.words-attr .tag { margin-left: 10px; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1000px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .quotes { grid-template-columns: 1fr; } }

.quote {
  margin: 0; background: var(--card-d2); border: 1px solid rgba(252, 244, 230, .14);
  border-radius: 16px; padding: 24px 24px 22px;
  display: flex; flex-direction: column;
}
.quote blockquote { margin: 0 0 16px; flex: 1; }
.quote blockquote p { margin: 0; font-size: 1rem; line-height: 1.62; color: var(--crema); }
.quote figcaption { font-weight: 700; font-size: .96rem; color: var(--miel); }
.quote .q-src { color: var(--crema-3); font-weight: 500; }

.tag {
  display: inline-block; vertical-align: 2px;
  font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  border-radius: 999px; padding: 2px 10px; margin-left: 9px;
  background: rgba(78, 203, 172, .16); color: var(--jade-lt);
  border: 1px solid rgba(78, 203, 172, .34);
}

.themes {
  margin-top: 32px; background: var(--noche-3); border: 1px solid rgba(252, 244, 230, .14);
  border-radius: 18px; padding: 26px 28px;
}
.themes-h {
  margin: 0 0 4px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.2rem; color: var(--crema); letter-spacing: -.012em;
}
.themes-en { margin: 0 0 20px; font-size: .8rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--crema-3); }
.theme-k { margin: 0 0 10px; font-size: .74rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; color: var(--jade-lt); }
.theme-l { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.theme-l li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card-d2); border: 1px solid rgba(252, 244, 230, .17);
  border-radius: 999px; padding: 6px 15px; font-size: .92rem; color: var(--crema-2);
}
.theme-n { font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1; font-weight: 800; font-size: .95rem; color: var(--miel); }
.src { margin: 0; font-size: .82rem; color: var(--crema-3); }
.src .en { display: block; }

/* ------------------------------------------------------------------- story */

.story { background: var(--masa-2); padding-block: clamp(48px, 6vw, 78px); }
.story .slot { margin-top: 0; max-width: 82ch; }
.own-words {
  margin: 18px 0 0; padding: 18px 22px;
  background: var(--white); border-radius: 14px; border: 1px solid rgba(42, 21, 8, .14);
}
.own-words p {
  margin: 0;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 600; font-size: 1.1rem; line-height: 1.45; color: var(--ink);
}

/* --------------------------------------------------------- about this preview */

.preview { background: var(--noche-2); color: var(--crema-2); padding-block: 44px 48px; }
.about-preview {
  border: 2px dashed rgba(252, 244, 230, .3); border-radius: 18px;
  padding: clamp(24px, 3.4vw, 34px); max-width: 84ch;
}
.ap-h {
  margin: 0 0 4px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.38rem; letter-spacing: -.015em; color: var(--miel);
}
.ap-h-en { margin: 0 0 18px; font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--crema-3); }
.about-preview p { margin: 0 0 1.1em; font-size: .99rem; line-height: 1.7; color: var(--crema-2); }
.about-preview p:last-child { margin-bottom: 0; }
.about-preview .en { display: block; color: var(--crema-3); font-size: .93rem; margin-top: 5px; }

/* ------------------------------------------------------------------ footer */

.foot { background: var(--noche); color: var(--crema-2); }
.foot-in {
  display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 32px;
  padding-block: 48px 36px;
}
@media (max-width: 880px) { .foot-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-in { grid-template-columns: 1fr; } }

.foot-name {
  margin: 14px 0 6px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 25, "WONK" 1;
  font-weight: 700; font-size: 1.3rem; color: var(--crema); letter-spacing: -.015em;
}
.foot-sub { margin: 0; font-size: .9rem; color: var(--crema-3); line-height: 1.6; }

.foot-col p, .foot-col a { display: block; margin: 0 0 9px; font-size: .94rem; color: var(--crema-2); text-decoration: none; }
.foot-col a:hover { color: var(--miel); }
.foot-col .en { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--crema-3); }
.foot-k {
  font-family: var(--ff-b); font-weight: 800; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--miel); margin-bottom: 14px !important;
}
.foot-bar { border-top: 1px solid rgba(252, 244, 230, .12); padding-block: 18px 22px; }
.foot-bar p { margin: 0; font-size: .85rem; color: var(--crema-3); }

/* ------------------------------------------------------------- 404 page */

.nf {
  background: var(--noche); color: var(--crema);
  background-image: radial-gradient(rgba(252, 244, 230, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  padding-block: clamp(70px, 12vw, 130px);
  min-height: 58vh; display: flex; align-items: center;
}
.nf-code {
  margin: 0 0 10px;
  font-family: var(--ff-d); font-variation-settings: "SOFT" 30, "WONK" 1;
  font-weight: 800; font-size: clamp(4.5rem, 15vw, 8.5rem);
  line-height: .9; color: var(--miel); letter-spacing: -.05em;
}
.nf-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }

/* ----------------------------------------------------------------- reveals */

.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in-view { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.js .reveal-2.in-view { transition-delay: .07s; }
.js .reveal-3.in-view { transition-delay: .14s; }
.js .reveal-4.in-view { transition-delay: .21s; }
.js .reveal-5.in-view { transition-delay: .28s; }
.js .reveal-6.in-view { transition-delay: .35s; }

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