/* ==========================================================================
   Olive & Almond Woodcraft — "live edge" direction (Jul 2026)
   Palette derived from the real brand (charcoal ink on warm parchment, olive,
   clay, thin gold) with a deep oiled-walnut dark for tonal rhythm. Display
   face is Fraunces (soft, hand-sanded terminals); body stays Mulish. Nothing
   is capsule-shaped; edges are square-cut. Signature devices: the olive
   branch, the 4-point sparkle, and the live edge (irregular section
   boundaries + image masks, like a board that keeps the tree's natural edge).
   Fonts are self-hosted from /assets/fonts (latin subsets).
   ========================================================================== */

@font-face { font-family:"Fraunces"; font-style:normal; font-weight:400; font-display:swap; src:url("/assets/fonts/fraunces-400.woff2") format("woff2"); }
@font-face { font-family:"Fraunces"; font-style:normal; font-weight:600; font-display:swap; src:url("/assets/fonts/fraunces-600.woff2") format("woff2"); }
@font-face { font-family:"Fraunces"; font-style:italic; font-weight:500; font-display:swap; src:url("/assets/fonts/fraunces-italic-500.woff2") format("woff2"); }
@font-face { font-family:"Mulish"; font-style:normal; font-weight:400; font-display:swap; src:url("/assets/fonts/mulish-400.woff2") format("woff2"); }
@font-face { font-family:"Mulish"; font-style:normal; font-weight:700; font-display:swap; src:url("/assets/fonts/mulish-700.woff2") format("woff2"); }

:root {
  /* Brand palette (existing names kept; values retuned for the direction) */
  --cream:    #F5EEDF;  /* parchment — page base */
  --almond:   #EDE2CC;  /* tinted sections */
  --paper:    #FBF7EC;  /* warm near-white for form fields etc. */
  --ink:      #2B241B;  /* warm charcoal — body text */
  --sage:     #77804F;  /* soft olive */
  --sage-dk:  #556038;  /* deep olive-leaf */
  --gold:     #B9995B;  /* thin frames + fine accents */
  --wood:     #A87C4F;  /* warm wood brown */
  --muted:    #6E6350;
  --line:     #E0D3B8;
  --logo-brown: #5C3A1C;  /* the brown in the real logo — used for the wordmark */
  --clay:     #A85B2E;  /* warm clay accent: eyebrows + stamp */
  --oiled:    #26190E;  /* oiled walnut — dark bands + footer */
  --oiled-cream: #EFE3C9;  /* text on the dark bands */
  --oiled-muted: #CBB998;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale & rhythm */
  --wrap: 1160px;
  --gap: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --radius: 2px;  /* square-cut, not capsule */
}

/* --- Reset-ish ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; margin: 0 0 .4em; letter-spacing: -.005em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 600; }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gap); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--cream);
  padding: .6rem 1rem; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--sage-dk); outline-offset: 3px; }

/* Eyebrow label */
.eyebrow {
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--clay);
  display: inline-flex; align-items: center; gap: .6rem; margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 1.8rem; height: 1px; background: var(--clay); }

/* ==========================================================================
   Logo lockup
   ========================================================================== */
.wordmark { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--logo-brown); min-width: 0; flex: 0 1 auto; }
.header-inner > .nav { flex: 0 0 auto; }
.wordmark-emblem { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; }
.wordmark-text {
  font-family: var(--display); font-size: 1.5rem; font-weight: 600; letter-spacing: .02em;
  text-transform: uppercase; line-height: 1; display: inline-flex; flex-direction: column; color: var(--logo-brown);
}
.wordmark-text em {
  font-style: normal; font-weight: 500; font-family: var(--body); font-size: .52rem;
  letter-spacing: .42em; color: var(--muted); margin-top: .28rem; text-indent: .42em;
}

/* The 4-point sparkle, the brand's small recurring accent */
.sparkle { display: inline-block; width: .8em; height: .8em; color: var(--gold); vertical-align: middle; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .9rem; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; font-weight: 600; font-size: .9rem; letter-spacing: .02em; padding: .3rem 0; position: relative; }
.nav-menu a[aria-current="page"] { color: var(--sage-dk); }
.nav-menu a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav-menu a:not(.nav-cta):hover::after, .nav-menu a[aria-current="page"]::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: var(--cream) !important; padding: .55rem 1.15rem;
  border-radius: var(--radius); font-size: .82rem !important;
}
.nav-cta:hover { background: var(--sage-dk); }
.nav-toggle { display: none; }

/* ==========================================================================
   Hero — light, airy, brand-true
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--cream), var(--almond));
  color: var(--ink); position: relative; overflow: clip;
}
.hero h1 { max-width: 14ch; }
.hero h1 .leaf { color: var(--sage-dk); font-style: italic; font-weight: 500; }
.hero-lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); max-width: 44ch; color: var(--muted); margin: 1.4rem 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* Full-bleed hero: copy left, media bleeding to the right viewport edge with a
   live-edge boundary (#liveEdgeV clip, defs in index.php). Sized to fill
   exactly what's left of the first screen under the header. */
.hero-grid { display: grid; min-height: clamp(480px, calc(100svh - 78px), 720px); }
@media (min-width: 860px) { .hero-grid { grid-template-columns: minmax(0, 44%) 1fr; } }
.hero-copy {
  align-self: center; position: relative; z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.1rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem)
           max(var(--gap), calc((100vw - var(--wrap)) / 2 + 2.5rem));
}
.hero-media { margin: 0; position: relative; min-height: 340px; }
.hero-media-frame { position: absolute; inset: 0; }
.hero-media img, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (min-width: 860px) {
  .hero-media-frame.live-edge { clip-path: url(#liveEdgeV); }
}
/* caption sits under the buttons, in the makers' voice */
.hero-note { font-family: var(--display); font-style: italic; font-size: .98rem; color: var(--muted); margin: 1.7rem 0 0; }
@media (max-width: 859px) {
  .hero-grid { min-height: 0; }
  .hero-media { order: -1; min-height: 0; height: 56vw; }
}

/* "One of a kind" gallery strip — full-bleed horizontal scroll */
.gallery-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gap) .5rem; margin-top: clamp(1.5rem, 4vw, 2.5rem);
  scrollbar-width: thin;
}
.gallery-tile { scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; background: var(--almond); border: 1px solid var(--line); }
.gallery-tile img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  font-weight: 700; font-size: .92rem; padding: .85rem 1.7rem; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--clay); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-dark { background: var(--sage-dk); color: var(--cream); }
.btn-dark:hover { background: var(--ink); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: var(--section-y); }
/* The first block under the header sits close to it on every page (matches the
   home hero's top spacing), so inner pages don't open with a large empty gap. */
#main > .section:first-child { padding-top: clamp(1.75rem, 4vw, 3rem); }
.section-tint { background: var(--almond); }

/* Dark "oiled walnut" band — the workshop mood. Pair with .edge dividers. */
.section-dark { background: var(--oiled); color: var(--oiled-cream); position: relative; overflow: clip; }
.section-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 85% 8%, rgba(185,153,91,.13), transparent 55%); pointer-events: none; }
.section-dark > .wrap { position: relative; }
.section-dark h2, .section-dark h3 { color: var(--oiled-cream); }
.section-dark h2 em { font-style: italic; font-weight: 500; color: var(--gold); }
.section-dark p, .section-dark .lede { color: var(--oiled-muted); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }
.section-dark .btn-dark { background: var(--clay); color: #fff; }
.section-dark .btn-dark:hover { background: var(--oiled-cream); color: var(--oiled); }

/* Growth-ring contours drawn by main.js on a canvas inside a dark band */
.rings { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.workshop-cap { margin-top: .8rem; font-family: var(--display); font-style: italic; font-size: .95rem; color: #B7A582; text-align: center; }

/* The workshop band's 01–04 steps (a real sequence — the numerals are the order
   the wood actually moves through the shop) */
.workshop-steps { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.workshop-steps li { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; align-items: baseline; border-top: 1px solid rgba(185,153,91,.28); padding-top: 1rem; }
.workshop-steps i { font: italic 500 1.15rem var(--display); color: var(--gold); }
.workshop-steps b { font-weight: 700; color: var(--oiled-cream); }
.workshop-steps li > span > span { display: block; font-size: .92rem; color: #B7A582; }

/* Pieces gallery header: headline left, short note right */
.pieces-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.pieces-head h2 { margin: 0; max-width: 16ch; }
.pieces-head h2 em { font-style: italic; font-weight: 500; color: var(--sage-dk); }
.pieces-head p { max-width: 34ch; color: var(--muted); margin: 0 0 .4rem; font-size: .98rem; }
.pieces-foot { margin-top: clamp(2.2rem, 5vw, 3.2rem); display: flex; justify-content: center; }

/* Full-bleed grain photo with the makers' words over it */
.grain-quote { position: relative; min-height: clamp(380px, 46vw, 520px); display: grid; align-items: center; overflow: clip; }
.grain-quote > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.grain-quote::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(38,25,14,.72) 25%, rgba(38,25,14,.15) 70%); }
.gq-inner { position: relative; z-index: 1; padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.gq-inner blockquote { margin: 0; font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.25; color: var(--oiled-cream); max-width: 24ch; }
.gq-inner cite { display: block; font: 700 .76rem var(--body); font-style: normal; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-top: 1.4rem; }

/* Live-edge divider between a light section and a dark band. Place the SVG
   (viewBox 0 0 1200 26, path filled with the dark colour) right before the
   dark section; add .edge--flip right after it. */
.edge { display: block; width: 100%; height: clamp(14px, 2vw, 26px); margin-bottom: -1px; background: var(--cream); }
.edge--on-tint { background: var(--almond); }
.edge--flip { transform: scaleY(-1); margin-bottom: 0; margin-top: -1px; }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.15rem; }

/* ==========================================================================
   Page header (image-led) — inner pages open with imagery + above-fold content
   ========================================================================== */
.page-header { background: linear-gradient(180deg, var(--almond), var(--cream)); border-bottom: 1px solid var(--line); }
.page-header .wrap { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding-block: clamp(1.9rem, 4.5vw, 3.25rem); }
@media (min-width: 760px) { .page-header .wrap { grid-template-columns: 1.08fr 0.92fr; } }
.page-header h1 { margin: 0 0 .2em; }
.page-header .lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 46ch; margin: .6rem 0 1.1rem; }
/* tighten the first content section that follows a page header */
.page-header + .section { padding-top: clamp(1.75rem, 4vw, 2.5rem); }

.ph-media { position: relative; margin: 0; }
.ph-media > img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.ph-collage { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.ph-collage img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.ph-collage img:first-child { aspect-ratio: 1 / 1.25; grid-row: span 2; }

/* "one of a kind" stamp — overlaps imagery (borrowed from the earthy direction) */
.stamp {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: var(--cream); border: 1.5px solid var(--clay); color: var(--clay);
  font-family: var(--body); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  border-radius: var(--radius); padding: .4rem .85rem; box-shadow: 0 10px 24px -14px rgba(46,44,39,.5);
}

/* circular "one of a kind" stamp — home hero (slow spin; stops under
   prefers-reduced-motion via the global rule) */
.stamp-circle {
  position: absolute; right: clamp(.8rem, 2vw, 1.6rem); bottom: clamp(.8rem, 2vw, 1.4rem);
  width: clamp(84px, 9vw, 116px); height: auto; z-index: 2;
  filter: drop-shadow(0 10px 24px rgba(43,36,27,.35));
  animation: stampSpin 40s linear infinite;
}
@keyframes stampSpin { to { transform: rotate(360deg); } }

/* small above-the-fold context rows in page headers */
.ph-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.ph-chips span { font-size: .8rem; border: 1px solid var(--line); border-radius: var(--radius); padding: .4rem .85rem; background: var(--paper); color: var(--ink); }
.ph-chips .on { background: var(--sage-dk); color: var(--cream); border-color: var(--sage-dk); }
.ph-facts { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .9rem; color: var(--muted); }
.ph-facts b { color: var(--ink); font-weight: 600; }
.ph-ministeps { display: flex; flex-wrap: wrap; gap: .45rem 1.2rem; font-size: .9rem; color: var(--muted); }
.ph-ministeps b { font-family: var(--display); font-style: italic; color: var(--clay); margin-right: .35rem; }

/* "Watch how it's made" — featured vertical workshop film */
.film { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 760px) { .film { grid-template-columns: 1fr auto; } }
.film-video { margin: 0 auto; width: 100%; max-width: 340px; position: relative; }
.film-video video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: var(--radius); border: 1px solid rgba(185,153,91,.3); background: var(--oiled); box-shadow: 0 30px 60px -34px rgba(0,0,0,.65); display: block; }

/* Two-column intro */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 820px) { .split { grid-template-columns: 1.05fr 1fr; } }
.split-media { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--almond); border: 1px solid var(--line); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Sparkle divider (replaces the old ring divider) */
.ring-divider { height: 1px; border: 0; margin: 0; background: var(--line); position: relative; }
.ring-divider::after {
  content: "✦"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--cream); color: var(--gold); padding: 0 .6rem; font-size: 1rem; line-height: 1;
}
.section-tint + .ring-divider::after, .ring-divider.on-tint::after { background: var(--almond); }

/* ==========================================================================
   Product grid + cards
   ========================================================================== */
/* Gallery-style cards: no boxes — the piece, then a caption line.
   ("Each one, the only one of its kind" is said once in the section head,
   so the grid stays quiet; badges appear only for exceptions.) */
.product-grid {
  display: grid; gap: clamp(1.8rem, 4vw, 2.8rem) clamp(1.2rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.card {
  background: transparent; border: 0; border-radius: 0;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.card-media { aspect-ratio: 4 / 5; background: var(--almond); overflow: clip; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.035); }
.card-body { padding: .9rem 0 0; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.card-cap { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 1.5px solid transparent; padding-bottom: .35rem; }
.card:hover .card-cap { border-bottom-color: var(--gold); }
.card-title { font-family: var(--display); font-size: 1.3rem; font-weight: 400; line-height: 1.2; }
.card-price { font-family: var(--display); font-weight: 400; color: var(--clay); font-size: 1.1rem; white-space: nowrap; }
.card-tag {
  order: 5; align-self: flex-start; font-size: .78rem; letter-spacing: .05em;
  font-weight: 400; color: var(--muted); background: none; padding: 0; border-radius: 0;
}
.card-oneoff { margin-top: auto; font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: .35rem; }
.card-oneoff .sparkle { width: .9em; height: .9em; }

/* Merchandising badges + sale pricing */
.pbadges { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .6rem; }
.card-media, .xsell-img { position: relative; }
.card-media .pbadges, .xsell-img .pbadges { position: absolute; top: .5rem; left: .5rem; margin: 0; flex-direction: column; align-items: flex-start; z-index: 2; }
.pbadge { font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: .22rem .5rem; border-radius: var(--radius); background: var(--oiled); color: var(--oiled-cream); box-shadow: 0 2px 8px -3px rgba(0,0,0,.35); }
/* On grids, "one of a kind" / "in a bundle" are the norm, not news — badge only the exceptions (Sale/Sold/New/Bundle). The product page still shows them all. */
.card-media .pbadge--oneoff, .card-media .pbadge--inbundle,
.xsell-img .pbadge--oneoff, .xsell-img .pbadge--inbundle { display: none; }
.pbadge--sale { background: var(--clay); color: #fff; }
.pbadge--new { background: var(--sage-dk); color: #fff; }
.pbadge--upd { background: var(--sage); color: #fff; }
.pbadge--bundle { background: var(--gold); color: var(--ink); }
.pbadge--oneoff { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.pbadge--sold { background: #8a8378; color: #fff; }
.price-sale { color: var(--clay); font-weight: 700; }
.price-was { color: var(--muted); text-decoration: line-through; font-weight: 400; margin-left: .35rem; font-size: .9em; }
.pbadge--inbundle { background: var(--sage-dk); color: #fff; }

/* Bundle display */
.bundle-save { display: inline-block; background: color-mix(in srgb, var(--sage) 20%, #fff); color: var(--sage-dk); font-size: .8rem; font-weight: 700; padding: .15rem .55rem; border-radius: var(--radius); margin-left: .5rem; vertical-align: middle; }
.bundle-note { background: var(--almond); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: .7rem .9rem; font-size: .92rem; margin: 0 0 1.1rem; }
.bundle-note a { color: var(--sage-dk); font-weight: 600; }
.bundle-includes { margin-top: 1.75rem; }
.bundle-includes h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin: 0 0 .7rem; }
.bundle-includes ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.bundle-includes li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem .7rem; background: var(--paper); }
.bundle-includes a { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--ink); font-family: var(--display); font-size: 1.1rem; }
.bundle-includes img { width: 46px; height: 46px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); }
.bundle-includes .bi-price { color: var(--muted); font-size: .9rem; white-space: nowrap; }

/* ==========================================================================
   Process steps (a real sequence — numbering earns its place here)
   ========================================================================== */
.steps { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: 3rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0; font-family: var(--display); font-size: 2rem;
  color: var(--gold); font-weight: 600; font-style: italic;
}
.step::after { content: ""; position: absolute; top: .8rem; left: 3rem; right: 0; height: 1px; background: var(--line); }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ==========================================================================
   Makers strip
   ========================================================================== */
.makers { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 820px) { .makers { grid-template-columns: 1fr 1.1fr; } }
.makers-media { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--almond); max-width: 360px; margin-inline: auto; border: 1px solid var(--line); }
.makers-media img { width: 100%; height: 100%; object-fit: cover; }
.makers blockquote {
  font-family: var(--display); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-style: italic;
  line-height: 1.3; margin: 0 0 1rem; color: var(--ink);
}
.makers cite { font-style: normal; font-weight: 700; color: var(--sage-dk); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.band { background: var(--sage-dk); color: var(--cream); text-align: center; }
.band h2 { color: var(--cream); }
.band p { color: color-mix(in srgb, var(--cream) 86%, var(--sage)); max-width: 50ch; margin-inline: auto; }
.band .hero-actions { justify-content: center; }
.band .btn-primary { background: var(--cream); color: var(--ink); }
.band .btn-primary:hover { background: var(--almond); }
.band .btn-ghost { border-color: color-mix(in srgb, var(--cream) 55%, transparent); color: var(--cream); }
.band .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ==========================================================================
   Product detail
   ========================================================================== */
.pdp { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 820px) { .pdp { grid-template-columns: 1fr 1fr; align-items: start; } }
.pdp-media { display: flex; flex-direction: column; gap: .75rem; }
.pdp-gallery { border-radius: var(--radius); overflow: hidden; background: var(--almond); aspect-ratio: 1; border: 1px solid var(--line); }
.pdp-gallery img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.pdp-thumb { width: 72px; height: 72px; padding: 0; border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--almond); cursor: pointer; transition: border-color .15s; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb.is-active { border-color: var(--sage-dk); }
.pdp-thumb:focus-visible { outline: 2px solid var(--accent, var(--sage-dk)); outline-offset: 2px; }
.pdp-video { margin: .25rem 0 0; }
.pdp-video video { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); background: var(--ink); display: block; }
.pdp-video figcaption { font-size: .82rem; color: var(--muted); margin-top: .5rem; display: inline-flex; align-items: center; gap: .4rem; }
.pdp-price { font-family: var(--display); font-size: 2rem; font-weight: 400; color: var(--clay); margin: .25rem 0 .5rem; }
.pdp-variants { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.25rem; }
.pdp-variants .variant { font-size: .85rem; color: var(--muted); border: 1px solid var(--line); border-radius: var(--radius); padding: .25rem .7rem; }
.spec { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.spec th, .spec td { text-align: left; padding: .6rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec th { font-family: var(--body); font-weight: 700; width: 38%; color: var(--muted); font-size: .9rem; }
.note { font-size: .9rem; color: var(--muted); }
/* PDP trust strip: delivery estimate, flat rates, returns, Klarna */
.pdp-trust { list-style: none; margin: 1.25rem 0 0; padding: 1rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .5rem; font-size: .9rem; color: var(--muted); }
.pdp-trust li { padding-left: 1.35rem; text-indent: -1.35rem; }
.pdp-trust .sparkle { margin-right: .35rem; }
.pdp-trust strong { color: var(--ink); font-weight: 700; }
.pdp-trust a { color: inherit; }
.trust-fine { font-size: .78rem; opacity: .8; }

/* Footer newsletter CTA + /subscribe form */
.footer-news { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 2.4rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(239,227,201,.18); margin-bottom: 2.2rem; }
.fn-title { font-family: var(--display); font-size: 1.35rem; margin: 0 0 .2rem; }
.fn-sub { font-size: .88rem; color: var(--oiled-muted); margin: 0; max-width: 34rem; }
.news-form { display: flex; gap: .6rem; flex: 0 1 26rem; min-width: 260px; }
.news-form input { flex: 1; width: auto; font: inherit; font-size: .95rem; padding: .65rem .8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); }
.news-form input:focus { outline: 2px solid var(--sage); border-color: var(--sage); }
.news-form .btn { white-space: nowrap; }
@media (max-width: 640px) { .footer-news { flex-direction: column; align-items: flex-start; } .news-form { width: 100%; } }
.opt-check { display: flex; gap: .55rem; align-items: flex-start; font-size: .88rem; color: var(--muted); cursor: pointer; }
.opt-check input { width: auto; margin-top: .2rem; }
/* Native payment stage (Stripe Payment Element) */
.pay-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 1.5rem; align-items: start; }
@media (min-width: 860px) { .pay-grid { grid-template-columns: 1fr 1.15fr; } }
.pay-summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.pay-total { border-top: 1px solid var(--line); margin-top: .5rem; padding-top: .8rem; font-weight: 700; font-size: 1.15rem; }
.pay-panel { min-height: 320px; }
.pay-btn { width: 100%; margin-top: 1.1rem; font-size: 1.05rem; padding: .9rem 1.2rem; }
.pay-btn:disabled { opacity: .55; cursor: default; }

/* Gift-guide index cards */
.occ-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.occ-card { display: block; text-decoration: none; color: inherit; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s, box-shadow .18s; }
.occ-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(43,36,27,.4); }
.occ-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.occ-name { display: block; font-family: var(--display); font-size: 1.15rem; padding: .8rem 1rem .1rem; }
.occ-sub { display: block; font-size: .78rem; color: var(--muted); padding: 0 1rem .9rem; letter-spacing: .04em; text-transform: uppercase; }

.acct-marketing { border-top: 1px solid var(--line); margin-top: 1.1rem; padding-top: .9rem; }
.acct-linkbtn { background: none; border: none; padding: 0; font: inherit; color: var(--clay); text-decoration: underline; cursor: pointer; }

/* ==========================================================================
   Cart icon + basket
   ========================================================================== */
.nav-cart { position: relative; display: inline-flex; align-items: center; color: var(--ink); }
.nav-cart svg { width: 22px; height: 22px; }
.nav-cart::after { content: none !important; }
/* Desktop nav: labelled basket button (mobile keeps the icon beside Menu) */
.nav-menu .nav-basket { border: 1.5px solid var(--ink); padding: .45rem .95rem; border-radius: var(--radius); font-size: .85rem; transition: background .18s, color .18s; }
.nav-menu .nav-basket:hover { background: var(--ink); color: var(--cream); }
.nav-cart--mobile { display: none; }
.cart-badge { position: absolute; top: -8px; right: -10px; background: var(--clay); color: #fff; font-size: .62rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 100px; display: inline-flex; align-items: center; justify-content: center; padding: 0 .25rem; }

.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; }
.basket { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; margin-top: 1.5rem; }
@media (min-width: 820px) { .basket { grid-template-columns: 1.6fr 1fr; } }
.basket-lines { display: flex; flex-direction: column; gap: 1rem; }
.basket-line { display: grid; grid-template-columns: 84px 1fr auto; gap: 1rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem; background: var(--paper); }
.basket-thumb img { width: 84px; height: 84px; object-fit: cover; border-radius: var(--radius); display: block; }
.basket-thumb--gift { display: flex; align-items: center; justify-content: center; width: 84px; height: 84px; background: var(--oiled); border-radius: var(--radius); }
.basket-thumb--gift img, .basket-thumb--gift svg { width: 72px; height: auto; object-fit: contain; }
.basket-name { font-family: var(--display); font-size: 1.15rem; text-decoration: none; color: var(--ink); display: block; }
.basket-each { font-size: .85rem; color: var(--muted); }
.basket-actions { display: flex; align-items: center; gap: .7rem; margin-top: .35rem; }
.qty { width: 56px; padding: .3rem .4rem; border: 1px solid var(--line); border-radius: 6px; font: inherit; }
.linkbtn { background: none; border: 0; padding: 0; font: inherit; font-size: .82rem; color: var(--sage-dk); cursor: pointer; text-decoration: underline; }
.linkbtn-muted { color: var(--muted); }
.basket-line-total { font-weight: 700; color: var(--sage-dk); }
.basket-summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; background: var(--almond); position: sticky; top: 90px; }
.basket-summary h2 { font-size: 1.3rem; margin: 0 0 .8rem; }
.brow { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .95rem; }
.brow-total { border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .7rem; font-weight: 700; font-size: 1.1rem; }
.brow-label { display: block; font-size: .8rem; font-weight: 700; margin: .6rem 0 .3rem; }
.basket-summary select { width: 100%; font: inherit; padding: .55rem .7rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); margin-bottom: .3rem; }
.brow-discount span:last-child { color: var(--sage-dk); font-weight: 700; }
.coupon { margin: .5rem 0 1rem; }
.coupon-form { display: flex; gap: .5rem; }
.coupon-form input { flex: 1; font: inherit; padding: .55rem .7rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); text-transform: uppercase; }
.coupon-form input:focus { outline: none; border-color: var(--sage); }
.coupon-applied { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .88rem; background: color-mix(in srgb, var(--sage) 12%, #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: .55rem .75rem; }
.coupon-msg { color: #a3432b; font-size: .85rem; margin: .4rem 0 0; }

/* Stars + reviews */
.stars { position: relative; display: inline-block; line-height: 1; }
.stars::before { content: "\2605\2605\2605\2605\2605"; letter-spacing: .08em; color: var(--line); }
.stars-fill { position: absolute; top: 0; left: 0; height: 100%; overflow: hidden; white-space: nowrap; }
.stars-fill::before { content: "\2605\2605\2605\2605\2605"; letter-spacing: .08em; color: var(--gold); }
.stars.sm { font-size: .82rem; }
.rating-summary { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--muted); font-size: .9rem; margin: -.2rem 0 .9rem; }
.card-rating { display: flex; align-items: center; gap: .35rem; margin: .05rem 0; }
.card-rating .crc { font-size: .72rem; color: var(--muted); }
.review { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.review-head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; font-size: .9rem; }
.review-verified { font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--sage-dk); background: color-mix(in srgb, var(--sage) 16%, #fff); padding: .15rem .5rem; border-radius: var(--radius); }
.review-date { color: var(--muted); font-size: .8rem; margin-left: auto; }
.review-title { font-family: var(--display); font-size: 1.2rem; margin: .5rem 0 .15rem; }
.review-body { color: var(--ink); margin: .15rem 0 0; }
.review-form-wrap { margin-top: 2rem; border-top: 2px solid var(--line); padding-top: 1.5rem; }
.review-form-wrap h3 { font-size: 1.4rem; margin: 0 0 .8rem; }
.rate { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: .12rem; margin-bottom: .9rem; }
.rate input { position: absolute; opacity: 0; width: 0; height: 0; }
.rate label { font-size: 1.9rem; line-height: 1; color: var(--line); cursor: pointer; transition: color .1s ease; }
.rate input:checked ~ label, .rate label:hover, .rate label:hover ~ label { color: var(--gold); }
.rate input:focus-visible + label { outline: 2px solid var(--sage-dk); outline-offset: 2px; }

/* Gift card buy form */
.gc-amounts { display: flex; flex-wrap: wrap; gap: .5rem; }
.gc-amt { display: inline-flex; align-items: center; gap: .4rem; border: 1.5px solid var(--line); border-radius: var(--radius); padding: .5rem .95rem; cursor: pointer; background: var(--paper); }
.gc-amt input { accent-color: var(--sage-dk); }
.gc-amt span { font-weight: 600; }
.gc-amt:has(input:checked) { border-color: var(--sage-dk); background: color-mix(in srgb, var(--sage) 12%, #fff); }
.gc-custom input { width: 5rem; border: 1px solid var(--line); border-radius: 6px; padding: .25rem .45rem; font: inherit; }

/* Basket cross-sell ("Complete the set") */
.xsell { margin-top: 2.5rem; border-top: 1px solid var(--line); padding-top: 1.5rem; }
.xsell h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin: 0 0 1rem; }
.xsell-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.xsell-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); display: flex; flex-direction: column; }
.xsell-img { display: block; aspect-ratio: 1; overflow: hidden; background: var(--almond); }
.xsell-img img { width: 100%; height: 100%; object-fit: cover; }
.xsell-body { padding: .7rem .8rem .8rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.xsell-name { font-family: var(--display); font-size: 1.05rem; line-height: 1.15; text-decoration: none; color: var(--ink); }
.xsell-price { color: var(--sage-dk); font-weight: 700; font-size: .9rem; }
.xsell-add { margin-top: auto; }
.xsell-add button { width: 100%; font: inherit; font-size: .82rem; font-weight: 700; padding: .5rem; border: 1.5px solid var(--ink); background: transparent; color: var(--ink); border-radius: var(--radius); cursor: pointer; transition: background .15s, color .15s; }
.xsell-add button:hover { background: var(--ink); color: var(--cream); }

/* Etsy tags on the product page */
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.25rem 0 .5rem; }
.tag-pill {
  font-size: .74rem; color: var(--sage-dk); background: var(--almond);
  border: 1px solid var(--line); padding: .25rem .7rem; border-radius: var(--radius);
}

/* ==========================================================================
   Checkout — one delivery step; postage follows the address
   ========================================================================== */
.checkout { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; margin-top: 1.5rem; }
@media (min-width: 860px) { .checkout { grid-template-columns: 1.5fr 1fr; } }
.ship-form { display: flex; flex-direction: column; gap: 1.1rem; max-width: 640px; }
.ship-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .ship-row { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } .ship-row .ship-field--sm { max-width: 180px; } }
.ship-field label { margin-bottom: .35rem; }
.ship-field label .opt { font-weight: 400; color: var(--muted); }
.ship-field select { width: 100%; font: inherit; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); }
.ship-field select:focus { border-color: var(--sage); outline: none; }
.field-err { color: #A3432B; font-size: .85rem; margin: .35rem 0 0; }
.ship-submit { margin-top: .5rem; align-self: flex-start; }

/* Saved-address picker (signed-in customers) */
.addr-picker { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem; margin: 0; display: flex; flex-direction: column; gap: .55rem; background: var(--paper); }
.addr-picker legend { font-weight: 700; font-size: .9rem; padding: 0 .4rem; }
.addr-pick { display: flex; gap: .6rem; align-items: baseline; font-weight: 400; font-size: .95rem; margin: 0; cursor: pointer; }
.addr-pick input, .addr-default-check input { width: auto; flex: 0 0 auto; }
.addr-pick input { accent-color: var(--sage-dk); }
.addr-new { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.1rem; min-inline-size: 0; }
.addr-save-row { grid-template-columns: auto 1fr; align-items: center; }
.addr-save-label { max-width: 200px; }
.addr-default-check { display: inline-flex; gap: .5rem; align-items: center; font-weight: 400; font-size: .95rem; margin: 0; cursor: pointer; }
.addr-default-check input { accent-color: var(--sage-dk); }

/* Address book on the account page */
.addr-item { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: baseline; }
.addr-label { font-weight: 700; }
.addr-line { margin: .25rem 0 0; }
.addr-actions { display: flex; gap: .9rem; align-items: baseline; }
.addr-form { margin-top: 1.4rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.addr-form-title { font-size: 1.25rem; margin: 0 0 .2rem; }

/* ==========================================================================
   Contact / forms
   ========================================================================== */
.form-grid { display: grid; gap: 1.1rem; max-width: 540px; }
label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: .35rem; }
input, textarea {
  width: 100%; font: inherit; padding: .7rem .85rem; border: 1.5px solid var(--line);
  border-radius: var(--radius); background: var(--paper); color: var(--ink);
}
input:focus, textarea:focus { border-color: var(--sage); outline: none; }

/* FAQ accordions */
.faq { max-width: 780px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.4rem); padding: 1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--muted); margin: 0 0 1.1rem; max-width: 66ch; }
.faq details[open] summary { color: var(--sage-dk); }

/* Lede + prose */
.lede { font-family: var(--display); font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 500; color: var(--ink); max-width: 60ch; line-height: 1.35; }
.prose { max-width: 65ch; }
.prose p { color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--oiled); color: var(--oiled-muted); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-inner { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-emblem { width: 44px; height: 44px; color: var(--almond); }
.footer-name { font-family: var(--display); font-size: 1.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--cream); margin: .6rem 0 .25rem; }
.footer-line { color: color-mix(in srgb, var(--almond) 78%, transparent); max-width: 32ch; }
.footer-nav, .footer-social { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a, .footer-social a { text-decoration: none; color: color-mix(in srgb, var(--almond) 86%, transparent); font-size: .95rem; }
.footer-nav a:hover, .footer-social a:hover { color: var(--cream); }
.footer-social-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0 0 .3rem; }
.social-icons { display: flex; gap: .55rem; margin-top: .2rem; }
.footer-social .social-icon {
  width: 40px; height: 40px; border-radius: 11px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--almond); background: transparent;
  border: 1px solid color-mix(in srgb, var(--almond) 28%, transparent);
  transition: transform .15s ease, color .15s ease, border-color .15s ease;
}
.footer-social .social-icon:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.social-icon svg { width: 20px; height: 20px; }
.social-icon:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.social-icon .etsy-e { font-family: var(--display); font-weight: 600; font-size: 1.3rem; line-height: 1; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--almond) 18%, transparent); }
.footer-legal a { color: color-mix(in srgb, var(--almond) 78%, transparent); text-decoration: none; font-size: .82rem; }
.footer-legal a:hover { color: var(--cream); }
.footer-fine { text-align: center; margin-top: 1rem; font-size: .82rem; color: color-mix(in srgb, var(--almond) 55%, transparent); }

/* Legal / policy pages */
.legal { max-width: 760px; }
.legal h2 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); margin: 2rem 0 .5rem; }
.legal h3 { font-size: 1.12rem; margin: 1.3rem 0 .35rem; }
.legal p, .legal li { color: var(--ink); }
.legal ul { padding-left: 1.2rem; }
.legal li { margin: .3rem 0; }
.legal a { color: var(--sage-dk); }
.legal-meta { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.legal-note { background: var(--almond); border-left: 3px solid var(--clay); border-radius: var(--radius); padding: .9rem 1.1rem; font-size: .9rem; color: var(--muted); margin: 1.5rem 0; }

/* ==========================================================================
   Mobile nav
   ========================================================================== */
@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block; background: none; border: 1.5px solid var(--line); color: var(--ink);
    padding: .45rem .9rem; border-radius: var(--radius); font: inherit; font-weight: 700; font-size: .85rem; cursor: pointer;
  }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: .25rem; background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem var(--gap);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: .6rem 0; width: 100%; }
  .nav-cta { display: inline-block; margin-top: .5rem; }
  .header-inner { gap: .5rem; }
  .wordmark { gap: .45rem; min-width: 0; }
  .wordmark-emblem { width: 32px; height: 32px; }
  .wordmark-text { font-size: .98rem; }
  .wordmark-text em { font-size: .46rem; letter-spacing: .34em; }
  /* cart always reachable on mobile, beside the Menu button */
  .nav { display: flex; align-items: center; flex: 0 0 auto; }
  .nav-cart--mobile { display: inline-flex; margin-right: .55rem; }
  .nav-menu .nav-cart { display: none; }
}
@media (max-width: 480px) {
  .wordmark-text { display: none; }            /* logo mark only on phones — keeps room for cart + Menu */
  .wordmark-emblem { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* --- Gift cards page ----------------------------------------------------- */
.gc-hero { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.gc-hero > * { min-width: 0; }
.gc-cardwrap { margin: 0; max-width: 100%; }
.gc-cardart { border-radius: 24px; box-shadow: 0 34px 70px -28px rgba(46,44,39,.6), 0 10px 24px -14px rgba(46,44,39,.45); transform: rotate(-3deg); animation: gcFloat 7s ease-in-out infinite; will-change: transform; }
.gc-cardart svg { display: block; width: 100%; height: auto; border-radius: 24px; }
.gc-cardart:hover { animation-play-state: paused; transform: rotate(0deg) translateY(-6px) scale(1.015); transition: transform .5s ease; }
@keyframes gcFloat {
  0%   { transform: rotate(-3deg) translateY(0); }
  50%  { transform: rotate(-3deg) translateY(-14px); }
  100% { transform: rotate(-3deg) translateY(0); }
}
.gc-intro h1 { margin-top: .3rem; }
.gc-perks { list-style: none; padding: 0; margin: 1.4rem 0 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem .6rem; }
.gc-perks li { font-size: .82rem; font-weight: 600; color: var(--sage-dk); background: color-mix(in srgb, var(--sage) 14%, #fff); border: 1px solid color-mix(in srgb, var(--sage) 32%, transparent); border-radius: var(--radius); padding: .4rem .85rem; display: inline-flex; gap: .45rem; align-items: center; }
.gc-perks li::before { content: "\2726"; color: var(--clay); font-size: .78em; }
.gc-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.gc-occasions { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.gc-occasion { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .45rem; transition: transform .25s ease, box-shadow .25s ease; }
.gc-occasion:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -22px rgba(46,44,39,.4); }
.gc-occasion .oc-season { font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--clay); display: inline-flex; align-items: center; gap: .45rem; }
.gc-occasion .oc-season::before { content: "\2726"; font-size: .95em; }
.gc-occasion h3 { margin: .05rem 0 .1rem; }
.gc-occasion p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.55; }

.gc-panel { background: var(--paper); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: 0 24px 60px -40px rgba(46,44,39,.5); max-width: 760px; margin-inline: auto; }
.gc-panel .giftcard-form { margin-top: 1.4rem; }

@media (max-width: 860px) {
  .gc-hero { grid-template-columns: 1fr; gap: 2.2rem; }
  .gc-cardwrap { order: -1; width: 100%; max-width: 440px; margin-inline: auto; }
  .gc-cardart { transform: none; animation: none; }
}

/* --- Account page -------------------------------------------------------- */
.acct-wrap { max-width: 820px; }
.acct-head { margin-bottom: clamp(1.4rem, 4vw, 2.2rem); }
.acct-head .lede { margin-top: .4rem; }
.acct-flash { background: color-mix(in srgb, var(--sage) 16%, #fff); border: 1px solid color-mix(in srgb, var(--sage) 34%, transparent); color: var(--sage-dk); font-weight: 600; padding: .7rem 1rem; border-radius: 8px; margin-bottom: 1.2rem; }

.acct-card { background: var(--paper); border: 1px solid var(--line); border-radius: calc(var(--radius) + 3px); padding: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 1.2rem; box-shadow: 0 20px 48px -40px rgba(46,44,39,.5); }
.acct-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; margin-bottom: 1.1rem; }
.acct-card-head h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: 0; }
.acct-count { font-size: .82rem; font-weight: 600; color: var(--muted); background: var(--almond); border-radius: var(--radius); padding: .1rem .6rem; }

.acct-pill { display: inline-flex; align-items: center; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .2rem .55rem; border-radius: var(--radius); white-space: nowrap; }
.acct-pill.ok { background: color-mix(in srgb, var(--sage) 20%, #fff); color: var(--sage-dk); }
.acct-pill.warn { background: color-mix(in srgb, var(--clay) 16%, #fff); color: var(--clay); }
.acct-pill.muted { background: var(--almond); color: var(--muted); }

.acct-profile-form { display: grid; gap: 1rem; max-width: 460px; }
.acct-field { display: grid; gap: .35rem; }
.acct-field label { font-size: .8rem; font-weight: 700; color: var(--ink); }
.acct-field input { font: inherit; padding: .6rem .75rem; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); }
.acct-field input:focus { outline: 2px solid var(--sage); outline-offset: 0; border-color: var(--sage); }
.acct-field input:disabled { background: var(--almond); color: var(--muted); }
.acct-email-row { display: flex; align-items: center; gap: .6rem; }
.acct-email-row input { flex: 1; min-width: 0; }

.acct-list { display: flex; flex-direction: column; }
.acct-item { padding: 1.1rem 0; border-top: 1px solid var(--line); }
.acct-item:first-child { border-top: 0; padding-top: 0; }

.gc-item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.gc-item-info { min-width: 0; }
.gc-code { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: .95rem; font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.gc-from { margin: .25rem 0 0; }
.gc-item-value { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; }
.gc-balance { font-family: var(--display); font-size: 1.6rem; line-height: 1; color: var(--ink); }
.gc-of { font-size: .78rem; color: var(--muted); }

.order-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 1rem; align-items: center; }
.order-thumb { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; background: var(--almond); border: 1px solid var(--line); }
.order-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.order-names { font-weight: 600; }
.order-sub { font-size: .85rem; color: var(--muted); margin-top: .25rem; display: flex; align-items: center; gap: .5rem; }
.order-total { font-family: var(--display); font-size: 1.3rem; color: var(--ink); }

.acct-empty { color: var(--muted); margin: 0; }
.acct-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: .5rem; }
.acct-btn-quiet { border-color: var(--line); color: var(--ink); }
.acct-btn-quiet:hover { background: var(--ink); color: var(--cream); }

@media (max-width: 560px) {
  .gc-item { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .gc-item-value { text-align: left; align-items: flex-start; }
}
