:root {
  --navy: #0e2a47;
  --navy-2: #143a63;
  --navy-deep: #0a2038;
  --ink: #16222f;
  --muted: #5a6b7b;
  --line: #e2e8ee;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --gold: #c39a4e;
  --gold-soft: #e9d9b3;
  --blue: #1e6fd6;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(14, 42, 71, 0.08);
  --shadow-sm: 0 4px 18px rgba(14, 42, 71, 0.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.12; color: var(--navy); font-weight: 600; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); margin: 0 0 1rem; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1140px, 92vw); margin: 0 auto; }
.narrow { width: min(760px, 92vw); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--navy); font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--navy); color: #fff;
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1rem;
  letter-spacing: 0.02em;
}
.brand-text { font-size: 1.05rem; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover { color: var(--navy); text-decoration: none; }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 0.5rem 1.1rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--navy-deep); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  padding: 0.85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline { background: #fff; color: var(--navy); border-color: #cdd8e2; padding: 0.6rem 1.2rem; }
.btn-outline:hover { border-color: var(--navy); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* Hero */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); background:
  radial-gradient(1000px 500px at 78% -10%, #eaf1f9 0%, transparent 60%),
  linear-gradient(180deg, #fbfdff 0%, #ffffff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--gold); margin: 0 0 1rem; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 34rem; }
.hero-cta { display: flex; gap: 0.8rem; margin: 1.6rem 0 2rem; flex-wrap: wrap; }
.hero-stats { list-style: none; padding: 0; margin: 0; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--navy); }
.hero-stats span { color: var(--muted); font-size: 0.9rem; }

.hero-media { display: block; }
.hero-img {
  width: 100%; height: 100%; min-height: 420px; max-height: 520px;
  object-fit: cover; border-radius: var(--radius);
  border: 1px solid #e5edf5; box-shadow: var(--shadow-sm);
}
.media-img {
  width: 100%; height: 100%; min-height: 400px;
  object-fit: cover; border-radius: var(--radius);
  border: 1px solid #e5edf5; box-shadow: var(--shadow-sm);
}

/* Trust strip */
.strip { background: var(--navy); color: #d6e2ee; }
.strip-inner { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; justify-content: center;
  padding: 1rem 0; font-size: 0.9rem; font-weight: 500; }
.strip-inner span { position: relative; }

/* Sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.5rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }

/* Alert */
.alert { background: #fff4f4; border: 1px solid #f3c9c9; color: #8a2b2b;
  border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1.5rem auto 0; }
.alert ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }

/* Product hero */
.product-hero {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.8rem 2rem; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--navy) 0%, #16406b 100%);
  color: #fff; box-shadow: var(--shadow); margin-bottom: 1.6rem;
}
.product-hero h3 { color: #fff; font-size: 1.7rem; }
.product-hero p { color: #cad9e8; margin: 0; }
.product-hero .tag { display: inline-block; background: var(--gold); color: #402c07;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem; border-radius: 999px; margin-bottom: 0.6rem; }
.product-hero-buy { text-align: right; }
.price { font-family: "Fraunces", serif; font-size: 1.7rem; font-weight: 600; margin: 0 0 0.6rem; }
.price span { font-family: "Inter", sans-serif; font-size: 0.8rem; font-weight: 500; opacity: 0.8; }
.price.sm { font-size: 1.2rem; color: var(--navy); }

/* Product grid */
.subhead { margin: 2.4rem 0 1.1rem; }
.subhead h3 { font-family: "Fraunces", serif; font-size: 1.35rem; color: var(--navy); margin: 0; }
.subhead p { color: var(--muted); font-size: 0.95rem; margin: 0.25rem 0 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.county-grid { grid-template-columns: repeat(4, 1fr); }
.county-card { padding: 1.15rem; }
.county-card h3 { font-size: 1.05rem; }
.county-card .card-count { margin-bottom: 0.85rem; }
.county-card .price.sm { font-size: 1.1rem; }
.county-card .price.sm span { display: none; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfdae6; }
.card-desc { color: var(--muted); font-size: 0.92rem; margin: 0 0 0.8rem; flex: none; min-height: 3.2em; }
.card-count { font-weight: 600; color: var(--navy); margin: 0 0 1rem; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  border-top: 1px solid var(--line); padding-top: 1rem; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 0.55rem; }
.feature-list li { padding-left: 1.6rem; position: relative; color: var(--muted); }
.content-fields { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0; }
.content-fields li { display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.7rem 0 0.7rem 1.7rem; position: relative; border-bottom: 1px solid var(--line); }
.content-fields li:last-child { border-bottom: none; }
.content-fields li::before { content: ""; position: absolute; left: 0; top: 1.15rem;
  width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
.content-fields .field-name { font-weight: 600; color: var(--navy); font-size: 1rem; }
.content-fields .field-desc { color: var(--muted); font-size: 0.9rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700; }
.feature-list strong { color: var(--ink); }
.media-stack { display: grid; gap: 1rem; }

/* Steps */
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); }
.step-no { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px;
  background: var(--gold-soft); color: #6b5015; font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.1rem; margin-bottom: 0.9rem; }
.steps p { color: var(--muted); margin: 0; }

/* Forms */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--ink); }
.field input, .field select {
  width: 100%; padding: 0.75rem 0.9rem; border: 1px solid #cdd8e2; border-radius: 10px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color 0.14s ease, box-shadow 0.14s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 111, 214, 0.15); }
.form-note { color: var(--muted); font-size: 0.82rem; text-align: center; margin: 0.9rem 0 0; }
.steps-cta { text-align: center; margin-top: 2rem; }

/* Checkout */
.checkout { background: var(--bg-alt); }
.checkout-head { text-align: left; max-width: 720px; }
.checkout-head h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0.3rem 0 0.6rem; }
.checkout-head p { color: var(--muted); margin: 0; }
.checkout-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 2.5rem;
  align-items: start; margin-top: 2rem; }
.checkout-forms { display: grid; gap: 1.6rem; }
.form-section { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); margin: 0; }
.form-section legend { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem;
  color: var(--navy); padding: 0; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row .field { margin-bottom: 0; }
.field:last-child { margin-bottom: 0; }

.notice-box { background: #fbf5e8; border: 1px solid var(--gold-soft);
  border-left: 4px solid var(--gold); border-radius: 12px; padding: 1.1rem 1.3rem; }
.notice-title { display: block; font-weight: 700; color: #6b5015; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.35rem; }
.notice-box p { margin: 0; color: #5f4d24; font-size: 0.92rem; line-height: 1.55; }

.checkbox-field { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink);
  font-size: 0.95rem; line-height: 1.4; cursor: pointer; }
.checkbox-field input { width: 1.15rem; height: 1.15rem; margin-top: 0.1rem; flex: none;
  accent-color: var(--navy); cursor: pointer; }

.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm);
  font-weight: 700; }
.btn-gold:hover { background: #b3893f; color: #fff; }

/* Order summary card */
.order-summary-card { background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow); position: sticky; top: 1.5rem; }
.order-summary-card h2 { color: #fff; margin: 0 0 1.2rem; font-size: 1.4rem; }
.summary-product { display: grid; gap: 0.25rem; padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.14); }
.summary-product-name { font-family: "Fraunces", serif; font-size: 1.2rem; font-weight: 600; }
.summary-product-count { color: #b8c8d8; font-size: 0.9rem; }
.summary-product-price { color: var(--gold-soft); font-weight: 700; margin-top: 0.3rem; }
.summary-product-price small { color: #b8c8d8; font-weight: 400; font-size: 0.8rem; }
.summary-metrics { margin: 1.2rem 0; display: grid; gap: 0.1rem; }
.summary-metrics > div { display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0; }
.summary-metrics dt { color: #b8c8d8; margin: 0; }
.summary-metrics dd { margin: 0; font-weight: 600; color: #fff; text-align: right; }
.summary-metrics-total { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 0.3rem;
  padding-top: 0.9rem !important; }
.summary-metrics-total dt, .summary-metrics-total dd { font-size: 1.15rem; font-weight: 700;
  color: #fff; }
.summary-metrics-total dd { color: var(--gold-soft); }
.summary-points { list-style: none; padding: 1.2rem 0 0; margin: 1.2rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.14); display: grid; gap: 0.7rem; }
.summary-points li { position: relative; padding-left: 1.7rem; color: #d6e2ee;
  font-size: 0.9rem; line-height: 1.4; }
.summary-points li::before { content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700; }

/* Receipt / legal */
.receipt { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); text-align: center; }
.receipt .btn { margin: 0.5rem 0; }
.summary { text-align: left; margin: 1.8rem 0 1.2rem; border-top: 1px solid var(--line); }
.summary > div { display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.summary dt { color: var(--muted); margin: 0; }
.summary dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }
.summary-total dd, .summary-total dt { font-size: 1.1rem; color: var(--navy); font-weight: 700; }
.upsell { margin: 1.4rem 0 0.6rem; padding: 1rem 1.2rem; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 12px; color: var(--ink); font-weight: 500; }
.upsell a { color: var(--navy); font-weight: 700; text-decoration: underline; }
.back-link { display: inline-block; margin-top: 1rem; }

.legal h2 { font-size: 1.25rem; margin-top: 2rem; }
.legal p { color: #384857; }
.center-block { text-align: center; }
.center-block .btn { margin-top: 1rem; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #b8c8d8; padding: 3rem 0 2rem; margin-top: 2rem; }
.footer-inner { display: grid; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-brand strong { color: #fff; display: block; }
.footer-brand p { margin: 0.1rem 0 0; font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a { color: #d6e2ee; font-weight: 500; }
.footer-legal { font-size: 0.82rem; color: #7f95aa; margin: 0.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .two-col, .checkout-grid { grid-template-columns: 1fr; }
  .checkout-forms { order: 2; }
  .order-summary-card { position: static; order: 1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .county-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .site-nav { gap: 1rem; font-size: 0.9rem; }
  .site-nav a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: repeat(2, 1fr); }
  .product-hero-buy { text-align: left; }
  .hero-stats { gap: 1.4rem; }
}
