/* =============================================================
   FENOUS — Design System
   Hand-coded, mobile-first. No frameworks.
   ============================================================= */

/* ---- 1. Tokens ------------------------------------------------ */
:root {
  /* Brand */
  --ink:        #14403A;   /* pine — headings & body text (from wordmark) */
  --ink-soft:   #40605A;   /* muted text */
  --ink-faint:  #7C948E;   /* captions, meta */
  --lime:       #C9F367;   /* signature accent (from logo hook) */
  --lime-deep:  #A9DE44;   /* hover / borders on lime */
  --lime-ink:   #2C3D0A;   /* text that sits on lime */

  /* Pastel surfaces */
  --cream:      #FFFFFF;   /* page background (white, no warm tint) */
  --paper:      #FFFFFF;
  --blush:      #FCE7E4;
  --blush-deep: #F6C9C4;
  --sky:        #DDEEF3;
  --sky-deep:   #BFE0EA;
  --sun:        #FFE0B0;   /* gift / warmth */

  /* Utility */
  --line:       #E8E7E3;   /* neutral hairline borders */
  --shadow-sm:  0 2px 8px rgba(20,64,58,.06);
  --shadow-md:  0 10px 30px rgba(20,64,58,.10);
  --shadow-lg:  0 24px 60px rgba(20,64,58,.14);
  --danger:     #C0492F;
  --ok:         #2E7D57;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;   /* Wonderbly-style warm display serif (≈ their "Rza") */
  --font-body:    "Work Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; /* clean geometric sans (≈ "Atak") */

  /* Rhythm */
  --wrap:      1180px;
  --wrap-narrow: 760px;
  --gap:       clamp(1rem, 3vw, 2rem);
  --radius:    0;   /* brand direction: no rounded corners */
  --radius-lg: 0;
  --radius-pill: 0;

  /* Fluid section padding — the "airy premium" cadence */
  --section-y: clamp(3.5rem, 8vw, 7rem);
}

/* ---- 2. Reset / base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul[class] { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.3rem, 1.6rem + 3.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem); }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--lime-deep); outline-offset: 2px; border-radius: 6px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ---- 3. Layout ----------------------------------------------- */
.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.4rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--blush { background: var(--blush); }
.section--sky  { background: var(--sky); }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: .5rem;
}
.section-head { max-width: 44ch; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* ---- 4. Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .95rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: transform .12s ease, box-shadow .2s ease, background .2s;
  text-align: center; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--lime); color: var(--lime-ink); border-color: var(--lime);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--lime-deep); border-color: var(--lime-deep); box-shadow: var(--shadow-md); }
.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: #0d322d; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn[hidden] { display: none; } /* the `hidden` attribute must beat .btn's display */

/* ---- 5. Header ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { height: 48px; width: auto; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--ink); }

.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: 2.6rem; align-items: center; }
.primary-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--ink);
  padding: .4rem 0; position: relative;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--lime-deep); transition: right .22s ease; border-radius: 2px;
}
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: .35rem; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: transparent; border: none; color: var(--ink);
  position: relative;
}
.icon-btn:hover { background: var(--blush); }
.cart-count {
  position: absolute; top: 4px; right: 3px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--ink); color: #fff; border-radius: 9px; font-size: .7rem; font-weight: 700;
  display: grid; place-items: center; font-family: var(--font-body);
}
.nav-toggle { display: inline-flex; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); z-index: 200;
  background: var(--cream); transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg); padding: 1.4rem; display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-nav[data-open="true"] { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--ink);
  padding: .85rem .6rem; border-radius: 12px; display: block;
}
.mobile-nav a:hover { background: var(--blush); }
.nav-scrim {
  position: fixed; inset: 0; z-index: 150; background: rgba(20,64,58,.35);
  opacity: 0; visibility: hidden; transition: opacity .28s;
}
.nav-scrim[data-open="true"] { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ---- 6. Hero ------------------------------------------------- */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(120% 90% at 85% -10%, var(--sky) 0%, transparent 55%),
    radial-gradient(90% 70% at 5% 110%, var(--blush) 0%, transparent 55%),
    var(--cream);
}
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero__title span { color: var(--ink); position: relative; }
.hero__title .hl { background: linear-gradient(transparent 62%, var(--lime) 62%); padding: 0 .12em; border-radius: 4px; }
.hero__sub { font-size: 1.2rem; color: var(--ink-soft); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; margin-top: 2rem; color: var(--ink-soft); font-size: .95rem; }
.hero__trust li { display: flex; align-items: center; gap: .5rem; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; bottom: -14px; left: -14px; background: var(--paper);
  border-radius: var(--radius); padding: .8rem 1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .9rem;
}

/* Inline "see the magic" teaser */
.teaser {
  margin-top: 1.4rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-sm);
  display: grid; gap: .6rem; max-width: 420px;
}
.teaser label { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.teaser__row { display: flex; gap: .5rem; }
.teaser input {
  flex: 1; padding: .8rem 1rem; border-radius: var(--radius-pill); border: 2px solid var(--line);
  font: inherit; background: var(--cream);
}
.teaser input:focus { border-color: var(--lime-deep); outline: none; }

/* ---- 7. Cards & grids ---------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: 1fr; }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card { background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Steps (how it works) */
.steps { counter-reset: step; }
.step { position: relative; background: var(--paper); border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--lime); color: var(--lime-ink); font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  margin-bottom: 1rem;
}
.step:nth-child(2) .step__num { background: var(--sky-deep); }
.step:nth-child(3) .step__num { background: var(--blush-deep); }

/* Product card */
.product-card { background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .18s, box-shadow .25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__media { aspect-ratio: 4/5; background: var(--sky); position: relative; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__tag { position: absolute; top: .8rem; left: .8rem; background: var(--paper); color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: .78rem; padding: .3rem .7rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.product-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.product-card__meta { color: var(--ink-faint); font-size: .9rem; }
.product-card__price { font-family: var(--font-display); font-weight: 600; color: var(--ink); margin-top: auto; }
.product-card__price ins { text-decoration: none; }
.product-card__price del { color: var(--ink-faint); font-weight: 400; margin-right: .4rem; }

/* Trust / why-fenous */
.pillars { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 16px; background: var(--sky); display: grid; place-items: center; color: var(--ink); }
.pillar:nth-child(2) .pillar__icon { background: var(--blush); }
.pillar:nth-child(3) .pillar__icon { background: var(--sun); }
.pillar:nth-child(4) .pillar__icon { background: var(--lime); }
.pillar h3 { margin-bottom: .25rem; }

/* Gift occasions */
.occasions { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
.occasion { border-radius: var(--radius-lg); padding: 1.8rem; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.occasion--birthday { background: linear-gradient(160deg, var(--sun), #FFEED2); }
.occasion--baby { background: linear-gradient(160deg, var(--sky-deep), var(--sky)); }
.occasion--christmas { background: linear-gradient(160deg, var(--blush-deep), var(--blush)); }
.occasion h3 { margin-bottom: .2rem; }
.occasion a { font-family: var(--font-display); font-weight: 600; color: var(--ink); display: inline-flex; gap: .35rem; margin-top: .6rem; }

/* ---- 8. Newsletter / email capture --------------------------- */
.newsletter { background: var(--ink); color: #EAF3EE; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.newsletter h2 { color: #fff; }
.newsletter p { color: #B9CFC7; max-width: 48ch; margin-inline: auto; }
.newsletter__form { display: flex; gap: .6rem; max-width: 460px; margin: 1.6rem auto 0; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1 1 220px; padding: .95rem 1.2rem; border-radius: var(--radius-pill); border: 2px solid transparent;
  font: inherit; background: #0f322d; color: #fff;
}
.newsletter__form input::placeholder { color: #7fa298; }
.newsletter__form input:focus { border-color: var(--lime); outline: none; }
.form-note { font-size: .82rem; color: #7fa298; margin-top: .9rem; }

/* ---- 9. Footer ----------------------------------------------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer__brand p { color: var(--ink-soft); max-width: 32ch; margin-top: .8rem; }
.footer h4 { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-bottom: .9rem; }
.footer ul { display: grid; gap: .55rem; }
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--ink); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: .85rem; }
.footer__pay { display: flex; gap: .5rem; align-items: center; opacity: .8; }

/* ---- 10. Accordion (FAQ) ------------------------------------- */
.accordion { display: grid; gap: .8rem; }
.accordion details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.5rem; color: var(--ink-soft); transition: transform .2s; line-height: 1; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .accordion__body { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }

/* ---- 11. Breadcrumb / page hero (Wonderbly-style: clean serif, no band) ---- */
.page-hero { background: var(--cream); padding-block: clamp(3rem, 7vw, 5rem) clamp(1.75rem, 4vw, 2.75rem); text-align: center; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 1.7rem + 3vw, 3.6rem); margin-bottom: .5rem; }
.page-hero .lede { margin-inline: auto; max-width: 48ch; color: var(--ink-soft); }
.page-hero .breadcrumb { margin-bottom: 1rem; }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: .8rem; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }

/* ---- 12. Responsive uplifts ---------------------------------- */
@media (min-width: 560px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .occasions { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 860px) {
  .primary-nav { display: block; }
  .nav-toggle { display: none; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1.05fr 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* =============================================================
   BRAND REFRESH — Wonderbly-style type, square corners, real photos
   ============================================================= */

/* No rounded corners anywhere (rectangles + badges) */
.skip-link, .hero__title .hl, .icon-btn, .cart-count, .step__num, .pillar__icon,
.hero__badge, .card, .product-card, .product-card__media, .product-card__tag,
.occasion, .teaser, .teaser input, .hero__media img, .newsletter, .newsletter__form input,
.accordion details, .page-hero, .btn { border-radius: 0; }
:focus-visible { border-radius: 0; }

/* Serif is reserved for headings/titles; interactive UI stays in the clean sans */
.btn, .primary-nav a, .mobile-nav a, .chip, .eyebrow, .hero__trust,
.field > label, .optiongroup label, .qty, .qty button, .teaser label,
.newsletter__form input, .nav-toggle, .cart-count { font-family: var(--font-body); }
.btn { font-weight: 600; }

/* Serif headings want a touch more line-height and no negative tracking */
h1, h2, h3, h4 { letter-spacing: 0; line-height: 1.14; }
.hero__title { line-height: 1.08; }
.hero__title .hl { padding: 0 .08em; }

/* Hero: real photo, capped ~800px tall on desktop */
.hero__media img { object-fit: cover; box-shadow: var(--shadow-lg); }
@media (min-width: 860px) {
  .hero__grid { min-height: 620px; padding-block: 2rem; align-items: center; }
  .hero__media img { height: 560px; width: 100%; }
}

/* Second section = books; keep it compact */
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.featured .grid--3 { gap: 1.1rem; }
.featured .product-card__body { padding: .85rem 1rem 1.05rem; gap: .25rem; }
.featured .product-card__title { font-size: 1.02rem; }
.featured .product-card .btn { padding: .7rem 1.2rem; font-size: .92rem; }

/* Square product-listing images (full cover shown, no crop) */
.product-card__media { aspect-ratio: 1 / 1; }
.product-card__media img { object-fit: contain; padding: 7%; background: var(--cream); }

/* Why-Fenous with a real photo alongside the pillars */
.why__grid { display: grid; gap: var(--gap); align-items: center; }
.why__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; box-shadow: var(--shadow-md); }
@media (min-width: 860px) {
  .why__grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* =============================================================
   MINIMAL HERO + RESTRAINED HOME PALETTE (pine + lime + cream)
   ============================================================= */

/* Hero: fewer words, smaller type, more room to breathe */
.hero { background:
    radial-gradient(90% 70% at 92% 0%, color-mix(in srgb, var(--lime) 20%, var(--cream)) 0%, var(--cream) 55%); }
.hero__copy { max-width: 34rem; }
.hero__title { font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem); line-height: 1.1; margin-bottom: .7rem; }
.hero__sub { font-size: 1.05rem; max-width: 38ch; color: var(--ink-soft); }
.hero__cta { margin-top: 1.8rem; }
@media (min-width: 860px) {
  .hero__grid { min-height: 540px; padding-block: 2.5rem; }
  .hero__media img { height: 480px; }
}

/* Home: two brand colours + cream/white only — no blush/sky/sun blocks */
.is-home .steps .step__num { background: var(--lime); color: var(--lime-ink); }
.is-home .pillars .pillar__icon { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.is-home .occasion { background: var(--cream); border: 1px solid var(--line); min-height: 170px; }
.is-home .occasion h3 { color: var(--ink); }
.is-home .occasion p { color: var(--ink-soft); }
.is-home .occasion a { color: var(--ink); }

/* Featured header: "View all" sits on the right, in line with the title */
.featured .shop-toolbar {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.featured .shop-toolbar .section-head { margin-bottom: 0; }

/* Full-width newsletter band */
.newsletter-band { background: var(--ink); color: #EAF3EE; padding-block: clamp(3rem, 7vw, 5rem); text-align: center; }
.newsletter-band h2 { color: #fff; }
.newsletter-band p { color: #B9CFC7; max-width: 48ch; margin: 0 auto; }
.newsletter-band .eyebrow { justify-content: center; }

/* Simple-page header: left-aligned like the shop page (breadcrumb → title → subtitle) */
.page-hero { text-align: left; padding-block: 1.75rem 0; border-bottom: none; }
.page-hero .breadcrumb { text-align: left; margin-bottom: .9rem; }
.page-hero h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); }
.page-hero .lede { margin-inline: 0; text-align: left; max-width: 60ch; }

/* "Occasion" dropdown */
.primary-nav .nav-has-children { position: relative; }
.primary-nav .nav-has-children > a { display: inline-flex; align-items: center; gap: .2rem; }
.primary-nav .nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  min-width: 210px; background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); padding: .4rem; display: none; z-index: 120;
}
.primary-nav .nav-has-children:hover .nav-dropdown,
.primary-nav .nav-has-children:focus-within .nav-dropdown { display: block; }
.primary-nav .nav-dropdown li { display: block; }
.primary-nav .nav-dropdown a { display: block; padding: .55rem .8rem; white-space: nowrap; font-size: .98rem; }
.primary-nav .nav-dropdown a::after { display: none; }
.primary-nav .nav-dropdown a:hover { background: var(--cream); }

/* Occasion list in the mobile drawer: shown inline, indented */
.mobile-nav .nav-dropdown { position: static; transform: none; display: block; box-shadow: none; border: none; min-width: 0; padding: 0 0 .4rem 1rem; }
.mobile-nav .nav-dropdown a { font-size: 1.05rem; padding: .55rem .6rem; }
.mobile-nav .nav-has-children > a .icon { display: none; }

/* Green footer with white logo */
.site-footer { background: var(--ink); border-top: none; color: #EAF3EE; }
.site-footer .footer__brand .brand img { height: 44px; }
.footer__brand p { color: #B9CFC7; }
.footer h4 { color: #ffffff; }
.footer a { color: #B9CFC7; }
.footer a:hover { color: #ffffff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.16); color: #9fb3ab; }
.footer__pay { color: #B9CFC7; }
