:root {
  --bg: #f7f1e6;
  --bg-warm: #efe2cf;
  --surface: rgba(255, 251, 245, 0.74);
  --surface-strong: rgba(255, 249, 241, 0.92);
  --surface-tint: rgba(126, 35, 41, 0.06);
  --text: #2d1716;
  --muted: #705553;
  --maroon: #7e2329;
  --maroon-deep: #561418;
  --gold: #c48a2c;
  --gold-soft: #dec18b;
  --sage: #7a6b4f;
  --line: rgba(83, 39, 25, 0.1);
  --shadow: 0 24px 70px rgba(89, 52, 36, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1160px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top center, rgba(196, 138, 44, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, #f7efe3 42%, #f2e5d3 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.24;
}

body::before {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  top: 9rem;
  background: rgba(126, 35, 41, 0.25);
}

body::after {
  width: 22rem;
  height: 22rem;
  right: -8rem;
  top: 24rem;
  background: rgba(196, 138, 44, 0.2);
}

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

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

.site-shell {
  position: relative;
  z-index: 1;
}

.backdrop {
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.16;
  filter: blur(70px);
}

.backdrop-one {
  width: 16rem;
  height: 16rem;
  right: 12%;
  top: 8rem;
  background: rgba(126, 35, 41, 0.22);
}

.backdrop-two {
  width: 20rem;
  height: 20rem;
  left: 8%;
  top: 42rem;
  background: rgba(196, 138, 44, 0.18);
}

.topbar,
.section-frame,
.footer-layout {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0.9rem;
  z-index: 40;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(105, 63, 40, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(7rem, 18vw, 9.4rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0.4);
  opacity: 0;
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 0.75rem;
  border-radius: 999px;
  background: rgba(126, 35, 41, 0.08);
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.18rem 0;
  background: var(--maroon);
}

.section {
  padding: 4.75rem 0;
}

.hero {
  padding-top: 2.3rem;
}

.section-frame {
  position: relative;
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: -0.9rem;
  border-radius: calc(var(--radius-xl) + 8px);
  border: 1px solid rgba(112, 70, 48, 0.08);
  pointer-events: none;
}

.hero-layout,
.intro-grid,
.legacy-layout,
.inquiry-layout {
  display: grid;
  gap: 1.5rem;
}

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

.hero-banner,
.hero-copy,
.intro-grid,
.legacy-panel,
.inquiry-form,
.info-card,
.product-card {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(103, 63, 41, 0.08);
  box-shadow: var(--shadow);
}

.hero-banner,
.hero-copy,
.legacy-panel,
.inquiry-form {
  border-radius: var(--radius-xl);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 41rem;
}

.hero-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 17, 17, 0.78) 0%, rgba(37, 17, 17, 0.36) 42%, rgba(37, 17, 17, 0.18) 70%, rgba(37, 17, 17, 0.42) 100%),
    linear-gradient(180deg, rgba(82, 42, 23, 0.08), rgba(82, 42, 23, 0.34));
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 243, 221, 0.22);
  background:
    radial-gradient(circle, rgba(255, 240, 215, 0.08) 0 8%, transparent 9%),
    radial-gradient(circle, rgba(126, 35, 41, 0.06) 0 7%, transparent 8%);
  background-size: 2.75rem 2.75rem, 2.75rem 2.75rem;
  mask-image: radial-gradient(circle at center, black 24%, transparent 84%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.75fr);
  align-items: end;
  gap: 1.5rem;
  min-height: 41rem;
  padding: 2rem;
}

.hero-copy {
  padding: 2rem;
  max-width: 42rem;
  background: rgba(38, 20, 18, 0.46);
  border: 1px solid rgba(255, 245, 229, 0.14);
  backdrop-filter: blur(16px);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p {
  color: #fff7ef;
}

.hero-copy .eyebrow {
  color: #f6dba5;
}

.hero-copy .button-secondary {
  color: #fff5ea;
  background: rgba(255, 247, 235, 0.14);
}

.hero-rail {
  display: grid;
  gap: 1rem;
}

.hero-rail .trust-strip {
  grid-template-columns: 1fr;
}

.hero-rail .trust-strip div,
.hero-thumb-card {
  background: rgba(255, 249, 241, 0.88);
  border: 1px solid rgba(103, 63, 41, 0.08);
  box-shadow: var(--shadow);
}

.hero-thumbs {
  display: grid;
  gap: 0.9rem;
}

.hero-thumb-card {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 22px;
}

.hero-thumb-card img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 16px;
}

.hero-thumb-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--maroon);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-thumb-card strong {
  display: block;
  line-height: 1.45;
  font-size: 0.98rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--maroon);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 0.45rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-text,
.section-heading p,
.legacy-copy p,
.inquiry-copy p {
  font-size: 1.02rem;
}

.hero-text {
  max-width: 40rem;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff7ed;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  box-shadow: 0 16px 36px rgba(126, 35, 41, 0.22);
}

.button-secondary {
  color: var(--maroon);
  background: rgba(126, 35, 41, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-strip div,
.legacy-stat {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.75);
  border: 1px solid rgba(103, 63, 41, 0.08);
}

.trust-strip strong,
.legacy-stat strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.trust-strip span,
.legacy-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}


.intro-band {
  padding-top: 0;
}

.intro-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.intro-points,
.inquiry-notes {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.info-card.compact h3 {
  font-size: 1.45rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.product-toolbar {
  margin-bottom: 1.35rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-pill {
  border: 1px solid rgba(126, 35, 41, 0.1);
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.75);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter-pill.active {
  color: #fff6eb;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  padding: 1rem;
  border-radius: 30px;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(196, 138, 44, 0.2), transparent 68%);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  color: #fff8ed;
  background: rgba(126, 35, 41, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-art {
  position: relative;
  min-height: 11.5rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(103, 63, 41, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  overflow: hidden;
}

.product-art img {
  width: 100%;
  height: 100%;
  min-height: 11.5rem;
  object-fit: cover;
}

.product-art::before {
  content: "";
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.product-art span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.76);
  color: var(--maroon);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-copy h3 {
  font-size: 1.9rem;
}

.product-meta {
  margin: 0.55rem 0 1rem;
  font-size: 0.94rem;
}

.product-actions {
  margin-top: auto;
  display: flex;
}

.product-actions .button {
  width: 100%;
  min-height: 2.9rem;
  font-size: 0.92rem;
}

.legacy-layout,
.inquiry-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.legacy-copy,
.inquiry-copy {
  padding-right: 0.4rem;
}

.legacy-copy p + p,
.inquiry-copy p + p {
  margin-top: 1rem;
}

.legacy-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(126, 35, 41, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(196, 138, 44, 0.24);
  border-color: rgba(196, 138, 44, 0.42);
}

.form-note {
  font-size: 0.92rem;
}

.site-footer {
  padding: 0 0 7rem;
}

.footer-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(126, 35, 41, 0.1);
}

.footer-logo {
  width: 8.5rem;
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 50;
  min-width: min(92vw, 22rem);
  display: inline-flex;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  transform: translateX(-50%);
  border-radius: 999px;
  color: #fff8ee;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #a86b11);
  box-shadow: 0 18px 40px rgba(118, 79, 25, 0.24);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .intro-grid,
  .legacy-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-overlay {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-banner {
    min-height: 46rem;
  }

  .hero-rail .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 720px) {
  .topbar {
    border-radius: 24px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid rgba(103, 63, 41, 0.1);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

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

  .hero-copy,
  .hero-overlay,
  .intro-grid,
  .legacy-panel,
  .inquiry-form {
    padding: 1.2rem;
  }

  .trust-strip,
  .inquiry-form,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 42rem;
  }

  .hero-overlay {
    align-items: stretch;
  }

  .hero-rail .trust-strip,
  .hero-thumbs {
    grid-template-columns: 1fr;
  }

  .hero-thumb-card {
    grid-template-columns: 4.5rem 1fr;
  }

  .hero-thumb-card img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
