/* ==========================================================================
   Watermark — Better than Bottled
   Brand stylesheet · 2026
   ========================================================================== */

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

:root {
  /* paper & ink */
  --paper:        #f1ece1;
  --canvas:       #f8f4ea;
  --canvas-warm:  #ece4d2;
  --ink:          #14201a;
  --ink-soft:     #2c3a31;
  --ink-mute:     #6f7a6e;

  /* colour */
  --moss:         #2f4a3a;
  --moss-deep:    #1c2e23;
  --sage:         #8aa28c;
  --water:        #5b7b8a;
  --water-deep:   #3c5b6c;
  --copper:       #a86f4a;
  --copper-deep:  #875136;

  /* lines & grain */
  --line:         #d8cfb9;
  --line-soft:    rgba(20,32,26,0.10);

  /* type */
  --serif:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* shadow */
  --shadow-1: 0 1px 2px rgba(20,32,26,.06), 0 8px 24px -12px rgba(20,32,26,.12);
  --shadow-2: 0 30px 60px -30px rgba(20,32,26,.30);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-weight: 360;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--copper-deep); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--copper); color: var(--canvas); }

/* ----- Type scale ------------------------------------------------------- */
h1, h2, h3, h4, h5, .serif {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.6rem); font-weight: 320; }
h2 { font-size: clamp(2.0rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
h4 { font-size: 1.2rem; line-height: 1.25; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--copper-deep);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--copper);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-2px);
}

.lead {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.pull {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.3;
  color: var(--moss);
}

.small { font-size: 14px; line-height: 1.55; color: var(--ink-mute); }
.tabular { font-variant-numeric: tabular-nums; }

/* ----- Layout primitives ------------------------------------------------ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 36px; }
.container-wide   { max-width: 1480px; margin: 0 auto; padding: 0 36px; }

@media (max-width: 720px) {
  .container, .container-narrow, .container-wide { padding: 0 22px; }
}

section { padding: clamp(80px, 9vw, 160px) 0; position: relative; }
.s-tight { padding: clamp(60px, 6vw, 100px) 0; }

.divider { height: 1px; background: var(--line); border: 0; }

/* ----- Header ----------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 0;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(241, 236, 225, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--canvas);
}
.brand-text {
  font-family: var(--serif);
  font-weight: 320;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-tagline {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.nav-links {
  display: flex; align-items: center; gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-cta {
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--canvas);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--moss-deep); color: var(--canvas); transform: translateY(-1px); }

.nav-toggle { display: none; width: 44px; height: 44px; }
.nav-toggle span {
  display: block; width: 22px; height: 1px; background: var(--ink); margin: 6px auto;
  transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; left: 22px; right: 22px; top: 80px;
    padding: 28px;
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-2);
  }
  .nav.is-open .nav-cta { display: inline-block; align-self: flex-start; margin-top: 14px; }
}

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--canvas);
}
.btn-primary:hover { background: var(--moss-deep); transform: translateY(-2px); color: var(--canvas); }
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--canvas); transform: translateY(-2px); }
.btn-link {
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: gap .2s ease, border-color .2s ease, color .2s ease;
}
.btn-link::after { content: '→'; font-weight: 300; }
.btn-link:hover { gap: 18px; border-color: var(--copper); color: var(--copper-deep); }

/* ----- Hero ------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 50% at 12% 22%, rgba(168,111,74,.08), transparent 60%),
    radial-gradient(70% 60% at 92% 80%, rgba(91,123,138,.10), transparent 65%);
}
.hero-copy {
  padding: 0 36px 0 max(36px, calc((100vw - 1280px) / 2 + 36px));
  max-width: 740px;
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  margin-top: 28px;
  font-style: italic;
  font-weight: 280;
  letter-spacing: -0.025em;
}
.hero-copy h1 em {
  font-style: normal;
  font-weight: 380;
  color: var(--moss);
}
.hero-copy .lead { margin-top: 28px; max-width: 540px; }
.hero-actions { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 64px;
  display: flex; flex-wrap: wrap; gap: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.hero-meta div strong {
  display: block;
  font-family: var(--serif);
  font-weight: 380;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.hero-meta div span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-art {
  position: relative;
  height: clamp(540px, 80vh, 820px);
  margin-right: max(0px, calc((100vw - 1480px) / 2));
  display: flex; align-items: stretch;
}
.hero-art .frame {
  position: relative; flex: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.hero-art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.hero-badge {
  position: absolute;
  top: 36px; left: -68px;
  width: 156px; height: 156px;
  border-radius: 50%;
  background: var(--canvas);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-1);
  animation: spin 26s linear infinite;
}
.hero-badge svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-badge .core {
  font-family: var(--serif);
  font-weight: 320;
  font-style: italic;
  font-size: 22px;
  color: var(--moss);
  animation: spin 26s linear infinite reverse;
  line-height: 1;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding-bottom: 60px; }
  .hero-art { height: 60vh; margin: 0 22px; }
  .hero-copy { padding: 0 22px; }
  .hero-badge { left: 22px; top: -56px; width: 120px; height: 120px; }
  .hero-badge .core { font-size: 17px; }
}

/* ----- Marquee ---------------------------------------------------------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--canvas);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--serif);
  font-weight: 320;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ink);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track svg { flex-shrink: 0; opacity: .55; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ----- Section title ---------------------------------------------------- */
.section-title {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}
.section-title__label { padding-top: 8px; }
.section-title__heading h2 { max-width: 14ch; }
.section-title__heading p {
  margin-top: 26px;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.7;
}
@media (max-width: 800px) {
  .section-title { grid-template-columns: 1fr; gap: 24px; }
}

/* ----- Story / Manifesto ------------------------------------------------ */
.manifesto {
  background: var(--canvas);
  padding: clamp(90px, 10vw, 160px) 0;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.manifesto-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-2);
}
.manifesto-img img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(20,32,26,.18) 100%);
}
.manifesto-body p { margin-top: 22px; font-size: 17px; line-height: 1.75; }
.manifesto-body .pull { margin: 36px 0; }
.manifesto-sig {
  margin-top: 48px;
  display: flex; align-items: center; gap: 18px;
}
.manifesto-sig .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.manifesto-sig .who {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute);
}

@media (max-width: 880px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ----- Process ---------------------------------------------------------- */
.process {
  background: var(--moss-deep);
  color: var(--canvas);
}
.process .eyebrow { color: var(--sage); }
.process .eyebrow::before { background: var(--sage); }
.process h2, .process h3, .process h4 { color: var(--canvas); }
.process .section-title__heading p { color: rgba(248,244,234,.78); }

.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(248,244,234,.12);
  border-top: 1px solid rgba(248,244,234,.12);
  border-bottom: 1px solid rgba(248,244,234,.12);
}
.stage {
  background: var(--moss-deep);
  padding: 50px 36px 60px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  transition: background .4s ease;
}
.stage:hover { background: #16241b; }
.stage-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 280;
  font-size: 64px;
  line-height: 1;
  color: var(--copper);
}
.stage-num::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--copper);
  margin-top: 20px;
}
.stage h4 { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.stage p { color: rgba(248,244,234,.72); font-size: 15px; line-height: 1.65; }

@media (max-width: 980px) {
  .stages { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .stages { grid-template-columns: 1fr; }
}

/* ----- Products grid ---------------------------------------------------- */
.products {
  background: var(--paper);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}
.product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: var(--copper);
}
.product-card .frame {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--canvas-warm);
}
.product-card .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.product-card:hover .frame img { transform: scale(1.04); }
.product-card .body {
  padding: 30px 30px 32px;
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.product-card .tag {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper-deep);
}
.product-card h3 { font-size: 24px; line-height: 1.15; }
.product-card .desc { font-size: 14.5px; color: var(--ink-mute); line-height: 1.6; }
.product-card .row {
  margin-top: auto; padding-top: 20px;
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--line);
}
.product-card .price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 360;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.product-card .price small { font-size: 13px; color: var(--ink-mute); margin-left: 4px; font-family: var(--sans); }
.product-card .arrow {
  font-size: 20px;
  color: var(--ink);
  transition: transform .25s ease, color .25s ease;
}
.product-card:hover .arrow { transform: translateX(6px); color: var(--copper-deep); }

/* feature card sizes (12-col) */
.product-card.col-7 { grid-column: span 7; }
.product-card.col-5 { grid-column: span 5; }
.product-card.col-6 { grid-column: span 6; }
.product-card.col-4 { grid-column: span 4; }
.product-card.col-12 { grid-column: span 12; }

@media (max-width: 980px) {
  .product-card.col-7, .product-card.col-5,
  .product-card.col-6, .product-card.col-4, .product-card.col-12 { grid-column: span 12; }
}

/* ----- Testimonials ----------------------------------------------------- */
.testimonials {
  background: var(--canvas);
}
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.tm {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 36px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  overflow: hidden;
}
.tm::before {
  content: '“';
  position: absolute;
  top: -36px; left: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 200px;
  line-height: 1;
  color: var(--copper);
  opacity: .18;
}
.tm-quote {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 320;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.tm-attr { display: flex; align-items: center; gap: 14px; }
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--canvas-warm);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  font-size: 19px;
}
.tm-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.tm-place { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); }

@media (max-width: 880px) { .tm-grid { grid-template-columns: 1fr; } }

/* ----- CTA strip -------------------------------------------------------- */
.cta-strip {
  background: var(--ink);
  color: var(--canvas);
  padding: clamp(80px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 30%, rgba(168,111,74,.18), transparent 60%),
    radial-gradient(50% 50% at 10% 80%, rgba(91,123,138,.12), transparent 60%);
}
.cta-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: end;
}
.cta-grid h2 { color: var(--canvas); font-style: italic; font-weight: 280; }
.cta-grid h2 em { font-style: normal; font-weight: 380; color: var(--copper); }
.cta-grid p { color: rgba(248,244,234,.78); margin-top: 24px; max-width: 50ch; font-size: 17px; }
.cta-grid .btn-primary { background: var(--canvas); color: var(--ink); }
.cta-grid .btn-primary:hover { background: var(--copper); color: var(--canvas); }
.cta-grid .btn-ghost { border-color: var(--canvas); color: var(--canvas); }
.cta-grid .btn-ghost:hover { background: var(--canvas); color: var(--ink); }
.cta-grid form {
  display: flex; gap: 12px;
  background: rgba(248,244,234,.10);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(248,244,234,.22);
  margin-top: 32px;
}
.cta-grid input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--canvas);
  padding: 14px 22px;
  font: inherit;
  outline: none;
  font-size: 15px;
}
.cta-grid input::placeholder { color: rgba(248,244,234,.55); }
.cta-grid form button {
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--canvas);
  color: var(--ink);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.cta-grid form button:hover { background: var(--copper); color: var(--canvas); }

@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; } }

/* ----- Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--canvas);
  padding: 90px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-top h5 {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 22px;
}
.footer-top ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-top a { font-size: 14.5px; color: var(--ink-soft); }
.footer-top a:hover { color: var(--copper-deep); }
.footer-brand-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 320;
  line-height: 1.4;
  color: var(--ink);
  max-width: 32ch;
  margin-top: 12px;
}
.footer-meta {
  margin-top: 36px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .pill {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
}

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ----- Page heading (interior pages) ------------------------------------ */
.page-head {
  padding: 200px 0 80px;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(168,111,74,.07), transparent 60%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { max-width: 16ch; margin-top: 24px; font-style: italic; font-weight: 280; }
.page-head h1 em { font-style: normal; font-weight: 380; color: var(--moss); }
.page-head p { margin-top: 30px; max-width: 60ch; font-size: 18px; line-height: 1.7; }
.crumbs { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); }
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--copper-deep); }

/* ----- Story timeline (about page) -------------------------------------- */
.timeline {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.timeline:last-child { border-bottom: 1px solid var(--line); }
.t-year {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.t-tag {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute);
}
.t-body h3 { margin-bottom: 22px; }
.t-body p { font-size: 17px; line-height: 1.75; max-width: 60ch; }
.t-body p + p { margin-top: 18px; }
.t-figure {
  margin-top: 30px;
  aspect-ratio: 16/10;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
}
.t-figure img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 800px) { .timeline { grid-template-columns: 1fr; gap: 18px; } }

/* ----- Team ------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.team-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
}
.team-card .frame {
  aspect-ratio: 4/5;
  background: var(--canvas-warm);
  overflow: hidden;
}
.team-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 32px 30px; display: flex; flex-direction: column; gap: 16px; }
.team-card h3 { font-size: 24px; }
.team-card .role { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper-deep); }
.team-card p { font-size: 14.5px; line-height: 1.65; }
@media (max-width: 720px) { .team-card { grid-template-columns: 1fr; } .team-card .frame { aspect-ratio: 4/3; }}
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }

/* ----- Shop page -------------------------------------------------------- */
.shop-intro { padding: 60px 0 30px; }
.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  gap: 24px; flex-wrap: wrap;
}
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--canvas);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover, .chip.is-active { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.shop-sort { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

/* product detail */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
  padding: 60px 0 40px;
}
.pdp-gallery {
  position: sticky; top: 100px;
}
.pdp-main {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--canvas-warm);
  border: 1px solid var(--line);
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.pdp-thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: 4px; border: 1px solid var(--line); cursor: pointer; }
.pdp-info h1 { font-style: italic; font-weight: 280; }
.pdp-price {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pdp-info .lead { margin-top: 20px; max-width: 50ch; font-size: 1.1rem; }
.pdp-spec {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.pdp-spec li {
  list-style: none;
  display: flex; justify-content: space-between; gap: 24px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.pdp-spec li:last-child { border-bottom: 0; }
.pdp-spec li span:first-child { color: var(--ink-mute); letter-spacing: 0.04em; }
.pdp-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .pdp { grid-template-columns: 1fr; gap: 40px; }
  .pdp-gallery { position: static; }
}

/* ----- FAQ -------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; }
.faq {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 360;
  color: var(--ink);
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--copper);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 18px 0 6px; max-width: 75ch; font-size: 16.5px; line-height: 1.75; }
.faq-body p + p { margin-top: 14px; }
.faq-body ul { padding-left: 22px; margin-top: 14px; }
.faq-body li { padding: 4px 0; }

/* ----- Contact ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info p { font-size: 16px; line-height: 1.7; }
.contact-info .row {
  display: flex; gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .row:first-of-type { border-top: 1px solid var(--line); }
.contact-info .label {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute);
  width: 110px; flex-shrink: 0; padding-top: 4px;
}
.contact-info .val { font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1.4; }

.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.field label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
}
.field input, .field textarea, .field select {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--moss);
  background: var(--paper);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .field-row { grid-template-columns: 1fr; } }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ----- Reveal animation ------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ----- Utility ---------------------------------------------------------- */
.flex { display: flex; }
.center { display: grid; place-items: center; }
.bg-canvas { background: var(--canvas); }
.bg-paper  { background: var(--paper); }
.bg-warm   { background: var(--canvas-warm); }
.txt-center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 60px; }

/* notice strip on shop */
.shop-notice {
  background: var(--canvas-warm);
  border-radius: 4px;
  padding: 18px 26px;
  font-size: 13px; line-height: 1.6;
  color: var(--ink-soft);
  border-left: 3px solid var(--copper);
  margin: 30px 0;
}
.shop-notice strong { color: var(--ink); }

/* certification badges row */
.certs {
  display: flex; gap: 38px; flex-wrap: wrap;
  align-items: center; justify-content: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.cert {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--moss);
  letter-spacing: 0.02em;
}
.cert small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* mini stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { background: var(--paper); padding: 38px 30px; text-align: center; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute);
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
