:root {
  --bg: #F4EBE0;
  --bg-card: #EDE3D4;
  --ink: #14110F;
  --ink-soft: #3F362F;
  --ink-mute: #8A7F73;
  --line: #D9CEBC;
  --accent: #8E2429;
  --accent-hover: #6F1A1F;
  --gold: #C09545;
  --display: "Anton", "Impact", "Haettenschweiler", sans-serif;
  --serif: "DM Serif Display", "Playfair Display", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

/* paper texture overlay (subtle grain) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(20,17,15,0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(20,17,15,0.03) 0%, transparent 50%);
  z-index: 1;
}

body > * { position: relative; z-index: 2; }

/* utility bar */
.utility-bar {
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 24px;
  text-align: center;
  font-weight: 500;
}
.utility-bar .separator { margin: 0 14px; opacity: 0.55; }

/* nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  backdrop-filter: blur(4px);
}
.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.78; }
.logo-img {
  height: 92px;
  width: auto;
  display: block;
}
.logo-mark {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 11px 20px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--bg) !important; }

/* hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 80px 48px 100px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  font-style: italic;
  line-height: 1.4;
  max-width: 500px;
  margin-bottom: 36px;
  color: var(--ink-soft);
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 36px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--accent); }
.hero-cta-secondary {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-bag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bag-container {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bag-container svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.18));
}
.bag-container picture,
.bag-container .bag-photo {
  width: 100%;
  height: auto;
  display: block;
}
.bag-container .bag-photo {
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.18));
  object-fit: contain;
}
.bag-container.large { max-width: 500px; }
.bag-meta, .bag-display-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bag-meta-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.bag-meta-name, .bag-display-name {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}
.bag-display-name { font-size: 30px; }

/* marquee */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.14em;
  align-items: center;
}
.marquee .dot { color: var(--accent); font-size: 12px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* story */
.story {
  padding: 130px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.story-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.story-tag {
  font-family: var(--display);
  font-size: 96px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.story-body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.story-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 34px !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  margin-bottom: 36px !important;
}

/* colorways */
.colorways {
  padding: 130px 48px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.colorways-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.colorways-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.colorways-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.colorways-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
}
.colorways-tool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.colorways-bag-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.colorways-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.control-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}
.colorway-select {
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
  font-family: var(--body);
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2314110F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.colorway-select:hover, .colorway-select:focus {
  border-color: var(--ink);
  outline: none;
}
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.swatch {
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
.swatch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}
.swatch.active {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.swatch-half {
  width: 100%;
  height: 50%;
}
.swatch-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(20,17,15,0.78);
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.18s;
  padding: 6px;
  line-height: 1.2;
}
.swatch:hover .swatch-name { opacity: 1; }
.disclaimer {
  font-size: 11px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-top: 8px;
  font-style: italic;
}

/* specs */
.specs {
  padding: 130px 48px;
  background: var(--ink);
  color: var(--bg);
}
.specs-header {
  text-align: center;
  margin-bottom: 80px;
}
.specs-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.specs-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.spec {
  border: 1px solid rgba(244, 235, 224, 0.18);
  padding: 44px 24px 36px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.spec:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.spec-num {
  font-family: var(--display);
  font-size: 92px;
  line-height: 1;
  margin-bottom: 14px;
}
.spec-num span {
  font-size: 32px;
  color: var(--gold);
  margin-left: 4px;
  letter-spacing: 0;
}
.spec-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
}
.spec-note {
  font-size: 14px;
  color: rgba(244, 235, 224, 0.7);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* notify */
.notify {
  padding: 130px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.notify-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 80px 60px;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
.notify-card::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.notify-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}
.notify-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  margin-bottom: 22px;
  position: relative;
}
.notify-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.5;
  position: relative;
}
.notify-form {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.notify-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 10px;
  margin-bottom: 16px;
}
.notify-input, .notify-select {
  padding: 18px 20px;
  font-size: 15px;
  font-family: var(--body);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.2s;
}
.notify-input:focus, .notify-select:focus {
  outline: none;
  border-color: var(--ink);
}
.notify-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2314110F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.notify-submit {
  background: var(--ink);
  color: var(--bg);
  padding: 18px 32px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.notify-submit:hover { background: var(--accent); }
.notify-fine {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  font-style: italic;
}
.notify-success {
  margin-top: 24px;
  padding: 22px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hp { display: none; }

/* footer */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto 56px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.footer-logo-img {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(244, 235, 224, 0.6);
  margin-bottom: 14px;
}
.footer-parent {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.6);
  font-weight: 600;
}
.footer-parent a {
  color: var(--gold);
  border-bottom: 1px solid rgba(192, 149, 69, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-parent a:hover {
  color: var(--bg);
  border-color: var(--bg);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-h {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(244, 235, 224, 0.72);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bg); }
.footer-fine {
  border-top: 1px solid rgba(244, 235, 224, 0.15);
  padding-top: 24px;
  font-size: 11px;
  color: rgba(244, 235, 224, 0.55);
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* responsive */
@media (max-width: 900px) {
  .utility-bar { font-size: 9px; padding: 9px 12px; }
  .utility-bar .separator { margin: 0 8px; }
  .nav { padding: 10px 20px; }
  .logo-mark { font-size: 22px; }
  .logo-img { height: 64px; }
  .footer-logo-img { width: 200px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; }
  .nav-links li:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 60px; }
  .hero-title { font-size: 64px; }
  .marquee-track { font-size: 18px; gap: 28px; }
  .story { padding: 60px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-tag { font-size: 64px; }
  .story-body p { font-size: 17px; }
  .story-lead { font-size: 26px !important; }
  .colorways { padding: 60px 24px; }
  .colorways-tool { grid-template-columns: 1fr; gap: 40px; }
  .colorways-title { font-size: 48px; }
  .swatch-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .specs { padding: 60px 24px; }
  .specs-title { font-size: 48px; }
  .specs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spec { padding: 32px 16px 24px; }
  .spec-num { font-size: 60px; }
  .notify { padding: 60px 24px; }
  .notify-card { padding: 40px 24px; }
  .notify-card::before { top: 8px; left: 8px; right: 8px; bottom: 8px; }
  .notify-title { font-size: 36px; }
  .notify-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer-fine { flex-direction: column; gap: 12px; }
}

@media (max-width: 500px) {
  .swatch-grid { grid-template-columns: repeat(3, 1fr); }
  .specs-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* legal pages */
.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.legal-back {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--accent); }

.legal-hero {
  padding: 80px 48px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.legal-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}
.legal-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.legal-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
}

.legal-body {
  padding: 80px 48px 120px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-body h2 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--ink);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--accent);
}
.legal-body p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.legal-body strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-body ul, .legal-body ol {
  margin: 0 0 18px 24px;
  color: var(--ink-soft);
}
.legal-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-body a.inline {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.2s;
}
.legal-body a.inline:hover { opacity: 0.7; }

.legal-callout {
  margin: 44px 0;
  padding: 40px 36px;
  background: var(--ink);
  color: var(--bg);
  border-left: 4px solid var(--accent);
  position: relative;
}
.legal-callout::before {
  content: "Important";
  position: absolute;
  top: -10px;
  left: 36px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.legal-callout h2 {
  color: var(--bg) !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  font-size: 26px !important;
}
.legal-callout p {
  color: rgba(244, 235, 224, 0.88) !important;
  font-size: 15px !important;
  margin-bottom: 16px;
  line-height: 1.65;
}
.legal-callout p:last-child { margin-bottom: 0; }
.legal-callout strong {
  color: var(--gold) !important;
}

.legal-contact-block {
  margin-top: 32px;
  padding: 28px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.legal-contact-block p {
  margin-bottom: 6px;
  font-size: 14px;
}
.legal-contact-block p:last-child { margin-bottom: 0; }
.legal-contact-block strong {
  display: inline-block;
  min-width: 140px;
}

@media (max-width: 900px) {
  .legal-nav { padding: 14px 20px; }
  .legal-hero { padding: 48px 24px 36px; }
  .legal-title { font-size: 44px; }
  .legal-body { padding: 48px 24px 80px; }
  .legal-body h2 { font-size: 24px; margin-top: 40px; }
  .legal-callout { padding: 28px 22px; margin: 32px 0; }
  .legal-callout h2 { font-size: 21px !important; }
}
