:root {
  --paper: #f6f1e8;
  --paper-bright: #fffdf8;
  --ink: #2b1912;
  --ink-soft: #604e45;
  --walnut: #24140f;
  --walnut-2: #3a2118;
  --teal: #155d62;
  --teal-dark: #0b4449;
  --gold: #c98628;
  --gold-bright: #dda53e;
  --line: #dccfbe;
  --shadow: 0 18px 50px rgba(43, 25, 18, 0.14);
  --display: Rockwell, "Roboto Slab", Georgia, serif;
  --body: Inter, Aptos, "Segoe UI", sans-serif;
  --page: min(1380px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.04; }
h1 { font-size: clamp(3.25rem, 5.3vw, 6.25rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.35rem, 4vw, 4.5rem); letter-spacing: -0.035em; }
h3 { font-size: 1.55rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: white;
  background: var(--teal);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: var(--page);
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.brand img { width: 82px; height: 82px; object-fit: contain; }
.brand span { display: grid; }
.brand strong {
  font: 800 clamp(1.25rem, 2vw, 2rem)/1 var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand small {
  margin-top: 7px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.site-nav {
  min-height: 86px;
  padding: 0 18px 0 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3.6vw, 58px);
  color: white;
  background: var(--walnut);
  border-radius: 0 0 0 26px;
}
.site-nav > a:not(.button) {
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav > a:not(.button):hover { color: var(--gold-bright); }
.menu-toggle { display: none; }

.button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .category-link svg, .site-nav svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-gold { color: var(--paper-bright); background: var(--gold); }
.button-gold:hover { background: #aa6b16; }
.button-teal { color: white; background: var(--teal); }
.button-teal:hover { background: var(--teal-dark); }
.button-outline { color: var(--gold); background: transparent; border-color: var(--gold); }
.button-outline:hover { color: white; background: var(--gold); }
.button-outline-light { color: white; background: transparent; border-color: var(--gold-bright); }
.button-outline-light:hover { color: var(--walnut); background: var(--gold-bright); }
.nav-cta { min-height: 48px; padding-inline: 18px; white-space: nowrap; }

.hero {
  width: var(--page);
  min-height: 610px;
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(560px, 1.4fr);
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
}
.hero-copy { padding: 40px 0 72px 18px; }
.hero-copy h1 { max-width: 700px; margin-bottom: 26px; }
.hero-copy p {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; min-height: 560px; }
.hero-main-image {
  position: absolute;
  inset: 22px 0 22px 10%;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow);
}
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-detail {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: white;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}
.hero-detail img { width: 100%; height: 100%; object-fit: cover; }
.hero-detail-top { width: 31%; aspect-ratio: 1; top: 0; right: -1.5%; }
.hero-detail-bottom { width: 28%; aspect-ratio: 1.1; right: 1%; bottom: -6px; }

.category-section {
  padding: 64px max(24px, calc((100vw - 1380px) / 2)) 90px;
  background: var(--paper-bright);
  border-top: 1px solid rgba(43, 25, 18, 0.09);
}
.section-heading h2 { margin-bottom: 15px; }
.section-heading p { color: var(--ink-soft); font-size: 1.1rem; }
.centered-heading { text-align: center; }
.centered-heading h2 { font-size: clamp(2.45rem, 3.8vw, 4.25rem); }
.centered-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 18px auto 30px;
  background: var(--gold);
}
.category-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.category-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-link img { grid-column: 1 / -1; width: 100%; height: 250px; object-fit: cover; }
.category-link span { padding: 17px 20px; font: 800 1.25rem/1.2 var(--display); }
.category-link svg { margin-right: 20px; color: var(--gold); }

.collection-section { width: var(--page); margin: 0 auto; padding: 110px 0 120px; }
.collection-heading { max-width: 1050px; margin: 0 auto 42px; text-align: center; }
.collection-heading p { max-width: 820px; margin-inline: auto; }
.filters {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.filter-button {
  min-height: 52px;
  padding: 10px 15px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  font: 700 1rem/1.2 var(--display);
  cursor: pointer;
}
.filter-button:hover, .filter-button.is-active { color: white; background: var(--walnut); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 22px;
}
.product-item { min-width: 0; }
.product-item[hidden] { display: none; }
.product-image { aspect-ratio: 1 / 1.05; margin-bottom: 18px; overflow: hidden; background: #e7ddd0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 360ms ease; }
.product-item:hover .product-image img { transform: scale(1.025); }
.product-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.product-meta h3 { margin-bottom: 6px; font-size: 1.4rem; }
.product-meta p { margin-bottom: 12px; color: var(--ink-soft); font-size: 0.91rem; }
.product-meta strong { flex: 0 0 auto; color: var(--teal); font: 800 1.2rem/1.2 var(--display); text-align: right; }
.product-item > a, .text-button, .text-link {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  color: var(--teal-dark);
  background: transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.product-item > a:hover, .text-button:hover, .text-link:hover { color: var(--gold); }
.empty-state { padding: 40px; text-align: center; }

.custom-band {
  padding: 48px max(24px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
  background: var(--teal-dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.custom-band > div { display: flex; align-items: center; gap: 24px; }
.custom-band h2 { margin: 0; font-size: clamp(2rem, 3.3vw, 3.5rem); }
.idea-mark { color: var(--gold-bright); }
.idea-mark svg { width: 56px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.story-section {
  width: var(--page);
  padding: 110px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
}
.story-copy { padding-left: 3%; }
.story-copy h2 { margin-bottom: 26px; }
.story-copy p { max-width: 610px; margin-bottom: 28px; color: var(--ink-soft); font-size: 1.18rem; }
.story-more { margin-top: 24px; }
.story-more p { font-size: 1rem; }
.gold-rule { display: block; width: 75px; height: 3px; margin-bottom: 26px; background: var(--gold); }
.story-image { height: 600px; margin: 0; overflow: hidden; box-shadow: var(--shadow); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }

.visit-section {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--teal-dark);
}
.visit-section > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.visit-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 67, 72, 0.98) 0%, rgba(7, 67, 72, 0.9) 36%, rgba(7, 67, 72, 0.16) 72%); }
.visit-copy { position: relative; width: var(--page); margin: 0 auto; z-index: 1; }
.visit-copy h2 { max-width: 670px; margin-bottom: 24px; }
.visit-copy p { max-width: 470px; margin-bottom: 28px; font-size: 1.2rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.location-note { margin-top: 18px; font-size: 0.92rem !important; }

.site-footer {
  padding: 74px max(24px, calc((100vw - 1280px) / 2)) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: var(--paper-bright);
}
.footer-brand img { width: 185px; }
.footer-brand p { max-width: 280px; margin-top: 14px; color: var(--ink-soft); text-align: center; }
.footer-nav { display: grid; align-content: start; }
.footer-nav a {
  padding: 11px 0;
  border-bottom: 1px solid rgba(201, 134, 40, 0.7);
  font: 700 1.08rem/1.2 var(--display);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--teal); }
.copyright {
  grid-column: 1 / -1;
  margin: 32px calc(-1 * max(24px, calc((100vw - 1280px) / 2))) 0;
  padding: 24px;
  color: white;
  background: var(--walnut);
  text-align: center;
}

.custom-dialog {
  width: min(650px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  padding: 42px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 30px 90px rgba(25, 12, 8, 0.42);
}
.custom-dialog::backdrop { background: rgba(27, 15, 11, 0.72); backdrop-filter: blur(3px); }
.custom-dialog h2 { margin-bottom: 12px; font-size: 2.6rem; }
.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.dialog-close svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.custom-form { display: grid; gap: 16px; margin-top: 26px; }
.custom-form label { display: grid; gap: 6px; font-weight: 800; }
.custom-form input, .custom-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: white;
}
.custom-form input:focus, .custom-form textarea:focus { outline: 3px solid rgba(21, 93, 98, 0.24); border-color: var(--teal); }
.custom-form small { color: var(--ink-soft); }
.dialog-success { padding: 30px 0; text-align: center; }

@media (max-width: 1120px) {
  :root { --page: min(100% - 36px, 980px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 96px; }
  .brand img { width: 68px; height: 68px; }
  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 4px;
    color: white;
    background: var(--walnut);
    cursor: pointer;
  }
  .menu-toggle svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
  .site-nav {
    position: absolute;
    top: 96px;
    left: 18px;
    right: 18px;
    z-index: 10;
    min-height: 0;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 8px 0; }
  .hero { grid-template-columns: 0.9fr 1.1fr; min-height: 550px; gap: 30px; }
  .hero-copy { padding-left: 0; }
  .hero-media { min-height: 500px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-section { grid-template-columns: 0.85fr 1fr; gap: 48px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100% - 28px); }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .brand strong { font-size: 1.15rem; }
  .brand small { font-size: 0.58rem; }
  .brand img { width: 58px; height: 58px; }
  .site-header { min-height: 82px; }
  .site-nav { top: 82px; }
  .hero { display: block; margin-top: 0; }
  .hero-copy { padding: 54px 0 44px; }
  .hero-media { min-height: 470px; margin-bottom: 48px; }
  .hero-main-image { inset: 0 0 35px 0; }
  .hero-detail-top { width: 34%; top: -18px; right: -5px; }
  .hero-detail-bottom { width: 36%; right: -5px; bottom: 0; }
  .category-section { padding: 60px 14px; }
  .category-rail { grid-template-columns: 1fr; }
  .category-link img { height: 230px; }
  .collection-section { padding: 78px 0; }
  .filters { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 8px; }
  .filter-button { min-width: max-content; padding-inline: 18px; }
  .product-grid { grid-template-columns: 1fr; gap: 42px; }
  .product-image { aspect-ratio: 1 / 0.9; }
  .custom-band { padding: 42px 20px; display: grid; }
  .custom-band > div { align-items: flex-start; }
  .idea-mark svg { width: 42px; }
  .story-section { padding: 78px 0; display: flex; flex-direction: column; gap: 40px; }
  .story-copy { padding-left: 0; }
  .story-image { width: 100%; height: 420px; order: -1; }
  .visit-section { min-height: 640px; align-items: end; }
  .visit-section > img { object-position: 58% center; }
  .visit-overlay { background: linear-gradient(0deg, rgba(7, 67, 72, 0.98) 0%, rgba(7, 67, 72, 0.9) 55%, rgba(7, 67, 72, 0.08) 100%); }
  .visit-copy { padding-bottom: 56px; }
  .site-footer { grid-template-columns: 1fr; gap: 36px; padding-top: 54px; }
  .footer-brand { display: grid; justify-items: center; }
  .custom-dialog { padding: 38px 22px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

.coming-soon-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.visit-blurb {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--teal-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.coming-soon-section {
  padding: 90px max(24px, calc((100vw - 1380px) / 2)) 110px;
  background: var(--paper-bright);
  border-top: 1px solid rgba(43, 25, 18, 0.09);
}

.coming-soon-section .centered-heading p {
  max-width: 720px;
  margin: 0 auto;
}

.coming-soon-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-detail-top img {
  object-fit: contain;
  background: var(--paper-bright);
  padding: 10px;
}

@media (max-width: 760px) {
  .coming-soon-section { padding: 64px 14px 80px; }
}

.site-header-simple {
  grid-template-columns: 1fr;
  min-height: 96px;
}

.site-footer-simple {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-top: 48px;
}

.site-footer-simple .footer-brand {
  display: grid;
  justify-items: center;
}

.site-footer-simple .copyright {
  grid-column: 1;
  width: 100%;
}

@media (max-width: 1120px) {
  .site-header-simple { grid-template-columns: 1fr; }
}
