:root {
  --forest: #1B2B22;
  --forest-deep: #131F18;
  --ivory: #ECE7D8;
  --ivory-deep: #E3DCC8;
  --champagne: #CBB175;
  --fairway: #8A9A86;
  --slate: #5B6A74;
  --ink-soft: #46524A;
  --gold-ink: #7A6B3E;
  --hairline: rgba(27, 43, 34, 0.2);
  --inset: 16px;
  --gutter: clamp(20px, 4vw, 52px);
}
@media (max-width: 640px) { :root { --inset: 10px; } }

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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--forest);
  font-size: 16px;
  line-height: 1.6;
  padding: var(--inset);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}
img { display: block; max-width: 100%; }
::selection { background: var(--champagne); color: var(--forest); }

.smallcaps {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow { color: var(--gold-ink); display: block; margin-bottom: 16px; }
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }

/* ---------- The page is the poster: one bordered sheet ---------- */
.page {
  border: 1px solid var(--forest);
  min-height: calc(100dvh - 2 * var(--inset));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ---------- NAV: the poster's title block ---------- */
.topbar {
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 5vw, 64px);
  padding: 22px var(--gutter);
}
.brand { display: block; line-height: 0; flex: 0 0 auto; }
.brand-wordmark { width: clamp(160px, 21vw, 226px); height: auto; }

.nav-right { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.icon-btn {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--champagne);
  background: transparent;
  border: 1px solid rgba(203, 177, 117, 0.4);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.icon-btn:hover { background: rgba(236, 231, 216, 0.08); border-color: var(--champagne); }

/* ---------- MENU OVERLAY ---------- */
body.menu-open { overflow: hidden; }
.menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--forest-deep);
  padding: clamp(16px, 3vw, 30px) var(--gutter) clamp(22px, 4vh, 44px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.34s ease, visibility 0.34s;
}
.menu[aria-hidden="false"] { opacity: 1; visibility: visible; pointer-events: auto; }
.menu-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.menu-mark { width: clamp(132px, 17vw, 178px); height: auto; }
.menu-list {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  width: 100%; max-width: 940px; margin: 0 auto;
  padding: clamp(20px, 4vh, 48px) 0;
}
.m-row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: clamp(14px, 3vw, 32px);
  padding: clamp(15px, 2.3vh, 26px) 2px;
  border-top: 1px solid rgba(203, 177, 117, 0.22);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: calc(var(--i) * 70ms + 70ms);
}
.m-row:last-child { border-bottom: 1px solid rgba(203, 177, 117, 0.22); }
.menu[aria-hidden="false"] .m-row { opacity: 1; transform: none; }
.m-num { font-size: 11px; letter-spacing: 0.2em; color: var(--champagne); }
.m-name {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(34px, 6.2vw, 70px); line-height: 1;
  color: var(--ivory);
  transition: transform 0.3s ease, color 0.3s ease;
}
.m-meta {
  display: block; margin-top: 9px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(236, 231, 216, 0.5);
}
.m-thumb img {
  width: clamp(56px, 8vw, 90px);
  aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 3px; opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.m-row:hover .m-name { color: var(--champagne); transform: translateX(8px); }
.m-row:hover .m-thumb img { opacity: 1; transform: scale(1.05); }
.menu-foot {
  display: flex; justify-content: center; gap: clamp(16px, 3vw, 30px); flex-wrap: wrap;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(236, 231, 216, 0.55);
}
.menu-foot a { border-bottom: 1px solid rgba(203, 177, 117, 0.6); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.menu-foot a:hover { color: var(--champagne); border-color: var(--champagne); }

.pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--champagne); color: var(--forest);
  border: 1px solid var(--champagne);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s, background 0.2s;
}
.pill:hover { background: #DCC48E; border-color: #DCC48E; transform: translateY(-1px); }
.pill-dark { background: var(--forest); border-color: var(--forest); color: var(--ivory); }
.pill-dark:hover { background: var(--forest-deep); border-color: var(--forest-deep); }

/* ---------- HOME HERO ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(14px, 2.2vh, 24px);
  padding-top: clamp(30px, 5vh, 62px);
  padding-bottom: clamp(34px, 6vh, 70px);
}
.hero h1 {
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.0;
  max-width: 18ch;
  text-wrap: balance;
}
.hero h1 .stop { color: var(--champagne); }
.lede {
  color: var(--ink-soft);
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  max-width: 52ch;
  text-wrap: pretty;
}
.triptych {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 32px);
  margin-top: clamp(6px, 1.5vh, 14px);
}
.triptych img {
  height: min(50vh, 560px);
  width: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #FAF4EA;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(27, 43, 34, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.triptych a:hover img { box-shadow: 0 16px 34px rgba(27, 43, 34, 0.22); transform: translateY(-4px); }
.triptych .cap {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cap-price { color: var(--forest); font-weight: 500; margin-left: 6px; }
.hero-under {
  color: var(--ink-soft);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .page { min-height: auto; }
  .triptych { flex-direction: column; align-items: center; gap: 30px; }
  .triptych img { height: auto; width: min(78vw, 340px); }
}

/* ---------- WAITLIST FORM ---------- */
.signup-form { display: flex; gap: 8px; width: min(430px, 100%); flex-wrap: wrap; }
.hero .signup-form { margin: 0 auto; }
.signup-form input {
  flex: 1 1 200px; min-width: 0;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: #F3EFE3;
  padding: 14px 20px;
  font-family: inherit; font-size: 14.5px; color: var(--forest);
}
.signup-form input::placeholder { color: var(--slate); }
.signup-form button {
  background: var(--forest); color: var(--ivory);
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}
.signup-form button:hover { background: var(--forest-deep); }
.signup-msg { font-size: 13.5px; min-height: 20px; font-style: italic; color: var(--ink-soft); }

/* ---------- PHOTOGRAPHY BAND ---------- */
.band {
  background: var(--ivory-deep);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(40px, 6vh, 76px);
  padding-bottom: clamp(40px, 6vh, 76px);
}
.band-head { text-align: center; margin-bottom: clamp(26px, 4vh, 44px); }
.band-head h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; }
.shots {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: clamp(18px, 2.6vw, 34px);
  max-width: 1080px;
  margin: 0 auto;
}
.shots figure { margin: 0; }
.shots img {
  width: 100%;
  height: clamp(250px, 31vw, 430px);
  object-fit: cover;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: var(--ivory);
}
@media (max-width: 760px) {
  .shots { grid-template-columns: 1fr; }
  .shots img { height: auto; aspect-ratio: 4 / 3; }
}
.shots figcaption {
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: center;
  text-wrap: pretty;
}

/* ---------- CLOSING NOTE ---------- */
.note {
  background: var(--forest);
  color: var(--ivory);
  text-align: center;
  padding: clamp(44px, 7vh, 84px) var(--gutter);
}
.note .seal { width: 34px; height: auto; margin: 0 auto 24px; }
.note p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(21px, 2.8vw, 32px);
  line-height: 1.32;
  max-width: 30ch;
  margin: 0 auto 30px;
}
.note .rule-curve { display: block; margin: 0 auto 26px; }

/* ---------- FOOT LINE ---------- */
.foot {
  border-top: 1px solid var(--hairline);
  padding: 16px var(--gutter);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}

.foot a { color: inherit; border-bottom: 1px solid rgba(203, 177, 117, 0.7); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.foot a:hover { color: var(--forest); border-color: var(--forest); }

/* ---------- SUBPAGE SHARED ---------- */
.sub { flex: 1; padding-top: clamp(32px, 5vh, 58px); padding-bottom: clamp(36px, 5vh, 60px); }

/* ---------- PRODUCT DETAIL ---------- */
.pdp-tabs {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vh, 46px);
}
.pdp-tabs button {
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink-soft);
  padding: 10px 20px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pdp-tabs button:hover { border-color: var(--champagne); color: var(--forest); }
.pdp-tabs button[aria-selected="true"] {
  background: var(--forest); color: var(--ivory); border-color: var(--forest);
}
.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  max-width: 980px; margin: 0 auto;
}
@media (max-width: 760px) { .pdp-grid { grid-template-columns: 1fr; } }

.pdp-art { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pdp-art img {
  height: min(66vh, 620px);
  width: auto;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #FAF4EA;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(27, 43, 34, 0.14);
}
.pdp-art .art-cap {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
}
@media (max-width: 760px) {
  .pdp-art img { height: auto; width: min(80vw, 340px); }
}
.pdp-info h1 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.02;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.pdp-info .price { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 500; color: var(--ink-soft); }
.pdp-info .place { color: var(--ink-soft); margin: 14px 0 26px; font-size: 16px; text-wrap: pretty; }

.spec-list { border-top: 1px solid var(--hairline); margin-bottom: 28px; }
.spec-list div {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}
.spec-list dt { color: var(--gold-ink); flex-shrink: 0; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; padding-top: 3px; }
.spec-list dd { font-weight: 400; text-align: right; color: var(--forest); }

.pdp-signup .smallcaps { display: block; margin-bottom: 12px; color: var(--gold-ink); }

.pdp-shots { max-width: 1080px; margin: clamp(44px, 6vh, 80px) auto 0; }
.pdp-shots:empty { display: none; }
.pdp-shots .shots-head {
  text-align: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 22px;
}

/* ---------- ABOUT ---------- */
.about { max-width: 640px; margin: 0 auto; }
.about .eyebrow, .about h1 { text-align: center; }
.about h1 { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.05; margin-bottom: clamp(22px, 3vh, 34px); text-wrap: balance; }
.about p { margin-bottom: 18px; font-size: 16.5px; color: var(--ink-soft); text-wrap: pretty; }
.about p strong { color: var(--forest); font-weight: 500; }
.about .rule { width: 52px; height: 1px; background: var(--champagne); margin: 30px auto; }
.about .signature-mark { width: 190px; height: auto; margin: 0 auto; }
.about .cta { margin-top: 32px; text-align: center; }
.about-art {
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vh, 44px);
}
.about-art img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--hairline);
  border-radius: 3px;
}

/* ---------- COLLECTIONS (home) ---------- */
.collections {
  border-top: 1px solid var(--hairline);
  padding: clamp(40px, 6vh, 76px) var(--gutter);
}
.coll-head { text-align: center; margin-bottom: clamp(24px, 4vh, 40px); }
.coll-head h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; text-wrap: balance; }
.coll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  max-width: 1080px; margin: 0 auto;
}
.coll-card img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border: 1px solid var(--hairline); border-radius: 3px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coll-card:hover img { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(27, 43, 34, 0.18); }
.coll-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-top: 15px; }
.coll-name { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(22px, 2.4vw, 30px); line-height: 1; }
.coll-status { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-ink); white-space: nowrap; }
.coll-note { margin-top: 7px; font-size: 14.5px; color: var(--ink-soft); text-wrap: pretty; }

/* ---------- SHOWCASE (hats, markers) ---------- */
.showcase { max-width: 1080px; margin: 0 auto; text-align: center; }
.showcase h1 { font-size: clamp(32px, 4.6vw, 58px); line-height: 1.02; text-wrap: balance; }
.showcase .lede { margin: 16px auto 0; }
.showcase-art { margin-top: clamp(24px, 4vh, 40px); }
.showcase-art img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border: 1px solid var(--hairline); border-radius: 3px;
}
.showcase-art figcaption,
.strip figcaption {
  margin-top: 14px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
}
.strip { margin: clamp(24px, 4vh, 40px) 0 0; }
.strip img {
  width: 100%; aspect-ratio: 1800 / 460; object-fit: cover;
  background: #F0EAE2;
  border: 1px solid var(--hairline); border-radius: 3px;
}
@media (max-width: 640px) { .strip img { aspect-ratio: 1800 / 700; } }
.sheet img { width: 100%; height: auto; border: 1px solid var(--hairline); border-radius: 3px; }

.marker-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 26px);
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 700px) {
  .marker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marker-grid figure:last-child { grid-column: 1 / -1; width: calc(50% - clamp(5px, 1vw, 13px)); margin: 0 auto; }
}
.marker-grid figure { margin: 0; }
.marker-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  background: #F0EAE2;
  border: 1px solid var(--hairline); border-radius: 3px;
  transition: transform 0.3s ease;
}
.marker-grid figure:hover img { transform: translateY(-3px); }
.marker-grid figcaption {
  margin-top: 11px; text-align: center;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
}

.spec-split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: 900px; margin: clamp(38px, 6vh, 70px) auto 0;
  align-items: start;
}
@media (max-width: 760px) { .spec-split { grid-template-columns: 1fr; } }
.spec-split h2 { font-size: clamp(24px, 2.8vw, 34px); line-height: 1.1; margin-bottom: 14px; }
.spec-split p { color: var(--ink-soft); font-size: 15.5px; text-wrap: pretty; }
