:root {
  --black: #170c0f;
  --black-2: #201114;
  --bordeaux: #6e1029;
  --bordeaux-dark: #4a0a1c;
  --bordeaux-deep: #350813;
  --gold: #c9a24b;
  --gold-light: #e6c878;
  --cream: #f3e8d3;
  --cream-2: #f8f0df;
  --paper: #fbf5e8;
  --classic: #e8dcc0;
  --classic-dark: #b9a877;
  --gold-variant: #dfae3f;
  --gold-variant-dark: #a97f1f;
  --text: #241014;
  --text-soft: #5c4148;
  --shadow: 0 20px 44px -20px rgba(20, 5, 10, 0.55);
  --radius: 18px;
  --serif: "Playfair Display", "Georgia", serif;
  --script: "Playfair Display", "Georgia", serif;
  --sans: "Nunito Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--serif);
  margin: 0 0 0.4em;
  color: var(--black);
}

p {
  line-height: 1.7;
  color: var(--text-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--bordeaux);
  margin-bottom: 0.6em;
  display: inline-block;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header.scrolled {
  background: rgba(23, 12, 15, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.site-header.scrolled .brand,
.site-header.scrolled nav a {
  color: var(--cream);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text small {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bordeaux);
}

.brand svg {
  width: 38px;
  height: 38px;
}

.site-header nav {
  display: flex;
  gap: 30px;
}

.site-header nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.site-header nav a:hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  position: relative;
  transition: 0.2s;
}

.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after {
  background: var(--cream);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201, 162, 75, 0.16), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(110, 16, 41, 0.35), transparent 55%),
    linear-gradient(180deg, var(--black), var(--black-2) 60%, var(--bordeaux-deep));
  overflow: hidden;
  color: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Ccircle cx='20' cy='20' r='1.4' fill='%23c9a24b' opacity='0.3'/%3E%3Ccircle cx='90' cy='70' r='1.1' fill='%23e6c878' opacity='0.22'/%3E%3Ccircle cx='55' cy='115' r='1.6' fill='%236e1029' opacity='0.3'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.4em;
}

.hero-lockup svg {
  width: 56px;
  height: 56px;
}

.hero-lockup .lockup-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero-lockup .lockup-text .place {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

.hero-lockup .lockup-text .makers {
  font-family: var(--script);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.25em;
  color: var(--cream);
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .product-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.6em;
}

.hero .lead {
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 1.8em;
  color: rgba(243, 232, 211, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--cream);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(201, 162, 75, 0.35);
}

.badge {
  position: absolute;
  top: -6%;
  right: -4%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.6);
  transform: rotate(8deg);
  z-index: 3;
}

/* Sections */
section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  max-width: 660px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-head p {
  margin: 0 auto;
}

/* Story */
.story {
  background: var(--paper);
}

.story .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.story-art img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(110, 16, 41, 0.15);
}

.story-text .section-head {
  text-align: left;
  margin: 0 0 1.4rem;
}

.story-text p + p {
  margin-top: 1em;
}

.seal-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 4px 10px -2px rgba(20, 5, 10, 0.4);
}

.story-signature {
  margin-top: 1.6em;
  display: flex;
  align-items: center;
  font-family: var(--script);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bordeaux);
}

/* About us */
.about {
  background: var(--cream-2);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-head {
  text-align: left;
  margin: 0 0 1.4rem;
}

.about-text p + p {
  margin-top: 1em;
}

.recognition-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.8em;
  padding: 14px 18px;
  background: rgba(110, 16, 41, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 12px;
}

.recognition-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.recognition-badge span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1.35;
}

.about-art {
  position: relative;
  padding: 0 36px 44px 0;
}

.about-photo-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(110, 16, 41, 0.15);
}

.about-photo-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  border-radius: 12px;
  border: 6px solid var(--paper);
  box-shadow: 0 20px 40px -16px rgba(20, 5, 10, 0.5);
  transform: rotate(3.5deg);
}

/* Product lineup */
.products {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}

.lineup-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 3.5rem;
  border: 1px solid rgba(110, 16, 41, 0.15);
}

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

.product-card {
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 18px 36px -20px rgba(20, 5, 10, 0.4);
  border: 1px solid rgba(110, 16, 41, 0.12);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 44px -18px rgba(20, 5, 10, 0.5);
}

.product-photo {
  width: calc(100% + 52px);
  max-width: none;
  height: 260px;
  object-fit: cover;
  object-position: center 45%;
  margin: -34px -26px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card .variant-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}

.product-card .composition {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card p.desc {
  font-size: 0.92rem;
  flex-grow: 1;
}

.card-classic {
  background: var(--paper);
  border-top: 6px solid var(--classic-dark);
}
.card-classic .variant-tag { color: var(--classic-dark); }
.card-classic .composition { color: var(--text); }

.card-gold {
  background: linear-gradient(180deg, #fff8e6, var(--paper));
  border-top: 6px solid var(--gold-variant-dark);
}
.card-gold .variant-tag { color: var(--gold-variant-dark); }
.card-gold .composition { color: var(--text); }

.card-xmas {
  background: linear-gradient(160deg, var(--bordeaux-dark), var(--bordeaux));
  color: var(--cream);
  border-top: 6px solid var(--gold-light);
  transform: scale(1.03);
}

.card-xmas:hover {
  transform: scale(1.03) translateY(-8px);
}

.card-xmas h3,
.card-xmas .variant-tag {
  color: var(--gold-light);
}

.card-xmas .composition {
  color: var(--cream);
}

.card-xmas p.desc {
  color: rgba(243, 232, 211, 0.85);
}

.card-xmas .ribbon {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: -34px;
  background: var(--gold-light);
  color: var(--bordeaux-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(40deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.product-card .price-tag {
  margin-top: 1.2em;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Tasting notes */
.notes {
  background: var(--paper);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.note-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 14px 30px -18px rgba(20, 5, 10, 0.3);
  border: 1px solid rgba(110, 16, 41, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.note-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -16px rgba(20, 5, 10, 0.4);
}

.note-card svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
}

.note-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.note-card p {
  font-size: 0.94rem;
  margin: 0;
}

/* Gift sets */
.gifts {
  background: var(--black);
  color: var(--cream);
}

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

.gifts h2 {
  color: var(--cream);
}

.gifts .section-head p {
  color: rgba(243, 232, 211, 0.72);
}

.gift-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.gift-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 26px 50px -20px rgba(0,0,0,0.7);
  border: 1px solid rgba(201, 162, 75, 0.3);
}

.gift-list {
  list-style: none;
  margin: 1.6em 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gift-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(243, 232, 211, 0.05);
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
}

.gift-list svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gift-list strong {
  color: var(--gold-light);
  display: block;
  margin-bottom: 2px;
  font-family: var(--serif);
}

.gift-list span {
  font-size: 0.9rem;
  color: rgba(243, 232, 211, 0.75);
}

/* Ingredients */
.ingredients {
  background: var(--bordeaux-deep);
  color: var(--cream);
}

.ingredients h2,
.ingredients .eyebrow {
  color: var(--cream);
}

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

.ingredients p {
  color: rgba(243, 232, 211, 0.72);
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}

.ing-card {
  background: rgba(243, 232, 211, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}

.ing-card svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
}

.ing-card h3 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.4em;
}

.ing-card p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(243, 232, 211, 0.68);
}

/* How it's made - steps */
.process {
  background: var(--cream-2);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  padding: 30px 18px 20px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid rgba(110, 16, 41, 0.14);
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-weight: 800;
  font-family: var(--serif);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.5);
}

.step h3 {
  font-size: 1rem;
  margin: 10px 0 8px;
}

.step p {
  font-size: 0.88rem;
  margin: 0;
}

/* CTA / contact */
.cta {
  background:
    linear-gradient(135deg, rgba(110, 16, 41, 0.93), rgba(74, 10, 28, 0.95)),
    url("assets/bottle-xmas.jpg");
  background-size: cover;
  background-position: center 15%;
  color: var(--cream);
  text-align: center;
  border-radius: var(--radius);
  width: min(1000px, 90%);
  margin: 0 auto;
  padding: 70px 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 75, 0.3);
}

.cta h2 {
  color: var(--cream);
}

.cta p {
  color: rgba(243, 232, 211, 0.85);
  max-width: 50ch;
  margin: 0 auto 1.8em;
}

.age-note {
  margin-top: 20px;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* Footer */
footer {
  background: var(--black);
  color: rgba(243, 232, 211, 0.75);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-brand svg {
  width: 32px;
  height: 32px;
}

footer h4 {
  color: var(--cream);
  font-family: var(--serif);
  margin: 0 0 14px;
  font-size: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

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

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

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Divider */
.divider {
  position: relative;
  padding: 130px 0;
  background: url("assets/bottle-gold.jpg") center 0% / cover no-repeat;
  isolation: isolate;
}

.divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 12, 15, 0.88), rgba(74, 10, 28, 0.82));
  z-index: -1;
}

.divider-content {
  text-align: center;
}

.divider-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream);
  max-width: 18ch;
  margin: 0 auto 0.6em;
  line-height: 1.35;
}

.divider-sign {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 980px) {
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .card-xmas { transform: none; }
  .card-xmas:hover { transform: translateY(-8px); }
  .story .container { grid-template-columns: 1fr; }
  .story-art { order: -1; max-width: 360px; margin: 0 auto; }
  .about-layout { grid-template-columns: 1fr; }
  .about-art { order: -1; max-width: 400px; margin: 0 auto 20px; padding: 0 24px 32px 0; }
  .gift-layout { grid-template-columns: 1fr; }
  .gift-photo { order: -1; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-lockup { justify-content: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { order: -1; margin-bottom: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .badge { top: -8px; right: 4%; }
}

@media (max-width: 720px) {
  .site-header nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(280px, 78vw);
    background: var(--black);
    flex-direction: column;
    padding: 100px 30px;
    gap: 26px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .site-header nav a { color: var(--cream) !important; }
  .site-header nav.open {
    transform: translateX(0);
  }
  .nav-toggle { display: block; z-index: 200; }
  section { padding: 80px 0; }
  .notes-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { padding: 50px 24px; }
  .card-xmas .ribbon { right: -30px; top: 14px; }
  .divider { padding: 90px 0; }
  .divider-quote { max-width: 22ch; }
}

/* Editorial polish and progressive motion */
[hidden] { display: none !important; }
html { scroll-padding-top: 95px; }
.site-header .brand, .site-header nav a { color: var(--cream); }
.site-header .brand-text small { color: var(--gold-light); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { background: var(--cream); }
.nav-toggle { min-width: 44px; min-height: 44px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.reveal { opacity: 1; transform: none; }
.will-reveal { opacity: 0; transform: translateY(18px); transition-delay: var(--delay, 0ms); }
.will-reveal.is-visible { opacity: 1; transform: none; }
.hero-art { perspective: 1000px; }
.hero-art img { transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)); transition: transform .45s ease; }
.hero-art::before { content: ''; position: absolute; inset: -12%; background: radial-gradient(ellipse, rgba(201,162,75,.24), transparent 65%); pointer-events: none; }
.hero-copy > * { animation: entrance .8s both; }
.hero-copy > :nth-child(2) { animation-delay: .1s; }
.hero-copy > :nth-child(3) { animation-delay: .2s; }
.hero-copy > :nth-child(4) { animation-delay: .3s; }
.hero-copy > :nth-child(5) { animation-delay: .4s; }
.variant-picker { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 0 auto 2rem; }
.variant-picker button { min-height: 46px; padding: .8rem 1.6rem; font: inherit; cursor: pointer; border: 1px solid var(--bordeaux); border-radius: 99px; color: var(--bordeaux); background: transparent; transition: background .25s, color .25s; }
.variant-picker button[aria-pressed='true'] { background: var(--bordeaux); color: var(--cream); }
.products-grid.has-picker { display: block; max-width: 900px; margin-inline: auto; }
.has-picker .product-card { min-height: 350px; text-align: left; padding: clamp(24px, 4vw, 48px); overflow: hidden; box-shadow: none; transform: none; animation: entrance .4s both; }
.has-picker .product-photo { width: 42%; height: 310px; object-fit: contain; float: left; margin: 0 7% 0 0; }
.has-picker .product-card h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.has-picker .product-card .ribbon { display: none; }
.has-picker .product-card::after { content: ''; display: block; clear: both; }
.steps { position: relative; }
.steps::before { content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: var(--gold); }
@keyframes entrance { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 720px) {
  .site-header nav { visibility: hidden; }
  .site-header nav.open { visibility: visible; }
  .has-picker .product-photo { float: none; width: 100%; height: 260px; margin: 0 0 1.5rem; }
  .has-picker .product-card { text-align: center; }
  .steps::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .will-reveal { opacity: 1; transform: none; }
  .hero-art img { transform: none; }
}
