:root {
  --ink: #10100f;
  --coal: #181512;
  --charcoal: #25211d;
  --paper: #f6efe5;
  --paper-2: #fffaf1;
  --muted: #73685f;
  --line: rgba(26, 21, 17, .12);
  --accent: #ff6a2b;
  --accent-2: #d4ff5a;
  --cream: #ffe6b8;
  --shadow: 0 24px 70px rgba(16, 16, 15, .16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,106,43,.18), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(212,255,90,.18), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  background: var(--ink);
  color: var(--paper);
  padding: .7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.announcement {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: .72rem 1rem;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement span {
  display: inline-block;
  transition: opacity .18s ease, transform .18s ease;
}
.announcement span.is-changing { opacity: 0; transform: translateY(6px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 229, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 1000;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-size: 1.22rem;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--accent);
  font-size: 1.1rem;
  letter-spacing: -.08em;
}
.brand-text span {
  display: block;
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--muted);
  margin-top: -.15rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: .32rem;
}
.nav a {
  padding: .72rem .9rem;
  border-radius: 999px;
  color: rgba(16,16,15,.72);
  font-weight: 800;
  font-size: .94rem;
}
.nav a:hover, .nav a[aria-current="page"] { background: rgba(16,16,15,.07); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 999px;
  padding: .68rem .88rem;
  font-weight: 900;
}

.btn, .btn-dark, .btn-light, .btn-outline, .ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .86rem 1.05rem;
  border-radius: 999px;
  border: 0;
  font-weight: 950;
  letter-spacing: -.02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover, .btn-dark:hover, .btn-light:hover, .btn-outline:hover, .ghost-link:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--paper); box-shadow: 0 12px 28px rgba(16,16,15,.18); }
.btn-light { background: var(--paper-2); color: var(--ink); }
.btn-outline { border: 1px solid rgba(16,16,15,.16); background: rgba(255,255,255,.28); color: var(--ink); }
.ghost-link { min-height: 38px; padding: .62rem .78rem; background: var(--ink); color: var(--paper); font-size: .88rem; }

main { min-height: 60vh; }
.section, .page-hero, .hero {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
}
.kicker, .mini-label {
  margin: 0 0 .8rem;
  color: var(--accent);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 1000;
}
h1, h2, h3 { margin: 0; line-height: .94; letter-spacing: -.06em; }
h1 {
  font-size: clamp(3.8rem, 9.2vw, 8.65rem);
  max-width: 10ch;
}
h2 { font-size: clamp(2.25rem, 4.8vw, 4.8rem); }
h3 { font-size: 1.45rem; letter-spacing: -.045em; line-height: 1; }
.lede {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 1.25rem 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .68rem;
  margin-top: 1.75rem;
}
.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.32);
  border-radius: 999px;
  padding: .56rem .74rem;
  font-size: .82rem;
  color: rgba(16,16,15,.72);
  font-weight: 850;
}

.hero-art {
  position: relative;
  min-height: 610px;
}
.hero-tile {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper-2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16,16,15,.08);
}
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-tile.one { width: 65%; height: 55%; right: 0; top: 0; transform: rotate(3deg); }
.hero-tile.two { width: 54%; height: 44%; left: 0; top: 28%; transform: rotate(-5deg); }
.hero-tile.three { width: 50%; height: 36%; right: 11%; bottom: 0; transform: rotate(2deg); }
.hero-badge {
  position: absolute;
  left: 10%;
  bottom: 13%;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  max-width: 220px;
}
.hero-badge strong { display: block; font-size: 1.35rem; letter-spacing: -.05em; }
.hero-badge span { color: rgba(246,239,229,.72); font-size: .88rem; }

.section { padding: clamp(3rem, 6vw, 6.5rem) 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.section-head p { margin: .8rem 0 0; color: var(--muted); max-width: 48ch; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product-card {
  background: rgba(255,250,241,.72);
  border: 1px solid rgba(16,16,15,.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(16,16,15,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  aspect-ratio: 1.04 / .86;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-media span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: var(--paper-2);
  border: 1px solid rgba(16,16,15,.08);
  border-radius: 999px;
  padding: .45rem .65rem;
  font-weight: 1000;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-copy { padding: 1.05rem; }
.product-copy p:not(.mini-label) { color: var(--muted); margin: .7rem 0 0; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: 1.05rem;
}
.product-foot strong { font-size: 1.22rem; }

.collections {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
}
.collection-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 22%, rgba(255,106,43,.85), transparent 18rem), radial-gradient(circle at 18% 30%, rgba(212,255,90,.38), transparent 14rem);
  opacity: .9;
}
.collection-card > * { position: relative; }
.collection-card p { max-width: 42ch; color: rgba(246,239,229,.78); }
.collection-card.alt { background: #2d241d; }
.collection-card.alt::before { background: radial-gradient(circle at 68% 20%, rgba(255,230,184,.7), transparent 16rem), radial-gradient(circle at 20% 80%, rgba(255,106,43,.45), transparent 14rem); }

.strip {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(16,16,15,.09);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}
.strip div { padding: 1.35rem; border-right: 1px solid var(--line); }
.strip div:last-child { border-right: 0; }
.strip strong { display: block; font-size: 1.05rem; letter-spacing: -.03em; }
.strip span { color: var(--muted); font-size: .92rem; }

.page-hero { padding: clamp(3rem, 7vw, 6rem) 0 2rem; }
.breadcrumb { margin: 0 0 1rem; color: var(--muted); font-weight: 800; }
.breadcrumb a { text-decoration: underline; text-underline-offset: .25rem; }
.page-hero h1 { max-width: 12ch; }

.shop-controls {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.search-box input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(16,16,15,.12);
  border-radius: 999px;
  background: var(--paper-2);
  padding: 0 1.1rem;
  outline: 0;
  box-shadow: 0 12px 28px rgba(16,16,15,.05);
}
.filter-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.filter-row button {
  border: 1px solid rgba(16,16,15,.12);
  background: rgba(255,250,241,.7);
  border-radius: 999px;
  min-height: 42px;
  padding: .6rem .82rem;
  font-weight: 900;
}
.filter-row button.is-active { background: var(--ink); color: var(--paper); }
.count-pill {
  justify-self: end;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: .65rem .9rem;
  font-weight: 1000;
}
.empty-state {
  text-align: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.story-grid, .contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}
.panel {
  background: rgba(255,250,241,.75);
  border: 1px solid rgba(16,16,15,.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 14px 42px rgba(16,16,15,.07);
}
.panel.dark { background: var(--ink); color: var(--paper); }
.panel.dark p, .panel.dark li { color: rgba(246,239,229,.74); }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .8rem; }
.check-list li { display: flex; gap: .7rem; align-items: start; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--accent); font-weight: 1000; }

.form {
  display: grid;
  gap: .85rem;
}
.form label { display: grid; gap: .4rem; font-weight: 900; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid rgba(16,16,15,.12);
  border-radius: 18px;
  padding: .95rem 1rem;
  background: var(--paper-2);
  outline: 0;
}
.form textarea { resize: vertical; min-height: 150px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-note { color: var(--muted); font-size: .92rem; margin: .25rem 0 0; }
.success-note {
  background: rgba(212,255,90,.36);
  border: 1px solid rgba(16,16,15,.1);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-weight: 900;
}
.honeypot { position: absolute; left: -9999px; }

.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 2rem; margin-top: 2rem; }
.legal-content p, .legal-content li { color: var(--muted); }

.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr .8fr;
  gap: 1.5rem;
}
.footer-inner p, .footer-inner a { color: rgba(246,239,229,.7); }
.footer-inner h3 { font-size: 1rem; letter-spacing: -.02em; margin-bottom: .8rem; }
.footer-links { display: grid; gap: .45rem; }
.footer-bottom {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(246,239,229,.14);
  color: rgba(246,239,229,.55);
  font-size: .9rem;
}

.product-modal {
  width: min(680px, calc(100% - 30px));
  border: 0;
  border-radius: 34px;
  padding: 0;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}
.product-modal::backdrop { background: rgba(16,16,15,.55); backdrop-filter: blur(8px); }
.modal-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; }
.modal-grid img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.modal-copy { padding: 1.4rem; }
.modal-close {
  float: right;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  width: 38px;
  height: 38px;
}

@media (max-width: 900px) {
  .header-inner { height: auto; min-height: 72px; flex-wrap: wrap; padding: .6rem 0; }
  .menu-toggle { display: inline-flex; }
  .nav {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: .45rem 0 .75rem;
  }
  .nav.is-open { display: flex; }
  .nav a { border-radius: 16px; }
  .header-actions .btn-dark { display: none; }
  .hero, .story-grid, .contact-grid, .collections { grid-template-columns: 1fr; }
  .hero-art { min-height: 500px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-controls { grid-template-columns: 1fr; }
  .count-pill { justify-self: start; }
  .strip { grid-template-columns: 1fr; }
  .strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .brand-mark { width: 40px; height: 40px; border-radius: 14px; box-shadow: 6px 6px 0 var(--accent); }
  .brand { font-size: 1.05rem; }
  h1 { font-size: clamp(3.05rem, 18vw, 4.6rem); }
  .hero { padding-top: 3rem; }
  .hero-art { min-height: 390px; }
  .hero-tile.one { width: 70%; height: 50%; }
  .hero-tile.two { width: 58%; height: 38%; }
  .hero-tile.three { width: 57%; height: 32%; right: 5%; }
  .hero-badge { left: 2%; bottom: 8%; }
  .product-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .form .row, .modal-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
