/* ═══════════════════════════════════════════════════════════
   SENSO — Design System
   New York · Designer lighting, marble & ceramics
   ═══════════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  /* Color */
  --canvas:    #FAF7F2;        /* soft warm white — alabaster */
  --cream:     #F3EDE3;        /* warmer secondary panels */
  --cream-2:   #EDE6DA;        /* even warmer accent */
  --ink:       #1A1612;        /* near-black warm */
  --ink-soft:  #2A241E;
  --muted:     #8A7F72;        /* secondary text */
  --muted-2:   #B5AC9F;        /* tertiary */
  --rule:      rgba(26,22,18,0.10);
  --rule-soft: rgba(26,22,18,0.06);
  --gold:      #B8933E;
  --terra:     #C4704A;

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono:  'DM Mono', ui-monospace, monospace;

  /* Layout */
  --gutter:   clamp(20px, 4vw, 48px);
  --shell:    1440px;
  --nav-h:    68px;
}

/* ── TYPOGRAPHY UTILITIES ──────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-ink { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(40px, 6vw, 84px); }
h2 { font-size: clamp(32px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: clamp(18px, 1.6vw, 22px); }

.serif-italic em { font-style: italic; color: var(--ink); }

p.lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
}

.caps-link {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity .25s;
}
.caps-link:hover { opacity: 0.55; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--gutter);
  background: rgba(250,247,242,0.0);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, padding .3s ease;
}
.nav.solid,
.nav.opaque {
  background: var(--canvas);
  border-bottom-color: var(--rule);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right { justify-content: flex-end; }

.nav a.caps-link {
  color: var(--ink);
}
.nav.over-dark a.caps-link,
.nav.over-dark .nav-logo,
.nav.over-dark .nav-sub { color: #fff; }
.nav.solid a.caps-link,
.nav.opaque a.caps-link,
.nav.solid .nav-logo,
.nav.opaque .nav-logo { color: var(--ink); }
.nav.solid .nav-sub,
.nav.opaque .nav-sub { color: var(--muted); }

.nav-logo-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: color .4s;
}
.nav-sub {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .4s;
}

.nav-cart {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav-cart-count {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

/* ── PAGE WRAP ─────────────────────────────────────────────── */
.page {
  padding-top: var(--nav-h);
}
.page-header {
  text-align: center;
  padding: clamp(64px, 9vw, 120px) var(--gutter) clamp(40px, 5vw, 64px);
}
.page-header .eyebrow { margin-bottom: 18px; display: block; }
.page-header h1 { margin-bottom: 18px; }
.page-header p.lede { margin: 0 auto; }

/* breadcrumb */
.crumbs {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 var(--gutter);
  margin-top: -16px;
  margin-bottom: 40px;
  text-align: center;
}
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { margin: 0 10px; color: var(--muted-2); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.04); }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 55% 50%, rgba(70,55,35,0.18) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 var(--gutter) clamp(60px, 10vh, 110px);
  color: #fff;
  z-index: 2;
}
.hero-content .eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.hero-content h1 {
  font-family: 'Bodoni Moda', 'Didot', 'Bodoni 72', Georgia, serif;
  color: #fff;
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 72px);
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: 18ch;
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: #E8DDD4;
  letter-spacing: 0.02em;
}
.hero-content p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  font-style: italic;
  color: rgba(255,255,255,0.78);
  max-width: 32ch;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s;
}
.hero-cta:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ── SPLIT SECTIONS ────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split.tall { min-height: 640px; }
.split .s-img { position: relative; overflow: hidden; background: var(--cream); }
.split .s-img .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.split:hover .s-img .photo { transform: scale(1.04); }
.split .s-txt {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  gap: 18px;
}
.split .s-txt.warm { background: var(--cream-2); }
.split .s-txt.dark { background: var(--ink); color: #fff; }
.split .s-txt.dark .eyebrow { color: rgba(255,255,255,0.55); }
.split .s-txt h2 { margin-bottom: 4px; }
.split .s-txt p { color: var(--ink-soft); font-family: var(--serif); font-size: 19px; line-height: 1.55; max-width: 40ch; }
.split .s-txt.dark p { color: rgba(255,255,255,0.78); }
.split.text-first .s-txt { order: -1; }
.split.text-first .s-img { order: 0; }

/* ── PAIR ──────────────────────────────────────────────────── */
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.pair > .panel {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.pair > .panel .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.pair > .panel:hover .photo { transform: scale(1.04); }

/* ── FULL-WIDTH IMAGE ──────────────────────────────────────── */
.full-img {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
}
.full-img .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s ease;
}
.full-img:hover .photo { transform: scale(1.03); }
.full-img .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 var(--gutter);
}
.full-img .overlay h2 { color: #fff; font-weight: 300; }
.full-img .overlay p { color: rgba(255,255,255,0.8); margin-top: 14px; font-family: var(--serif); font-style: italic; font-size: 18px; }
.full-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.35) 100%);
}
.full-img .overlay { z-index: 2; }

/* ── CATEGORY GRID (homepage) ──────────────────────────────── */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cat {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}
.cat .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.cat:hover .photo { transform: scale(1.05); }
.cat::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 55%);
}
.cat-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}
.cat-label small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ── PRODUCT GRID (category & shop pages) ──────────────────── */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.toolbar .count { color: var(--ink); }
.toolbar select {
  background: transparent;
  border: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding-right: 14px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px) clamp(18px, 2vw, 32px);
  padding-bottom: 120px;
}
.product {
  display: block;
}
.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream);
}
.product-img .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease, opacity .35s;
}
.product:hover .product-img .photo { transform: scale(1.035); }

/* Subtle "back" image for hover reveal — using a tinted gradient if no second photo */
.product-img .photo-alt {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .5s;
}
.product:hover .product-img .photo-alt { opacity: 1; }

.product-img .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--canvas);
  padding: 5px 9px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 4px;
}
.product-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.25;
}
.product-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-price {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.product-price .from { color: var(--muted); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-right: 6px; }

/* ── ELEGANT PLACEHOLDER (for SKUs without photos) ─────────── */
.ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, #F8F2E7 0%, #E8DDCB 55%, #C9BCA8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph.warm  { background: radial-gradient(ellipse 70% 80% at 50% 45%, #FBF3E2 0%, #E7D5B6 55%, #B89A75 100%); }
.ph.cool  { background: radial-gradient(ellipse 70% 80% at 50% 45%, #F4F0E9 0%, #DDD3C4 55%, #A89E8E 100%); }
.ph.stone { background: radial-gradient(ellipse 70% 80% at 50% 45%, #EFEAE0 0%, #D6CBB9 55%, #9F907A 100%); }
.ph.dark  { background: radial-gradient(ellipse 70% 80% at 50% 45%, #4A3F32 0%, #2C241D 100%); }
.ph .ph-mark {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26,22,18,0.32);
  position: absolute;
  bottom: 14px;
  right: 14px;
}
.ph.dark .ph-mark { color: rgba(255,255,255,0.45); }

/* Suggested silhouettes within placeholders */
.ph.silhouette-disc::before {
  content:'';
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:42%; aspect-ratio:1; border-radius:50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.1) 60%, transparent 80%);
  box-shadow: 0 30px 80px -20px rgba(60,40,20,0.18);
}
.ph.silhouette-oval::before {
  content:'';
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:30%; height:55%; border-radius:50%;
  background: radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.05) 60%, transparent 80%);
  box-shadow: 0 30px 80px -20px rgba(60,40,20,0.18);
}
.ph.silhouette-globe::before {
  content:'';
  position:absolute; left:50%; top:48%; transform:translate(-50%,-50%);
  width:48%; aspect-ratio:1; border-radius:50%;
  background: radial-gradient(circle at 35% 28%, rgba(255,255,255,0.85), rgba(255,255,255,0.15) 60%, transparent 78%);
  box-shadow: 0 40px 100px -20px rgba(60,40,20,0.22);
}
.ph.silhouette-column::before {
  content:'';
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:18%; height:70%; border-radius:8px;
  background: linear-gradient(to right, rgba(255,255,255,0.05), rgba(255,255,255,0.55) 45%, rgba(255,255,255,0.05));
}
.ph.silhouette-linear::before {
  content:'';
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:78%; height:14%; border-radius:6px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.6) 45%, rgba(255,255,255,0.05));
  box-shadow: 0 20px 50px -10px rgba(60,40,20,0.2);
}
.ph.silhouette-mushroom::before {
  content:'';
  position:absolute; left:50%; top:42%; transform:translate(-50%,-50%);
  width:42%; height:32%; border-radius: 50% 50% 4px 4px;
  background: radial-gradient(ellipse at 35% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.15) 60%, transparent 78%);
}
.ph.silhouette-mushroom::after {
  content:'';
  position:absolute; left:50%; top:62%; transform:translateX(-50%);
  width:8%; height:24%;
  background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.5) 45%, rgba(255,255,255,0.1));
}
.ph.silhouette-stack::before {
  content:'';
  position:absolute; left:50%; top:30%; transform:translateX(-50%);
  width:34%; aspect-ratio:1; border-radius:50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.1) 60%, transparent 80%);
}
.ph.silhouette-stack::after {
  content:'';
  position:absolute; left:50%; top:65%; transform:translateX(-50%);
  width:50%; aspect-ratio:1; border-radius:50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0.05) 60%, transparent 80%);
}

/* ── PRODUCT DETAIL PAGE ───────────────────────────────────── */
.pdp {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: 40px var(--gutter) 120px;
  max-width: var(--shell);
  margin: 0 auto;
}
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pdp-gallery .frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  overflow: hidden;
}
.pdp-gallery .frame .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.pdp-info {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
  padding: 20px 0 0;
}
.pdp-info .eyebrow { display: block; margin-bottom: 16px; }
.pdp-info h1 {
  font-size: clamp(34px, 3.4vw, 48px);
  margin-bottom: 14px;
  line-height: 1.1;
}
.pdp-info .price {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.pdp-info .desc {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.pdp-info hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 32px 0;
}
.pdp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.pdp-specs dt {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.pdp-specs dd { margin-bottom: 12px; }

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background .25s, color .25s;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.pdp-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 14px 18px;
  border: 1px dashed var(--rule);
  background: var(--cream);
}

/* ── ABOUT / TRADE / CONTACT ───────────────────────────────── */
.prose {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--gutter) 120px;
}
.prose p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.prose p + p { }
.prose h3 {
  margin-top: 56px;
  margin-bottom: 18px;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--rule);
}
.prose ul li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
}
.prose ul li b {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: start;
  padding-top: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter) 120px;
}
.contact-info h3 { margin-bottom: 18px; }
.contact-info p { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 18px; }
.contact-info .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 12px;
  display: block;
}
.contact-info a { border-bottom: 1px solid var(--rule); padding-bottom: 1px; transition: border-color .25s; }
.contact-info a:hover { border-color: var(--ink); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0 12px;
  font-size: 15px;
  font-family: var(--serif);
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-bottom-color: var(--ink); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .submit { margin-top: 14px; align-self: flex-start; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 72px var(--gutter) 36px;
}
.footer-inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}
.footer-brand .footer-logo {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}
.footer-brand .footer-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.footer-brand .footer-tag em { font-style: normal; color: var(--ink); }

.footer-mailing-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer-mailing-sub {
  font-size: 13px;
  font-family: var(--serif);
  color: var(--muted);
  margin-bottom: 18px;
  font-style: italic;
}
.footer-form {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
  gap: 8px;
}
.footer-email {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 12px;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0;
}
.footer-email::placeholder { color: var(--muted); }
.footer-submit {
  font-size: 18px;
  color: var(--muted);
  transition: color .25s;
  padding: 0;
  line-height: 1;
}
.footer-submit:hover { color: var(--ink); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 4px;
}
.footer-col-head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .25s;
}
.footer-col-links a:hover { color: var(--muted); }

.footer-base {
  max-width: var(--shell);
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-base a:hover { color: var(--ink); }

/* ── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .pdp-info { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  :root { --nav-h: 60px; }
  .nav { padding: 14px var(--gutter); }
  .nav-left, .nav-right { gap: 14px; }
  .nav-logo { font-size: 22px; }
  .nav-sub { font-size: 7.5px; }

  .split, .split.tall, .pair { grid-template-columns: 1fr; min-height: 0; }
  .split .s-img, .pair > .panel { height: 80vw; min-height: 320px; }
  .split.text-first .s-img { order: 0; }
  .split.text-first .s-txt { order: 0; }

  .cats { grid-template-columns: 1fr 1fr; }
  .full-img { height: 75vw; min-height: 380px; }

  .footer-nav { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .products { grid-template-columns: 1fr; }
  .nav-left a:not(:first-child), .nav-right a:not(:last-child):not(.nav-cart) { display: none; }
}

/* ── HERO EMAIL CAPTURE ────────────────────────────────────── */
.hero-email {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  max-width: 380px;
  width: 100%;
}
.hero-email input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 0;
}
.hero-email input::placeholder { color: rgba(255,255,255,0.55); }
.hero-email button {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 0 10px 18px;
  transition: opacity .25s;
}
.hero-email button:hover { opacity: 0.7; }

/* ── SPECIFIED BY / PRESS BAR ──────────────────────────────── */
.specified-by {
  background: var(--canvas);
  padding: 64px var(--gutter) 56px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.specified-by .eyebrow { margin-bottom: 28px; display: block; }
.specified-by .marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.specified-by .marks span {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

/* ── ENQUIRE PAGE ──────────────────────────────────────────── */
.enquire-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px var(--gutter) 120px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
}
.enquire-piece {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}
.enquire-piece .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  overflow: hidden;
  margin-bottom: 22px;
}
.enquire-piece .frame .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.enquire-piece .label { display: block; margin-bottom: 12px; }
.enquire-piece h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}
.enquire-piece .price {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 18px;
}
.enquire-piece .deposit {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 18px;
  border: 1px dashed var(--rule);
  background: var(--cream);
}
.enquire-form-side h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 14px;
}
.enquire-form-side .lede {
  margin-bottom: 36px;
  max-width: 50ch;
}
.enquire-form-side form { display: flex; flex-direction: column; gap: 22px; }
.enquire-form-side .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.enquire-form-side label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.enquire-form-side input,
.enquire-form-side select,
.enquire-form-side textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 8px 0 12px;
  font-size: 15px;
  font-family: var(--serif);
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
}
.enquire-form-side input:focus,
.enquire-form-side textarea:focus,
.enquire-form-side select:focus { border-bottom-color: var(--ink); }
.enquire-form-side textarea { min-height: 120px; resize: vertical; }
.enquire-form-side .submit { margin-top: 14px; align-self: flex-start; }
.enquire-next {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.enquire-next div p { font-family: var(--serif); font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.enquire-next div .eyebrow { display: block; margin-bottom: 10px; }

/* ── JOURNAL ───────────────────────────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px) clamp(18px, 2vw, 32px);
  padding: 0 var(--gutter) 120px;
  max-width: var(--shell);
  margin: 0 auto;
}
.journal-card {
  display: block;
}
.journal-card .frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--cream);
}
.journal-card .frame .photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s ease; }
.journal-card:hover .frame .photo { transform: scale(1.035); }
.journal-card .kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.journal-card h3 {
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.2;
  margin-bottom: 8px;
}
.journal-card .excerpt {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
}

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) 120px;
}
.article header {
  text-align: center;
  margin-bottom: 56px;
}
.article header .kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  display: block;
}
.article header h1 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 22px;
  line-height: 1.08;
}
.article header .dateline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.article .hero-frame {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 64vh;
  min-height: 440px;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 64px;
}
.article .hero-frame .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.article p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.article p.first::first-letter {
  font-size: 64px;
  font-weight: 400;
  float: left;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: var(--ink);
}
.article h3 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: clamp(22px, 2.2vw, 28px);
}
.article .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  padding: 36px 0;
  margin: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.article footer {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── LEGAL PAGES ───────────────────────────────────────────── */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter) 120px;
}
.legal p, .legal li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal h3 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 22px;
}
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal .updated {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  display: block;
}

/* ── PRESS KIT ─────────────────────────────────────────────── */
.press-grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter) 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.press-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.press-images .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  overflow: hidden;
}
.press-images .frame .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.press-info h3 { margin-top: 32px; margin-bottom: 14px; }
.press-info h3:first-child { margin-top: 0; }
.press-info p { font-family: var(--serif); font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 18px; }
.press-info ul {
  list-style: none; padding: 0; margin: 0 0 24px;
  border-top: 1px solid var(--rule);
}
.press-info ul li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
}
.press-info ul li b {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: start;
  padding-top: 3px;
}

@media (max-width: 960px) {
  .enquire-wrap { grid-template-columns: 1fr; }
  .enquire-piece { position: static; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .enquire-next { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 600px) {
  .journal-grid { grid-template-columns: 1fr; }
  .press-images { grid-template-columns: 1fr; }
  .enquire-form-side .row-2 { grid-template-columns: 1fr; }
}
