:root {
  --ink: #24131a;
  --maroon: #4a1020;
  --maroon-deep: #340a17;
  --rose: #9b2242;
  --gold: #c39a4b;
  --gold-soft: #e5c98a;
  --cream: #fbf6ee;
  --cream-2: #f3e9db;
  --muted: #6d5a5f;
  --line: rgba(74, 16, 32, 0.13);
  --surface: #fffdf9;
  --shadow-sm: 0 10px 26px rgba(52, 10, 23, 0.07);
  --shadow: 0 26px 60px rgba(52, 10, 23, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(195, 154, 75, 0.2), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(155, 34, 66, 0.14), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--maroon);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 50;
}

.skip-link:focus {
  left: 16px;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 16px auto 32px;
}

/* ---------- Header ---------- */

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--rose), var(--maroon-deep));
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 1px rgba(229, 201, 138, 0.4);
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
}

.brand-sub {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.topnav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
}

.topnav a:hover {
  color: var(--rose);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--maroon);
  color: var(--cream) !important;
}

.nav-cta:hover {
  background: var(--rose);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  margin: 0 auto;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Type ---------- */

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--rose);
}

.eyebrow.gold {
  color: var(--gold-soft);
}

.lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 22px;
}

.hero-inner {
  padding: 52px 46px 46px;
  border-radius: var(--radius-lg);
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 6%, rgba(195, 154, 75, 0.34), transparent 46%),
    linear-gradient(150deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-inner::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(229, 201, 138, 0.22);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.hero-inner h1 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 16ch;
}

.hero-inner h1 span {
  color: var(--gold-soft);
  font-style: italic;
}

.hero-inner .lead {
  color: rgba(251, 246, 238, 0.78);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--rose), var(--maroon-deep));
  color: #fffaf2;
  box-shadow: 0 16px 30px rgba(52, 10, 23, 0.26);
}

.button-ghost {
  border: 1px solid rgba(229, 201, 138, 0.5);
  color: var(--gold-soft);
}

.button-ghost:hover {
  background: rgba(229, 201, 138, 0.12);
}

.button-light {
  background: var(--cream);
  color: var(--maroon-deep);
  box-shadow: 0 16px 30px rgba(52, 10, 23, 0.24);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 40px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(229, 201, 138, 0.24);
}

.hero-stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(251, 246, 238, 0.6);
}

.hero-stats dd {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  color: var(--gold-soft);
}

.hero-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.art-panel {
  border-radius: var(--radius-md);
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.art-panel span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  color: rgba(255, 253, 249, 0.92);
  letter-spacing: 0.04em;
  z-index: 1;
}

.art-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.24;
}

.art-panel--maroon {
  background: linear-gradient(150deg, #7b1630, #3d0c1a);
}

.art-panel--emerald {
  background: linear-gradient(150deg, #1f5b45, #0e2f24);
}

.art-panel--gold {
  background: linear-gradient(150deg, #d0a44f, #8a6320);
}

.art-panel--ink {
  background: linear-gradient(150deg, #3b4a6b, #1b2438);
}

/* ---------- Marquee ---------- */

.marquee {
  margin: 26px 0 8px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.marquee-track span:nth-child(even) {
  color: var(--gold);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 58px 0 10px;
}

.section-heading {
  margin-bottom: 26px;
  max-width: 70ch;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.section-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
}

/* ---------- Filters ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.chip:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.chip.is-active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--cream);
}

/* ---------- Products ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.product-card[hidden] {
  display: none;
}

.swatch {
  height: 168px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1.5px),
    radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1.5px);
  background-size: 16px 16px, 16px 16px;
  background-position: 0 0, 8px 8px;
  opacity: 0.3;
}

.swatch-label {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(0, 0, 0, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.swatch--grey {
  background: linear-gradient(150deg, #8f8f99, #4b4b56);
}

.swatch--multi {
  background: linear-gradient(135deg, #b8336a, #6b3fa0 45%, #1f7a6c);
}

.swatch--emerald {
  background: linear-gradient(150deg, #1f6b4f, #0c2c21);
}

.swatch--maroon {
  background: linear-gradient(150deg, #8e1b36, #45101d);
}

.swatch--velvet {
  background: linear-gradient(150deg, #6d1226, #2c0812 70%, #7d1c30);
}

.swatch--blush {
  background: linear-gradient(150deg, #e0aeb2, #a86a74);
}

.swatch--saffron {
  background: linear-gradient(150deg, #e6b93f, #a97814);
}

.swatch--sky {
  background: linear-gradient(150deg, #7fb7db, #3d6f97);
}

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

.product-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.product-desc {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.spec-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px dashed rgba(74, 16, 32, 0.12);
  padding-bottom: 8px;
}

.spec-list li:last-child {
  border-bottom: 0;
}

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

.spec-list strong {
  text-align: right;
  font-weight: 700;
}

.product-foot {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.price {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  color: var(--maroon);
}

.price span {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.moq {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.empty-state {
  margin: 24px 0 0;
  color: var(--muted);
}

/* ---------- Craft ---------- */

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

.card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}

.card-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.card h3,
.panel h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.card p,
.panel p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.card p:last-child,
.panel p:last-child {
  margin-bottom: 0;
}

.banner {
  margin-top: 22px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 10%, rgba(195, 154, 75, 0.28), transparent 44%),
    linear-gradient(140deg, var(--maroon-deep), var(--rose));
  color: var(--cream);
  box-shadow: var(--shadow);
}

.banner p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
  max-width: 24ch;
}

/* ---------- Company ---------- */

.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 20px;
  align-items: start;
}

.detail-list {
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(74, 16, 32, 0.08);
  padding-bottom: 10px;
}

.detail-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.detail-list dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
  font-size: 0.92rem;
}

.code-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.code-list li {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(195, 154, 75, 0.09);
}

.code-list strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--maroon);
}

.code-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.panel--accent {
  background:
    linear-gradient(180deg, rgba(155, 34, 66, 0.08), rgba(255, 253, 249, 0.95));
}

.inline-link {
  color: var(--rose);
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

/* ---------- Visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.panel--address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(195, 154, 75, 0.12), rgba(255, 253, 249, 0.95));
}

.address {
  margin: 0;
  line-height: 2;
  font-size: 1rem;
  color: var(--ink) !important;
}

.address strong {
  letter-spacing: 0.1em;
}

/* ---------- Contact ---------- */

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--cream);
  background:
    radial-gradient(circle at 92% 0%, rgba(195, 154, 75, 0.3), transparent 44%),
    linear-gradient(150deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 14px;
}

.contact-panel .lead {
  color: rgba(251, 246, 238, 0.78);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  align-content: center;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(229, 201, 138, 0.22);
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(251, 246, 238, 0.55);
}

.contact-list strong {
  font-size: 1rem;
}

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

/* ---------- Notes + Footer ---------- */

.notes-panel {
  border: 1px dashed rgba(74, 16, 32, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: rgba(255, 253, 249, 0.6);
}

.notes-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
  max-width: 78ch;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding: 26px 0 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 6px !important;
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

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

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 38px 26px 34px;
  }

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

  .art-panel {
    min-height: 110px;
  }

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

  .contact-panel {
    padding: 32px 24px;
    gap: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .topnav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .topnav.is-open {
    display: flex;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

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

  .craft-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding-top: 44px;
  }

  .banner {
    padding: 28px 24px;
  }

  .brand-sub {
    display: none;
  }
}
