/* ============================================================
   Linnea — Production preview stylesheet
   Self-contained. Reuses the v1.1 design system tokens (inlined
   below so the bundle is portable), drops the design-doc canvas
   chrome, collapses the desktop/mobile artboards into a single
   responsive layout. No new design decisions.
   ------------------------------------------------------------
   Breakpoints:
     >= 961px  desktop layout
     <= 960px  mobile layout (grids collapse, header trims)
     <= 768px  design-system mobile type scale kicks in
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Karla:wght@400;500&display=swap');

:root {
  /* type */
  --font-display: "Instrument Serif", "Instrument Serif Fallback", Georgia, serif;
  --font-body:    "Karla", "Helvetica Neue", Arial, sans-serif;
  --fw-regular: 400;
  --fw-medium:  500;

  /* palette */
  --bone:        #FFFEFC;
  --sand:        #FAF6ED;
  --ink:         #1F1B16;
  --ink-soft:    #4A4239;
  --ink-mute:    #8C8478;
  --bone-soft:   #FCF9F2;
  --bone-mute:   #C9C2B2;
  --clay:        #B08968;
  --clay-deep:   #6B4F36;
  --clay-light:  #C9A684;
  --hairline:    #F2EDE0;
  --hairline-dk: #3A332A;
  --surface-border: #E2DAC4;
  --success:     #4F6B4A;
  --sale:        #8E3F2A;

  /* spacing & layout */
  --section-py: 96px;
  --section-px: 48px;
  --max-content: 1440px;

  /* type scale (desktop) */
  --t-display-size: 72px;
  --t-h1-size:      56px;
  --t-h2-size:      40px;
  --t-h3-size:      28px;
  --t-h4-size:      20px;
  --t-bodylg-size:  18px;
  --t-body-size:    16px;
  --t-bodysm-size:  14px;
  --t-eyebrow-size: 12px;
  --t-btn-size:     14px;

  /* motion */
  --dur-quick:  120ms;
  --dur-base:   240ms;
  --ease-out:   cubic-bezier(0.2, 0, 0, 1);
}

/* mobile type scale */
@media (max-width: 768px) {
  :root {
    --t-display-size: 44px;
    --t-h1-size:      36px;
    --t-h2-size:      28px;
    --t-h3-size:      22px;
    --t-h4-size:      18px;
    --t-bodylg-size:  16px;
    --t-body-size:    15px;
    --t-eyebrow-size: 11px;
    --section-py:     56px;
    --section-px:     20px;
  }
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body-size);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  margin: 0;
  text-wrap: pretty;
}
.display { font-size: var(--t-display-size); line-height: 1.04; letter-spacing: -0.012em; }
h1, .h1 { font-size: var(--t-h1-size); line-height: 1.06; letter-spacing: -0.008em; font-family: var(--font-display); font-weight: var(--fw-regular); margin: 0; }
h2, .h2 { font-size: var(--t-h2-size); line-height: 1.14; letter-spacing: -0.004em; font-family: var(--font-display); font-weight: var(--fw-regular); margin: 0; }
h3, .h3 { font-size: var(--t-h3-size); line-height: 1.2;  font-family: var(--font-display); font-weight: var(--fw-regular); margin: 0; }
h4, .h4 { font-size: var(--t-h4-size); line-height: 1.32; font-family: var(--font-display); font-weight: var(--fw-regular); margin: 0; }

p { margin: 0; line-height: 1.6; }
.body-lg { font-size: var(--t-bodylg-size); line-height: 1.55; }
.body    { font-size: var(--t-body-size);   line-height: 1.6; }
.body-sm { font-size: var(--t-bodysm-size); line-height: 1.55; color: var(--ink-soft); }

.eb, .eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow-size);
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  color: inherit;
}
.eb--accent { color: var(--clay-deep); }

a { color: inherit; text-decoration: none; }

/* ============================================================
   Scheme surfaces
   ============================================================ */
.scheme-foundation { background: var(--bone); color: var(--ink); }
.scheme-surface    { background: var(--sand); color: var(--ink); }
.scheme-contrast   { background: var(--ink);  color: var(--bone-soft); }

/* ============================================================
   Section containers
   ============================================================ */
.section { padding: var(--section-py) var(--section-px); }
.section--tight { padding-top: 64px; padding-bottom: 64px; padding-left: var(--section-px); padding-right: var(--section-px); }
@media (max-width: 768px) {
  .section--tight { padding-top: 48px; padding-bottom: 48px; }
}
.section--bleed { padding: 0; }
.container { max-width: var(--max-content); margin: 0 auto; }
.w-md { max-width: 900px; margin-left: auto; margin-right: auto; }
.w-sm { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-size: var(--t-btn-size);
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: var(--fw-medium);
  height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--ink);
  color: var(--bone);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background var(--dur-quick) var(--ease-out), color var(--dur-quick), border-color var(--dur-quick);
  white-space: nowrap;
}
.btn:hover { background: #2C2620; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bone); }
.btn--link {
  background: transparent;
  color: inherit;
  border: 0;
  border-bottom: 1px solid currentColor;
  height: auto;
  padding: 4px 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}
.btn--overlay-solid { background: rgba(255,255,255,0.96); color: var(--ink); }
.btn--overlay-solid:hover { background: #fff; }
.btn--contrast { background: var(--bone-soft); color: var(--ink); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-stretch { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  text-decoration: none;
}
.link-arrow--inline { font-size: 14px; }

/* ============================================================
   Icons
   ============================================================ */
.lu {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.lu--sm { width: 16px; height: 16px; }
.lu--md { width: 20px; height: 20px; }

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: inherit;
  cursor: pointer; padding: 0;
}

/* ============================================================
   Form controls
   ============================================================ */
.input, .select, .textarea {
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  width: 100%;
  padding: 12px 14px;
  line-height: 1.4;
}
.input { height: 48px; padding: 0 14px; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--ink); }
.email-row { display: flex; gap: 0; width: 100%; max-width: 480px; }
.email-row .input { flex: 1; }
@media (max-width: 600px) {
  .email-row { flex-direction: column; gap: 12px; }
  .email-row .btn { justify-content: center; }
}

/* ============================================================
   Demo banner (template-demo label, dismissable)
   ============================================================ */
.demo-banner {
  background: #14110D;
  color: var(--bone-mute);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.demo-banner b { color: var(--bone-soft); font-weight: var(--fw-medium); }
.demo-banner .close {
  position: absolute;
  right: 12px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0;
  color: var(--bone-mute);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.demo-banner .close:hover { color: var(--bone-soft); }
@media (max-width: 600px) {
  .demo-banner { font-size: 10px; padding: 8px 36px; line-height: 1.4; text-align: center; }
}

/* ============================================================
   Announcement bar
   ============================================================ */
.anno {
  height: 36px;
  background: var(--ink);
  color: var(--bone-soft);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) { .anno { height: 32px; font-size: 10px; } }

/* ============================================================
   Header
   ============================================================ */
.hdr {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px;
  z-index: 2;
}
@media (max-width: 960px) {
  .hdr { padding: 14px 20px; grid-template-columns: 32px 1fr 32px; }
}
.hdr--transparent { background: transparent; color: #fff; }
.hdr--solid { background: var(--bone); color: var(--ink); border-bottom: 1px solid var(--hairline); }
.hdr--floating {
  position: absolute;
  top: var(--hdr-top, 0);
  left: 0; right: 0;
  z-index: 3;
}
.nav {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.nav a { color: inherit; }
.nav a:hover { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.wordmark {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: inherit;
}
@media (max-width: 960px) { .wordmark { font-size: 20px; text-align: center; } }
.hdr-icons { display: flex; gap: 4px; justify-content: flex-end; align-items: center; }
.nav-mobile-only { display: none; }
.nav-desktop-only { display: flex; }
@media (max-width: 960px) {
  .nav-desktop-only { display: none; }
  .nav-mobile-only { display: inline-flex; }
}

/* ============================================================
   Hero (image with text overlay)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #2C2520;
  height: 760px;
}
@media (max-width: 960px) { .hero { height: 620px; } }
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(31,27,22,0.32);
}
.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 0 48px;
  justify-content: center;
  align-items: flex-start;
  max-width: 720px;
}
@media (max-width: 960px) {
  .hero-content {
    padding: 0 20px 64px;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}
.hero-content .eb { color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.hero-content .display { color: #fff; max-width: 640px; margin-bottom: 20px; }
.hero-content .body-lg { color: rgba(255,255,255,0.88); max-width: 480px; margin-bottom: 36px; }
@media (max-width: 960px) {
  .hero-content .display, .hero-content .body-lg { max-width: 100%; }
  .hero-content .body-lg { margin-bottom: 28px; }
}
@media (max-width: 600px) {
  .hero-content .btn-row { flex-direction: column; align-items: stretch; width: 100%; gap: 14px; }
  .hero-content .btn { justify-content: center; }
}

/* responsive image swap for hero */
.hero--home .hero-img { background-image: url("images/hero-home.png"); }
@media (max-width: 768px) {
  .hero--home .hero-img { background-image: url("images/hero-home-mobile.png"); }
}
.hero--about .hero-img { background-image: url("images/about-hero.png"); }

/* ============================================================
   Editorial moment (full-bleed image with overlay)
   ============================================================ */
.editorial {
  position: relative;
  overflow: hidden;
  height: 640px;
}
@media (max-width: 960px) { .editorial { height: 560px; } }
.editorial-img {
  position: absolute; inset: 0;
  background-image: url("images/editorial-coffee.png");
  background-size: cover;
  background-position: center;
}
.editorial-overlay { position: absolute; inset: 0; background: rgba(31,27,22,0.30); }
.editorial-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding: 0 96px;
  max-width: 720px;
}
@media (max-width: 960px) {
  .editorial-content { padding: 0 24px; justify-content: center; align-items: center; text-align: center; max-width: 100%; }
}
.editorial-content .eb { color: rgba(255,255,255,0.92); margin-bottom: 20px; }
.editorial-content .h1 { color: #fff; max-width: 600px; margin-bottom: 18px; }
.editorial-content .body-lg { color: rgba(255,255,255,0.9); max-width: 460px; margin-bottom: 28px; }
.editorial-content .btn--link { color: #fff; border-color: rgba(255,255,255,0.7); }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item { padding: 0 32px; text-align: left; }
.trust-item + .trust-item { border-left: 1px solid var(--surface-border); }
.trust-item .lu { color: var(--ink); margin-bottom: 18px; }
.trust-item .eb { margin-bottom: 8px; }
@media (max-width: 960px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .trust-item { padding: 0; text-align: center; }
  .trust-item + .trust-item { border-left: 0; }
}

/* ============================================================
   Collection / product grid head
   ============================================================ */
.coll-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .coll-head { margin-bottom: 32px; flex-direction: column; align-items: flex-start; }
}
.coll-head-l .eb { margin-bottom: 14px; color: var(--clay-deep); }
.coll-head-l h2 { margin-bottom: 14px; }
.coll-head-l p { max-width: 540px; color: var(--ink-soft); }
.coll-link { white-space: nowrap; align-self: flex-end; }
@media (max-width: 960px) { .coll-link { align-self: flex-start; margin-top: 4px; } }

/* ============================================================
   Product card + grid
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; } }

.pcard { display: block; text-decoration: none; color: inherit; }
.pcard-img {
  aspect-ratio: 4 / 5;
  width: 100%;
  background: #E2D6C2;
  overflow: hidden;
  position: relative;
}
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--dur-base) var(--ease-out); }
.pcard:hover .pcard-img img { opacity: 0.92; }
.pcard-name { margin-top: 12px; font-size: 14px; line-height: 1.4; }
.pcard-price { margin-top: 2px; font-size: 13px; color: var(--ink-soft); }
@media (max-width: 960px) { .pcard-price { font-size: 12px; } }

/* warm-neutral fallback when an img is missing */
.pcard-img--blank { background: #E2D6C2; }

/* ============================================================
   Brand story (Multiple media with text · overlap, homepage)
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) { .story { grid-template-columns: 1fr; gap: 32px; } }
.story-text .eb { color: var(--clay-deep); margin-bottom: 18px; }
.story-text .h2 { margin-bottom: 24px; }
.story-text .body-lg { color: var(--ink-soft); margin-bottom: 16px; }
.story-text .body-lg + .body-lg { margin-bottom: 32px; }
.story-media {
  position: relative;
  aspect-ratio: 5 / 6;
  width: 100%;
}
.story-media .m1, .story-media .m2 {
  position: absolute;
  overflow: hidden;
  background: #E2D6C2;
}
.story-media .m1 { inset: 0 14% 18% 0; }
.story-media .m2 { inset: 30% 0 0 38%; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Image with text (About A3) and Multiple media (separated)
   ============================================================ */
.iwt, .mmt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .iwt, .mmt { grid-template-columns: 1fr; gap: 32px; }
}
.iwt--reverse .iwt-img, .mmt--media-right .mmt-media { order: 2; }
.iwt--reverse .iwt-text, .mmt--media-right .mmt-text { order: 1; }
@media (max-width: 960px) {
  .iwt--reverse .iwt-img, .mmt--media-right .mmt-media { order: 2; }
  .iwt--reverse .iwt-text, .mmt--media-right .mmt-text { order: 1; }
}

.iwt-img, .mmt-media {
  aspect-ratio: 5 / 6;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #E2D6C2;
}
.iwt-img img, .mmt-media img { width: 100%; height: 100%; object-fit: cover; }
.iwt-text .eb, .mmt-text .eb { color: var(--clay-deep); margin-bottom: 18px; }
.iwt-text h2, .mmt-text h2 { margin-bottom: 24px; }
.iwt-text p, .mmt-text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.iwt-text p strong { color: var(--ink); font-weight: var(--fw-medium); }
.iwt-text p:last-of-type, .mmt-text p:last-of-type { margin-bottom: 0; }
@media (max-width: 768px) {
  .iwt-text p, .mmt-text p { font-size: 15px; }
}

/* materials breakdown block inside iwt */
.matlist {
  display: grid;
  gap: 18px;
  margin: 18px 0 20px;
  padding: 18px 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}
.mat-item .name {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  color: var(--ink);
  font-size: 15px;
}
.mat-item p { margin: 4px 0 0; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   Multi-column (About values, Contact direct)
   ============================================================ */
.mcol-head { text-align: center; margin-bottom: 64px; }
.mcol-head .eb { color: var(--clay-deep); }
@media (max-width: 768px) { .mcol-head { margin-bottom: 40px; } }
.mcol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 960px) { .mcol { grid-template-columns: 1fr; gap: 32px; } }
.mcol-item .lu { color: var(--ink); margin-bottom: 18px; }
.mcol-item h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.004em;
  margin: 0 0 14px;
}
@media (max-width: 768px) { .mcol-item h3 { font-size: 20px; } }
.mcol-item p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* contact direct-contact variant */
.contact-col h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
}
@media (max-width: 768px) { .contact-col h3 { font-size: 20px; } }
.contact-col .em { font-size: 16px; color: var(--ink); margin: 0 0 6px; }
.contact-col .sub { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.contact-col .sub a { color: var(--clay-deep); border-bottom: 1px solid var(--clay-deep); padding-bottom: 1px; }

/* ============================================================
   Testimonials
   ============================================================ */
.tcard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .tcard-head { margin-bottom: 32px; } }
.tcard-head .eb { color: var(--clay-deep); margin-bottom: 14px; }
.tgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .tgrid { grid-template-columns: 1fr; gap: 16px; } }
.tcard {
  border: 1px solid var(--surface-border);
  padding: 32px;
}
@media (max-width: 768px) { .tcard { padding: 24px; } }
.tcard blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
}
@media (max-width: 768px) { .tcard blockquote { font-size: 19px; } }
.tcard cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 13px;
  color: var(--ink-soft);
}

/* ============================================================
   Press logos
   ============================================================ */
.press { text-align: center; }
.press .label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.press-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 960px) { .press-row { grid-template-columns: 1fr; gap: 20px; } }
.plogo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--fw-regular);
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-align: center;
}
.plogo--sans {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   Newsletter
   ============================================================ */
.news { text-align: center; }
.news .eb { color: var(--clay-deep); margin-bottom: 18px; }
.news h2 { margin-bottom: 18px; }
.news .body-lg { color: var(--ink-soft); margin: 0 auto 32px; max-width: 540px; }
.news-form { display: flex; justify-content: center; }
.news-form .email-row { max-width: 460px; }

/* ============================================================
   Above-footer (compressed trust strip)
   ============================================================ */
.above-footer {
  background: var(--sand);
  color: var(--ink);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 32px 48px;
}
@media (max-width: 960px) { .above-footer { padding: 24px 20px; } }
.above-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 960px) { .above-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.above-item { display: flex; align-items: center; gap: 12px; }
@media (max-width: 960px) { .above-item { align-items: flex-start; flex-direction: column; gap: 8px; } }
.above-item .lu { color: var(--ink); width: 22px; height: 22px; }
.above-item .stack { display: flex; flex-direction: column; gap: 2px; }
.above-item .lab {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  line-height: 1.3;
}
.above-item .sub { font-size: 11px; color: var(--ink-soft); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--bone-soft);
  padding: 80px 48px 32px;
}
@media (max-width: 960px) { .footer { padding: 48px 20px 24px; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; } }
.footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--bone-mute);
  margin: 0 0 20px;
}
.footer .news-col h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  color: var(--bone-soft);
  margin: 0 0 12px;
}
@media (max-width: 768px) { .footer .news-col h3 { font-size: 22px; } }
.footer .news-col p { color: var(--bone-mute); margin-bottom: 20px; }
.footer .news-col .eb { color: var(--bone-mute); margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer a { color: var(--bone-soft); text-decoration: none; }
.footer a:hover { border-bottom: 1px solid var(--bone-soft); padding-bottom: 1px; }
.footer .input { color: var(--bone-soft); border-color: var(--hairline-dk); }
.footer .input::placeholder { color: var(--bone-mute); }
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--bone-soft);
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid var(--hairline-dk);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--bone-mute);
}
@media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; } }
.footer-bottom a { color: var(--bone-mute); }

/* ============================================================
   Collection banner (overlay hero with breadcrumb + title)
   ============================================================ */
.cbanner {
  position: relative;
  overflow: hidden;
  height: 480px;
}
@media (max-width: 960px) { .cbanner { height: 440px; } }
.cbanner-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cbanner-overlay { position: absolute; inset: 0; background: rgba(31,27,22,0.34); }
.cbanner-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 48px;
  gap: 18px;
}
@media (max-width: 960px) { .cbanner-content { padding: 0 20px; gap: 14px; } }
.cbanner-content .eb { color: rgba(255,255,255,0.92); }
.cbanner-content .display, .cbanner-content h1 { color: #fff; max-width: 700px; }
.cbanner-content .body-lg, .cbanner-content .body { color: rgba(255,255,255,0.92); max-width: 540px; }
.cbanner-img--daily {
  background-image: url("images/hero-home.png");
}
@media (max-width: 768px) {
  .cbanner-img--daily { background-image: url("images/hero-home-mobile.png"); }
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--ink-soft);
}
.crumb a { color: inherit; }
.crumb .sep { color: var(--ink-mute); }
.crumb .cur { color: var(--ink); }
.crumb--overlay { color: rgba(255,255,255,0.85); position: absolute; top: 86px; left: 48px; z-index: 2; }
.crumb--overlay .sep { color: rgba(255,255,255,0.5); }
.crumb--overlay .cur { color: #fff; }
.crumb--inline { padding: 18px 48px 0; }
@media (max-width: 960px) {
  .crumb--overlay { top: 72px; left: 20px; }
  .crumb--inline { padding: 14px 20px 0; font-size: 10px; gap: 6px; }
}

/* ============================================================
   Collection grid (filters + grid + sort)
   ============================================================ */
.cgrid-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding: 64px 48px;
}
@media (max-width: 960px) {
  .cgrid-wrap { grid-template-columns: 1fr; gap: 0; padding: 24px 20px 48px; }
}

.filters h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--ink);
}
.filter-group { padding: 0 0 24px; border-bottom: 1px solid var(--hairline); margin-bottom: 24px; }
.filter-group:last-of-type { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.filter-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.filter-group li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); cursor: pointer; }
.check {
  width: 14px; height: 14px;
  border: 1px solid var(--ink); border-radius: 0;
  flex: none;
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
}
.check--on { background: var(--ink); color: var(--bone); }
.check--on::after {
  content: "";
  width: 7px; height: 4px;
  border: 1.5px solid var(--bone);
  border-top: 0; border-right: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}
.switch {
  width: 32px; height: 18px;
  background: var(--hairline);
  position: relative; border-radius: 9px;
  flex: none;
}
.switch::after {
  content: ""; position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: var(--bone);
  border-radius: 50%;
}

@media (max-width: 960px) {
  .filters { display: none; }
}

.gtools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 960px) { .gtools { margin-bottom: 20px; } }
.gtools-count { font-size: 13px; color: var(--ink-soft); }
.sortbar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  border: 1px solid var(--hairline);
  padding: 0 14px;
  height: 40px;
  cursor: pointer;
}
.sortbar .lab { color: var(--ink-soft); margin-right: 4px; }
.filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  border: 1px solid var(--hairline);
  padding: 0 14px;
  height: 40px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
@media (max-width: 960px) { .filter-btn { display: inline-flex; } }

.cgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
@media (max-width: 960px) { .cgrid { grid-template-columns: 1fr 1fr; gap: 24px 12px; } }

/* Promo push (sits inline in the grid) */
.ppush {
  position: relative;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.ppush-img {
  aspect-ratio: 4 / 5;
  background-image: url("images/editorial-coffee.png");
  background-size: cover;
  background-position: center;
}
.ppush-body { padding: 20px 4px 0; }
@media (max-width: 768px) { .ppush-body { padding: 14px 2px 0; } }
.ppush .eb { color: var(--clay-deep); margin-bottom: 8px; }
.ppush .h4 { margin: 0 0 12px; }
.ppush .lnk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ============================================================
   Product page
   ============================================================ */
.prod {
  display: grid;
  grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
  gap: 48px;
  padding: 32px 48px 80px;
  max-width: var(--max-content);
  margin: 0 auto;
}
@media (max-width: 960px) { .prod { grid-template-columns: 1fr; gap: 24px; padding: 16px 0 32px; } }

.gallery { display: flex; flex-direction: column; gap: 16px; }
.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #E8DCC4;
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 84px;
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  cursor: pointer;
  background: #DCCFB8;
  overflow: hidden;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb--active { border-color: var(--ink); }
@media (max-width: 960px) {
  .gallery-thumbs { display: none; }
}
.dots {
  display: none;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
@media (max-width: 960px) { .dots { display: flex; } }
.dots .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hairline); }
.dots .dot--on { background: var(--ink); }

.pinfo { display: flex; flex-direction: column; }
@media (max-width: 960px) { .pinfo { padding: 24px 20px 32px; } }

.pinfo-vendor {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.pinfo-title {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: -0.004em;
  margin: 0 0 14px;
  color: var(--ink);
}
@media (max-width: 768px) { .pinfo-title { font-size: 28px; } }
.stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.stars-glyphs { color: var(--ink); letter-spacing: 1px; font-size: 14px; }
.pinfo-price {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: var(--fw-regular);
  color: var(--ink);
  margin: 0 0 8px;
}
@media (max-width: 768px) { .pinfo-price { font-size: 20px; } }
.pinfo-installments { font-size: 13px; color: var(--ink-soft); margin: 0 0 24px; }
.pseparator { height: 1px; background: var(--hairline); margin: 24px 0; border: 0; }
.pinfo-desc { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.vp-label { font-size: 12px; letter-spacing: 0.04em; font-weight: var(--fw-medium); color: var(--ink-soft); margin-bottom: 10px; }
.vp-label b { color: var(--ink); font-weight: var(--fw-medium); margin-left: 4px; }
.vp { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.vp-opt {
  height: 44px;
  min-width: 56px;
  padding: 0 14px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.vp-opt--on { border-color: var(--ink); background: var(--ink); color: var(--bone); }
.vp-opt--out { color: var(--ink-mute); border-style: dashed; text-decoration: line-through; }
.vp-sub { font-size: 12px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--hairline);
  height: 48px;
}
.qty-btn {
  width: 44px; height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.qty-val { width: 48px; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }

.buy-row { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.btn--shop-pay {
  background: #5A31F4; color: #fff; border: 0;
  height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  cursor: pointer;
}
.btn--apple { background: #000; color: #fff; height: 48px; border: 0; }
.buy-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.pickup { display: flex; gap: 12px; align-items: flex-start; }
.pickup .dot-on { width: 8px; height: 8px; border-radius: 50%; background: var(--success); margin-top: 6px; flex: none; }
.pickup-title { font-size: 14px; font-weight: var(--fw-medium); margin: 0 0 2px; color: var(--ink); }
.pickup-body { font-size: 13px; color: var(--ink-soft); margin: 0 0 6px; }
.pickup-link { font-size: 12px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }

.pairs-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.pairs-head h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.pairs-sub { font-size: 12px; color: var(--ink-soft); margin: 0; }
.pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pair-card { display: flex; gap: 12px; text-decoration: none; color: inherit; align-items: center; }
.pair-img {
  width: 80px;
  aspect-ratio: 1 / 1;
  flex: none;
  background: #E8DCC4;
  overflow: hidden;
}
.pair-img img { width: 100%; height: 100%; object-fit: cover; }
.pair-card .name { font-size: 13px; line-height: 1.4; }
.pair-card .price { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 768px) {
  .badges { grid-template-columns: 1fr; gap: 14px; }
  .badge { flex-direction: row !important; align-items: center !important; gap: 14px; }
  .badge + .badge { padding-top: 14px; border-top: 1px solid var(--hairline); }
}
.badge { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.badge .lu { color: var(--ink); }
.badge .lab { font-family: var(--font-body); font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.2; }
.badge .sub { font-size: 11px; color: var(--ink-soft); line-height: 1.4; }

/* Accordions (collapsible) */
.acc { border-top: 1px solid var(--hairline); }
.acc:last-child { border-bottom: 1px solid var(--hairline); }
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary .lu { transition: transform var(--dur-base) var(--ease-out); }
.acc[open] summary .lu { transform: rotate(180deg); }
.acc-body { padding: 0 0 24px; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.acc-body p { margin: 0 0 12px; line-height: 1.65; color: var(--ink-soft); }
.acc-body p:last-child { margin-bottom: 0; }
.acc-body strong { color: var(--ink); font-weight: var(--fw-medium); }
.acc-body .acc-h { display: block; color: var(--ink); font-weight: var(--fw-medium); margin: 16px 0 4px; }
.acc-body .acc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}

.share-row {
  display: flex; gap: 12px; align-items: center;
  padding: 20px 0 0;
}
.share-row .lab {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--ink-soft);
  margin-right: 4px;
}

/* Recently viewed (4-up grid in section--tight) */
.recently-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .recently-grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; } }

/* ============================================================
   Collection-list page
   ============================================================ */
.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  padding: 32px 48px 96px;
  max-width: var(--max-content);
  margin: 0 auto;
}
@media (max-width: 960px) { .list-grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; padding: 24px 20px 48px; } }
.listcard {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: #DCCFB8;
}
.listcard-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.listcard-overlay { position: absolute; inset: 0; background: rgba(31,27,22,0.30); }
.listcard-name {
  position: absolute;
  left: 20px; bottom: 18px;
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 32px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.004em;
  z-index: 1;
}
@media (max-width: 768px) { .listcard-name { font-size: 22px; left: 14px; bottom: 12px; } }
.listcard--all { background: var(--ink); color: var(--bone); }
.listcard--all .listcard-img { background: var(--ink); }
.listcard--all .listcard-overlay { display: none; }
.listcard--all .listcard-cta {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  z-index: 1;
}
.listcard--all .listcard-cta .lab {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--bone-mute);
}
.listcard--all .listcard-cta .nm {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 36px;
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.004em;
}
@media (max-width: 768px) { .listcard--all .listcard-cta .nm { font-size: 24px; } }

/* ============================================================
   Page header (Rich text style)
   ============================================================ */
.page-head {
  text-align: center;
  padding: 96px 48px 48px;
  max-width: var(--max-content);
  margin: 0 auto;
}
@media (max-width: 768px) { .page-head { padding: 56px 20px 32px; } }
.page-head .eb { color: var(--clay-deep); margin-bottom: 18px; }
.page-head h1 { margin: 0 auto 18px; max-width: 760px; }
.page-head .body-lg { color: var(--ink-soft); margin: 0 auto; max-width: 600px; }
.page-head a { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 0 48px 96px;
  max-width: var(--max-content);
  margin: 0 auto;
}
@media (max-width: 960px) {
  .faq-wrap { grid-template-columns: 1fr; gap: 0; padding: 0 20px 56px; }
}
.faq-side {
  position: sticky;
  top: 24px;
  align-self: start;
}
.faq-side h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.faq-side ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.faq-side a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  padding: 6px 0 6px 12px;
  margin-left: -12px;
  border-left: 1px solid transparent;
}
.faq-side a.is-active { border-left-color: var(--ink); font-weight: var(--fw-medium); }

@media (max-width: 960px) {
  .faq-side {
    position: relative;
    margin: 0 -20px 24px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .faq-side::-webkit-scrollbar { display: none; }
  .faq-side h4 { display: none; }
  .faq-side ul { flex-direction: row; gap: 8px; }
  .faq-side a {
    flex: none;
    font-size: 12px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.06em;
    padding: 8px 14px;
    margin: 0;
    border: 1px solid var(--hairline);
    color: var(--ink);
    white-space: nowrap;
  }
  .faq-side a.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
}

.faq-cat { margin-bottom: 56px; }
@media (max-width: 768px) { .faq-cat { margin-bottom: 40px; } }
.faq-cat:last-child { margin-bottom: 0; }
.faq-cat h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.faq-cat h3 .count { color: var(--ink-mute); font-weight: var(--fw-regular); margin-left: 6px; }
.faq-acc summary {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: 0;
  padding: 24px 0;
  color: var(--ink);
}
@media (max-width: 768px) { .faq-acc summary { font-size: 17px; padding: 20px 0; } }
.faq-acc .acc-body { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 768px) { .faq-acc .acc-body { font-size: 14px; } }

/* ============================================================
   Contact form
   ============================================================ */
.cform-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-content);
  margin: 0 auto;
}
@media (max-width: 960px) { .cform-wrap { grid-template-columns: 1fr; gap: 24px; } }
.cform-head .eb { color: var(--clay-deep); margin-bottom: 14px; }
.cform-head h2 { margin-bottom: 18px; }
.cform-head .body, .cform-head .body-lg { color: var(--ink-soft); }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: var(--fw-medium);
}
.field label .req { color: var(--clay-deep); margin-left: 4px; }
.select {
  height: 48px;
  padding: 0 40px 0 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231F1B16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.textarea { min-height: 140px; resize: vertical; padding: 14px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { padding: 0 32px; }
@media (max-width: 600px) { .form-submit .btn { width: 100%; justify-content: center; } }

/* faq link block (contact page) */
.faqlink { text-align: center; }
.faqlink .eb { color: var(--clay-deep); margin-bottom: 14px; }
.faqlink .body-lg, .faqlink .body { color: var(--ink-soft); max-width: 560px; margin: 0 auto 24px; }
.faqlink-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ============================================================
   About hero italic helper
   ============================================================ */
.hero-content .body-lg em {
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================================
   Sticky add-to-cart (product page footer)
   ============================================================ */
.stickybar {
  position: sticky;
  bottom: 0;
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
}
@media (max-width: 960px) { .stickybar { padding: 12px 20px; } }
.stickybar-thumb {
  width: 44px; height: 44px;
  background: #E8DCC4;
  flex: none;
  overflow: hidden;
}
.stickybar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.stickybar-meta { flex: 1; min-width: 0; }
.stickybar-meta .nm { font-size: 13px; line-height: 1.3; }
.stickybar-meta .pr { font-size: 12px; color: var(--ink-soft); }
.stickybar .btn { height: 40px; padding: 0 20px; font-size: 13px; }
