:root {
  --ink: #151412;
  --graphite: #242320;
  --graphite-soft: #34322e;
  --ivory: #fbf6ec;
  --ivory-deep: #efe4d0;
  --champagne: #c9a45d;
  --champagne-bright: #e2c981;
  --white: #fffaf1;
  --muted: #6f685d;
  --line: rgba(201, 164, 93, 0.28);
  --shadow: 0 24px 70px rgba(18, 16, 13, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--graphite-soft);
}

.image-focus-lower {
  object-position: center 68%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(21, 20, 18, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(226, 201, 129, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(226, 201, 129, 0.38);
  background:
    radial-gradient(circle at 35% 18%, rgba(255, 250, 241, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(201, 164, 93, 0.22), rgba(255, 250, 241, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.04);
}

.brand-mark svg {
  width: 36px;
  height: 36px;
  overflow: visible;
}

.brand-mark .mark-frame {
  fill: rgba(226, 201, 129, 0.12);
  stroke: var(--champagne-bright);
  stroke-width: 1.8;
}

.brand-mark .mark-facet {
  fill: none;
  stroke: rgba(226, 201, 129, 0.44);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .mark-monogram {
  fill: none;
  stroke: var(--champagne-bright);
  stroke-width: 3.2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.brand-tag {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  padding: 10px 13px;
  color: rgba(255, 250, 241, 0.8);
  font-size: 0.88rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--champagne-bright);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 76px);
  padding: clamp(80px, 12vw, 160px) clamp(18px, 4vw, 54px) 42px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 20, 18, 0.96), rgba(21, 20, 18, 0.72) 46%, rgba(21, 20, 18, 0.2)),
    linear-gradient(0deg, rgba(21, 20, 18, 0.86), transparent 42%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  max-width: 840px;
  font-size: clamp(3.15rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
}

h3 {
  font-size: 1.4rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

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

.button,
.item-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.item-footer button:hover,
.item-footer button:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.item-footer button {
  background: var(--champagne);
  color: var(--ink);
  font-weight: 750;
}

.button-primary:hover,
.button-primary:focus-visible,
.item-footer button:hover,
.item-footer button:focus-visible {
  background: var(--champagne-bright);
}

.button-ghost {
  border-color: rgba(255, 250, 241, 0.34);
  color: var(--white);
  background: rgba(255, 250, 241, 0.05);
}

.hero-panel {
  justify-self: end;
  width: min(420px, 100%);
  margin-top: 84px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 201, 129, 0.44);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne-bright);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.2;
}

.featured,
.inventory,
.lab-grown,
.about {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading.wide {
  max-width: 930px;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.custom-copy p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .custom-copy p,
.section-dark .contact-card p {
  color: rgba(255, 250, 241, 0.73);
}

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

.feature-tile {
  display: grid;
  grid-template-rows: 310px 1fr;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(21, 20, 18, 0.08);
  box-shadow: 0 16px 45px rgba(18, 16, 13, 0.07);
}

.feature-tile div {
  padding: 22px;
}

.feature-tile span,
.item-category {
  display: block;
  margin-bottom: 9px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-tile p {
  margin: 10px 0 0;
  color: var(--muted);
}

.inventory {
  background:
    linear-gradient(180deg, rgba(239, 228, 208, 0.86), rgba(251, 246, 236, 0.98)),
    var(--ivory);
}

.lab-grown {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(239, 228, 208, 0.62)),
    var(--white);
  border-top: 1px solid rgba(201, 164, 93, 0.18);
}

.filter-bar {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 24px;
  padding: 12px 0;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(14px);
}

.filter-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(21, 20, 18, 0.14);
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--champagne);
  background: var(--ink);
  color: var(--white);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.item-card {
  display: grid;
  grid-template-rows: 245px 1fr;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(21, 20, 18, 0.08);
  box-shadow: 0 18px 50px rgba(18, 16, 13, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.lab-grown-card {
  border-color: rgba(201, 164, 93, 0.2);
  box-shadow: 0 18px 50px rgba(18, 16, 13, 0.06);
}

.lab-grown-card .item-category {
  color: #9b7d38;
}

.item-card.is-hidden {
  display: none;
}

.item-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
}

.item-content p:not(.item-category) {
  margin: 10px 0 16px;
  color: var(--muted);
}

.item-content dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.item-content dt {
  color: var(--graphite);
  font-weight: 800;
}

.item-content dd {
  margin: 0;
}

.item-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: auto;
}

.item-footer span {
  color: var(--ink);
  font-weight: 800;
}

.item-footer button {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
}

.custom {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 116px) clamp(18px, 4vw, 54px);
}

.custom-image {
  min-height: 560px;
  border: 1px solid rgba(226, 201, 129, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 30px;
}

.process-list span {
  padding: 13px;
  border: 1px solid rgba(226, 201, 129, 0.28);
  color: rgba(255, 250, 241, 0.88);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.about-copy p {
  max-width: 780px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-stats div {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(21, 20, 18, 0.08);
}

.about-stats strong {
  display: block;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.contact {
  padding: clamp(70px, 9vw, 116px) clamp(18px, 4vw, 54px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.request-form,
.contact-card {
  border: 1px solid rgba(226, 201, 129, 0.26);
  background: rgba(255, 250, 241, 0.06);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 32px);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.9rem;
}

.request-form label:nth-child(3),
.request-form label:nth-child(4),
.request-form button,
.form-status {
  grid-column: 1 / -1;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(226, 201, 129, 0.24);
  background: rgba(255, 250, 241, 0.1);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: rgba(255, 250, 241, 0.48);
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--champagne-bright);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--champagne-bright);
  font-weight: 700;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin-bottom: 14px;
}

.contact-card a,
.contact-card span {
  display: block;
  margin-top: 12px;
  color: var(--champagne-bright);
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: #0f0e0d;
  color: var(--white);
  border-top: 1px solid rgba(226, 201, 129, 0.2);
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 241, 0.62);
}

.site-footer a:last-child {
  color: var(--champagne-bright);
  text-decoration: none;
}

.brand.compact .brand-tag {
  display: none;
}

@media (max-width: 1180px) {
  .inventory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    background: rgba(21, 20, 18, 0.98);
    border-bottom: 1px solid rgba(226, 201, 129, 0.2);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    padding: 14px;
    border: 1px solid rgba(226, 201, 129, 0.18);
  }

  .hero {
    min-height: 760px;
  }

  .featured-grid,
  .inventory-grid,
  .custom,
  .about,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .custom-image {
    min-height: 420px;
  }

  .contact-card {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-tag {
    display: none;
  }

  .site-nav {
    inset-block-start: 70px;
  }

  .hero {
    min-height: 720px;
    padding: 72px 16px 30px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(21, 20, 18, 0.95), rgba(21, 20, 18, 0.58)),
      linear-gradient(0deg, rgba(21, 20, 18, 0.9), transparent 55%);
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .featured,
  .inventory,
  .lab-grown,
  .about,
  .custom,
  .contact {
    padding: 58px 16px;
  }

  .feature-tile,
  .item-card {
    grid-template-rows: 235px 1fr;
  }

  .filter-bar {
    top: 70px;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .process-list,
  .about-stats,
  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form label,
  .request-form button,
  .form-status {
    grid-column: auto;
  }
}

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