/* =========================================================
   ROYAL — shared styles (morin.id-inspired)
   ========================================================= */

:root {
  --red: #e1232e;
  --red-dark: #c11824;
  --navy: #1b2a4e;
  --navy-2: #26397a;
  --sky: #33a9e0;
  --pale: #d8ecfb;
  --pale-2: #eef7fd;
  --cream: #fdf7ee;
  --ink: #2b2926;
  --line: rgba(27,42,78,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4, .font-display {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 70, 'opsz' 120, 'WONK' 0;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-cream { background: var(--cream); }
.bg-pale { background: var(--pale-2); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem;
  padding: .85rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn i, .btn svg { transition: transform .2s ease; }
.btn:hover i, .btn:hover svg.arrow { transform: translateX(4px); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 14px 30px -12px rgba(225,35,46,.55); }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--navy); box-shadow: 0 14px 30px -12px rgba(0,0,0,.3); }
.btn--white:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

/* ---------- Eyebrow + scribble ---------- */
.eyebrow {
  position: relative; display: inline-block;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); padding-bottom: 12px;
}
.eyebrow .scribble {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 12px;
  color: var(--sky);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  display: grid; place-items: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: 'Fraunces', serif; font-weight: 700; letter-spacing: .04em;
  color: #fff; font-size: 1.3rem; background: var(--red);
  padding: .55rem 1.6rem; border-radius: 999px;
  box-shadow: inset 0 0 0 2px #fff, 0 12px 30px rgba(225,35,46,.35);
  animation: pulse 1.1s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }

/* ---------- Header ---------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
#header.scrolled {
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(27,42,78,.08); padding: 10px 0;
}
.hdr-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.royal-logo {
  position: relative; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); padding: .5rem 1.55rem; border-radius: 999px;
  box-shadow: inset 0 0 0 2px #fff, 0 10px 22px -8px rgba(225,35,46,.5);
  transition: transform .2s ease;
}
.royal-logo:hover { transform: translateY(-2px) scale(1.02); }
.royal-logo__text {
  font-family: 'Fraunces', serif; font-weight: 700; color: #fff;
  font-size: 1.5rem; line-height: 1; letter-spacing: .06em;
}
.royal-logo__r { position: absolute; top: 7px; right: 11px; color: #fff; font-size: .5rem; font-weight: 700; }
.royal-logo--sm { padding: .4rem 1.2rem; }
.royal-logo--sm .royal-logo__text { font-size: 1.15rem; }

.pill-nav {
  display: flex; align-items: center; gap: .15rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 999px; padding: .4rem .5rem;
  box-shadow: 0 10px 28px -12px rgba(27,42,78,.18);
}
.pill-nav a {
  padding: .55rem 1rem; font-size: .86rem; font-weight: 500; color: var(--navy);
  border-radius: 999px; opacity: .8; transition: all .2s ease;
}
.pill-nav a:hover { opacity: 1; color: var(--red); }
.pill-nav a.active { opacity: 1; color: var(--red); background: rgba(225,35,46,.08); font-weight: 600; }
.pill-nav .nav-cta {
  margin-left: .3rem; background: var(--navy); color: #fff; opacity: 1;
  padding: .6rem 1.3rem; font-weight: 600;
}
.pill-nav .nav-cta:hover { background: var(--red); color: #fff; }
.menu-btn {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: rgba(255,255,255,.92); border-radius: 999px; color: var(--navy);
  font-size: 1.1rem; cursor: pointer;
}
#mobileMenu {
  margin: 12px 20px 0; background: #fff; border-radius: 24px;
  box-shadow: 0 20px 50px rgba(27,42,78,.18); border: 1px solid var(--line);
  overflow: hidden;
}
#mobileMenu.hidden { display: none; }
#mobileMenu a {
  display: block; padding: .95rem 1.2rem; font-size: .95rem; font-weight: 500;
  color: var(--navy); border-bottom: 1px solid var(--line);
}
#mobileMenu a:last-child { border-bottom: none; }
#mobileMenu a.nav-cta { background: var(--navy); color: #fff; margin: .6rem; border-radius: 999px; text-align: center; }

@media (max-width: 960px) {
  .pill-nav.desktop { display: none; }
  .menu-btn { display: grid; place-items: center; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center;
  text-align: center; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; transform: scale(1.05);
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,12,.5), rgba(20,15,12,.34) 45%, rgba(20,15,12,.62));
}
.hero-inner { position: relative; z-index: 3; padding: 120px 20px 90px; max-width: 780px; }
.hero-kicker {
  display: inline-block; color: #fff; font-family: 'Poppins',sans-serif; font-weight: 600;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  padding: .5rem 1.15rem; border-radius: 999px; margin-bottom: 1.6rem;
}
.hero-title {
  color: #fff; font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 600;
  text-shadow: 0 6px 34px rgba(0,0,0,.4);
}
.hero-sub {
  margin: 1.4rem auto 0; max-width: 33rem; color: rgba(255,255,255,.92);
  font-size: 1.03rem; line-height: 1.65;
}
.hero-inner .btn { margin-top: 2.1rem; }
.hero-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 2.6rem; }
.hero-dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.45); border: none; cursor: pointer; transition: all .3s ease; }
.hero-dot.is-active { background: #fff; width: 30px; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; padding: 170px 20px 90px; text-align: center; overflow: hidden;
  background: var(--pale);
}
.page-hero.has-photo { background: var(--navy); }
.page-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .28; filter: blur(2px);
}
.page-hero__in { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.3rem, 5.5vw, 3.8rem); }
.page-hero.has-photo h1, .page-hero.has-photo .eyebrow { color: #fff; }
.page-hero p { margin: 1.1rem auto 0; max-width: 34rem; color: var(--navy); opacity: .75; line-height: 1.65; }
.page-hero.has-photo p { color: rgba(255,255,255,.85); }

/* ---------- Doodles ---------- */
.dood { position: absolute; color: #fff; pointer-events: none; z-index: 2; opacity: .9; }
.dood--navy { color: var(--navy); }
.dood--sky { color: var(--sky); }
.dood--red { color: var(--red); }
.spin { animation: spin 16s linear infinite; }
.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-16px) rotate(6deg)} }

/* ---------- Section heading block ---------- */
.headblock { max-width: 640px; }
.headblock.center { margin: 0 auto; text-align: center; }
.headblock h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: .5rem; }
.headblock p { margin-top: 1rem; color: var(--ink); opacity: .68; line-height: 1.7; }

/* ---------- Category panels (Morin-style) ---------- */
.cat-panel {
  position: relative; border-radius: 34px; overflow: hidden;
  min-height: 340px; display: grid; place-items: center; padding: 40px;
}
.cat-panel--royal { background: linear-gradient(160deg, #ff5a63, #e1232e); }
.cat-panel--dennis { background: linear-gradient(160deg, #a07ad6, #6f49b0); }
.cat-panel--fruity { background: linear-gradient(160deg, #f4923d, #db5f1f); }
.cat-panel--sky { background: linear-gradient(160deg, #4fb8ea, #2b90c9); }
.cat-panel__word {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  color: rgba(255,255,255,.96); font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.cat-panel__items { position: relative; width: 100%; height: 240px; }
.cat-panel__items img {
  position: absolute; width: 120px; border-radius: 14px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.28));
}
.cat-panel__items img:nth-child(1) { left: 6%;  top: 28%; transform: rotate(-10deg); width: 128px; }
.cat-panel__items img:nth-child(2) { left: 38%; top: 6%;  transform: rotate(4deg);  width: 150px; z-index: 2; }
.cat-panel__items img:nth-child(3) { right: 6%; top: 34%; transform: rotate(11deg); width: 122px; }

.cat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  margin-bottom: 40px;
}
.cat-row:nth-child(even) .cat-panel { order: 2; }
@media (max-width: 860px) {
  .cat-row { grid-template-columns: 1fr; gap: 26px; }
  .cat-row:nth-child(even) .cat-panel { order: 0; }
}

/* ---------- Category quick cards (home) ---------- */
.qcards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 900px) { .qcards { grid-template-columns: repeat(2, 1fr); } }
.qcard { text-align: center; transition: transform .3s ease; }
.qcard:hover { transform: translateY(-6px); }
.qcard__media {
  border-radius: 26px; aspect-ratio: 1/1; display: grid; place-items: center;
  padding: 16px; box-shadow: 0 16px 34px -16px rgba(27,42,78,.3);
}
.qcard__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.qcard:hover .qcard__media img { transform: scale(1.08) rotate(-3deg); }
.qcard span { display: block; margin-top: .85rem; font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); }

/* ---------- Product grid ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pgrid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .pgrid, .pgrid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pgrid, .pgrid--5 { grid-template-columns: 1fr; } }
.pcard {
  background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(27,42,78,.05); transition: transform .35s ease, box-shadow .35s ease;
}
.pcard:hover { transform: translateY(-8px); box-shadow: 0 26px 46px -20px rgba(27,42,78,.22); }
.pcard__media { aspect-ratio: 4/3.2; background: var(--pale-2); display: grid; place-items: center; padding: 16px; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.pcard:hover .pcard__media img { transform: scale(1.06) rotate(-1deg); }
.pcard__media--photo { padding: 0; }
.pcard__media--photo img { object-fit: cover; }
.pcard__body { padding: 1.25rem 1.4rem 1.5rem; }
.pcard__brand { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.pcard__title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.15rem; margin-top: .3rem; color: var(--navy); }
.pcard__desc { font-size: .85rem; color: var(--ink); opacity: .6; margin-top: .5rem; line-height: 1.55; }
.pcard__meta { display: flex; gap: 14px; margin-top: .95rem; font-size: .74rem; font-weight: 600; color: var(--navy); opacity: .55; }
.pcard__meta span { display: inline-flex; align-items: center; gap: 5px; }

/* ---------- Recipe cards ---------- */
.rgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .rgrid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.rcard { background: #fff; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 2px 14px rgba(27,42,78,.05); transition: transform .35s ease, box-shadow .35s ease; }
.rcard:hover { transform: translateY(-8px); box-shadow: 0 26px 46px -20px rgba(27,42,78,.22); }
.rcard__media { aspect-ratio: 4/3; overflow: hidden; }
.rcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rcard:hover .rcard__media img { transform: scale(1.07); }
.rcard__body { padding: 1.3rem 1.4rem 1.5rem; }
.rcard__tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.rcard__title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem; color: var(--navy); margin-top: .35rem; }
.rcard__body p { font-size: .85rem; color: var(--ink); opacity: .6; margin: .55rem 0 0; line-height: 1.55; }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split .imgstack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split .imgstack img { border-radius: 24px; box-shadow: 0 20px 40px -18px rgba(27,42,78,.3); height: 210px; width: 100%; object-fit: cover; }
.split .imgstack img:nth-child(odd) { margin-top: 28px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }
.feat { display: flex; gap: 13px; align-items: flex-start; }
.feat__ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; background: rgba(225,35,46,.1); color: var(--red); display: grid; place-items: center; }
.feat h3 { font-size: 1rem; }
.feat p { font-size: .84rem; color: var(--ink); opacity: .6; margin: .2rem 0 0; line-height: 1.5; }

/* ---------- Info / contact card ---------- */
.infocard {
  background: var(--pale); border-radius: 32px; padding: 44px; text-align: center;
  max-width: 620px; margin: -80px auto 0; position: relative; z-index: 5;
  box-shadow: 0 30px 60px -30px rgba(27,42,78,.3);
}
.infocard h2 { font-size: 1.8rem; }
.infocard p { margin: .5rem 0 0; color: var(--navy); opacity: .8; line-height: 1.7; }
.infocard .row { margin-top: 1.4rem; font-weight: 600; color: var(--navy); }

.contact-list { display: grid; gap: 16px; margin-top: 24px; }
.citem { display: flex; gap: 14px; align-items: flex-start; }
.citem__ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: rgba(225,35,46,.1); color: var(--red); display: grid; place-items: center; }
.citem p { margin: 0; }
.citem .lbl { font-family: 'Fraunces', serif; font-weight: 600; font-size: .9rem; color: var(--navy); }
.citem .val { font-size: .88rem; color: var(--ink); opacity: .65; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.sbtn { width: 42px; height: 42px; border-radius: 999px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); transition: all .2s ease; }
.sbtn:hover { background: var(--red); color: #fff; transform: translateY(-3px); }

/* ---------- Forms ---------- */
.form { background: #fff; border-radius: 26px; padding: 32px; border: 1px solid var(--line); box-shadow: 0 20px 44px -24px rgba(27,42,78,.18); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .fgrid { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.fg:first-child, .fgrid .fg { margin-top: 0; }
.fg label { font-size: .78rem; font-weight: 600; color: var(--navy); opacity: .7; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--pale-2); border: 1px solid var(--line); border-radius: 13px;
  padding: .72rem 1rem; font-size: .9rem; font-family: 'Poppins', sans-serif; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; background: #fff; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,35,46,.12);
}
.fg textarea { resize: vertical; }
.note { font-size: .76rem; color: var(--ink); opacity: .45; margin: 14px 0 0; }
.note.ok { color: #15803d; opacity: 1; font-weight: 500; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--red), var(--red-dark)); border-radius: 32px;
  padding: 44px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
  justify-content: space-between; color: #fff;
  box-shadow: 0 30px 60px -28px rgba(225,35,46,.5);
}
.newsletter h2 { color: #fff; font-size: 1.7rem; }
.newsletter p { margin: .4rem 0 0; color: rgba(255,255,255,.85); font-size: .92rem; }
.nform { display: flex; gap: .5rem; background: #fff; padding: .4rem; border-radius: 999px; width: 100%; max-width: 25rem; }
.nform input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; padding: .7rem 1.1rem; font-family: 'Poppins',sans-serif; font-size: .9rem; color: var(--ink); }
.nform button { background: var(--navy); color: #fff; border: none; border-radius: 999px; padding: .7rem 1.5rem; font-weight: 600; font-size: .85rem; cursor: pointer; transition: background .2s ease; }
.nform button:hover { background: #12213f; }

/* ---------- Instagram ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-tile { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1/1; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.3rem; opacity: 0; background: rgba(225,35,46,0); transition: all .3s ease; }
.ig-tile:hover span { opacity: 1; background: rgba(225,35,46,.42); }

/* ---------- Certification strip ---------- */
.certs { display: flex; flex-wrap: wrap; gap: 26px 40px; align-items: center; justify-content: center; }
.certs span { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--navy); opacity: .7; }
.certs i { color: var(--red); font-size: 1.05rem; }

/* ---------- Buy / retailers ---------- */
.buy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .buy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .buy-grid { grid-template-columns: 1fr; } }
.buy-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px;
  text-align: center; transition: transform .3s ease, box-shadow .3s ease;
}
.buy-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(27,42,78,.25); }
.buy-card i { font-size: 1.9rem; color: var(--red); }
.buy-card h3 { margin-top: .7rem; font-size: 1.1rem; }
.buy-card p { margin: .4rem 0 0; font-size: .85rem; color: var(--ink); opacity: .6; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy); color: #fff; padding: 64px 0 30px; margin-top: 0;
}
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.6; margin: 14px 0 0; max-width: 30ch; }
footer.site h4 { color: rgba(255,255,255,.75); font-family: 'Poppins',sans-serif; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer.site ul a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s ease; }
footer.site ul a:hover { color: #fff; }
footer.site .btm {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .78rem; color: rgba(255,255,255,.45);
}

/* ---------- Recipe modal ---------- */
.rcard[data-recipe] { cursor: pointer; }
.rcard[data-recipe] .rcard__more {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--navy);
}
.rcard[data-recipe]:hover .rcard__more { color: var(--red); }

body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal.open { display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(27,42,78,.55); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal__box {
  position: relative; z-index: 2; width: min(680px, 100%); max-height: 88vh; overflow-y: auto;
  background: #fff; border-radius: 28px; box-shadow: 0 40px 90px -30px rgba(27,42,78,.5);
  animation: pop .25s ease;
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.97); } }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px;
  border-radius: 999px; border: none; background: rgba(255,255,255,.92); color: var(--navy);
  font-size: 1rem; cursor: pointer; display: grid; place-items: center; transition: all .2s ease;
}
.modal__close:hover { background: var(--red); color: #fff; }
.modal__media { aspect-ratio: 16/7; overflow: hidden; background: var(--pale-2); }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__body { padding: 26px 30px 34px; }
.modal__tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.modal__title { font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); font-size: 1.6rem; margin: .35rem 0 0; }
.modal__desc { margin: .6rem 0 0; color: var(--ink); opacity: .7; line-height: 1.6; font-size: .92rem; }
.modal__cols { display: grid; grid-template-columns: 1fr 1.35fr; gap: 26px; margin-top: 22px; }
@media (max-width: 600px) { .modal__cols { grid-template-columns: 1fr; gap: 20px; } }
.modal__cols h4 { font-family: 'Poppins', sans-serif; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin: 0 0 10px; }
.modal__cols ul, .modal__cols ol { margin: 0; padding-left: 1.15rem; display: grid; gap: 9px; }
.modal__cols li { font-size: .88rem; line-height: 1.5; color: var(--ink); opacity: .82; }
.modal__cols li::marker { color: var(--sky); font-weight: 700; }

/* ---------- Back to top ---------- */
#toTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 48px; height: 48px;
  border-radius: 999px; background: var(--red); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center; opacity: 0; transform: translateY(16px);
  pointer-events: none; transition: all .3s ease; box-shadow: 0 12px 26px -10px rgba(225,35,46,.6);
}
#toTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------- AOS-lite reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }
