:root,
:root[data-theme="dark"] {
  --ink: #f4efe6;
  --paper: #080807;
  --muted: #c9c0b3;
  --line: rgba(244, 239, 230, 0.16);
  --surface: #151611;
  --surface-strong: #1f211a;
  --field: #10110d;
  --header-bg: #080807;
  --hero-bg: #090907;
  --footer-bg: #050504;
  --footer-ink: #f4efe6;
  --menu-bg: #10110d;
  --media-bg: #202019;
  --accent: #c94b39;
  --accent-strong: #ee604c;
  --olive: #4f5d3b;
  --gold: #d4a046;
  --white: #ffffff;
  --primary-hover-ink: #100b09;
  --secondary-button-color: #ffffff;
  --secondary-button-border: rgba(255, 255, 255, 0.44);
  --logo-filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.16));
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --ink: #17130f;
    --paper: #f6f2ea;
    --muted: #645d53;
    --line: rgba(23, 19, 15, 0.16);
    --surface: #fffaf2;
    --surface-strong: #ede6d9;
    --field: #fffdf8;
    --header-bg: #f6f2ea;
    --hero-bg: #ece5d8;
    --footer-bg: #17130f;
    --footer-ink: #f6f2ea;
    --menu-bg: #fffaf2;
    --media-bg: #ddd3c3;
    --accent: #a7392b;
    --accent-strong: #7d291f;
    --olive: #5d6747;
    --gold: #9f6f1d;
    --white: #ffffff;
    --primary-hover-ink: #ffffff;
    --secondary-button-color: #17130f;
    --secondary-button-border: rgba(23, 19, 15, 0.38);
    --logo-filter: invert(1) drop-shadow(0 0 10px rgba(0, 0, 0, 0.08));
    --shadow: 0 18px 45px rgba(22, 19, 15, 0.14);
    color-scheme: light;
  }
}

:root[data-theme="light"] {
  --ink: #17130f;
  --paper: #f6f2ea;
  --muted: #645d53;
  --line: rgba(23, 19, 15, 0.16);
  --surface: #fffaf2;
  --surface-strong: #ede6d9;
  --field: #fffdf8;
  --header-bg: #f6f2ea;
  --hero-bg: #ece5d8;
  --footer-bg: #17130f;
  --footer-ink: #f6f2ea;
  --menu-bg: #fffaf2;
  --media-bg: #ddd3c3;
  --accent: #a7392b;
  --accent-strong: #7d291f;
  --olive: #5d6747;
  --gold: #9f6f1d;
  --white: #ffffff;
  --primary-hover-ink: #ffffff;
  --secondary-button-color: #17130f;
  --secondary-button-border: rgba(23, 19, 15, 0.38);
  --logo-filter: invert(1) drop-shadow(0 0 10px rgba(0, 0, 0, 0.08));
  --shadow: 0 18px 45px rgba(22, 19, 15, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold);
  color: #14110c;
  padding: 10px 14px;
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 16px 7%;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  width: 184px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: var(--logo-filter);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  min-height: 640px;
  background: var(--hero-bg);
  color: var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 10%;
}

.hero h1,
.page-hero h1,
.not-found h1 {
  margin: 0;
  font-size: 4.5rem;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .lede,
.page-hero .lede {
  margin: 24px 0 0;
  max-width: 660px;
  font-size: 1.35rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.15;
  min-width: 0;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-strong);
  color: var(--primary-hover-ink);
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--gold);
}

.hero-image {
  margin: 0;
  min-height: 640px;
  overflow: hidden;
  background: var(--media-bg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.section {
  padding: 88px 7%;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section h2,
.about-copy h2,
.contact-details h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-grid-single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-link {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  border-color: rgba(212, 160, 70, 0.72);
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--media-bg);
}

.product-card-body {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
}

.product-card h3,
.price {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.price {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.split,
.contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.split p:not(.eyebrow),
.contact-band p:not(.eyebrow),
.about-copy p,
.contact-details p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.contact-band {
  align-items: center;
  background: var(--surface-strong);
  color: var(--ink);
  max-width: none;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.contact-band p:not(.eyebrow) {
  color: var(--muted);
}

.contact-band .button {
  justify-self: end;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 1fr);
  align-items: end;
  gap: 48px;
  padding: 96px 7% 72px;
  background: var(--hero-bg);
  color: var(--ink);
}

.page-hero .lede a {
  color: var(--gold);
  font-weight: 800;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: 44px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 7%;
}

.feature-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.about-copy {
  display: grid;
  gap: 24px;
}

.contact-layout {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.direct-email {
  color: var(--gold);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form [name="_honey"] {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(196, 148, 59, 0.35);
  border-color: var(--gold);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #82d173;
}

.form-status[data-state="error"] {
  color: #ff8a78;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 7%;
  color: var(--footer-ink);
  background: var(--footer-bg);
}

html[data-preview="mobile"] {
  background: var(--footer-bg);
}

html[data-preview="mobile"] body {
  max-width: 430px;
  min-width: 320px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px var(--line), 0 24px 80px rgba(0, 0, 0, 0.3);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 48px 7%;
  text-align: center;
}

.not-found img {
  width: 180px;
}

.not-found p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 76px;
    padding: 14px 5%;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: 152px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 5%;
    right: 5%;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--menu-bg);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero,
  .page-hero,
  .about-layout,
  .contact-layout,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .page-hero {
    padding: 58px 7%;
  }

  .hero h1,
  .page-hero h1,
  .not-found h1 {
    font-size: 3.25rem;
  }

  .hero .lede,
  .page-hero .lede {
    font-size: 1.15rem;
  }

  .hero-image,
  .hero-image img {
    min-height: 360px;
  }

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

  .section,
  .about-layout,
  .contact-layout {
    padding: 64px 7%;
  }

  .section-heading,
  .product-card-body,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .section h2,
  .about-copy h2,
  .contact-details h2 {
    font-size: 2rem;
  }

  .contact-band .button {
    justify-self: start;
  }
}

html[data-preview="mobile"] .site-header {
  min-height: 76px;
  padding: 14px 5%;
}

html[data-preview="mobile"] .brand {
  width: 152px;
  height: 50px;
}

html[data-preview="mobile"] .brand img {
  width: 100%;
}

html[data-preview="mobile"] .menu-toggle {
  display: block;
}

html[data-preview="mobile"] .site-nav {
  position: absolute;
  left: 5%;
  right: 5%;
  top: calc(100% + 8px);
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--menu-bg);
  box-shadow: var(--shadow);
}

html[data-preview="mobile"] .site-nav.is-open {
  display: flex;
}

html[data-preview="mobile"] .site-nav a {
  justify-content: center;
}

html[data-preview="mobile"] .hero,
html[data-preview="mobile"] .page-hero,
html[data-preview="mobile"] .about-layout,
html[data-preview="mobile"] .contact-layout,
html[data-preview="mobile"] .split,
html[data-preview="mobile"] .contact-band {
  grid-template-columns: 1fr;
}

html[data-preview="mobile"] .hero {
  min-height: auto;
}

html[data-preview="mobile"] .hero-copy,
html[data-preview="mobile"] .page-hero {
  padding: 58px 7%;
}

html[data-preview="mobile"] .hero h1,
html[data-preview="mobile"] .page-hero h1,
html[data-preview="mobile"] .not-found h1 {
  font-size: 2.65rem;
}

html[data-preview="mobile"] .hero .lede,
html[data-preview="mobile"] .page-hero .lede {
  font-size: 1.15rem;
}

html[data-preview="mobile"] .hero-image,
html[data-preview="mobile"] .hero-image img {
  min-height: 360px;
}

html[data-preview="mobile"] .product-grid {
  grid-template-columns: 1fr;
}

html[data-preview="mobile"] .section,
html[data-preview="mobile"] .about-layout,
html[data-preview="mobile"] .contact-layout {
  padding: 64px 7%;
}

html[data-preview="mobile"] .section-heading,
html[data-preview="mobile"] .product-card-body,
html[data-preview="mobile"] .site-footer {
  align-items: start;
  flex-direction: column;
}

html[data-preview="mobile"] .section h2,
html[data-preview="mobile"] .about-copy h2,
html[data-preview="mobile"] .contact-details h2 {
  font-size: 2rem;
}

html[data-preview="mobile"] .contact-band .button {
  justify-self: start;
}

html[data-preview="mobile"] .hero-actions,
html[data-preview="mobile"] .button,
html[data-preview="mobile"] .contact-form .button {
  width: 100%;
}

html[data-preview="mobile"] .product-card-body {
  gap: 10px;
}

@media (max-width: 520px) {
  .hero-actions,
  .button,
  .contact-form .button {
    width: 100%;
  }

  .hero h1,
  .page-hero h1,
  .not-found h1 {
    font-size: 2.65rem;
  }

  .product-card-body {
    gap: 10px;
  }
}
