@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
h2 { font-size: clamp(2.3rem, 5vw, 4rem); }

.container {
  width: min(100% - 6rem, 1440px);
  margin-inline: auto;
}

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

.eyebrow {
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.65rem;
  border: 1px solid var(--color-ink);
  background: transparent;
  color: var(--color-ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--color-ink); color: #fff; }
.button--primary:hover { background: var(--color-accent); border-color: var(--color-accent); }
.button--light { border-color: #fff; color: #fff; }

/* Announcement and navigation */
.site-banner {
  background: #725a33;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-banner__inner {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-banner__link {
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.site-banner__link:hover { border-bottom-color: #fff; }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 250, 241, 0.96);
  border-bottom: 1px solid rgba(24, 23, 20, 0.08);
}

.site-header__inner {
  min-height: 6.2rem;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
}

.brand { flex: 0 0 auto; display: grid; justify-items: center; }
/* The framework emits brand__wordmark in the header and brand__logo in the
   footer; both are sized here so neither can render at its natural size. */
.brand__logo,
.brand__wordmark { width: 8.6rem; max-height: 3.8rem; object-fit: contain; }
.site-header .brand__logo,
.site-header .brand__wordmark { width: auto; height: 4.75rem; max-height: none; }
.brand__tagline { display: none; }

.site-nav { margin-left: auto; }
.site-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.2vw, 2.6rem);
}

.site-nav__list > li > a:not(.button) {
  position: relative;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* A label broken over two lines is what makes a tight header look broken
     rather than tight; let the row shrink its gaps instead. */
  white-space: nowrap;
}

.site-nav__list > li > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}
.site-nav__list > li > a:not(.button):hover::after,
.site-nav__list > li > a.is-current::after { right: 0; }

/* Language switcher: a compact select matching the uppercase nav links,
   with a border-left divider from the nav. */
.lang-switch {
  margin-left: 0.4rem;
  padding-left: 1rem;
  border: 0;
  border-left: 1px solid var(--color-border);
  font: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
/* No-JS fallback: plain language links. */
.lang-switch__fallback {
  display: inline-flex;
  gap: 0.6rem;
  padding-left: 1rem;
  border-left: 1px solid var(--color-border);
}
.lang-switch__fallback a {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  background: transparent;
  color: var(--color-ink);
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}
.nav-toggle__bar { position: relative; margin: auto; }
.nav-toggle__bar::before { position: absolute; top: -0.42rem; }
.nav-toggle__bar::after { position: absolute; top: 0.42rem; }

/* Full-bleed image hero with layered copy */
.hero {
  /*  The width of the copy column, named once so the veil over the photograph
      can be told where the words are. Fixed percentages were the whole problem:
      a veil tuned on a wide screen has slid off the text by the time the window
      is a laptop's, and the headline ends up over the dark gift box. */
  --hero-copy: min(36rem, 44%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #eadcc8;
}
/*  Solid where the copy is, gone before the ribbon, and every stop measured
    from the copy column rather than from the window. Kept as short as it can
    be: the photograph carries its own empty table on the left, so the veil is
    only insurance for the widths where the box creeps into the text — spread
    any further it stops protecting anything and just fades the picture. It
    reaches nothing inside the hero, so there is no edge to see. */
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(247, 239, 227, 0.96) 0,
    rgba(247, 239, 227, 0.92) calc(var(--hero-copy) * 0.62),
    rgba(247, 239, 227, 0.55) calc(var(--hero-copy) * 0.95),
    rgba(247, 239, 227, 0.14) calc(var(--hero-copy) + 4rem),
    rgba(247, 239, 227, 0) calc(var(--hero-copy) + 11rem));
}
.hero__inner {
  min-height: clamp(32rem, 38vw, 38rem);
  display: flex;
  align-items: center;
}
.hero__copy {
  position: relative;
  z-index: 2;
  width: var(--hero-copy);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}
.hero__headline {
  max-width: 10ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.5rem, 4.2vw, 4.8rem);
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero__headline .accent { display: block; color: inherit; }
.hero__lead { max-width: 29rem; color: #493a2c; font-size: clamp(0.98rem, 1.1vw, 1.12rem); }
.hero__lead p { margin-bottom: 0; }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__media { position: absolute; z-index: 0; inset: 0; }
/*  The gift box sits on the right of the photograph and the empty table on
    the left. When the window is narrower than the picture, cover has to crop
    something — so it crops the empty side, and the box stays in frame. */
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }

/* Shared cards */
.cards { padding-block: clamp(5rem, 9vw, 8.5rem); }
.cards > .container > h2 { max-width: 17ch; margin-bottom: 1.2rem; }
.cards__intro { max-width: 47rem; color: var(--color-muted); }
.cards__intro p { margin-bottom: 0; }
.cards__grid { margin: 3rem 0 0; padding: 0; list-style: none; display: grid; }
.card { position: relative; }
.card__icon { width: 100%; }
.card__icon--symbol { width: 2rem; height: 2rem; fill: currentColor; }
.card__title { font-size: 0.73rem; letter-spacing: 0.12em; line-height: 1.35; text-transform: uppercase; }
.card__text { color: var(--color-muted); font-size: 0.86rem; }
.card__text p:last-child { margin-bottom: 0; }
.card__link::after { content: ""; position: absolute; inset: 0; }
.cards__cta { margin: 2.3rem 0 0; }

/* Four proof points below the hero */
.cards--trust { padding-block: 0; background: var(--color-bg); border-bottom: 1px solid var(--color-border); }
.cards--trust .cards__grid { margin: 0; grid-template-columns: repeat(4, 1fr); }
.cards--trust .card {
  position: relative;
  min-height: 8.6rem;
  padding: 2.1rem 2rem 1.8rem 4.7rem;
  border-right: 1px solid var(--color-border);
}
.cards--trust .card:first-child { border-left: 1px solid var(--color-border); }
.cards--trust .card__icon--symbol {
  position: absolute;
  left: 1.7rem;
  top: 2rem;
  width: 1.65rem;
  height: 1.65rem;
  color: var(--color-accent);
}
.cards--trust .card__title { margin-bottom: 0.35rem; font-size: 0.66rem; }
.cards--trust .card__text { font-size: 0.7rem; line-height: 1.55; }

/* Product-test notice: explicit without replacing the catalogue presentation. */
.cards--validation { padding-block: clamp(3.5rem, 6vw, 5.5rem); background: #e9dcc7; border-block: 1px solid var(--color-border); }
.cards--validation > .container > h2 { max-width: 22ch; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.cards--validation .cards__intro { max-width: 58rem; color: #5f4e3c; }
.cards--validation .cards__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cards--validation .card { min-height: 12rem; padding: 2rem 2rem 1.8rem 4.8rem; background: rgba(255, 250, 241, 0.72); border: 1px solid rgba(72, 52, 31, 0.22); }
.cards--validation .card__icon--symbol { position: absolute; top: 2rem; left: 1.7rem; width: 1.8rem; height: 1.8rem; color: var(--color-accent); }
.cards--validation .card__title { margin-bottom: 0.65rem; }
.cards--validation .card__text { font-size: 0.78rem; line-height: 1.6; }
.cards--validation .card:has(.card__link) { padding-bottom: 4.5rem; }
.cards--validation .card:has(.card__link)::after { content: "→"; position: absolute; right: 2rem; bottom: 1.5rem; }

/* Product collection tiles */
.cards--collections { background: var(--color-surface); }
.cards--collections > .container { position: relative; }
.cards--collections > .container > h2 { font-size: clamp(2.5rem, 4vw, 3.8rem); }
.cards--collections .cards__grid { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.cards--collections .card { display: flex; flex-direction: column; padding-bottom: 1.4rem; border-bottom: 1px solid var(--color-border); }
.cards--collections .card__icon { aspect-ratio: 1.18 / 1; margin-bottom: 1.25rem; object-fit: cover; }
.cards--collections .card__title { margin: 0 0 0.65rem; }
.cards--collections .card__text { display: flex; flex: 1; flex-direction: column; padding-right: 2rem; line-height: 1.4; }
.cards--collections .card__text > p { display: flex; flex: 1; flex-direction: column; margin-bottom: 0; }
.cards--collections .card__text strong { display: block; margin-top: auto; padding-top: 0.75rem; color: var(--color-ink); font-size: 0.7rem; letter-spacing: 0.08em; line-height: 1.15; text-transform: uppercase; }
.cards--collections .card::after { content: "→"; position: absolute; right: 0.25rem; bottom: 1.25rem; transition: transform 180ms ease; }
.cards--collections .card:hover::after { transform: translateX(0.3rem); }
.cards--collections .cards__cta { position: absolute; right: 0; top: 0; margin: 0; }
.cards--collections .cards__cta .button { min-height: auto; padding: 0.3rem 0; border: 0; background: transparent; color: var(--color-ink); }
.cards--collections .cards__cta .button::after { content: "→"; margin-left: 0.7rem; font-size: 1rem; }

/* Dark business-services band */
.cards--services { padding-block: clamp(4.5rem, 7vw, 6.5rem); background: #211910; color: #fffaf1; }
.cards--services > .container {
  display: grid;
  grid-template-columns: minmax(17rem, 1.2fr) minmax(0, 3fr);
  column-gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.cards--services .eyebrow { color: #fff; }
.cards--services > .container > h2 { grid-column: 1; font-size: clamp(2.6rem, 4vw, 4.2rem); }
.cards--services .cards__intro { grid-column: 1; color: rgba(255,255,255,.63); }
.cards--services .cards__grid { grid-column: 2; grid-row: 1 / span 4; margin: 0; grid-template-columns: repeat(2, 1fr); }
.cards--services .card { min-height: 11.5rem; padding: 1.2rem 2rem 1.2rem 4.5rem; border-left: 1px solid rgba(255,255,255,.2); }
.cards--services .card__icon--symbol {
  position: absolute;
  left: 1.4rem;
  top: 0.9rem;
  width: 2rem;
  height: 2rem;
  color: #d2c3a9;
}
.cards--services .card__title { margin: 0 0 0.5rem; color: #e2d4bc; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.cards--services .card__text { color: rgba(255,255,255,.62); }
.cards--services .cards__cta { grid-column: 1; }
.cards--services .cards__cta .button { border-color: rgba(255,255,255,.65); color: #fff; }

/* Client names */
.logos { padding-block: 2.4rem; background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.logos__title { margin-bottom: 1.6rem; text-align: center; color: var(--color-muted); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; }
.logos__row { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logos__item { color: #282723; font-size: clamp(0.9rem, 1.55vw, 1.35rem); font-weight: 700; white-space: nowrap; }
.logos__item:nth-child(4) { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; }
.logos__item:nth-child(6) { font-family: var(--font-serif); font-size: 1.7rem; }

/* Editorial image triptych */
.cards--stories { padding: 0; background: #20180f; color: #fffaf1; }
.cards--stories > .container { width: 100%; max-width: none; }
.cards--stories .cards__grid { margin: 0; grid-template-columns: repeat(3, 1fr); }
.cards--stories .card { min-height: 27rem; overflow: hidden; padding: clamp(2rem, 4vw, 4.5rem); display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid rgba(255,255,255,.4); isolation: isolate; }
.cards--stories .card:last-child { border-right: 0; }
.cards--stories .card__icon { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.cards--stories .card::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(30,20,11,.05), rgba(30,20,11,.78)); }
.cards--stories .card:hover .card__icon { transform: scale(1.035); }
.cards--stories .card__title { max-width: 10ch; margin-bottom: 0.8rem; font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 3.1rem); font-weight: 500; letter-spacing: -0.02em; line-height: 0.98; text-transform: none; }
.cards--stories .card__text { max-width: 28rem; color: rgba(255,255,255,.78); font-size: 0.8rem; }
.cards--stories .card__link::before { content: "Mehr erfahren  →"; position: absolute; left: clamp(2rem, 4vw, 4.5rem); bottom: 1.6rem; font-family: var(--font-sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.cards--stories .card:has(.card__link) { padding-bottom: 5rem; }

/* Journal teaser */
.cards--journal { background: var(--color-bg); }
.cards--journal .cards__grid { grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-border); }
.cards--journal .card { min-height: 14rem; padding: 2.2rem; background: var(--color-surface); }
.cards--journal .card__title { margin-bottom: 1rem; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; letter-spacing: 0; line-height: 1.05; text-transform: none; }
.cards--journal .card:has(.card__link) { padding-bottom: 3.8rem; }
.cards--journal .card:has(.card__link)::after { content: "→"; position: absolute; right: 2.2rem; bottom: 1.8rem; transition: transform 180ms ease; }
.cards--journal .card:has(.card__link):hover::after { transform: translateX(0.3rem); }

/* CTA and contact */
.cta-band { padding-block: 5rem; background: #211910; color: #fffaf1; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { max-width: 16ch; margin: 0; }
.cta-band__text { color: rgba(255,255,255,.65); }

.contact { padding-block: clamp(5rem, 7vw, 7.5rem); background: var(--color-surface); }
.contact > .container { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); column-gap: clamp(4rem, 7vw, 7rem); }
.contact .eyebrow, .contact h2, .contact__intro, .contact__fallback { grid-column: 1; }
.contact h2 { max-width: 14ch; font-size: clamp(2.75rem, 3.7vw, 4rem); line-height: 1.03; }
.contact__intro { max-width: 38rem; color: var(--color-muted); }
.contact__form { grid-column: 2; grid-row: 1 / span 5; display: grid; gap: 1rem; }
.contact__form label { display: grid; gap: 0.4rem; color: var(--color-muted); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.contact__form input, .contact__form textarea { width: 100%; padding: 0.85rem 0; border: 0; border-bottom: 1px solid var(--color-border); border-radius: 0; outline: 0; background: transparent; color: var(--color-ink); }
.contact__form input:focus, .contact__form textarea:focus { border-color: var(--color-accent); }
.contact__form button { justify-self: start; margin-top: 1rem; }
.contact__status { min-height: 1.5rem; color: var(--color-accent); }
.contact__fallback { margin-top: 1.5rem; color: var(--color-muted); }
.contact__privacy { color: var(--color-muted); font-size: 0.7rem; line-height: 1.55; }
.contact__privacy p { margin: 0; }
.contact__privacy a { color: var(--color-ink); text-decoration: underline; text-underline-offset: 0.16em; }

.legal-contact { min-height: 55vh; padding-block: clamp(5rem, 9vw, 9rem); background: var(--color-surface); }
.legal-contact .container { max-width: 860px; }
.legal-contact h1 { max-width: 16ch; }
.legal-contact__intro, .legal-contact__body { max-width: 48rem; color: var(--color-muted); font-size: 1.05rem; }
.legal-contact__intro h3, .legal-contact__body h3 { margin: 2.8rem 0 0.8rem; color: var(--color-ink); font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; line-height: 1.12; }
.legal-contact__address { margin: 1.5rem 0; color: var(--color-ink); font-style: normal; line-height: 1.65; }
.legal-contact__address > span { display: block; }
.legal-contact__rows { max-width: 34rem; margin: 1.5rem 0 2.5rem; }
.legal-contact__rows > div { display: grid; grid-template-columns: 7rem 1fr; padding-block: 0.65rem; border-bottom: 1px solid var(--color-border); }
.legal-contact__rows dt { color: var(--color-muted); }
.legal-contact__rows dd { margin: 0; }
.legal-contact__rows a, .legal-contact__body a { color: var(--color-ink); text-decoration: underline; text-underline-offset: 0.18em; }
.legal-contact__body ul { padding-left: 1.2rem; }
.legal-contact__body li + li { margin-top: 0.45rem; }

/* Generic article/legal pages */
.richtext { min-height: 55vh; padding-block: clamp(5rem, 9vw, 9rem); background: var(--color-surface); }
.richtext .container { max-width: 860px; }
.richtext__body { color: var(--color-muted); }
.richtext h2 { max-width: 15ch; }
.richtext__body { max-width: 48rem; font-size: 1.05rem; }
.richtext__body p { margin-bottom: 1.25rem; }
.richtext__body h3 { margin: 2.8rem 0 0.8rem; color: var(--color-ink); font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; line-height: 1.12; }
.richtext__body ul { padding-left: 1.2rem; }
.richtext__body li + li { margin-top: 0.45rem; }
.richtext__body strong { color: var(--color-ink); }
.richtext__body a { color: var(--color-ink); text-decoration: underline; text-underline-offset: 0.18em; }

/* Story / philosophy split */
.about { padding-block: clamp(5.5rem, 9vw, 9rem); background: var(--color-surface); }
.about__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.about__media { margin: 0; }
.about__media img { width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; }
.about__sig { display: grid; margin-top: 1rem; }
.about__name { font-family: var(--font-serif); font-size: 1.3rem; }
.about__role { color: var(--color-muted); font-size: 0.75rem; }
.about__copy h2 { max-width: 12ch; }
.about__body { color: var(--color-muted); font-size: 1.02rem; }

/* Numbered service process */
.process { padding-block: clamp(5.5rem, 9vw, 8rem); background: var(--color-bg); }
.process h2 { max-width: 15ch; }
.process__steps { margin: 3.5rem 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--color-border); }
.step { min-height: 15rem; padding: 1.8rem 1.8rem 1.8rem 0; border-right: 1px solid var(--color-border); }
.step + .step { padding-left: 1.8rem; }
.step:last-child { border-right: 0; }
.step__num { display: block; margin-bottom: 3rem; color: var(--color-accent); font-family: var(--font-serif); font-size: 1.2rem; }
.step__title { margin-bottom: 0.7rem; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; line-height: 1.05; }
.step__text { color: var(--color-muted); font-size: 0.84rem; }

/* Native accessible FAQ accordion */
.faq { padding-block: clamp(5.5rem, 9vw, 8rem); background: var(--color-surface); }
.container--narrow { max-width: 980px; }
.faq h2 { max-width: 14ch; }
.faq__intro { max-width: 45rem; color: var(--color-muted); }
.faq__items { margin-top: 3rem; border-top: 1px solid var(--color-border); }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__question { position: relative; padding: 1.5rem 3rem 1.5rem 0; cursor: pointer; list-style: none; font-family: var(--font-serif); font-size: 1.45rem; line-height: 1.2; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: "+"; position: absolute; right: 0.4rem; top: 1.25rem; color: var(--color-accent); font-family: var(--font-sans); font-size: 1.4rem; font-weight: 300; }
.faq__item[open] .faq__question::after { content: "−"; }
.faq__answer { max-width: 46rem; padding: 0 3rem 1.6rem 0; color: var(--color-muted); }

/* Footer */
.site-footer { background: var(--color-bg); border-top: 1px solid var(--color-border); }
.site-footer__inner { padding-block: 4.8rem 1.8rem; display: grid; grid-template-columns: 1.4fr repeat(3, 0.85fr) 1.4fr; gap: clamp(1.5rem, 4vw, 4.5rem); }
.site-footer__about { display: grid; align-content: start; justify-items: start; gap: 1rem; }
.site-footer__logo { width: 8rem; }
.site-footer__text { color: var(--color-muted); font-size: 0.82rem; }
.site-footer__text p { margin: 0; }
.site-footer__about > a, .site-footer__contact a { font-size: 0.78rem; }
.site-footer__heading { margin-bottom: 1rem; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer__column ul, .site-footer__legal ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.52rem; }
.site-footer__column a, .site-footer__legal a { color: var(--color-muted); font-size: 0.76rem; }
.site-footer__column a:hover, .site-footer__legal a:hover { color: var(--color-ink); }
.site-footer__legal { grid-column: 4 / 6; grid-row: 2; align-self: start; }
.site-footer__legal .site-footer__heading { display: none; }
.site-footer__legal ul { display: flex; justify-content: flex-end; gap: 1.2rem; }
.site-footer__cta { grid-column: 5; grid-row: 1; }
.site-footer__cta-title { margin-bottom: 0.65rem; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer__cta-text { color: var(--color-muted); font-size: 0.76rem; }
.site-footer__cta .button { margin-top: 0.5rem; }
.site-footer__copyright { grid-column: 1 / 4; grid-row: 2; margin: 0; padding-top: 0.1rem; color: var(--color-muted); font-size: 0.67rem; }
.site-footer__credit a { color: inherit; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 0.2em; transition: color 180ms ease, text-decoration-color 180ms ease; }
.site-footer__credit a:hover { color: var(--color-ink); text-decoration-color: currentColor; }
.social-icon { width: 1.15rem; height: 1.15rem; fill: currentColor; }

@media (max-width: 1100px) {
  .site-nav__list { gap: 1rem; }
  .site-nav__list > li > a:not(.button) { font-size: 0.59rem; }
  .site-nav .button { padding-inline: 1rem; }
  .cards--trust .card { padding-left: 3.8rem; }
  .cards--trust .card__icon--symbol { left: 1.1rem; }
  .site-nav .button { white-space: nowrap; }
  .site-footer__inner { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .site-footer__cta, .site-footer__legal, .site-footer__copyright { grid-column: 1 / -1; grid-row: auto; }
  .site-footer__legal ul { justify-content: flex-start; }
}

@media (max-width: 979px) {
  .site-banner__text { max-width: 75%; }
  .site-header__inner { min-height: 5.1rem; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; margin: 0; padding: 1.25rem; background: var(--color-bg); border-top: 1px solid var(--color-border); box-shadow: 0 1rem 2rem rgba(0,0,0,.08); }
  .site-nav.is-open { display: block; }
  .site-nav__list { display: grid; align-items: stretch; gap: 0; }
  .site-nav__list > li > a { display: flex; padding: 0.9rem 0; }
  .site-nav__list > li > .button { margin-top: 0.7rem; }
  .hero { --hero-copy: min(32rem, 56%); }
  .hero__headline { font-size: clamp(3.25rem, 7vw, 4.25rem); }
  .cards--trust .cards__grid { grid-template-columns: repeat(2, 1fr); }
  .cards--trust .card { border-bottom: 1px solid var(--color-border); }
  .cards--validation .cards__grid { grid-template-columns: 1fr; }
  .cards--validation .card { min-height: 0; }
  .cards--collections .cards__grid { grid-template-columns: repeat(2, 1fr); }
  .cards--services > .container { grid-template-columns: 1fr; }
  .cards--services .eyebrow, .cards--services > .container > h2, .cards--services .cards__intro, .cards--services .cards__grid, .cards--services .cards__cta { grid-column: 1; grid-row: auto; }
  .cards--services .cards__grid { margin-top: 3rem; }
  .logos__row { overflow-x: auto; justify-content: flex-start; padding-bottom: 0.5rem; }
  .cards--stories .card { min-height: 23rem; padding-inline: 2rem; }
  .cards--stories .card__link::before { left: 2rem; }
  .contact > .container { grid-template-columns: 1fr; }
  .contact .eyebrow, .contact h2, .contact__intro, .contact__fallback, .contact__form { grid-column: 1; grid-row: auto; }
  .contact__form { margin-top: 3rem; }
  .about__inner { gap: 3rem; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--color-border); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 2rem, 1440px); }
  .site-banner__inner { min-height: 0; padding-block: 0.7rem; flex-wrap: wrap; gap: 0.25rem 1rem; }
  .site-banner__text { width: 100%; max-width: 100%; margin: 0; font-size: 0.56rem; line-height: 1.45; }
  .site-banner__link { display: inline-flex; font-size: 0.54rem; line-height: 1.5; }
  .brand__logo,
  .brand__wordmark { width: 7.4rem; }
  .site-header .brand__logo,
  .site-header .brand__wordmark { width: auto; height: 3.9rem; }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(247, 239, 227, 0.98) 0%,
      rgba(247, 239, 227, 0.91) 48%,
      rgba(247, 239, 227, 0.54) 73%,
      rgba(247, 239, 227, 0.16) 100%);
  }
  .hero__inner { min-height: 38rem; }
  .hero__copy { width: 100%; max-width: 22rem; align-self: flex-start; padding: 4rem 0; }
  .hero__headline { max-width: 9ch; font-size: clamp(3rem, 13vw, 4rem); }
  .hero__lead { max-width: 20rem; }
  .hero__media { inset: 0; height: auto; margin: 0; }
  .hero__media img { object-position: 74% center; }
  .cards--trust .cards__grid { grid-template-columns: 1fr; }
  .cards--trust .card { min-height: 7.3rem; border-left: 0 !important; border-right: 0; }
  .cards--validation .card { padding: 1.7rem 1.5rem 1.6rem 4.4rem; }
  .cards--validation .card__icon--symbol { left: 1.5rem; top: 1.7rem; }
  .cards--collections .cards__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards--collections .cards__cta { position: static; margin-top: 2rem; }
  .cards--services .cards__grid { grid-template-columns: 1fr; }
  .cards--services .card { min-height: 9rem; border-bottom: 1px solid rgba(255,255,255,.2); }
  .cards--stories .cards__grid { grid-template-columns: 1fr; }
  .cards--stories .card { min-height: 26rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.45); }
  .cards--journal .cards__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .cta-band .button { max-width: 100%; white-space: normal; text-align: center; }
  .contact > .container { grid-template-columns: 1fr; }
  .contact .eyebrow, .contact h2, .contact__intro, .contact__fallback, .contact__form { grid-column: 1; grid-row: auto; }
  .contact__form { margin-top: 2.5rem; }
  .contact h2 { font-size: clamp(2.55rem, 11vw, 3.25rem); }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { order: 2; }
  .process__steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: auto; padding: 1.6rem 0; border-right: 0; border-top: 1px solid var(--color-border); }
  .step__num { margin-bottom: 1.2rem; }
  .faq__question { font-size: 1.25rem; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__about, .site-footer__cta, .site-footer__legal, .site-footer__copyright { grid-column: 1 / -1; }
}

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

/* --------------------------------------------------------------------------
   Box studio — the teaser on /box-designer and its fullscreen overlay.
   -------------------------------------------------------------------------- */

.studio-teaser {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 2rem 1.9rem;
  max-width: 46rem;
}
.studio-teaser p { margin: 0 0 1.4rem; color: var(--color-muted); }
.studio-teaser--notice p { margin-bottom: 1.1rem; }

/* The studio takes the whole viewport; dvh keeps mobile toolbars from
   cropping the table. */
body.studio-open { overflow: hidden; }

.studio {
  position: fixed;
  inset: 0;
  z-index: 1000;
  height: 100dvh;
  background: var(--color-bg);
  display: grid;
  overflow: hidden;
}
.studio__stage { position: relative; width: 100%; height: 100%; }
.studio__canvas { display: block; width: 100%; height: 100%; touch-action: none; }
.studio__canvas.is-over { cursor: grab; }
.studio__canvas.is-dragging { cursor: grabbing; }

.studio__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 3;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.studio__close:hover { border-color: var(--color-accent); }

.studio__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.4rem;
  margin: 0;
  text-align: center;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  background: var(--color-bg);
  z-index: 4;
}

.studio__hint {
  position: absolute;
  left: 1.2rem; bottom: 1rem;
  margin: 0;
  max-width: 24rem;
  padding: 0.5rem 0.8rem;
  /* The table underneath is dark and varies, so the hint carries its own
     backing rather than relying on contrast with the artwork. */
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  border: 1px solid var(--color-border);
  font-size: 0.76rem;
  color: var(--color-muted);
  pointer-events: none;
}

/* Menu and bill float over the table so the box keeps the full stage. */
.studio__shelf,
.studio__bill {
  position: absolute;
  z-index: 2;
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(6px);
}
.studio__shelf {
  top: 1rem; left: 1rem;
  width: min(17rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: 1.1rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.studio__group h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.studio__swatches { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.studio__swatch {
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  cursor: pointer;
  padding: 0;
}
.studio__swatch[aria-pressed="true"] { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.studio__toggles { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.studio__toggle,
.studio__product {
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: var(--color-ink);
}
.studio__toggle { padding: 0.4rem 0.75rem; }
.studio__toggle[aria-pressed="true"] {
  background: var(--color-ink);
  color: var(--color-bg);
  border-color: var(--color-ink);
}

.studio__tray { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.studio__product {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.45rem 0.6rem;
  text-align: left;
}
.studio__product:hover { border-color: var(--color-accent); }
.studio__product { cursor: grab; touch-action: none; }
.studio__product:active { cursor: grabbing; }
/*  The product itself, carried under the pointer between the shelf and the
    table. It lifts and turns solid the moment the table is under it, so the
    difference between a drop that lands and one that does not is visible
    before letting go rather than after. */
.studio__ghost {
  position: fixed;
  z-index: 20;
  width: auto;
  height: 5.5rem;
  pointer-events: none;
  opacity: 0.55;
  filter: drop-shadow(0 6px 14px rgb(0 0 0 / 0.35));
  transform: translate(-50%, -50%) scale(0.92) rotate(-4deg);
  transition: opacity 140ms ease, transform 140ms ease;
}
.studio__ghost.is-over-table {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.06) rotate(0deg);
}
@media (prefers-reduced-motion: reduce) {
  .studio__ghost { transition: none; }
}
.studio__product small { color: var(--color-muted); font-size: 0.72rem; white-space: nowrap; }

/* The bill reads like a paper receipt tucked beside the box. */
.studio__bill {
  top: 1rem; right: 1rem;
  width: min(19rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: 1.2rem 1.2rem 1.3rem;
}
.studio__bill h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
}
.studio__lines { list-style: none; margin: 0 0 0.8rem; padding: 0; font-size: 0.82rem; }
.studio__lines li {
  display: grid;
  grid-template-columns: 1.1rem 1fr auto;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.28rem 0;
  border-bottom: 1px dotted var(--color-border);
}
.studio__lines button {
  border: 0;
  background: none;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0;
}
.studio__lines button:hover { color: var(--color-ink); }
.studio__empty { margin: 0 0 0.8rem; font-size: 0.8rem; color: var(--color-muted); }
.studio__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  margin: 0.6rem 0 0.3rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--color-border);
}
.studio__total strong { font-family: var(--font-serif); font-size: 1.5rem; white-space: nowrap; }
.studio__note { margin: 0 0 1rem; font-size: 0.72rem; color: var(--color-muted); }
.studio__actions { display: flex; flex-direction: column; gap: 0.5rem; }
.studio__actions .button { width: 100%; text-align: center; }
/*  Throwing the box away is a real action but never the point of the panel,
    so it reads as a quiet aside under the two things you actually came for. */
.studio__fresh {
  display: block;
  width: 100%;
  margin-top: 0.7rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-muted);
  font: inherit;
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}
.studio__fresh:hover { color: var(--color-ink); }

.studio__flash {
  position: absolute;
  left: 50%; top: 1.2rem;
  transform: translateX(-50%);
  z-index: 5;
  margin: 0;
  padding: 0.5rem 1.1rem;
  background: var(--color-ink);
  color: var(--color-bg);
  font-size: 0.8rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  /* On a phone the table needs the middle; menu and bill dock to the edges. */
  .studio__shelf,
  .studio__bill {
    left: 0; right: 0;
    width: auto;
    max-height: 42dvh;
    border-left: 0; border-right: 0;
  }
  .studio__shelf { top: auto; bottom: 0; border-bottom: 0; }
  .studio__bill { top: 0; border-top: 0; padding-top: 3.6rem; }
  .studio__hint { display: none; }
  .studio__tray { grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr)); }
}

/* Box studio — the local material tuner (press D). */
.studio__debug {
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: min(22rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: 1rem 1.1rem 1.2rem;
  background: color-mix(in srgb, var(--color-surface) 96%, transparent);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
}
.studio__debug h2 {
  display: flex; justify-content: space-between; align-items: center;
  margin: 0 0 0.7rem; font-family: var(--font-serif); font-size: 1.1rem;
}
.studio__debug h2 button { border: 0; background: none; font-size: 1.1rem; cursor: pointer; color: var(--color-muted); }
.studio__debug h3 {
  margin: 0.9rem 0 0.35rem; font-family: var(--font-sans); font-size: 0.66rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted);
}
.studio__debug-row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 0.5rem;
  align-items: center; margin-bottom: 0.3rem;
}
.studio__debug-row input { grid-column: 1 / -1; width: 100%; }
.studio__debug-row output { font-variant-numeric: tabular-nums; color: var(--color-muted); }
.studio__debug-actions { margin-top: 1rem; }
.studio__debug-actions .button { width: 100%; text-align: center; }
