:root {
  --gallery: #f7f6f3;
  --paper: #ffffff;
  --ink: #1c1b19;
  --muted: #6a6863;
  --line: rgba(28, 27, 25, 0.1);
  --gold: #b08d57;
  --gold-deep: #8c6e3f;
  --charcoal: #2a2926;
  --header-h: 4.5rem;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --wide: 74rem;
  --radius: 0.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--gallery);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.5rem;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(176, 141, 87, 0.18);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

h3 {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.hallmark {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 1.1rem 0 1.35rem;
  background: var(--gold);
  border: 0;
}

.hallmark::after {
  content: none;
}

.wrap {
  width: min(100% - 2.25rem, var(--wide));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-brass {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-brass:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(247, 246, 243, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 2.25rem, var(--wide));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
  line-height: 1;
}

.wordmark .apos {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle-bars {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
}

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

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--gold);
}

.header-cta {
  flex-shrink: 0;
}

.hero {
  padding: 2rem 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 7rem);
}

.hero-copy {
  animation: rise 0.7s var(--ease) both;
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  color: var(--ink);
  max-width: 14ch;
}

.hero p {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.75rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-visual {
  animation: rise 0.8s 0.06s var(--ease) both;
  min-width: 0;
}

.tray,
.facet,
.loupe {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}

.tray {
  padding: 0;
  box-shadow: none;
  border: 1px solid var(--line);
}

.facet,
.loupe {
  position: relative;
  aspect-ratio: 4 / 5;
  clip-path: none;
}

.facet img,
.loupe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.collection-card:hover .facet img,
.product-card:hover .facet img,
.hero-visual:hover .facet img {
  transform: scale(1.03);
}

.loupe-sm,
.product-card .facet {
  aspect-ratio: 1;
}

.trust {
  padding: 0 0 0.25rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 2.5rem 0 0;
  background: transparent;
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

.trust-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 1.2rem 1rem 0.2rem 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.trust-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-flush {
  padding-top: 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
}

.section-head p {
  color: var(--muted);
  margin-top: 0.9rem;
  text-wrap: pretty;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.15rem;
}

.featured-lines {
  margin-bottom: 2.75rem;
}

.collection-card {
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-top: 0.9rem;
}

.collection-card p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.collection-card .line-copy {
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 0.45rem;
}

.process {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.process-step .num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0.5rem 0 0.55rem;
}

.process-step p {
  color: var(--muted);
}

.cta-band {
  background: var(--ink);
  color: #e8e6e1;
}

.cta-band .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  max-width: 22ch;
  color: #fff;
}

.cta-band p {
  color: rgba(232, 230, 225, 0.7);
  max-width: 28rem;
  margin: 0.75rem 0 0;
}

.cta-band .kicker {
  color: var(--gold);
}

.cta-band .btn-brass {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.cta-band .btn-brass:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.split-copy h1,
.split-copy h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
}

.split-copy p + p {
  margin-top: 1rem;
}

.split-copy p {
  color: var(--muted);
}

.split-media img {
  width: 100%;
  height: min(34rem, 70vh);
  object-fit: cover;
  border-radius: var(--radius);
}

.split-media.portrait {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.split-media.portrait img {
  clip-path: none;
  height: min(36rem, 72vh);
  object-position: center 18%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  height: auto;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.fact {
  padding: 0;
  background: transparent;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  border-radius: 0;
}

.fact h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.fact p {
  color: var(--muted);
  font-size: 0.95rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.filter-chip {
  min-height: 2.3rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius);
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.25rem;
}

.product-card {
  min-width: 0;
}

.product-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.sku-stamp {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.18rem 0.4rem;
  white-space: nowrap;
  border-radius: 2px;
}

.product-card .spec {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.35rem 0 0.85rem;
}

.product-card .btn {
  width: 100%;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
  padding: 2rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-panel {
  background: var(--ink);
  color: #e8e6e1;
  padding: clamp(1.5rem, 4vw, 2.1rem);
  border-radius: var(--radius);
}

.contact-panel h2 {
  font-size: 2rem;
  color: #fff;
}

.contact-panel p,
.contact-panel address {
  font-style: normal;
  color: rgba(232, 230, 225, 0.7);
  margin-top: 0.85rem;
}

.contact-panel a {
  color: var(--gold);
  text-decoration: none;
}

.contact-panel a:hover {
  color: #fff;
}

.contact-dl {
  margin: 1.5rem 0 0;
}

.contact-dl div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(176, 141, 87, 0.28);
  font-size: 0.95rem;
}

.contact-dl dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

[hidden] {
  display: none !important;
}

.wa-actions {
  display: grid;
  gap: 1rem;
}

.wa-card {
  padding: 1.3rem 0 1.4rem;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.wa-card:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.wa-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.wa-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn-wa {
  background: #25d366;
  color: #053321;
  border-color: #25d366;
}

.btn-wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #053321;
}

.wa-float {
  position: fixed;
  right: max(1.2rem, env(safe-area-inset-right));
  bottom: max(1.2rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(28, 27, 25, 0.16);
  text-decoration: none;
}

.wa-float:hover {
  background: #1ebe5d;
}

.wa-float svg {
  width: 1.65rem;
  height: 1.65rem;
}

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  color: var(--muted);
  margin-top: 0.65rem;
  max-width: 42rem;
}

.site-footer {
  background: transparent;
  color: var(--muted);
  padding: 1.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: var(--gold-deep);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .collection-grid,
  .product-grid,
  .trust-grid,
  .process-grid,
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy,
  .hero-visual {
    grid-column: 1 / -1;
  }

  .hero-visual {
    max-width: 32rem;
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }

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

  .split-media img {
    height: 22rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
    order: 2;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--gallery);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .site-nav .mobile-cta {
    display: inline-flex;
    margin-top: 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-grid,
  .product-grid,
  .trust-grid,
  .process-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .wa-float {
    right: max(0.9rem, env(safe-area-inset-right));
    bottom: max(0.9rem, env(safe-area-inset-bottom));
  }

  .contact-dl div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.mobile-cta {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
