:root {
  --navy: #1f3347;
  --navy-deep: #142432;
  --cream: #f7f1e8;
  --paper: #fffdf9;
  --rose: #c96f72;
  --rose-dark: #aa5459;
  --ink: #24313d;
  --muted: #66717b;
  --line: #e8ded2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Montserrat, Avenir, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.site-header { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 12px max(5vw, 24px); background: rgba(255,253,249,.94); border-bottom: 1px solid rgba(31,51,71,.1); backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.brand span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.brand strong { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.header-cta { padding: 11px 18px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); font-size: 13px; font-weight: 800; }

.hero { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 730px; background: var(--cream); overflow: hidden; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 78px 7vw; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: var(--rose-dark); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; color: var(--navy); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 5.2vw, 78px); font-weight: 500; line-height: 1.02; letter-spacing: -.035em; }
.hero-lead { max-width: 690px; margin: 26px 0 20px; color: #52606b; font-size: 18px; line-height: 1.72; }
.hero-list { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; font-size: 14px; font-weight: 650; }
.hero-list li { display: flex; align-items: center; gap: 10px; }
.hero-list svg { flex: 0 0 auto; width: 19px; color: var(--rose-dark); }
.buy-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 17px 25px; border-radius: 9px; background: var(--rose); box-shadow: 0 12px 26px rgba(170,84,89,.2); color: white; font-size: 15px; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.buy-button:hover { transform: translateY(-2px); background: var(--rose-dark); }
.microcopy { display: flex; gap: 8px; align-items: center; margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.hero-visual { min-width: 0; background: #e9dfd3; }
.hero-photo-wrap { position: relative; height: 100%; min-height: 730px; }
.hero-photo-wrap:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,51,71,.2), transparent 40%); }
.hero-photo-wrap > img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.collection-badge { position: absolute; right: 7%; bottom: 8%; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: 12px; background: rgba(255,253,249,.94); color: var(--navy); box-shadow: 0 18px 50px rgba(15,25,35,.25); }
.collection-badge strong { font-family: Georgia, serif; font-size: 44px; line-height: .8; }
.collection-badge span { max-width: 90px; font-size: 12px; font-weight: 850; line-height: 1.2; text-transform: uppercase; }

.section-shell { width: min(1180px, 90vw); margin: 0 auto; padding: 105px 0; }
.section-heading { max-width: 720px; }
.section-heading.centered { margin: 0 auto 54px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .author h2, .offer-card h2, .closing-cta h2 { margin: 0; color: var(--navy); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(36px, 4vw, 54px); font-weight: 500; line-height: 1.08; letter-spacing: -.025em; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.benefits { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.benefit-grid article { padding: 30px 22px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.benefit-grid svg { color: var(--rose); }
.benefit-grid h3 { margin: 22px 0 8px; color: var(--navy); font-size: 17px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.collection { padding-top: 30px; }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guide-card { display: grid; grid-template-columns: 190px 1fr; min-height: 205px; border: 1px solid var(--line); border-radius: 15px; background: white; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 17px 36px rgba(31,51,71,.09); }
.guide-image { display: grid; place-items: center; min-height: 205px; padding: 10px; overflow: hidden; background: var(--cream); }
.guide-image img { width: 100%; height: 100%; object-fit: contain; }
.guide-content { padding: 25px; }
.guide-content > span { color: var(--rose); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.guide-content h3 { margin: 9px 0 11px; color: var(--navy); font-size: 17px; line-height: 1.32; }
.guide-content p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }

.offer-section { padding: 50px 5vw 105px; }
.offer-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; width: min(1180px,100%); margin: auto; padding: 70px; border-radius: 24px; background: var(--navy); color: white; }
.offer-card h2 { color: white; }
.eyebrow.light { color: #efb3b5; }
.offer-copy ul { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.offer-copy li { display: flex; align-items: center; gap: 9px; color: #e3e9ee; font-size: 14px; }
.offer-copy li svg { width: 18px; color: #efb3b5; }
.price-box { display: flex; flex-direction: column; align-items: center; padding: 36px; border-radius: 17px; background: var(--paper); color: var(--navy); text-align: center; }
.price-box p { margin: 0 0 17px; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.old-price { color: var(--muted); font-size: 14px; text-decoration: line-through; }
.price-box > strong { margin: 4px 0; font-family: Georgia, serif; font-size: 48px; font-weight: 500; }
.price-box small { margin-bottom: 22px; color: var(--muted); }
.price-box .buy-button { width: 100%; }

.author { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: center; }
.author-photo { max-height: 540px; border-radius: 20px; overflow: hidden; background: var(--cream); }
.author-photo img { width: 100%; height: 540px; object-fit: contain; object-position: center; }
.author-copy > p:not(.eyebrow) { max-width: 660px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.author-note { display: flex; align-items: center; gap: 14px; max-width: 620px; margin-top: 25px; padding: 18px; border-left: 3px solid var(--rose); background: var(--cream); color: var(--navy); font-size: 14px; font-weight: 750; line-height: 1.5; }
.author-note svg { flex: 0 0 auto; color: var(--rose-dark); }

.closing-cta { display: flex; flex-direction: column; align-items: center; padding: 95px 5vw; background: var(--cream); text-align: center; }
.closing-cta > svg { margin-bottom: 22px; color: var(--rose-dark); }
.closing-cta h2 { max-width: 800px; }
.closing-cta p { max-width: 650px; margin: 20px 0 28px; color: var(--muted); font-size: 16px; line-height: 1.7; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding: 35px 5vw; background: var(--navy-deep); color: #cbd4db; font-size: 12px; }
footer > div:nth-child(2) { display: flex; gap: 18px; }
footer > p { text-align: right; }
.footer-brand { color: white; }
.footer-brand span { background: white; color: var(--navy); }
.mobile-buy { display: none; }

.cookie-banner { position: fixed; right: 24px; bottom: 24px; z-index: 50; width: min(560px, calc(100vw - 48px)); padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 18px 60px rgba(20,36,50,.2); }
.cookie-banner strong { color: var(--navy); }
.cookie-banner p { margin: 7px 0 18px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.cookie-actions { display: flex; justify-content: flex-end; gap: 9px; }
.cookie-actions button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--navy); cursor: pointer; font-size: 12px; font-weight: 800; }
.cookie-actions .accept { border-color: var(--navy); background: var(--navy); color: white; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 7vw; }
  .hero-visual, .hero-photo-wrap { min-height: 500px; }
  .benefits { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .guide-card { grid-template-columns: 145px 1fr; }
  .offer-card { gap: 40px; padding: 50px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer > div, footer > p { justify-content: center; text-align: center; }
}

@media (max-width: 720px) {
  .site-header { min-height: 62px; }
  .brand strong { display: none; }
  .brand span { width: 35px; height: 35px; }
  .header-cta { font-size: 11px; }
  .hero-copy { padding: 55px 6vw 62px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { font-size: 16px; }
  .hero-visual, .hero-photo-wrap { min-height: 430px; }
  .section-shell { width: 88vw; padding: 75px 0; }
  .benefit-grid, .guide-grid, .offer-card, .author { grid-template-columns: 1fr; }
  .benefit-grid { gap: 10px; }
  .guide-card { grid-template-columns: 118px 1fr; min-height: 170px; }
  .guide-image { min-height: 170px; }
  .guide-content { padding: 18px; }
  .guide-content h3 { font-size: 15px; }
  .guide-content p { font-size: 12px; }
  .offer-section { padding: 15px 4vw 75px; }
  .offer-card { gap: 35px; padding: 38px 24px; }
  .price-box { padding: 30px 18px; }
  .author { gap: 40px; }
  .author-photo img { height: 430px; }
  footer { padding-bottom: 95px; }
  footer > div:nth-child(2) { flex-direction: column; gap: 7px; }
  .mobile-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 35; display: block; padding: 10px 14px; background: rgba(255,253,249,.97); border-top: 1px solid var(--line); }
  .mobile-buy a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; border-radius: 8px; background: var(--rose); color: white; font-size: 14px; font-weight: 850; }
  .cookie-banner { right: 12px; bottom: 82px; width: calc(100vw - 24px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
