:root {
  --ink: #241d18;
  --muted: #6f6257;
  --line: #e7ded1;
  --paper: #fbf8f1;
  --ivory: #fffdf8;
  --glow: #fff7df;
  --gold: #b9934d;
  --gold-dark: #8d6b31;
  --olive: #6f7358;
  --rose: #a97464;
  --shadow: 0 18px 45px rgba(42, 33, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 247, 223, 0.95), transparent 28%),
    radial-gradient(circle at 90% 22%, rgba(185, 147, 77, 0.16), transparent 26%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(18px, 4vw, 58px);
  color: var(--ivory);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(30, 24, 18, 0.08);
  backdrop-filter: blur(14px);
}

.site-header:not(.scrolled):not(.open) .brand-logo {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 84px;
  height: 70px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #191510;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 13, 0.34), rgba(20, 17, 13, 0.12) 48%, rgba(20, 17, 13, 0.04)), linear-gradient(0deg, rgba(20, 17, 13, 0.24), transparent 42%);
}

.hero-glow {
  position: absolute;
  inset: -18% -12% auto auto;
  width: min(560px, 60vw);
  height: min(560px, 60vw);
  background: radial-gradient(circle, rgba(255, 246, 215, 0.48), rgba(185, 147, 77, 0.16) 42%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.22) 42%, transparent 58%);
  content: "";
  opacity: 0.46;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(40px, 8vh, 78px) clamp(18px, 7vw, 108px);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(86px, 14vw, 190px);
  font-weight: 500;
  line-height: 0.82;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.button::after,
.collection-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.48) 48%, transparent 68%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.button:hover::after,
.collection-card:hover::after {
  transform: translateX(120%);
}

.button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, #caa761, var(--gold-dark));
  color: white;
  box-shadow: 0 12px 28px rgba(185, 147, 77, 0.32);
}

.button.secondary {
  color: white;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 112px;
  padding: 28px clamp(18px, 4vw, 52px);
  background: linear-gradient(145deg, #fffefa, #f7efe1);
}

.intro-band span,
.collection-card p,
.feature-copy p,
.split-showcase p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.intro-band strong {
  display: block;
  margin-top: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
}

.section,
.feature,
.split-showcase,
.order-section,
.footer {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 74px);
}

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

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 600;
  line-height: 0.95;
}

h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
}

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

.collection-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fffefa, #f7efe3);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(42, 33, 24, 0.09);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collection-card img[src*="logo-transparent"] {
  object-fit: contain;
  padding: 34px;
  background: linear-gradient(145deg, #fffefa, #f6ebd3);
}

.collection-card div {
  padding: 24px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 248, 226, 0.9), transparent 28%),
    linear-gradient(135deg, #f8efe0, #ead9bd);
}

.feature-copy {
  max-width: 560px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

.video-frame {
  border: 1px solid rgba(141, 107, 49, 0.28);
  background: var(--ivory);
  box-shadow: 0 22px 54px rgba(141, 107, 49, 0.22);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.split-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(180deg, var(--ivory), #f8f0e2);
}

.order-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 247, 223, 0.92), transparent 24%),
    linear-gradient(145deg, #fffefa, #efe0c5);
}

.order-copy {
  max-width: 560px;
}

.order-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(185, 147, 77, 0.34);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 22px 54px rgba(141, 107, 49, 0.18);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 12px 14px;
}

.quote-form textarea {
  min-height: 126px;
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.split-showcase > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.stats span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.stats strong {
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  background: #221c17;
  color: white;
}

.footer-brand {
  margin: 0 0 8px;
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
}

address {
  display: grid;
  gap: 12px;
  font-style: normal;
  font-weight: 700;
}

address a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

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

  .nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(255, 253, 248, 0.98);
    color: var(--ink);
    box-shadow: 0 20px 32px rgba(30, 24, 18, 0.1);
    transform: translateY(-140%);
    transition: transform 180ms ease;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band,
  .collection-grid,
  .feature,
  .split-showcase,
  .order-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
  }

  .brand {
    width: 66px;
    height: 58px;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(20, 17, 13, 0.46), rgba(20, 17, 13, 0.08) 62%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 28px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    min-height: 92px;
  }
}
