:root {
  --ink: #11100e;
  --paper: #f6f1e7;
  --white: #fffdf8;
  --blue: #0b4c9c;
  --blue-dark: #073770;
  --red: #e21b2f;
  --red-dark: #b80f20;
  --line: rgba(17, 16, 14, 0.16);
}

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

.announcement {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 9px 20px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(246, 241, 231, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 900; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 25px; display: grid; grid-template-rows: repeat(3, 1fr); border: 2px solid var(--ink); }
.brand-mark i:nth-child(1) { background: var(--blue); }
.brand-mark i:nth-child(2) { background: white; }
.brand-mark i:nth-child(3) { background: var(--red); }
.site-header nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 800; }
.site-header nav > a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 4px; }
.nav-cta { padding: 11px 16px; background: var(--ink); color: white; border-radius: 4px; }
.nav-cta:hover { background: var(--blue); }
.site-header .header-actions { gap: 10px; }
.site-header .header-button { min-height: 40px; padding: 9px 14px; font-size: 12px; box-shadow: 3px 3px 0 var(--ink); }
.site-header .header-button:hover { text-decoration: none; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding: 78px clamp(22px, 6vw, 90px) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(120deg, var(--paper) 0%, #e8dfce 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 600px; }
.eyebrow { margin: 0 0 14px; color: var(--red-dark); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: "Arial Black", Arial, Helvetica, sans-serif; letter-spacing: -.045em; }
h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(52px, 6.4vw, 98px); line-height: .91; }
.hero-lead { max-width: 560px; margin: 0 0 30px; font-size: clamp(19px, 2vw, 25px); line-height: 1.45; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 14px 20px; border: 2px solid transparent; border-radius: 4px; font-size: 15px; font-weight: 900; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; box-shadow: 4px 4px 0 var(--ink); }
.button-primary:hover { background: var(--ink); }
.button-yellow { background: #ffd84f; color: var(--ink); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.button-yellow:hover { background: white; }
.price-lockup { display: flex; flex-direction: column; }
.price-lockup strong { font-family: "Arial Black", Arial, sans-serif; font-size: 30px; line-height: 1; }
.price-lockup span { margin-top: 5px; font-size: 12px; color: #5f5a52; }
.micro-proof { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; font-size: 13px; font-weight: 800; }

.hero-art { position: relative; width: min(720px, 100%); aspect-ratio: 2 / 1; justify-self: center; }
.hero-art img { position: relative; z-index: 3; width: 100%; height: auto; aspect-ratio: 2 / 1; object-fit: cover; border: 8px solid white; box-shadow: 0 28px 65px rgba(17,16,14,.28); transform: rotate(-1.2deg); }
.flag-shadow { position: absolute; inset: 4% -4% -4% 5%; border: 3px solid var(--ink); background: var(--red); }
.flag-shadow-one { transform: rotate(5deg); }
.flag-shadow-two { background: var(--blue); transform: rotate(-5deg); }
.hero-sticker { position: absolute; right: -28px; bottom: -45px; z-index: 5; width: 130px; height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #ffd84f; border: 3px solid var(--ink); border-radius: 50%; text-align: center; font-size: 14px; line-height: 1.15; transform: rotate(7deg); box-shadow: 6px 6px 0 var(--ink); }
.hero-sticker strong { font-family: "Arial Black", Arial, sans-serif; font-size: 21px; }

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--blue); color: white; }
.trust-strip > div { display: flex; flex-direction: column; gap: 4px; padding: 28px clamp(22px, 5vw, 72px); border-right: 1px solid rgba(255,255,255,.25); }
.trust-strip strong { font-size: 17px; }
.trust-strip span { font-size: 13px; color: rgba(255,255,255,.76); }

.custom-promo { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 62px clamp(20px, 6vw, 90px); background: #ffd84f; }
.custom-promo > div { max-width: 920px; }
.custom-promo h2 { margin-bottom: 10px; font-size: clamp(36px, 4.4vw, 70px); line-height: .96; }
.custom-promo p:not(.eyebrow) { margin: 0; font-size: 18px; line-height: 1.45; }

.collection { padding: 110px clamp(20px, 5vw, 72px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; max-width: 1380px; margin: 0 auto 46px; }
.section-heading h2, .faq h2, .final-cta h2 { margin-bottom: 0; font-size: clamp(38px, 4vw, 64px); line-height: .98; }
.section-heading > p { max-width: 360px; margin: 0; color: #5f5a52; line-height: 1.5; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; max-width: 1380px; margin: 0 auto; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 35px rgba(17,16,14,.06); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(17,16,14,.13); }
.product-image-wrap { position: relative; aspect-ratio: 2 / 1; overflow: hidden; background: #ddd; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.018); }
.choice-badge { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 7px 10px; background: #ffd84f; border: 2px solid var(--ink); border-radius: 3px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-body { padding: 24px; }
.product-kicker { margin-bottom: 9px; color: #6e675e; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-body h3 { min-height: 60px; margin-bottom: 22px; font-size: clamp(23px, 2.2vw, 32px); line-height: 1.03; }
.product-buy-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 20px; border-top: 1px solid var(--line); }
.product-price { display: flex; flex-direction: column; flex-shrink: 0; }
.product-price strong { font-family: "Arial Black", Arial, sans-serif; font-size: 25px; }
.product-price span { font-size: 11px; color: #6e675e; }
.button-buy { background: var(--ink); color: white; }
.button-buy:hover { background: var(--red); }

.statement { padding: 110px 22px; background: var(--red); color: white; text-align: center; }
.statement .eyebrow { color: rgba(255,255,255,.72); }
.statement h2 { max-width: 920px; margin: 0 auto 20px; font-size: clamp(44px, 6vw, 88px); line-height: .94; }
.statement h2 + .button { margin-top: 14px; }
.button-light { background: white; color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; padding: 110px clamp(20px, 6vw, 90px); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 24px 42px 24px 0; font-family: "Arial Black", Arial, sans-serif; font-size: 20px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 5px; top: 21px; font-size: 27px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 650px; margin: -5px 0 24px; color: #625c53; line-height: 1.6; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 75px clamp(20px, 6vw, 90px); background: #ffd84f; }
.final-cta .eyebrow { color: var(--red-dark); }
.final-cta h2 { max-width: 800px; }
.payment-trust { margin: 10px 0 0; padding: 0; color: #6e675e; font-size: 10px; font-weight: 400; line-height: 1.4; text-align: right; }
.payment-trust span { margin-right: 3px; }
.product-card .payment-trust { opacity: 0; transform: translateY(-3px); transition: opacity .16s ease, transform .16s ease; pointer-events: none; }
.product-card:has(.button-buy:hover) .payment-trust,
.product-card:has(.button-buy:focus-visible) .payment-trust,
.product-card:has(.button-buy:active) .payment-trust { opacity: 1; transform: translateY(0); }
footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px 30px; padding: 35px clamp(20px, 6vw, 90px); background: var(--paper); font-size: 13px; }
footer p { color: #6e675e; }
.footer-company { margin: 0; font-size: 12px; }
.footer-company a { color: var(--ink); font-weight: 800; }
.footer-company a:hover { text-decoration: underline; text-underline-offset: 3px; }
footer > a:last-child { font-weight: 800; }
.mobile-buy-bar { display: none; }

@media (max-width: 1000px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: min(760px, 90%); margin: 20px auto 35px; }
  .faq { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; }
  .announcement { gap: 7px; font-size: 9px; }
  .site-header { padding: 12px 18px; }
  .brand { font-size: 13px; }
  .brand-mark { width: 29px; height: 22px; }
  .site-header nav > a:not(.nav-cta) { display: none; }
  .site-header nav > .header-button { display: inline-flex; min-height: 36px; padding: 8px 9px; font-size: 10px; }
  .site-header .header-actions { gap: 7px; }
  .nav-cta { padding: 10px 12px; font-size: 12px; }
  .hero { padding: 52px 20px 72px; gap: 38px; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-actions { align-items: flex-start; }
  .micro-proof { display: grid; gap: 8px; }
  .hero-art { width: 94%; }
  .hero-sticker { right: -10px; bottom: -48px; width: 105px; height: 105px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { padding: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .custom-promo { align-items: flex-start; flex-direction: column; padding: 55px 20px; }
  .collection { padding: 80px 15px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 32px; padding: 0 5px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-body { padding: 19px; }
  .product-body h3 { min-height: 0; font-size: 25px; }
  .product-buy-row { align-items: stretch; flex-direction: column; }
  .button-buy { width: 100%; }
  .statement { padding: 82px 20px; }
  .faq { padding: 80px 20px; }
  .final-cta { align-items: flex-start; flex-direction: column; padding: 65px 20px; }
  footer { align-items: flex-start; flex-direction: column; padding: 32px 20px; }
  footer p { margin: 0; }
  .mobile-buy-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; background: white; border-top: 1px solid var(--line); box-shadow: 0 -8px 25px rgba(0,0,0,.1); }
  .mobile-buy-bar > div { display: flex; flex-direction: column; }
  .mobile-buy-bar strong { font-family: "Arial Black", Arial, sans-serif; font-size: 19px; }
  .mobile-buy-bar span { font-size: 9px; color: #6e675e; }
  .mobile-buy-bar .button { min-height: 45px; padding: 11px 15px; box-shadow: none; }
}

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