:root {
  --ink: #11110f;
  --black: #0c0d0c;
  --cream: #f1eee6;
  --paper: #e8e4da;
  --gold: #b79662;
  --gold-light: #d6ba88;
  --muted: #9b9a94;
  --line: rgba(17, 17, 15, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
body.menu-open { overflow: hidden; }

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 15%, rgba(214, 186, 136, .18), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, .08), transparent 28%),
    var(--black);
  color: var(--cream);
}

.not-found__card {
  width: min(620px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(214, 186, 136, .35);
  border-radius: 34px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .34);
  text-align: center;
}

.not-found__card h1 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  letter-spacing: -.06em;
}

.not-found__card p:not(.eyebrow) {
  margin: 0 auto 28px;
  max-width: 460px;
  color: rgba(248, 243, 232, .72);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select { font: inherit; }

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: absolute;
  z-index: 10;
  width: 100%;
  color: #f5f1e7;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: height .35s ease, background .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  position: fixed;
  height: 70px;
  background: rgba(12,13,12,.82);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(183,150,98,.2);
}
.scroll-progress {
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #8d7048, var(--gold-light), #f0d7a6);
  box-shadow: 0 0 14px rgba(214,186,136,.6);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; letter-spacing: .24em; font-family: "Manrope"; font-size: 15px; }
.brand svg { width: 25px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.desktop-nav { display: flex; gap: 36px; font-size: 13px; }
.desktop-nav a { opacity: .8; transition: opacity .2s; }
.desktop-nav a:hover { opacity: 1; }
.header-cta { justify-self: end; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; border-bottom: 1px solid var(--gold); padding-bottom: 6px; }
.header-cta span { color: var(--gold-light); margin-left: 8px; }
.menu-button { display: none; background: none; border: 0; padding: 10px; }

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: 52% 48%;
  background: var(--black);
  color: #f6f2e9;
}
.hero-copy {
  padding: 180px clamp(30px, 7vw, 110px) 65px;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  left: -310px;
  top: 150px;
  border: 1px solid rgba(183,150,98,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(183,150,98,.025), 0 0 0 150px rgba(183,150,98,.018);
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 10px;
  font-weight: 600;
  margin: 0 0 28px;
}
h1, h2 { font-family: "Playfair Display", serif; font-weight: 500; letter-spacing: -.035em; line-height: .98; margin: 0; }
h1 { font-size: clamp(66px, 7vw, 112px); text-shadow: 0 10px 45px rgba(0,0,0,.2); }
h1 em, h2 em { color: var(--gold-light); font-weight: 500; }
.hero-lead { max-width: 520px; color: #b8b7b0; font-size: 16px; line-height: 1.75; margin: 34px 0 36px; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; border: 0; cursor: pointer; padding: 17px 20px; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 600; transition: transform .25s, background .25s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #111; }
.button-gold:hover { background: var(--gold-light); }
.button-light { background: var(--cream); color: var(--ink); margin-top: 38px; }
.text-link { font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 6px; }
.text-link span { margin-left: 8px; color: var(--gold-light); }
.hero-proof { display: flex; gap: clamp(22px, 4vw, 58px); margin-top: auto; padding-top: 45px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof div { display: flex; flex-direction: column; gap: 7px; }
.hero-proof strong { font-family: "Playfair Display"; font-size: 18px; font-weight: 500; color: var(--gold-light); }
.hero-proof span { text-transform: uppercase; letter-spacing: .12em; font-size: 9px; color: #7d7e79; }
.hero-visual { min-width: 0; position: relative; overflow: hidden; perspective: 1200px; }
.hero-frame, .hero-frame img { width: 100%; height: 100%; }
.hero-frame { transition: transform .18s linear; transform: scale(1.035); }
.hero-frame img { object-fit: cover; object-position: 48% center; filter: saturate(.86) contrast(1.08); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,13,12,.16), transparent 28%); pointer-events: none; }
.hero-halo {
  position: absolute;
  z-index: 1;
  width: 70%;
  aspect-ratio: 1;
  top: -18%;
  right: -24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,196,142,.24), rgba(183,150,98,.04) 48%, transparent 70%);
  filter: blur(4px);
  mix-blend-mode: screen;
  animation: halo-breathe 6s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-monogram {
  position: absolute;
  z-index: 1;
  right: 7%;
  top: 17%;
  color: rgba(246,242,233,.13);
  font-family: "Playfair Display";
  font-size: clamp(110px, 16vw, 250px);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}
.floating-note { position: absolute; z-index: 1; right: 0; bottom: 0; background: rgba(14,15,14,.94); width: 245px; padding: 26px; border-left: 1px solid rgba(183,150,98,.4); }
.floating-note span { color: var(--gold); font-size: 9px; }
.floating-note p { font-family: "Playfair Display"; font-size: 16px; line-height: 1.4; margin: 10px 0 0; }

.signature-rail {
  overflow: hidden;
  background: #b2915e;
  color: #151512;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(0,0,0,.22);
}
.signature-rail > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 15px 0;
  animation: rail 24s linear infinite;
}
.signature-rail span {
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 9px;
  font-weight: 600;
}
.signature-rail i { font-size: 8px; font-style: normal; opacity: .65; }

.statement { padding: 125px clamp(24px, 8vw, 130px) 115px; position: relative; overflow: hidden; }
.statement::after {
  content: "BAMORA";
  position: absolute;
  right: -18px;
  top: 80px;
  color: rgba(17,17,15,.028);
  font-family: "Playfair Display";
  font-size: clamp(110px, 18vw, 280px);
  letter-spacing: -.06em;
  pointer-events: none;
}
.statement > .eyebrow, .statement > h2, .statement-copy { text-align: center; margin-left: auto; margin-right: auto; }
h2 { font-size: clamp(48px, 6.2vw, 90px); }
.statement-copy { max-width: 700px; color: #65645f; line-height: 1.8; margin-top: 38px; }
.benefit-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 85px; border-top: 1px solid var(--line); }
.benefit-row article { padding: 30px 7% 0 0; }
.benefit-row article + article { border-left: 1px solid var(--line); padding-left: 12%; }
.benefit-number { color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.benefit-row h3, .steps h3, .audience h3 { font-family: "Playfair Display"; font-size: 22px; font-weight: 500; margin: 22px 0 12px; }
.benefit-row p, .audience p { color: #77756e; font-size: 13px; line-height: 1.7; max-width: 300px; }
.editorial-link {
  margin-top: 70px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 30px;
}
.editorial-link span {
  color: #77756e;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
}
.editorial-link strong {
  font-family: "Playfair Display";
  font-size: 24px;
  font-weight: 500;
}
.editorial-link i { color: var(--gold); font-size: 20px; font-style: normal; transition: transform .25s; }
.editorial-link:hover i { transform: translate(4px, -4px); }

.collection { background: #dcd8ce; padding: 115px clamp(24px, 5vw, 76px) 130px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 58px; }
.section-heading h2 { font-size: clamp(50px, 5vw, 76px); }
.section-heading > p { color: #66655f; max-width: 410px; line-height: 1.75; font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: end; }
.product-card { min-width: 0; position: relative; }
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.2), transparent 42%);
  transition: opacity .35s ease;
}
.product-card:hover::after { opacity: 1; }
.product-card.featured { transform: translateY(-28px); }
.product-image { aspect-ratio: 1 / 1.12; overflow: hidden; background: #ddd; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.product-card:hover .product-image img { transform: scale(1.055); filter: contrast(1.04); }
.product-info { display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; border-bottom: 1px solid rgba(17,17,15,.22); }
.product-info p { font-family: "Playfair Display"; font-size: 19px; margin: 0 0 7px; }
.product-info div span { color: #7f7c74; text-transform: uppercase; letter-spacing: .1em; font-size: 8px; }
.product-arrow { color: var(--gold); font-size: 19px; }

.sales-model { background: var(--black); color: #f4f0e7; display: grid; grid-template-columns: 50% 50%; min-height: 850px; }
.sales-image { position: relative; overflow: hidden; }
.sales-image img { height: 110%; object-fit: cover; transform: translateY(var(--image-shift, -5%)); will-change: transform; }
.vertical-label { position: absolute; left: 28px; bottom: 35px; writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .2em; }
.sales-copy { padding: 110px clamp(40px, 8vw, 125px); display: flex; flex-direction: column; justify-content: center; }
.sales-copy h2 { font-size: clamp(52px, 5.5vw, 82px); }
.sales-copy > p:not(.eyebrow) { color: #a3a39e; font-size: 14px; line-height: 1.75; margin: 32px 0 28px; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: grid; grid-template-columns: 52px 1fr; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.13); }
.steps li > span { color: var(--gold); font-size: 9px; padding-top: 6px; }
.steps h3 { margin: 0 0 6px; font-size: 18px; }
.steps p { color: #858580; font-size: 12px; line-height: 1.5; margin: 0; }

.audience { padding: 120px clamp(24px, 8vw, 130px) 130px; text-align: center; }
.audience h2 { font-size: clamp(48px, 5.7vw, 82px); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: left; margin-top: 75px; border: 1px solid var(--line); }
.audience-grid article { padding: 50px; min-height: 300px; }
.audience-grid article + article { border-left: 1px solid var(--line); }
.audience-grid article > span { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: "Playfair Display"; font-size: 13px; }

.contact { background: #1a1b19; color: #f5f1e8; padding: 110px clamp(24px, 8vw, 130px); display: grid; grid-template-columns: 1fr 450px; gap: 100px; align-items: center; }
.contact h2 { font-size: clamp(50px, 5.6vw, 80px); }
form { display: grid; gap: 20px; }
label span { display: block; text-transform: uppercase; letter-spacing: .14em; color: #8e8e89; font-size: 9px; margin-bottom: 9px; }
input, select { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; background: transparent; color: #eeeae1; padding: 8px 0 13px; outline: none; }
input:focus, select:focus { border-color: var(--gold); }
input::placeholder { color: #64645f; }
select option { color: #111; }
form .button { width: 100%; margin-top: 9px; }
.form-note { color: #62625e; font-size: 10px; text-align: center; margin: -8px 0 0; }

footer { background: #0b0c0b; color: #92928d; padding: 55px clamp(24px, 5vw, 76px) 35px; display: grid; grid-template-columns: 1fr auto; align-items: center; }
.footer-brand { color: #eee9df; grid-row: 1; }
footer > p { font-family: "Playfair Display"; font-style: italic; margin: 18px 0 45px; }
footer > div { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; gap: 28px; font-size: 10px; }
footer > div a:last-child { margin-left: auto; }
.toast { position: fixed; z-index: 30; right: 24px; bottom: 24px; max-width: 390px; padding: 22px 24px; background: var(--cream); box-shadow: 0 18px 70px rgba(0,0,0,.3); display: flex; flex-direction: column; gap: 7px; transform: translateY(140%); transition: transform .4s; }
.toast.show { transform: translateY(0); }
.toast strong { font-family: "Playfair Display"; font-size: 18px; }
.toast span { color: #666; font-size: 12px; line-height: 1.5; }

@keyframes rail {
  to { transform: translateX(-50%); }
}
@keyframes halo-breathe {
  from { transform: scale(.9) translate3d(0, 0, 0); opacity: .55; }
  to { transform: scale(1.12) translate3d(-3%, 4%, 0); opacity: 1; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 76px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; color: white; z-index: 2; }
  .menu-button span { display: block; background: currentColor; width: 24px; height: 1px; margin: 6px; transition: transform .3s; }
  .menu-open .menu-button span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .desktop-nav.mobile-active { display: flex; position: fixed; inset: 0; background: #0c0d0c; flex-direction: column; justify-content: center; align-items: center; gap: 28px; font-family: "Playfair Display"; font-size: 30px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 690px; padding-top: 145px; }
  .hero-visual { height: 650px; }
  .hero-frame { transform: scale(1.02); }
  .section-heading { align-items: start; gap: 40px; }
  .sales-model { grid-template-columns: 1fr; }
  .sales-image { height: 650px; }
  .sales-copy { padding: 90px 10vw; }
  .contact { grid-template-columns: 1fr; gap: 65px; }
}

@media (max-width: 650px) {
  .hero-copy { padding: 130px 24px 45px; }
  h1 { font-size: 58px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-proof { gap: 13px; justify-content: space-between; }
  .hero-proof strong { font-size: 15px; }
  .hero-proof span { font-size: 7px; }
  .hero-visual { height: 480px; }
  .floating-note { width: 210px; }
  .statement, .audience { padding-top: 90px; padding-bottom: 90px; }
  .statement-copy { font-size: 14px; }
  .benefit-row { grid-template-columns: 1fr; margin-top: 55px; }
  .benefit-row article, .benefit-row article + article { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .editorial-link { grid-template-columns: 1fr auto; }
  .editorial-link span { grid-column: 1 / -1; }
  .editorial-link strong { font-size: 20px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 28px; }
  .product-grid { grid-template-columns: 1fr; gap: 35px; }
  .product-card.featured { transform: none; }
  .product-image { aspect-ratio: 1 / 1.05; }
  .sales-image { height: 470px; }
  .sales-copy { padding: 80px 24px; }
  .audience-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .audience-grid article { min-height: auto; padding: 36px; }
  .audience-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .contact { padding: 80px 24px; }
  footer { grid-template-columns: 1fr; }
  .toast { left: 14px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .signature-rail > div, .hero-halo { animation: none !important; }
}
