:root {
  --paper: #faf9f6;
  --surface: #ffffff;
  --ink: #1a1c1a;
  --evergreen: #062c22;
  --evergreen-dark: #00150f;
  --burgundy: #6b1b1b;
  --burgundy-light: #9d403d;
  --gold: #b68408;
  --outline: #717975;
  --outline-soft: #c1c8c4;
  --mist: #edf0ed;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --page: min(100% - 64px, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.announcement {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 6px 24px;
  background: var(--evergreen-dark);
  color: #e8eee9;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.announcement a {
  color: #f0c96d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  min-height: 60px;
  align-items: stretch;
  grid-template-columns: 224px 1fr auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--evergreen);
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.11em;
}

.brand span {
  margin-top: 4px;
  color: #d8bd73;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 42px);
}

.main-nav a,
.text-button {
  position: relative;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.87);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: stretch;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.text-button {
  min-width: 80px;
  padding: 0 18px;
}

.text-button:hover,
.text-button:focus-visible {
  color: #f0c96d;
}

.header-cta {
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: var(--gold);
  color: var(--evergreen-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #cc9c2e;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 54px 0 0;
  grid-template-columns: minmax(0, 1fr) 286px;
  column-gap: 52px;
}

.hero-main {
  max-width: 830px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.craft-ledger h2,
.editorial-copy h2,
.custom-builder h2,
.modal-content h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(52px, 6.4vw, 88px);
}

.hero h1 em {
  color: var(--evergreen);
  font-style: italic;
  font-weight: 600;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #48514d;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 12px 20px;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: 160ms ease;
}

.button.primary {
  border-color: var(--evergreen);
  background: var(--evergreen);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: var(--burgundy);
  background: var(--burgundy);
}

.button.secondary {
  border-color: var(--outline);
  color: var(--evergreen);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--evergreen);
  background: #f0f2ef;
}

.hero-proof {
  align-self: end;
  border: 1px solid var(--outline-soft);
  background: rgba(255, 255, 255, 0.66);
}

.hero-proof > p {
  margin: 0;
  border-bottom: 1px solid var(--outline-soft);
  padding: 13px 15px;
  color: var(--evergreen);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-proof-value {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 15px 16px;
}

.hero-proof-value strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.hero-proof-value span {
  padding-bottom: 5px;
  color: var(--outline);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-proof-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--outline-soft);
  padding: 10px 15px;
  font-size: 10px;
}

.hero-proof-row span {
  color: var(--outline);
}

.hero-proof-row strong {
  color: var(--evergreen);
  font-weight: 600;
}

.hero-categories {
  display: grid;
  margin-top: 42px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.hero-categories a {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 11px;
  border-right: 1px solid rgba(182, 132, 8, 0.55);
  padding: 10px 16px;
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.hero-categories a:last-child {
  border-right: 0;
}

.hero-categories a:hover,
.hero-categories a:focus-visible {
  background: #f2ead5;
}

.hero-categories span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  column-gap: 80px;
  margin-bottom: 34px;
}

.section-heading h2,
.craft-ledger h2,
.editorial-copy h2,
.custom-builder h2 {
  font-size: clamp(38px, 4.1vw, 58px);
}

.section-heading > p,
.ledger-heading > p {
  margin: 0;
  color: #545c58;
  line-height: 1.75;
}

.product-section {
  padding-top: 58px;
}

.shop-heading {
  margin-bottom: 22px;
}

.shop-controls {
  display: grid;
  min-height: 66px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--outline-soft);
  background: rgba(255, 255, 255, 0.55);
}

.search-field {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(160px, 1fr);
  gap: 24px;
  padding: 10px 18px;
}

.search-field span,
.filter-summary,
.filter-button,
.product-count {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.search-field span {
  color: var(--evergreen);
}

.search-field input {
  width: 100%;
  border: 0;
  border-left: 1px solid var(--outline-soft);
  outline: 0;
  padding: 10px 16px;
  background: transparent;
  color: var(--ink);
}

.search-field input::placeholder {
  color: #8a918d;
}

.filter-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 1px solid var(--outline-soft);
  padding: 0 18px;
  color: var(--outline);
}

.filter-summary span:first-child {
  color: var(--burgundy);
}

.filter-bar {
  display: flex;
  overflow-x: auto;
  border-right: 1px solid var(--outline-soft);
  border-bottom: 1px solid var(--outline-soft);
  border-left: 1px solid var(--outline-soft);
  scrollbar-width: thin;
}

.filter-button {
  min-width: max-content;
  border: 0;
  border-right: 1px solid var(--outline-soft);
  padding: 11px 15px;
  background: transparent;
  color: var(--outline);
}

.filter-button span {
  margin-left: 4px;
  color: #a2a8a5;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.active {
  background: var(--evergreen);
  color: #fff;
}

.filter-button.active span,
.filter-button:hover span {
  color: #d7bd77;
}

.product-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-width: 0;
  border: 1px solid var(--outline-soft);
  border-radius: 3px;
  background: var(--surface);
  overflow: hidden;
}

.product-open {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.92;
  border-bottom: 1px solid var(--outline-soft);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-image img,
.product-open:focus-visible .product-image img {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.product-meta {
  display: flex;
  min-height: 18px;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.tag {
  border: 1px solid #d2d6d3;
  padding: 2px 5px;
  color: var(--outline);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.23;
}

.product-series {
  display: block;
  margin-top: 4px;
  color: var(--outline);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-evidence {
  display: grid;
  margin: 15px -15px 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--outline-soft);
}

.product-evidence div {
  min-width: 0;
  border-right: 1px solid var(--outline-soft);
  border-bottom: 1px solid var(--outline-soft);
  padding: 8px 10px;
}

.product-evidence div:nth-child(2n) {
  border-right: 0;
}

.product-evidence span,
.product-evidence strong {
  display: block;
}

.product-evidence span {
  margin-bottom: 3px;
  color: var(--outline);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-evidence strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-cta {
  display: block;
  margin-top: 13px;
  border: 1px solid var(--burgundy);
  padding: 8px 10px;
  color: var(--burgundy);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.product-card:hover .card-cta {
  background: var(--burgundy);
  color: #fff;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--outline-soft);
  padding: 72px 24px;
  background: #fff;
  text-align: center;
}

.empty-state strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 28px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.load-more-wrap[hidden] {
  display: none;
}

.collection-section {
  border-top: 1px solid var(--gold);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  position: relative;
  min-height: 410px;
  border: 1px solid var(--outline-soft);
  background: var(--evergreen-dark);
  color: #fff;
  overflow: hidden;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.67;
  transition: 400ms ease;
}

.collection-card:hover img {
  opacity: 0.53;
  transform: scale(1.02);
}

.collection-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 18px;
  background: rgba(0, 21, 15, 0.82);
}

.collection-card span {
  color: #d9bd71;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}

.collection-card p {
  margin: 7px 0 0;
  color: #dfe4e1;
  font-size: 11px;
  line-height: 1.55;
}

.craft-ledger {
  padding: 72px max(32px, calc((100vw - 1440px) / 2));
  background: #f0f0ed;
}

.ledger-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  column-gap: 80px;
  margin-bottom: 34px;
}

.ledger-table {
  border-top: 2px solid var(--gold);
}

.ledger-row {
  display: grid;
  align-items: center;
  grid-template-columns: 240px minmax(260px, 1fr) 250px;
  border-bottom: 1px solid var(--outline-soft);
  background: rgba(255, 255, 255, 0.62);
}

.ledger-row > * {
  margin: 0;
  padding: 15px 18px;
  border-right: 1px solid var(--outline-soft);
}

.ledger-row > *:last-child {
  border-right: 0;
}

.ledger-row strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 17px;
}

.ledger-row span {
  color: #4d5551;
  font-size: 12px;
}

.ledger-row em {
  color: var(--evergreen);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ledger-labels {
  background: var(--evergreen);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.scale-section {
  padding-bottom: 84px;
}

.size-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.size-row a {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  border-right: 1px solid rgba(182, 132, 8, 0.55);
  padding: 22px 18px;
}

.size-row a:last-child {
  border-right: 0;
}

.size-row a:hover,
.size-row a:focus-visible {
  background: #f2ead5;
}

.size-row span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.size-row strong {
  margin-top: 22px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 24px;
}

.size-row em {
  margin-top: auto;
  color: var(--outline);
  font-size: 11px;
  font-style: normal;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  background: var(--evergreen);
  color: #fff;
}

.editorial-media {
  min-height: 720px;
  overflow: hidden;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(46px, 7vw, 110px);
}

.editorial-copy h2,
.custom-builder h2 {
  color: #fff4dc;
}

.editorial-copy > p:not(.kicker) {
  margin: 30px 0 0;
  color: #d9e1dd;
}

.editorial-copy ul {
  margin: 32px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

.editorial-copy li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 10px 0;
  color: #eff3f0;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.text-link {
  align-self: flex-start;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  color: #f0ca72;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.series-grid article {
  border: 1px solid var(--outline-soft);
  background: #fff;
}

.series-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  border-bottom: 1px solid var(--outline-soft);
  object-fit: cover;
}

.series-grid article > div {
  padding: 18px;
}

.series-grid span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.series-grid h3 {
  margin: 8px 0 16px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.series-grid a {
  border-bottom: 1px solid var(--evergreen);
  padding-bottom: 4px;
  color: var(--evergreen);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-builder {
  display: grid;
  padding: 88px max(32px, calc((100vw - 1440px) / 2));
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 90px;
  background: var(--burgundy);
  color: #fff;
}

.custom-intro > p:not(.kicker) {
  max-width: 540px;
  margin: 28px 0;
  color: #ead8d4;
}

.custom-intro ol {
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

.custom-intro li {
  display: grid;
  grid-template-columns: 44px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 10px 0;
  color: #f7ebe8;
  font-size: 12px;
}

.custom-intro li span {
  color: #e8c366;
  font-size: 9px;
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(69, 13, 13, 0.42);
}

.quote-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 15px;
}

.quote-form label:nth-child(2n) {
  border-right: 0;
}

.quote-form label.wide,
.quote-form .wide {
  grid-column: 1 / -1;
  border-right: 0;
}

.quote-form label > span {
  color: #e8c366;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 4px 0;
  background: transparent;
  color: #fff;
}

.quote-form select option {
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form textarea::placeholder {
  color: #cbaaaa;
}

.button.light {
  min-height: 52px;
  border: 0;
  border-radius: 0;
  background: #fff4dc;
  color: var(--burgundy);
}

.button.light:hover,
.button.light:focus-visible {
  background: #e9c765;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 15px;
  background: var(--evergreen);
  color: #fff;
  font-size: 11px;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  display: grid;
  min-height: 240px;
  align-items: start;
  padding: 56px max(32px, calc((100vw - 1440px) / 2));
  grid-template-columns: minmax(280px, 1.5fr) 170px 170px minmax(220px, 1fr);
  gap: 42px;
  border-top: 3px solid var(--gold);
  background: #eeefec;
}

.footer-brand strong {
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.1em;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.footer-column a {
  color: #4d5551;
  font-size: 11px;
}

.footer-column a:hover {
  color: var(--burgundy);
}

.footer-note {
  margin: 0;
  color: var(--outline);
  font-size: 11px;
  text-align: right;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
}

.modal[aria-hidden="false"] {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 21, 15, 0.76);
}

.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(1040px, calc(100% - 48px));
  max-height: calc(100vh - 48px);
  grid-template-columns: 1.05fr 0.95fr;
  border: 1px solid var(--gold);
  background: var(--paper);
  transform: translate(-50%, -50%);
  overflow: auto;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  border: 0;
  border-bottom: 1px solid var(--outline-soft);
  border-left: 1px solid var(--outline-soft);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--evergreen);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-media {
  min-height: 620px;
  border-right: 1px solid var(--outline-soft);
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 54px 38px 38px;
}

.modal-content h2 {
  font-size: 40px;
}

.modal-price {
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.modal-options {
  display: grid;
  margin: 24px 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--outline-soft);
  border-left: 1px solid var(--outline-soft);
}

.modal-options div {
  border-right: 1px solid var(--outline-soft);
  border-bottom: 1px solid var(--outline-soft);
  padding: 10px;
}

.modal-options strong,
.modal-options span {
  display: block;
}

.modal-options strong {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-options span {
  margin-top: 3px;
  font-size: 10px;
}

.modal-bullets {
  padding-left: 18px;
  color: #4d5551;
  font-size: 11px;
}

.modal-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 20px 0;
}

.modal-specs span {
  border: 1px solid var(--outline-soft);
  padding: 3px 6px;
  color: var(--outline);
  font-size: 8px;
  text-transform: uppercase;
}

.consent-banner {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: min(420px, calc(100% - 36px));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid var(--gold);
  padding: 16px;
  background: var(--evergreen-dark);
  color: #fff;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  margin: 0;
  color: #dce4e0;
  font-size: 10px;
  line-height: 1.55;
}

.consent-banner strong {
  display: block;
  margin-bottom: 4px;
  color: #efca73;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consent-actions button {
  min-width: 82px;
  border: 1px solid #d1b35f;
  padding: 7px 10px;
  background: #d1b35f;
  color: var(--evergreen-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-actions button:last-child {
  background: transparent;
  color: #fff;
}

@media (max-width: 1100px) {
  :root {
    --page: calc(100% - 40px);
  }

  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a:nth-child(3) {
    display: none;
  }

  .header-cta {
    padding: 0 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 250px;
    column-gap: 28px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ledger-row {
    grid-template-columns: 190px 1fr 210px;
  }

  .editorial-split {
    grid-template-columns: 1fr 1fr;
  }

  .custom-builder {
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100% - 32px);
  }

  .announcement {
    justify-content: space-between;
    gap: 12px;
  }

  .site-header {
    min-height: 58px;
    grid-template-columns: 160px 1fr auto;
  }

  .brand {
    align-items: flex-start;
    border-right: 0;
    padding-left: 16px;
  }

  .brand strong {
    font-size: 18px;
  }

  .menu-button {
    display: block;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.11em;
  }

  .main-nav {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--evergreen);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav a:nth-child(3) {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 14px 18px;
  }

  .text-button {
    display: none;
  }

  .header-actions {
    border-left: 0;
  }

  .header-cta {
    padding: 0 14px;
    font-size: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(46px, 12vw, 68px);
  }

  .hero-proof {
    margin-top: 30px;
  }

  .hero-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-categories a:nth-child(4),
  .hero-categories a:nth-child(5) {
    border-bottom: 0;
  }

  .hero-categories a {
    border-bottom: 1px solid rgba(182, 132, 8, 0.55);
  }

  .section-heading,
  .ledger-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .shop-controls {
    grid-template-columns: 1fr;
  }

  .filter-summary {
    min-height: 44px;
    justify-content: space-between;
    border-top: 1px solid var(--outline-soft);
    border-left: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid,
  .series-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 360px;
  }

  .craft-ledger {
    padding-right: 16px;
    padding-left: 16px;
  }

  .ledger-row {
    grid-template-columns: 1fr;
  }

  .ledger-row > * {
    border-right: 0;
    border-bottom: 1px solid var(--outline-soft);
  }

  .ledger-row > *:last-child {
    border-bottom: 0;
  }

  .ledger-labels {
    display: none;
  }

  .size-row {
    grid-template-columns: 1fr 1fr;
  }

  .size-row a {
    border-bottom: 1px solid rgba(182, 132, 8, 0.55);
  }

  .editorial-split {
    grid-template-columns: 1fr;
  }

  .editorial-media {
    min-height: 520px;
  }

  .custom-builder {
    padding-right: 24px;
    padding-left: 24px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-note {
    text-align: left;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-media {
    min-height: 300px;
    max-height: 42vh;
    border-right: 0;
    border-bottom: 1px solid var(--outline-soft);
  }
}

@media (max-width: 520px) {
  :root {
    --page: calc(100% - 24px);
  }

  .announcement {
    min-height: 30px;
    padding: 5px 12px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .announcement span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: 1fr 60px auto;
  }

  .brand {
    padding-left: 12px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand span {
    font-size: 6px;
  }

  .header-cta {
    max-width: 92px;
    text-align: center;
  }

  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-categories {
    grid-template-columns: 1fr;
  }

  .hero-categories a {
    min-height: 48px;
    border-right: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .craft-ledger h2,
  .editorial-copy h2,
  .custom-builder h2 {
    font-size: 38px;
  }

  .search-field {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .search-field input {
    border-top: 1px solid var(--outline-soft);
    border-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    aspect-ratio: 1 / 0.86;
  }

  .size-row {
    grid-template-columns: 1fr;
  }

  .size-row a {
    min-height: 148px;
    border-right: 0;
  }

  .editorial-media {
    min-height: 380px;
  }

  .editorial-copy {
    padding: 48px 24px;
  }

  .custom-builder {
    padding: 60px 18px;
    gap: 48px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form label,
  .quote-form label:nth-child(2n) {
    grid-column: 1;
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
  }

  .modal-content {
    padding: 48px 20px 24px;
  }

  .modal-content h2 {
    font-size: 34px;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
  }

  .consent-actions {
    flex-direction: row;
  }
}

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