:root {
  --ink: #171713;
  --muted: #69665f;
  --paper: #f7f5ef;
  --paper-deep: #ece8de;
  --white: #fffdf8;
  --gold: #af8341;
  --gold-dark: #7e5c29;
  --line: rgba(23, 23, 19, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --radius: 1.5rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; }

button, input, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid rgba(175, 131, 65, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

.preview-bar {
  min-height: 2rem;
  display: grid;
  place-items: center;
  padding: .4rem var(--pad);
  background: var(--ink);
  color: rgba(255,255,255,.84);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 5.25rem;
  padding: 0 var(--pad);
  background: rgba(247, 245, 239, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(8.2rem, 12vw, 11rem);
  height: 2rem;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 3.25rem);
}

.desktop-nav a,
.header-tools a {
  position: relative;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.5rem;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.account-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.account-link svg { width: 1.1rem; height: 1.1rem; }

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: .25rem auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 7.25rem 0 0 0;
  display: none;
  padding: 2rem var(--pad) 4rem;
  background: var(--paper);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 8vw, 3rem);
  text-decoration: none;
}

.mobile-nav a::after { content: "↗"; font: 1rem var(--sans); }

main { overflow: hidden; }

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section-tight { padding-block: clamp(3.5rem, 6vw, 6rem); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 9vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .88;
}

.title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.lead {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  color: #45433e;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .85rem 1.25rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-light {
  background: transparent;
  color: var(--ink);
}

.button-light:hover { background: var(--ink); color: white; }

.button-gold { border-color: var(--gold); background: var(--gold); }

.button-muted,
.button:disabled {
  border-color: #c8c2b7;
  background: #dfdbd2;
  color: #777169;
  cursor: not-allowed;
}

.button:disabled:hover { transform: none; }

.hero {
  min-height: min(850px, calc(100vh - 7.25rem));
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(25rem, 1.28fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 6rem);
}

.hero-copy { position: relative; z-index: 2; }

.hero-copy .display { max-width: 7.4ch; }

.hero-art {
  position: relative;
  min-height: clamp(31rem, 58vw, 44rem);
}

.hero-art::before {
  content: "01 / SYNDEV";
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: .45rem .6rem;
  background: rgba(247,245,239,.9);
  font-size: .7rem;
  letter-spacing: .12em;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  z-index: 3;
  left: -3rem;
  bottom: 2.25rem;
  width: min(23rem, 65%);
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-note strong { display: block; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.hero-note span { display: block; margin-top: .25rem; color: var(--muted); font-size: .86rem; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  min-width: max-content;
  color: #5d5952;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 2rem);
}

.marquee-track span::after { content: "✦"; margin-left: 3rem; color: var(--gold); font-size: .7em; }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(2.5rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.promise {
  padding: 2rem clamp(1rem, 3vw, 2.25rem) 0 0;
  border-right: 1px solid var(--line);
}

.promise + .promise { padding-left: clamp(1rem, 3vw, 2.25rem); }
.promise:last-child { border-right: 0; }
.promise-index { display: block; margin-bottom: 2.5rem; color: var(--gold-dark); font-size: .75rem; letter-spacing: .12em; }
.promise h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 400; }
.promise p { color: var(--muted); }

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.product-card {
  grid-column: span 4;
  text-decoration: none;
}

.product-card:nth-child(2) { margin-top: 5rem; }
.product-card:nth-child(3) { margin-top: 10rem; }

.product-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.product-card:hover img { transform: scale(1.035); }

.card-status {
  position: absolute;
  top: .8rem;
  left: .8rem;
  padding: .35rem .5rem;
  background: var(--white);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card h3 { margin: 1rem 0 .2rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.product-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 44rem;
  background: var(--ink);
  color: white;
}

.split-story-image img { width: 100%; height: 100%; object-fit: cover; }

.split-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
}

.split-story-copy .eyebrow { color: #d7b77d; }
.split-story-copy .lead { color: rgba(255,255,255,.7); }
.split-story-copy .button-light { color: white; border-color: rgba(255,255,255,.55); }
.split-story-copy .button-light:hover { background: white; color: var(--ink); }

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: center;
}

.editorial-collage {
  position: relative;
  min-height: 44rem;
}

.editorial-collage img:first-child {
  position: absolute;
  width: 58%;
  right: 0;
  top: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.editorial-collage img:last-child {
  position: absolute;
  z-index: 2;
  width: 52%;
  left: 0;
  bottom: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: .75rem solid var(--paper);
}

.quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.quote::before { content: "“"; color: var(--gold); }

.page-hero {
  padding-block: clamp(4.5rem, 9vw, 9rem) clamp(3rem, 6vw, 6rem);
}

.page-hero .title { max-width: 12ch; }

.page-kicker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem) clamp(1rem, 3vw, 3rem);
}

.catalog-grid .product-card { grid-column: auto; margin-top: 0; }
.catalog-grid .product-card:nth-child(even) { margin-top: 5rem; }

.bridge-note {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.bridge-note strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.bridge-note p { margin: 0; color: var(--muted); }

.product-hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: calc(100vh - 7.25rem);
}

.product-gallery {
  background: var(--paper-deep);
}

.product-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.product-info h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}

.product-intro { color: var(--muted); font-size: 1.05rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.tag { padding: .4rem .65rem; border: 1px solid var(--line); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.feature {
  padding: 2rem;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.feature h3 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.feature p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.detail-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 7vw, 8rem);
}

.detail-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-list li { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.detail-list span:first-child { color: var(--muted); }

.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--sans); font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 50rem; margin: 0 0 1.5rem; color: var(--muted); }

.creator-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  min-height: 42rem;
}

.creator-hero img { width: 100%; height: 40rem; object-fit: cover; }

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.type-card { min-height: 18rem; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; background: var(--white); border: 1px solid var(--line); }
.type-card span { color: var(--gold-dark); font-size: .75rem; letter-spacing: .12em; }
.type-card h3 { margin: 2rem 0 .5rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.type-card p { margin: 0; color: var(--muted); }

.steps { counter-reset: steps; margin: 3rem 0 0; padding: 0; list-style: none; }
.steps li { counter-increment: steps; display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.steps li::before { content: "0" counter(steps); color: var(--gold-dark); font-size: .8rem; letter-spacing: .12em; }
.steps strong { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.steps p { margin: .3rem 0 0; color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 8vw, 10rem);
}

.contact-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-list li { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.contact-list span { display: block; color: var(--muted); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a { display: inline-block; margin-top: .5rem; font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.3rem); text-decoration-thickness: 1px; text-underline-offset: .2em; }

.account-panel {
  max-width: 50rem;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--white);
  border: 1px solid var(--line);
}

.status-line { display: flex; align-items: center; gap: .65rem; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: .65rem; height: .65rem; border-radius: 50%; background: #4e8458; box-shadow: 0 0 0 .28rem rgba(78,132,88,.12); }

.site-footer {
  padding: clamp(4rem, 8vw, 8rem) var(--pad) 2rem;
  background: var(--ink);
  color: white;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-wordmark {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 14vw, 13rem);
  font-weight: 400;
  letter-spacing: -.08em;
  line-height: .7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}

.footer-grid h3 { margin: 0 0 1rem; color: rgba(255,255,255,.48); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid p { max-width: 25rem; color: rgba(255,255,255,.7); }
.footer-grid a { display: block; width: fit-content; margin: .5rem 0; color: white; text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; text-underline-offset: .25em; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  color: rgba(255,255,255,.45);
  font-size: .76rem;
}

.notice {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  width: min(25rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  background: var(--ink);
  color: white;
  transform: translateY(calc(100% + 2rem));
  transition: transform .3s ease;
}
.notice.show { transform: translateY(0); }
.notice strong { display: block; }
.notice span { color: rgba(255,255,255,.7); font-size: .86rem; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 4.5rem; }
  .desktop-nav, .account-link { display: none; }
  .menu-button { display: block; }
  .mobile-nav { inset: 6.5rem 0 0 0; }
  .hero, .product-hero, .creator-hero, .editorial-grid, .contact-layout, .detail-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-copy { padding-top: 2rem; }
  .hero-art { min-height: 28rem; }
  .hero-note { left: 1rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise, .promise + .promise { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-index { margin-bottom: 1rem; }
  .product-card { grid-column: span 6; }
  .product-card:nth-child(2), .product-card:nth-child(3) { margin-top: 0; }
  .split-story { grid-template-columns: 1fr; }
  .split-story-image { min-height: 34rem; }
  .editorial-grid { gap: 4rem; }
  .editorial-collage { min-height: 38rem; }
  .product-hero { min-height: 0; }
  .product-gallery { min-height: 38rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .type-grid { grid-template-columns: 1fr; }
  .type-card { min-height: 14rem; }
  .creator-hero img { height: 32rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --pad: 1.1rem; }
  .preview-bar { font-size: .66rem; text-align: center; }
  .site-header { gap: .7rem; }
  .brand img { width: 7.8rem; }
  .display { font-size: clamp(3.4rem, 19vw, 5.6rem); }
  .hero { padding-top: 1rem; }
  .hero-art { min-height: 24rem; }
  .hero-art img { object-position: 64% center; }
  .hero-note { width: calc(100% - 2rem); bottom: 1rem; }
  .section-heading-row, .page-kicker, .bridge-note { display: block; }
  .section-heading-row .text-link { margin-top: 1.5rem; }
  .product-grid, .catalog-grid { display: block; }
  .product-card { display: block; margin-bottom: 2.5rem; }
  .catalog-grid .product-card:nth-child(even) { margin-top: 0; }
  .product-card figure { aspect-ratio: 4 / 4.8; }
  .split-story { min-height: 0; }
  .split-story-image { min-height: 26rem; }
  .editorial-collage { min-height: 30rem; }
  .product-gallery { min-height: 31rem; }
  .product-gallery img { object-position: center top; }
  .product-info { padding: 3rem var(--pad) 4rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature, .feature:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-list li { grid-template-columns: 1fr; gap: .2rem; }
  .creator-hero img { height: 25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
}

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