:root {
  --navy: #16263D;
  --cream: #FFF8EE;
  --coral: #EC6653;
  --gold: #F2B84B;
  --teal: #238A84;
  --ink: #172231;
  --muted: #66707A;
  --white: #FFFFFF;
  --line: rgba(22, 38, 61, .13);
  --shadow: 0 24px 70px rgba(22,38,61,.14);
  --radius: 26px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tight { padding: 62px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}
.display-xl { font-size: clamp(3.15rem, 7vw, 6.4rem); }
.display-lg { font-size: clamp(2.4rem, 5vw, 4.35rem); }
.lead {
  margin: 24px 0 0;
  max-width: 650px;
  color: #43505D;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}
.subtle { color: var(--muted); }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(22,38,61,.08);
  background: rgba(255,248,238,.92);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; color: var(--navy); }
.brand img { width: 62px; height: 52px; object-fit: cover; border-radius: 50%; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-size: .92rem; font-weight: 700; color: #354353; }
.nav a:hover { color: var(--teal); }
.nav .nav-buy { color: white; background: var(--navy); padding: 11px 18px; border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; color: var(--navy); font-size: 1.6rem; cursor: pointer; }

.hero { padding: 74px 0 82px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-size: clamp(1.24rem, 2.3vw, 1.6rem);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero-kicker::before { content: ''; width: 42px; height: 3px; background: var(--gold); border-radius: 999px; flex: 0 0 42px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.price-row { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.price { color: var(--navy); font-family: var(--serif); font-size: 3rem; line-height: 1; }
.price small { display: block; color: var(--muted); font-family: var(--sans); font-size: .73rem; font-weight: 700; margin-top: 8px; letter-spacing: .04em; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 850;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(236,102,83,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(236,102,83,.3); }
.button.secondary { background: var(--navy); box-shadow: 0 14px 32px rgba(22,38,61,.18); }
.microcopy { margin-top: 14px; color: var(--muted); font-size: .84rem; }

.hero-visual { position: relative; min-height: 0; display: flex; align-items: center; justify-content: center; }
.hero-aura {
  position: absolute;
  inset: 8% -5% 2% -2%;
  background: radial-gradient(circle at 50% 45%, rgba(242,184,75,.22), rgba(35,138,132,.07) 38%, transparent 70%);
  filter: blur(4px);
}
.hero-collection-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
}

.benefit-banner { background: var(--navy); color: white; }
.benefit-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.benefit {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.13);
}
.benefit:last-child { border-right: 0; }
.benefit-icon {
  color: var(--gold);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit strong { font-size: 1rem; }
.benefit span { color: rgba(255,255,255,.72); font-size: .76rem; }

.centered-heading { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.centered-heading .lead { margin-left: auto; margin-right: auto; }
.collection-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; align-items: stretch; }
.product-card { background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 100%; box-shadow: 0 15px 40px rgba(22,38,61,.05); }
.product-card .visual { background: linear-gradient(145deg,#f8ecdc,#fffdf8); min-height: 330px; display: grid; place-items: center; padding: 30px; }
.product-card .visual img { max-height: 330px; width: auto; border-radius: 10px; box-shadow: 0 16px 35px rgba(22,38,61,.12); }
.product-card .content { padding: 26px; }
.product-card h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.product-card p { color: var(--muted); margin: 10px 0 0; }
.product-card.main { grid-row: span 2; }
.product-card.main .visual { min-height: 540px; }
.product-card.main .visual img { max-height: 520px; }
.feature-tag { display: inline-block; margin-bottom: 10px; padding: 6px 10px; border-radius: 999px; color: var(--navy); background: rgba(242,184,75,.28); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }

.ai-section { background: #F3E9DB; }
.ai-grid { display: grid; grid-template-columns: .94fr 1fr; gap: 70px; align-items: center; }
.ai-image-wrap { position: relative; }
.ai-image-wrap img { border-radius: 32px; box-shadow: var(--shadow); }
.ai-float { position: absolute; right: -20px; top: -20px; padding: 13px 18px; background: var(--gold); color: var(--navy); border-radius: 999px; font-weight: 900; box-shadow: 0 12px 25px rgba(22,38,61,.15); }
.ai-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 18px; }
.ai-list li { position: relative; padding: 15px 15px 15px 42px; background: rgba(255,255,255,.58); border: 1px solid rgba(22,38,61,.08); border-radius: 15px; font-size: .94rem; }
.ai-list li::before { content: '✓'; position: absolute; left: 15px; color: var(--teal); font-weight: 900; }
.ai-note { margin-top: 18px; color: var(--muted); font-size: .82rem; }

.occasion-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.occasion-thumb {
  background: linear-gradient(145deg,#f8ecdc,#fffdf8);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 15px 40px rgba(22,38,61,.05);
}
.occasion-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 12px;
  background: #fff8ee;
}

.offer { background: var(--navy); color: white; }
.offer-card { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; padding: 48px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.offer .eyebrow { color: var(--gold); }
.offer h2 { color: white; }
.offer p { color: rgba(255,255,255,.76); }
.offer-price { text-align: center; }
.offer-price strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 4.7rem; font-weight: 500; line-height: 1; }
.offer-price span { display: block; margin: 8px 0 18px; color: rgba(255,255,255,.72); font-size: .82rem; }
.guarantee { margin-top: 28px; display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.82); font-size: .88rem; }
.guarantee-badge { flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid rgba(242,184,75,.55); color: var(--gold); border-radius: 50%; display: grid; place-items: center; font-weight: 900; }

.faq { max-width: 850px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; border: 0; background: transparent; color: var(--navy); font-size: 1rem; font-weight: 800; cursor: pointer; }
.faq-button span:last-child { font-size: 1.4rem; color: var(--teal); transition: transform .2s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0 0 24px; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }

.final-cta { text-align: center; padding: 90px 0; }
.final-cta p { max-width: 600px; margin: 18px auto 28px; color: var(--muted); }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); font-size: .84rem; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--teal); }
.responsible { margin-top: 12px; max-width: 700px; font-size: .78rem; }

.legal-page { min-height: 70vh; padding: 74px 0 100px; }
.legal-wrap { max-width: 820px; }
.legal-wrap h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.legal-wrap h2 { margin: 38px 0 10px; color: var(--navy); font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.legal-wrap p, .legal-wrap li { color: #4d5965; }
.legal-wrap ul { padding-left: 21px; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 86px; transform: translate(-50%, 20px); opacity: 0; visibility: hidden; max-width: calc(100% - 32px); padding: 13px 18px; background: var(--navy); color: white; border-radius: 14px; box-shadow: var(--shadow); font-size: .88rem; transition: all .22s ease; }
.toast.show { transform: translate(-50%,0); opacity: 1; visibility: visible; }
.sticky-buy {
  position: fixed;
  z-index: 35;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(480px, calc(100% - 28px));
  min-height: 58px;
  padding: 0 24px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(22,38,61,.22);
}
.sticky-buy:hover { transform: translateX(-50%) translateY(-2px); }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-kicker { font-size: 1.18rem; }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit:nth-child(4) { border-right: 0; }
  .benefit:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .product-card.main { grid-row: auto; grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1fr; }
  .product-card.main .visual { min-height: 430px; }
  .ai-grid { gap: 42px; }
  .occasion-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, 680px); }
  .section { padding: 70px 0; }
  .header-inner { min-height: 66px; }
  .brand span { display: none; }
  .brand img { width: 55px; height: 46px; }
  .menu-button { display: block; }
  .nav { position: absolute; left: 14px; right: 14px; top: 70px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: #fffaf2; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .nav .nav-buy { text-align: center; margin-top: 5px; }
  .hero { padding-top: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { margin-top: 6px; }
  .hero-collection-image { width: min(100%, 680px); }
  .hero-kicker { font-size: 1.08rem; }
  .benefit-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .benefit { flex: 0 0 145px; min-height: 110px; border-bottom: 0 !important; scroll-snap-align: start; }
  .collection-grid { grid-template-columns: 1fr; }
  .product-card.main { grid-column: auto; display: block; }
  .product-card.main .visual { min-height: 400px; }
  .product-card .visual { min-height: 360px; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-image-wrap { max-width: 600px; margin: 0 auto; }
  .ai-float { right: 12px; top: 12px; }
  .ai-list { grid-template-columns: 1fr; }
  .occasion-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .offer-card { grid-template-columns: 1fr; padding: 34px 24px; }
  .offer-price { text-align: left; }
  .offer-price strong { font-size: 4rem; }
  .footer-grid { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .sticky-buy { width: calc(100% - 24px); }
}

@media (max-width: 520px) {
  .display-xl { font-size: clamp(2.85rem, 15vw, 4.4rem); }
  .display-lg { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .hero-kicker { font-size: .98rem; }
  .price-row { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .occasion-gallery { grid-template-columns: 1fr 1fr; }
  .sticky-buy { min-height: 56px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Affiliate page — isolated styles */
.affiliate-page { padding-bottom: 94px; }
.affiliate-hero { padding: 76px 0 86px; overflow: hidden; }
.affiliate-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 54px; align-items: center; }
.affiliate-hero-copy { position: relative; z-index: 2; }
.affiliate-hero h1 em { color: var(--gold); font-style: normal; }
.affiliate-commission-pill { display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; margin-bottom: 18px; border-radius: 999px; background: rgba(242,184,75,.22); color: var(--navy); border: 1px solid rgba(242,184,75,.5); font-size: .74rem; font-weight: 900; letter-spacing: .12em; }
.affiliate-hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.affiliate-price-note { color: var(--muted); font-size: .9rem; font-weight: 700; }
.affiliate-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.affiliate-hero-visual .hero-aura { inset: 5% -5% 0 -5%; }
.affiliate-hero-visual img { position: relative; z-index: 2; width: 100%; max-width: 650px; }

.affiliate-stat-band { background: var(--navy); color: white; }
.affiliate-stats { display: grid; grid-template-columns: repeat(5, 1fr); }
.affiliate-stats > div { min-height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px 12px; border-right: 1px solid rgba(255,255,255,.13); }
.affiliate-stats > div:last-child { border-right: 0; }
.affiliate-stats strong { color: var(--gold); font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.affiliate-stats span { margin-top: 8px; color: rgba(255,255,255,.72); font-size: .78rem; }

.affiliate-benefits { background: #fffaf3; }
.affiliate-benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.affiliate-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.62); box-shadow: 0 16px 42px rgba(22,38,61,.05); }
.affiliate-card-number { display: inline-block; color: var(--gold); font-family: var(--serif); font-size: 1.3rem; margin-bottom: 14px; }
.affiliate-card h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 1.85rem; font-weight: 500; }
.affiliate-card p { margin: 12px 0 0; color: var(--muted); }

.affiliate-offer-section { background: #F3E9DB; }
.affiliate-offer-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 72px; align-items: start; }
.affiliate-offer-list { display: grid; gap: 14px; }
.affiliate-offer-item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 22px; background: rgba(255,255,255,.58); border: 1px solid rgba(22,38,61,.08); border-radius: 18px; }
.affiliate-offer-item > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold); font-weight: 900; font-size: .82rem; }
.affiliate-offer-item strong { display: block; color: var(--navy); font-size: 1rem; }
.affiliate-offer-item p { margin: 5px 0 0; color: var(--muted); font-size: .9rem; }

.affiliate-angles-section { background: var(--cream); }
.affiliate-occasion-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.affiliate-occasion-grid > div { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.64); box-shadow: 0 12px 32px rgba(22,38,61,.045); }
.affiliate-occasion-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.affiliate-occasion-grid span { display: block; padding: 12px 10px 14px; color: var(--navy); font-weight: 800; font-size: .82rem; text-align: center; }

.affiliate-fit-section { background: #fffaf3; }
.affiliate-fit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.affiliate-fit-list { display: flex; flex-wrap: wrap; gap: 10px; }
.affiliate-fit-list span { padding: 12px 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); color: #43505d; font-weight: 700; font-size: .88rem; }

.affiliate-final-cta { padding: 92px 0; background: var(--navy); }
.affiliate-final-card { max-width: 900px; text-align: center; color: white; }
.affiliate-final-card .eyebrow { color: var(--gold); }
.affiliate-final-card h2 { color: white; }
.affiliate-final-card > p:not(.eyebrow):not(.affiliate-disclaimer) { max-width: 650px; margin: 20px auto 28px; color: rgba(255,255,255,.76); }
.affiliate-disclaimer { max-width: 680px; margin: 20px auto 0; color: rgba(255,255,255,.5); font-size: .75rem; }

.affiliate-sticky-cta { position: fixed; z-index: 35; left: 50%; bottom: 14px; transform: translateX(-50%); display: inline-flex; align-items: center; justify-content: center; width: min(520px, calc(100% - 28px)); min-height: 58px; padding: 0 24px; border-radius: 999px; background: var(--coral); color: white; text-decoration: none; font-weight: 900; letter-spacing: .02em; box-shadow: 0 18px 42px rgba(22,38,61,.24); }
.affiliate-sticky-cta:hover { transform: translateX(-50%) translateY(-2px); }

@media (max-width: 1050px) {
  .affiliate-hero-grid { gap: 34px; }
  .affiliate-stats { grid-template-columns: repeat(5, 1fr); }
  .affiliate-occasion-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

@media (max-width: 780px) {
  .affiliate-nav a:first-child { display: none; }
  .affiliate-hero { padding: 50px 0 66px; }
  .affiliate-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .affiliate-hero-visual { order: -1; }
  .affiliate-hero-visual img { width: min(100%, 620px); }
  .affiliate-stats { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .affiliate-stats > div { flex: 0 0 160px; scroll-snap-align: start; }
  .affiliate-benefit-grid { grid-template-columns: 1fr; }
  .affiliate-offer-grid { grid-template-columns: 1fr; gap: 34px; }
  .affiliate-occasion-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
  .affiliate-fit-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .affiliate-hero-actions { align-items: stretch; flex-direction: column; }
  .affiliate-card { padding: 26px 22px; }
  .affiliate-offer-item { grid-template-columns: 42px 1fr; padding: 18px; }
  .affiliate-sticky-cta { min-height: 56px; font-size: .94rem; }
}
