:root {
  --paper: #F3EDE1;
  --paper-deep: #EAE2CF;
  --card: #FBF7EE;
  --ink: #2A241B;
  --sub: #6C6252;
  --faint: #988D79;
  --line: #DDD4C0;
  --line-strong: #C8BCA2;
  --green: #24423A;
  --green-deep: #1B342E;
  --green-cream: #EFE7D4;
  --orange: #C4562A;
  --orange-deep: #BA5227;
  --orange-dark: #A8441F;
  --tint: #F6E7D6;
  --tint-line: #E5CDB4;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--orange); color: #fff; }

/* ---------- wordmark (locked recipe v3 rev b — the dial) ---------- */
.logo {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  user-select: none;
}
.logo .l-a {
  display: inline-block;
  font-weight: 300;
  color: var(--orange);
  transform: skewX(-10deg);
  margin-right: -0.02em;
}
.logo .l-w { font-weight: 600; }
.logo .l-1 {
  display: inline-block;
  clip-path: inset(-0.2em -0.05em -0.2em 0.07em);
}
.logo .l-9 {
  display: inline-block;
  font-size: 0.82em;
  font-weight: 600;
  vertical-align: -0.08em;
}
.logo .l-bar {
  position: absolute;
  left: 68%;
  bottom: -0.045em;
  transform: translateX(-50%);
  width: 33%;
  height: 0.054em;
  border-radius: 99px;
  background: var(--orange-deep);
}
.logo .l-bar i {
  position: absolute;
  top: 50%;
  width: 0.1em;
  height: 0.1em;
  border-radius: 50%;
  background: var(--orange-deep);
}
.logo .bt-l { left: -0.06em; transform: translate(-100%, -50%); }
.logo .bt-r { right: -0.06em; transform: translate(100%, -50%); }
.logo-lg { font-size: clamp(50px, 7.5vw, 84px); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,237,225,0.85);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.site-header nav a {
  color: var(--sub);
  transition: color 0.15s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.site-header nav a:hover { color: var(--ink); }
.site-header nav a.active { color: var(--ink); border-bottom-color: var(--orange); }
.cart-btn {
  background: var(--card);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s;
}
.cart-btn:hover { border-color: var(--green); }
.cart-count {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 11.5px;
  min-width: 19px;
  height: 19px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--green);
  color: var(--green-cream);
  overflow: hidden;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 0;
}
.marquee .track {
  display: inline-block;
  animation: scroll 40s linear infinite;
}
.marquee span { margin: 0 26px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 68px 0; }
.section-tight { padding: 42px 0; }
.kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 12px;
}
h1, h2 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 600;
}
h1 { font-size: clamp(34px, 4.8vw, 56px); }
h2 { font-size: clamp(26px, 3.5vw, 38px); }
h3 { font-size: 19px; font-weight: 600; line-height: 1.2; color: var(--ink); }
.lede { font-size: 17.5px; color: var(--sub); max-width: 640px; margin-top: 14px; }
.serif { font-family: 'Fraunces', Georgia, serif; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--green-cream);
  border: 1px solid var(--green);
  border-radius: 99px;
  padding: 11px 24px;
  font-size: 14.5px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn.brass { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn.brass:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.ghost:hover { background: var(--card); border-color: var(--ink); }
.btn.sm { padding: 8px 18px; font-size: 13px; }

/* ---------- hero ---------- */
.hero {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -160px;
  width: 560px;
  height: 560px;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-art svg { max-height: 460px; width: auto; margin: 0 auto; }
.hero .tagline {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--sub);
  margin-top: 24px;
  max-width: 540px;
}
.hero .tagline em { color: var(--orange-dark); font-style: normal; font-weight: 600; }
.hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--faint);
}
.hero-meta b { display: block; font-size: 20px; color: var(--ink); font-weight: 600; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(42,36,27,0.14);
}
.card .thumb { background: var(--paper-deep); position: relative; }
.card .thumb svg { width: 100%; height: auto; }
.card .body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card .name { font-weight: 600; font-size: 15.5px; color: var(--ink); }
.card .sub { font-size: 13px; color: var(--sub); }
.card .price-row {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .price { font-weight: 600; font-size: 15px; }
.pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--paper-deep);
  color: var(--sub);
  border: 1px solid var(--line);
}
.pill.brass { background: var(--tint); color: var(--orange-dark); border-color: var(--tint-line); }
.pill.steel { background: var(--paper); color: var(--sub); border-color: var(--line); }
.tag-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(251,247,238,0.9);
  backdrop-filter: blur(6px);
}

/* ---------- lug tiles ---------- */
.lug-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }
.lug-tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 10px 18px;
  text-align: center;
  transition: border-color 0.15s, transform 0.15s;
}
.lug-tile:hover { border-color: var(--orange); transform: translateY(-2px); }
.lug-tile b { font-family: 'Fraunces', Georgia, serif; font-size: 28px; font-weight: 600; display: block; color: var(--ink); }
.lug-tile span { font-size: 12.5px; color: var(--sub); }

/* ---------- filters ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
.filters { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 26px; }
.fgroup h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.fgroup label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--sub);
  padding: 4px 0;
  cursor: pointer;
}
.fgroup label:hover { color: var(--ink); }
.fgroup input[type=checkbox] { accent-color: var(--green); width: 15px; height: 15px; }
.chiprow { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line-strong);
  background: var(--card);
  color: var(--sub);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  transition: all 0.13s;
}
.chip:hover { border-color: var(--green); color: var(--ink); }
.chip.on { background: var(--green); color: var(--green-cream); border-color: var(--green); }
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.toolbar .count { font-size: 14px; color: var(--sub); }
.toolbar select, select {
  font-family: inherit;
  font-size: 13.5px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
}
.active-watch-note {
  background: var(--tint);
  border: 1px solid var(--tint-line);
  color: var(--orange-dark);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.active-watch-note .btn.ghost { color: var(--orange-dark); border-color: var(--tint-line); }
.active-watch-note .btn.ghost:hover { background: var(--card); }

/* ---------- watch cards ---------- */
.watch-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.watch-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(42,36,27,0.14);
}
.watch-card .brand { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.watch-card .model { font-family: 'Fraunces', Georgia, serif; font-size: 19px; font-weight: 600; color: var(--ink); }
.watch-card .why { font-size: 13.5px; color: var(--sub); flex: 1; }
.watch-card .specs { display: flex; gap: 8px; flex-wrap: wrap; }
.watch-card .footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--line); }
.watch-card .price-band { font-size: 13px; color: var(--faint); }
.watch-card .strap-link { font-size: 13.5px; font-weight: 600; color: var(--orange-dark); }
.watch-card .strap-link:hover { text-decoration: underline; }

/* ---------- product page ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.pdp .visual { background: var(--paper-deep); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; position: sticky; top: 96px; }
.pdp h1 { font-size: clamp(28px, 3.4vw, 42px); }
.pdp .price { font-size: 23px; font-weight: 600; margin: 12px 0 4px; }
.pdp .blurb { color: var(--sub); margin: 14px 0 22px; font-size: 16px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 20px 0; }
.spec-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.spec-table td:first-child { color: var(--faint); width: 42%; }
.width-picker { display: flex; gap: 8px; margin: 14px 0 22px; flex-wrap: wrap; }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 20px 0; }
.qty-row input {
  width: 58px;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--card);
  color: var(--ink);
}
.pairs { margin-top: 28px; }
.pairs h4 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }

/* ---------- journal ---------- */
.article-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.article-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(42,36,27,0.14);
}
.article-card .atitle { font-family: 'Fraunces', Georgia, serif; font-size: 21px; font-weight: 600; color: var(--ink); }
.article-card .adesc { color: var(--sub); font-size: 14.5px; flex: 1; }
.article-card .ameta { font-size: 12.5px; color: var(--faint); }
.article-card .read-more { font-size: 13.5px; font-weight: 600; color: var(--orange-dark); }
.article-body { max-width: 700px; margin: 0 auto; }
.article-body h1 { margin-bottom: 8px; }
.article-body .ameta { color: var(--faint); font-size: 14px; margin-bottom: 34px; }
.article-body p { margin-bottom: 20px; font-size: 17px; line-height: 1.75; color: var(--ink); }
.article-body h3 { margin: 32px 0 12px; font-family: 'Fraunces', Georgia, serif; font-size: 22px; }
.article-body blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  line-height: 1.5;
  font-style: italic;
  color: var(--orange-dark);
  border-left: 3px solid var(--orange);
  padding-left: 22px;
  margin: 28px 0;
}
.article-body ul { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 8px; font-size: 16.5px; color: var(--ink); }

/* ---------- manifesto ---------- */
.manifesto-strip {
  background: var(--green);
  color: var(--green-cream);
  padding: 76px 0;
}
.manifesto-strip .serif {
  font-size: clamp(23px, 3.2vw, 34px);
  line-height: 1.45;
  max-width: 840px;
  font-weight: 400;
  color: var(--green-cream);
}
.manifesto-strip .serif em { color: #E89464; font-style: italic; }

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,36,27,0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 100vw);
  height: 100dvh;
  background: var(--card);
  border-left: 1px solid var(--line);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transition: right 0.25s ease;
  box-shadow: -16px 0 48px rgba(42,36,27,0.2);
}
body.cart-open .cart-drawer { right: 0; }
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
.cart-drawer header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer header h3 { font-size: 17px; }
.cart-close { background: none; border: none; font-size: 22px; line-height: 1; color: var(--faint); }
.cart-close:hover { color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item .ci-swatch { width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; border: 1px solid var(--line); }
.cart-item .ci-info { flex: 1; }
.cart-item .ci-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.cart-item .ci-sub { font-size: 12.5px; color: var(--sub); }
.cart-item .ci-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item .ci-qty button {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}
.cart-item .ci-price { font-size: 14px; font-weight: 600; white-space: nowrap; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--sub); font-size: 15px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-footer .total-row { display: flex; justify-content: space-between; font-weight: 600; font-size: 16px; margin-bottom: 14px; }
.cart-footer .note { font-size: 12px; color: var(--faint); margin-top: 10px; text-align: center; }
.cart-footer .btn { width: 100%; justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: var(--green-cream);
  padding: 60px 0 36px;
  margin-top: 76px;
}
.site-footer .logo { color: var(--green-cream); }
.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.site-footer h5 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(239,231,212,0.55); margin-bottom: 14px; font-weight: 600; }
.site-footer a { display: block; font-size: 14px; color: rgba(239,231,212,0.78); padding: 4px 0; transition: color 0.15s; }
.site-footer a:hover { color: var(--green-cream); }
.site-footer .fine {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(239,231,212,0.15);
  font-size: 12.5px;
  color: rgba(239,231,212,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.newsletter { display: flex; gap: 8px; margin-top: 6px; }
.newsletter input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(239,231,212,0.3);
  background: rgba(239,231,212,0.08);
  color: var(--green-cream);
  font-family: inherit;
  font-size: 13.5px;
}
.newsletter input::placeholder { color: rgba(239,231,212,0.45); }
.footer-tag { font-size: 14px; color: rgba(239,231,212,0.7); margin-top: 14px; max-width: 280px; }

/* ---------- misc ---------- */
.notice {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--sub);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
}
.notice b { color: var(--ink); }
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--green);
  color: var(--green-cream);
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  z-index: 100;
  transition: transform 0.25s ease;
  box-shadow: 0 12px 32px rgba(42,36,27,0.3);
}
.toast.show { transform: translate(-50%, 0); }
.crumbs { font-size: 13px; color: var(--faint); margin-bottom: 18px; }
.crumbs a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .pdp { grid-template-columns: 1fr; }
  .pdp .visual { position: static; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
  .site-header .mobile-nav-btn { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art svg { max-height: 320px; }
}
