:root {
  --paper: #f8f6f0;
  --warm-white: #fdfcf8;
  --sand: #e8e0d3;
  --oak: #a7774f;
  --clay: #8c5c3f;
  --moss: #4d5848;
  --forest: #172019;
  --ink: #20231f;
  --muted: #6f726b;
  --line: rgba(32, 35, 31, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: min(90vw, 1440px);
  --header-height: 84px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--warm-white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: rgba(253, 252, 248, 0.95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transform: translateY(-110%);
  transition: transform 0.55s cubic-bezier(.22, .8, .2, 1), height 0.3s, border-color 0.3s;
}

.header-visible .site-header {
  transform: translateY(0);
}

.header-compact .site-header {
  height: 72px;
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  letter-spacing: 0.13em;
}

.brand span {
  font-weight: 300;
}

.brand strong {
  font-weight: 700;
}

.brand i {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: rotate(-58deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 52px);
}

.nav-link {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s, background 0.25s;
}

.nav-cta:hover,
.nav-cta.is-active {
  color: var(--warm-white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--forest);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 15, 12, 0.18) 0%, rgba(12, 15, 12, 0.08) 40%, rgba(12, 15, 12, 0.73) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  animation: hero-scale 16s ease-out both;
}

@keyframes hero-scale {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-topline {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 4vw;
  right: 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-topline .brand {
  font-size: 17px;
}

.hero-topline p {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: 0 0 clamp(44px, 7vh, 88px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7.2vw, 118px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero h1 em {
  font-weight: 400;
}

.hero-side {
  width: min(300px, 24vw);
  padding-bottom: 8px;
}

.hero-side p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,.55);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.2s, color 0.25s, background 0.25s;
}

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

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

.button-dark {
  color: var(--warm-white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--sand);
  border-color: var(--sand);
}

.button-outline {
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.intro-band {
  padding: 40px 5vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: 10px clamp(16px, 3vw, 48px);
  background: var(--warm-white);
}

.intro-band span {
  display: block;
  margin-bottom: 6px;
  color: var(--oak);
  font-family: var(--serif);
  font-size: 27px;
}

.intro-band p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 180px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.75fr 2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 88px);
}

.section-heading h2,
.story-copy h2,
.custom-copy h2,
.collection-copy h2,
.product-copy h2,
.page-hero h1,
.contact-intro h1,
.form-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story {
  width: var(--content);
  margin: clamp(84px, 9vw, 140px) auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 590px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(30, 34, 29, 0.08);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5.4vw, 86px);
}

.story-copy h2 {
  margin-bottom: 34px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--muted);
}

.text-link {
  width: fit-content;
  margin-top: 24px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  cursor: pointer;
}

.story-slider {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.story-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s, transform 1.5s;
}

.story-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slider-controls {
  position: absolute;
  z-index: 3;
  left: 30px;
  bottom: 30px;
  display: flex;
  gap: 8px;
  padding: 10px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
}

.slider-dot {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(32,35,31,.25);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--ink);
}

.products-section {
  overflow: hidden;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 54px);
  row-gap: clamp(68px, 7vw, 110px);
  align-items: stretch;
}

.featured-grid .product-card:first-child,
.featured-grid .product-card:nth-child(4) {
  grid-column: auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #fff;
}

.product-image img {
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1), opacity 0.15s;
}

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

.product-image img.is-changing,
#detail-main-image.is-changing {
  opacity: 0.35;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(253,252,248,.9);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.product-meta {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(142px, auto);
  gap: 24px;
  margin-top: 20px;
  align-items: start;
  min-width: 0;
  min-height: 145px;
}

.product-title-block {
  min-width: 0;
}

.product-meta .eyebrow {
  margin-bottom: 6px;
  color: var(--muted);
}

.product-meta h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.price {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-width: 142px;
}

.swatches {
  display: flex;
  gap: 8px;
}

.swatch {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 3px solid var(--warm-white);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px transparent;
  cursor: pointer;
}

.swatch.is-selected {
  box-shadow: 0 0 0 1px var(--ink);
}

.round-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.round-link i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-style: normal;
  transition: color .25s, background .25s;
}

.round-link:hover i {
  color: white;
  background: var(--ink);
}

.section-end {
  margin-top: 70px;
  text-align: center;
}

.custom-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--warm-white);
  background: var(--forest);
  box-shadow: 0 26px 65px rgba(17, 25, 19, .22);
}

.custom-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.custom-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 170px) 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(70px, 10vw, 180px);
}

.custom-copy h2 {
  max-width: 820px;
  margin-bottom: 30px;
}

.custom-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255,255,255,.67);
}

.custom-copy .button {
  margin-top: 28px;
}

.process-list {
  border-top: 1px solid rgba(255,255,255,.25);
}

.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.process-item > span {
  color: #bda88f;
  font-family: var(--serif);
  font-size: 24px;
}

.process-item h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.process-item p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.collection-section {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 10vw, 160px) 0;
}

.collection-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23, 32, 25, .11), transparent);
}

.collection-row {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 600px;
  align-items: stretch;
}

.collection-image {
  overflow: hidden;
}

.collection-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.collection-row:hover .collection-image img {
  transform: scale(1.025);
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(50px, 7vw, 120px);
  background: var(--paper);
}

.collection-copy h2 {
  margin-bottom: 28px;
}

.collection-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.collection-link {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 34px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color .3s, background .3s, transform .3s;
}

.collection-link b {
  font-size: 16px;
  font-weight: 400;
}

.collection-link:hover {
  color: var(--warm-white);
  background: var(--ink);
  transform: translateY(-2px);
}

.craft-banner {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
  box-shadow: 0 30px 65px rgba(10, 14, 11, .28);
}

.craft-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,22,17,.5);
}

.craft-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.craft-banner div {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
}

.craft-banner blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.craft-banner p {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.page-hero {
  width: var(--content);
  margin: 0 auto;
  padding: 190px 0 90px;
  display: grid;
  grid-template-columns: 1.8fr .7fr;
  align-items: end;
  gap: 60px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(64px, 8vw, 132px);
}

.page-hero > p {
  margin: 0 0 12px;
  color: var(--muted);
}

.catalog-shell {
  width: var(--content);
  margin: 0 auto;
  padding: 42px 0 140px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 72px;
}

.search-field {
  position: relative;
}

.search-field input,
.sort-field select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search-field span {
  position: absolute;
  right: 0;
  bottom: 12px;
}

.sort-field span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.category-filters {
  grid-column: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--warm-white);
  background: var(--ink);
  border-color: var(--ink);
}

#result-count {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 100px 20px;
  text-align: center;
  background: var(--paper);
}

.breadcrumbs {
  width: var(--content);
  margin: 0 auto;
  padding: 120px 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.breadcrumbs strong {
  color: var(--ink);
  font-weight: 500;
}

.product-detail {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  gap: clamp(50px, 7vw, 110px);
  padding-bottom: 120px;
}

.detail-gallery {
  min-width: 0;
}

.detail-main-image {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #fff;
}

.detail-main-image img {
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: opacity .15s;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumb {
  aspect-ratio: 1.15 / 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
  opacity: .58;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--ink);
  opacity: 1;
}

.gallery-thumb img {
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.detail-info {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 24px;
}

.detail-info h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 80px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.detail-lead {
  margin: 0 0 24px;
  color: var(--muted);
}

.detail-price {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
}

.detail-divider {
  height: 1px;
  margin: 30px 0;
  background: var(--line);
}

.finish-picker > p {
  margin: 0 0 15px;
  font-size: 12px;
}

.finish-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.finish-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.finish-option i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--swatch);
}

.finish-option.is-active {
  border-color: var(--ink);
}

.spec-list {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
}

.payment-note {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.payment-note i {
  color: var(--moss);
  font-style: normal;
}

.product-copy {
  width: var(--content);
  margin: 0 auto 140px;
  padding: clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: .65fr 1.25fr .8fr;
  gap: 50px;
  background: var(--paper);
}

.product-copy > p:last-child {
  color: var(--muted);
}

.order-dialog {
  width: min(92vw, 650px);
  max-height: 92vh;
  padding: clamp(34px, 5vw, 62px);
  border: 0;
  color: var(--ink);
  background: var(--warm-white);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.order-dialog::backdrop {
  background: rgba(17,22,18,.66);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 20px;
  border: 0;
  background: transparent;
  font-size: 30px;
  font-weight: 200;
  cursor: pointer;
}

.order-dialog h2 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
}

.order-dialog p:not(.eyebrow) {
  color: var(--muted);
}

.binding-notice {
  margin: 24px 0;
  padding: 20px;
  border-left: 3px solid var(--oak);
  background: rgba(183, 143, 98, .1);
}

.binding-notice strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.binding-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
}

.confirm-actions {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 12px;
  margin-top: 24px;
}

.confirm-actions .button {
  min-height: 58px;
  padding-inline: 18px;
  gap: 12px;
  line-height: 1.35;
  text-align: left;
}

form {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

label:not(.checkbox):not(.upload-box) {
  display: grid;
  gap: 7px;
}

label > span,
.field-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  transition: border-color .25s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--ink);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.checkbox input {
  width: 16px;
  margin-top: 1px;
}

.checkbox span {
  text-transform: none;
  letter-spacing: normal;
}

.checkbox a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.order-summary {
  margin: 26px 0 10px;
  border-top: 1px solid var(--line);
}

.order-summary > div {
  display: grid;
  grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr);
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.order-summary span {
  color: var(--muted);
}

.order-summary strong {
  text-align: right;
  font-weight: 500;
}

.order-summary .order-total {
  padding: 16px 0;
  align-items: center;
}

.order-summary .order-total strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.order-legal-note {
  margin: -3px 0 0 !important;
  color: var(--muted);
  font-size: 10px;
}

.form-error {
  margin: 0 !important;
  padding: 12px 14px;
  color: #7c2f26 !important;
  background: #f8e9e5;
  font-size: 11px;
}

.button.is-loading,
.button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.order-success {
  text-align: center;
}

.order-success h2 strong {
  display: block;
  color: var(--clay);
  font-weight: 400;
}

.success-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: white;
  background: var(--moss);
  font-size: 28px;
}

.success-time {
  margin: 28px 0;
  padding: 22px;
  display: grid;
  gap: 4px;
  background: var(--paper);
}

.success-time span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.success-time strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.small {
  font-size: 11px;
}

.custom-page,
.contact-page {
  padding-top: 72px;
}

.form-hero,
.contact-hero {
  width: var(--content);
  margin: 0 auto;
  padding: 110px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.form-intro h1,
.contact-intro h1 {
  margin-bottom: 30px;
}

.form-intro > p:not(.eyebrow),
.contact-intro > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.form-hero-image,
.contact-hero-image {
  min-height: 560px;
  overflow: hidden;
}

.form-hero-image img,
.contact-hero-image img {
  height: 100%;
  object-fit: cover;
}

.quote-form-section {
  background: var(--paper);
  padding: clamp(80px, 10vw, 150px) 0;
}

.quote-form {
  width: min(90vw, 980px);
  margin: 0 auto;
}

.form-step {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.form-step-head {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-step-head > span {
  color: var(--oak);
  font-family: var(--serif);
  font-size: 28px;
}

.form-step-head h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}

.form-step-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-step-body {
  padding-left: 90px;
}

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.upload-box {
  min-height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px dashed rgba(32,35,31,.32);
  cursor: pointer;
  transition: border-color .25s, background .25s;
}

.upload-box:hover {
  border-color: var(--ink);
  background: rgba(255,255,255,.55);
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-icon {
  font-family: var(--serif);
  font-size: 34px;
}

.upload-box strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.upload-name {
  color: var(--muted);
  font-size: 10px;
}

.upload-limit {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.form-submit {
  padding: 46px 0 0 90px;
  border-top: 1px solid var(--line);
}

.form-submit .button {
  max-width: 420px;
}

.form-success {
  margin-top: 30px;
  padding: 30px;
  color: white;
  background: var(--moss);
}

.form-success h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.form-success p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.form-success .form-reference {
  margin-top: 12px;
  color: white;
  font-size: 11px;
  letter-spacing: .05em;
}

.contact-info {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-info a,
.contact-info span {
  display: block;
  margin: 8px 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
}

.contact-note {
  margin-top: 18px !important;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  color: var(--clay);
}

.contact-form-section {
  padding: 100px 0 140px;
  background: var(--paper);
}

.contact-form-wrap {
  width: min(90vw, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.contact-form-wrap h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 65px);
  font-weight: 400;
  line-height: 1;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 80px 5vw 26px;
  color: rgba(255,255,255,.82);
  background: #111712;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr .7fr .8fr;
  gap: 80px;
  padding-bottom: 80px;
}

.brand-light {
  color: white;
  margin-bottom: 30px;
}

.footer-top > div:first-child p {
  max-width: 450px;
  color: rgba(255,255,255,.52);
  font-family: var(--serif);
  font-size: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
}

.footer-links > span {
  margin-bottom: 14px;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.38);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a:hover {
  color: rgba(255,255,255,.8);
}

.legal-page {
  padding-top: 72px;
}

.legal-hero {
  width: var(--content);
  margin: 0 auto;
  padding: 110px 0 90px;
  display: grid;
  grid-template-columns: .6fr 1.6fr .8fr;
  gap: 50px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.2vw, 112px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
}

.legal-hero > p:last-child {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12px;
}

.legal-layout {
  width: var(--content);
  margin: 0 auto;
  padding: 70px 0 150px;
  display: grid;
  grid-template-columns: 230px minmax(0, 850px);
  justify-content: space-between;
  gap: clamp(60px, 10vw, 160px);
}

.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}

.legal-nav strong {
  margin-bottom: 12px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.legal-nav a {
  color: var(--muted);
}

.legal-nav a:hover {
  color: var(--ink);
}

.legal-warning {
  margin-bottom: 34px;
  padding: 28px 30px;
  color: rgba(255,255,255,.82);
  background: var(--forest);
}

.legal-warning strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.legal-warning p {
  margin: 0;
  font-size: 12px;
}

.legal-content section {
  position: relative;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.legal-content section > span {
  position: absolute;
  top: 59px;
  left: 0;
  color: var(--oak);
  font-family: var(--serif);
  font-size: 20px;
}

.legal-content h2 {
  margin: 0 0 30px;
  padding-left: 58px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.legal-content p,
.legal-content li {
  color: #50544d;
  font-size: 14px;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content mark {
  padding: 1px 4px;
  color: #713c2e;
  background: #f4ded5;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s, transform .75s;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-grid .product-card:first-child,
  .featured-grid .product-card:nth-child(4) {
    grid-column: auto;
  }

  .story {
    min-height: 560px;
  }

  .story-copy {
    padding: 58px 5vw;
  }

  .product-detail {
    grid-template-columns: 1fr .8fr;
    gap: 45px;
  }

  .footer-top {
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --content: min(90vw, 720px);
    --header-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform .3s, opacity .3s;
  }

  .menu-toggle b {
    position: absolute;
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 8vw;
    background: var(--warm-white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .3s, transform .3s;
  }

  .menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav .nav-link {
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1;
  }

  .nav-cta {
    margin-top: 20px;
  }

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

  .hero-side {
    width: min(440px, 75vw);
  }

  .hero-scroll {
    display: none;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .story-slider {
    min-height: min(72vw, 560px);
    order: -1;
  }

  .custom-inner,
  .collection-row,
  .form-hero,
  .contact-hero,
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }

  .collection-copy {
    min-height: 520px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .category-filters {
    grid-column: 1 / -1;
  }

  #result-count {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .detail-info {
    position: static;
  }

  .product-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .legal-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 90px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-nav {
    position: static;
    padding-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--line);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero-topline p {
    display: none;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 72px);
  }

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

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

  .card-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .round-link span {
    display: none;
  }

  .collection-copy {
    padding: 46px 30px;
  }

  .catalog-toolbar,
  .field-row,
  .upload-grid,
  .confirm-actions {
    grid-template-columns: 1fr;
  }

  .order-dialog {
    padding: 42px 22px 28px;
  }

  .order-dialog h2 {
    font-size: 32px;
  }

  .catalog-toolbar {
    gap: 18px;
  }

  .page-hero {
    padding-top: 150px;
  }

  .page-hero h1 {
    font-size: 58px;
  }

  .gallery-thumbs {
    overflow-x: auto;
    grid-template-columns: repeat(5, 110px);
  }

  .form-step-head {
    grid-template-columns: 48px 1fr;
  }

  .form-step-body,
  .form-submit {
    padding-left: 0;
  }

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

  .footer-top > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

  .legal-hero h1 {
    font-size: 58px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-nav strong {
    grid-column: auto;
  }

  .legal-content section {
    padding: 42px 0;
  }

  .legal-content section > span {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .legal-content h2 {
    padding-left: 0;
  }
}

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