:root {
  --bush-950: #082a24;
  --bush-900: #0d382f;
  --bush-800: #145043;
  --bush-700: #1e6653;
  --gold-500: #c99a3d;
  --gold-400: #ddb762;
  --cream-50: #fffdf7;
  --cream-100: #f7f1e4;
  --cream-200: #eee2ce;
  --ink: #16231f;
  --muted: #5b6862;
  --red-700: #8e2f2b;
  --red-100: #f8e8e4;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(8, 42, 36, .08);
  --shadow-lg: 0 24px 70px rgba(8, 42, 36, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --content: 1180px;
  --focus: 3px solid #efbd4f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--bush-800); text-underline-offset: .2em; }
a:hover { color: var(--bush-700); }
button, input, select, textarea { font: inherit; }
button, .button, input, select { min-height: 46px; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 9999;
  background: var(--white);
  color: var(--bush-950);
  padding: 12px 16px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 42, 36, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--content);
  margin: 0 auto;
  min-height: 76px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}
.brand img { width: 190px; max-height: 54px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 20px; }
.desktop-nav a {
  color: var(--cream-100);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.desktop-nav a:hover { color: var(--gold-400); }
.nav-menu { display: none; position: relative; }
.nav-menu summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  padding: 10px 13px;
  min-height: 46px;
  display: flex;
  align-items: center;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 250px;
  padding: 12px;
  border-radius: 14px;
  background: var(--bush-950);
  box-shadow: var(--shadow-lg);
}
.nav-menu nav a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
}
.nav-menu nav a:hover { background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--bush-950);
  isolation: isolate;
}
.hero picture, .hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero picture img { object-fit: cover; object-position: 55% 45%; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5,27,23,.94) 0%, rgba(5,27,23,.78) 42%, rgba(5,27,23,.2) 78%, rgba(5,27,23,.12) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 44px));
  margin: 0 auto;
  padding: 110px 0 90px;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-400);
  font-weight: 900;
  font-size: .79rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--bush-950);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero-lead {
  max-width: 690px;
  color: #f8f3e7;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin: 0 0 18px;
}
.proof-line {
  color: var(--cream-100);
  font-weight: 800;
  margin: 0 0 28px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--gold-500); color: #1a251f; box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.button-primary:hover { background: var(--gold-400); color: #17231e; }
.button-secondary { border-color: rgba(255,255,255,.55); color: var(--white); background: rgba(8,42,36,.45); }
.button-secondary:hover { background: rgba(255,255,255,.12); color: var(--white); }
.button-dark { background: var(--bush-900); color: var(--white); }
.button-dark:hover { background: var(--bush-800); color: var(--white); }
.button-outline { border-color: var(--bush-800); color: var(--bush-800); background: transparent; }
.button-outline:hover { background: var(--cream-100); }
.button-danger { background: var(--red-700); color: var(--white); }
.button[disabled] { opacity: .58; cursor: not-allowed; transform: none; }

.section {
  padding: 88px 22px;
}
.section-tight { padding-top: 58px; padding-bottom: 58px; }
.section-dark { color: var(--cream-100); background: var(--bush-950); }
.section-green { color: var(--cream-100); background: var(--bush-900); }
.section-cream { background: var(--cream-100); }
.section-white { background: var(--white); }
.container { width: min(var(--content), 100%); margin: 0 auto; }
.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 {
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  margin-bottom: 16px;
}
.section-dark h2, .section-dark h3, .section-green h2, .section-green h3 { color: var(--white); }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p, .section-green .section-heading p { color: #d9e5df; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(8,42,36,.11);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.path-card { display: flex; flex-direction: column; align-items: flex-start; }
.path-card .button { margin-top: auto; }
.icon-disc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--cream-100);
  color: var(--bush-800);
  font-size: 1.35rem;
  font-weight: 900;
}
.emergency-panel {
  border: 2px solid #c65b52;
  background: var(--red-100);
  box-shadow: none;
}
.emergency-panel h2 { color: var(--red-700); }
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.contact-item {
  border-radius: 14px;
  background: var(--white);
  padding: 18px;
  border-left: 5px solid var(--red-700);
}
.contact-item strong { display: block; color: var(--red-700); }
.contact-item a { font-size: 1.22rem; font-weight: 900; }
.notice {
  padding: 18px 20px;
  border-radius: 14px;
  background: #edf5f1;
  border-left: 5px solid var(--bush-700);
}
.notice.warning { background: #fff3d8; border-left-color: var(--gold-500); }
.notice.danger { background: var(--red-100); border-left-color: var(--red-700); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 56px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); }
.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bush-900);
}
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.benefit-list { display: grid; gap: 16px; }
.benefit {
  padding: 22px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(8,42,36,.1);
}
.benefit h3 { font-size: 1.25rem; margin-bottom: 9px; }
.check-list { margin: 0; padding-left: 1.25rem; }
.check-list li { margin-bottom: 7px; }
.check-list li::marker { color: var(--gold-500); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.preview-card {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(8,42,36,.12);
  box-shadow: var(--shadow-sm);
}
.preview-card img {
  width: 100%;
  aspect-ratio: 420 / 595;
  object-fit: contain;
  background: #f4efe4;
}
.preview-card figcaption { padding: 13px 15px; font-weight: 750; font-size: .92rem; }

.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.proof {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(221,183,98,.3);
  background: rgba(255,255,255,.06);
}
.proof strong {
  display: block;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(340px,.8fr);
  gap: 36px;
  align-items: start;
}
.checkout-card {
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.price {
  margin: 8px 0 18px;
  color: var(--bush-900);
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  line-height: 1;
}
.price small { display: block; margin-top: 8px; font: 750 .95rem/1.4 system-ui, sans-serif; color: var(--muted); }
.checkout-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 20px;
}
.checkout-price-grid .price {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(8,42,36,.16);
  border-radius: 16px;
  background: var(--cream-100);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.provider-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.provider-choice-grid .button {
  min-width: 0;
  white-space: normal;
  text-align: center;
}
.checkout-delivery-option {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(8,42,36,.2);
  border-radius: 12px;
  background: var(--white);
  color: var(--bush-900);
  text-decoration: none;
}
.checkout-delivery-option:hover,
.checkout-delivery-option:focus-visible {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(221,183,98,.18);
}
.checkout-delivery-option span {
  color: var(--muted);
  font-size: .9rem;
  text-align: right;
}
.form-group { margin-bottom: 17px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 850; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #aebbb5;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-help { margin: 7px 0 0; color: var(--muted); font-size: .88rem; }
.form-status {
  min-height: 26px;
  margin-top: 13px;
  font-weight: 750;
}
.form-status.error { color: var(--red-700); }
.form-status.success { color: var(--bush-700); }
.secure-note { display: flex; gap: 12px; align-items: flex-start; }
.secure-note b { color: var(--bush-800); }

.delivery-card {
  overflow: hidden;
  padding: 0;
}
.delivery-card img { width: 100%; aspect-ratio: 16/8; object-fit: cover; object-position: 50% 45%; }
.delivery-card .card-body { padding: 30px; }
.local-price { font-family: Georgia,serif; font-size: 2.4rem; color: var(--bush-900); margin: 0; }
.local-price small { display:block; font: 750 .9rem/1.4 system-ui,sans-serif; color: var(--muted); }

.language-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.language-card { position: relative; }
.language-card .status-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--bush-800);
  font-size: .8rem;
  font-weight: 850;
}
.language-card .button { margin-top: 10px; }

.faq details {
  border-bottom: 1px solid rgba(8,42,36,.15);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--bush-900);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold-500); font-size: 1.4rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { max-width: 850px; }

.legal-shell { max-width: 900px; }
.legal-shell h1 { font-size: clamp(2.3rem,5vw,4.5rem); }
.legal-shell h2 { margin-top: 45px; font-size: 1.9rem; }
.legal-shell h3 { margin-top: 28px; }
.legal-meta { color: var(--muted); }

.success-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.success-panel h1 { font-size: clamp(2.5rem,6vw,5rem); }
.download-box {
  margin-top: 28px;
  padding: 26px;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: left;
}
.download-box[hidden] { display: none; }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4,20,17,.78);
}
.modal-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--bush-950);
  cursor: pointer;
  font-size: 1.35rem;
}
body.modal-open { overflow: hidden; }

.site-footer { background: #061f1a; color: #dce8e2; padding: 58px 22px 100px; }
.footer-grid {
  width: min(var(--content),100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 35px;
}
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer a { color: #f0d28b; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.independence { color: #aebeb7; font-size: .88rem; }

.mobile-sticky {
  display: none;
  position: fixed;
  z-index: 90;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  padding: 10px;
  border-radius: 999px;
  background: rgba(8,42,36,.96);
  box-shadow: var(--shadow-lg);
}
.mobile-sticky[hidden] { display: none !important; }
.mobile-sticky .button { width: 100%; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-menu { display: block; }
  .grid-3, .grid-4, .language-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .preview-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split, .split.reverse, .checkout-shell { grid-template-columns: 1fr; }
  .split.reverse .media-frame { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .header-inner { min-height: 68px; padding: 9px 14px; }
  .brand { min-width: 0; }
  .brand img { width: 165px; }
  .hero { min-height: 700px; }
  .hero picture img { object-position: center 42%; }
  .hero::before { background: linear-gradient(180deg, rgba(5,27,23,.35) 0%, rgba(5,27,23,.84) 58%, rgba(5,27,23,.98) 100%); }
  .hero-inner { width: min(100% - 30px, var(--content)); padding: 290px 0 60px; }
  .hero h1 { font-size: clamp(2.15rem, 12vw, 3.45rem); }
  .hero-lead { font-size: 1.02rem; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .section { padding: 64px 15px; }
  .section-tight { padding-top: 44px; padding-bottom: 44px; }
  .grid-2, .grid-3, .grid-4, .language-grid, .contact-grid, .preview-grid, .proof-grid, .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 23px; border-radius: 16px; }
  .preview-grid { max-width: 460px; margin: 0 auto; }
  .checkout-shell { gap: 22px; }
  .mobile-sticky { display: block; }
  .site-footer { padding-bottom: 120px; }
}

@media (max-width: 360px) {
  .header-inner { padding-left: 10px; padding-right: 10px; }
  .brand img { width: 145px; }
  .nav-menu summary { padding: 9px 10px; }
  .hero-inner { width: calc(100% - 24px); }
  .hero h1 { font-size: 2.03rem; }
  .card { padding: 20px; }
  .button { padding-left: 15px; padding-right: 15px; }
}

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


/* V5.0 production polish */
.hero-promise {
  max-width: 720px;
  margin: -8px 0 28px;
  color: #f7e7b7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-style: italic;
}
.hero-compact { min-height: 590px; }
.hero-compact .hero-inner { padding-top: 120px; padding-bottom: 72px; }
.hero-compact h1 { font-size: clamp(2.35rem, 5.4vw, 5rem); }
.button-full { width: 100%; }
.success-hero { padding-top: 110px; min-height: 62vh; display: grid; align-items: center; }
.status-pill { white-space: nowrap; }
.language-card { display: flex; flex-direction: column; }
.language-card .button { margin-top: auto; width: 100%; }
.card h2 { font-size: clamp(1.55rem, 2.4vw, 2.05rem); }
.notice strong { color: var(--bush-900); }
.checkout-card form { margin-top: 24px; }
.checkout-card .check-list { margin-bottom: 24px; }
.hero .button-primary { min-width: 230px; }
@media (max-width: 680px) {
  .hero-compact { min-height: 650px; }
  .hero-compact .hero-inner { padding-top: 270px; padding-bottom: 52px; }
  .hero-promise { margin-bottom: 22px; }
  .success-hero { padding-top: 84px; }
  .status-pill { white-space: normal; }
}
@media (max-width: 360px) {
  .hero-compact h1 { font-size: 1.95rem; }
}


.product-art-hero {
  background: var(--bush-950);
  border-bottom: 1px solid rgba(201, 154, 61, .35);
}
.product-art-hero img {
  width: 100%;
  max-height: min(72vh, 860px);
  object-fit: contain;
  margin: 0 auto;
  background: var(--bush-950);
}
.delivery-intro {
  padding-top: 54px;
  padding-bottom: 54px;
}
.delivery-intro .section-heading {
  max-width: 820px;
  margin-inline: auto;
}
.delivery-intro h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}
.delivery-intro p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}
@media (max-width: 680px) {
  .product-art-hero img {
    max-height: none;
    object-fit: contain;
  }
  .delivery-intro {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

@media (max-width: 680px) {
  .checkout-price-grid,
  .provider-choice-grid {
    grid-template-columns: 1fr;
  }
  .checkout-price-grid .price {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .checkout-delivery-option {
    align-items: flex-start;
    flex-direction: column;
  }
  .checkout-delivery-option span {
    text-align: left;
  }
}
