/* ==========================================================================
   Eagle Eye Bin Revival — global stylesheet
   ========================================================================== */

:root {
  --black: #16160f;
  --olive-900: #23261a;
  --olive-800: #2d3021;
  --olive-700: #3d4130;
  --olive-600: #4f5540;
  --tan-100: #f6f2e7;
  --tan-200: #ede4cd;
  --tan-300: #ddccA4;
  --gold-500: #b9902f;
  --gold-600: #a17c25;
  --cream: #faf8f2;
  --white: #ffffff;
  --ink: #201f18;
  --ink-soft: #504c3f;
  --danger: #8a2a20;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;

  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(22, 22, 15, 0.12);
  --shadow-md: 0 8px 24px rgba(22, 22, 15, 0.16);
  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--olive-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--tan-100);
}

.section-dark {
  background: var(--olive-900);
  color: var(--tan-100);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--tan-100);
}

.section-dark .card {
  color: var(--ink);
}
.section-dark .card h1,
.section-dark .card h2,
.section-dark .card h3,
.section-dark .card h4 {
  color: var(--olive-900);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}

.section-dark .eyebrow { color: var(--gold-500); }

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
}

.section-dark .lede { color: var(--tan-200); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--black);
  border-color: var(--gold-500);
}
.btn-primary:hover { background: var(--gold-600); border-color: var(--gold-600); box-shadow: var(--shadow-sm); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--olive-900);
}
.btn-outline:hover { background: var(--olive-900); color: var(--tan-100); }

.section-dark .btn-outline,
.hero .btn-outline { color: var(--tan-100); }
.section-dark .btn-outline:hover,
.hero .btn-outline:hover { background: var(--tan-100); color: var(--olive-900); }

.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */

.topbar {
  background: var(--black);
  color: var(--tan-200);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { text-decoration: none; color: var(--gold-500); }
.topbar a:hover { text-decoration: underline; }

.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--olive-900);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--olive-900);
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive-800);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-600);
  border-bottom-color: var(--gold-500);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive-800);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-current="page"] {
  color: var(--gold-600);
  border-bottom-color: var(--gold-500);
}
.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.12s ease;
}
.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--cream);
  border: 1px solid var(--tan-300);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--olive-800);
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: var(--tan-100);
  color: var(--gold-600);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--olive-900);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive-900);
  margin: 4px 0;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--olive-900);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    display: none;
    gap: 18px;
  }
  .main-nav.open { display: flex; }
  .nav-links {
    flex-direction: column;
    gap: 14px;
  }
  .main-nav .btn { width: 100%; }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 0 16px;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}

/* ---------- Hero ---------- */

.hero {
  background:
    linear-gradient(160deg, rgba(22,22,15,0.88), rgba(35,38,26,0.86)),
    repeating-linear-gradient(135deg, rgba(185,144,47,0.06) 0 2px, transparent 2px 26px);
  color: var(--tan-100);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold-500);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-side-logo {
  position: absolute;
  left: calc((100vw - 1140px) / 4);
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 26vw, 480px);
  z-index: 1;
}

@media (max-width: 1400px) {
  .hero-side-logo { display: none; }
}

.hero-pay-cta {
  position: absolute;
  top: 28px;
  right: calc((100vw - 1140px) / 4);
  transform: translateX(50%);
  z-index: 1;
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--black);
  background: var(--gold-500);
  padding: 20px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: background 0.12s ease, transform 0.12s ease;
}
.hero-pay-cta:hover {
  background: var(--gold-600);
}

@media (max-width: 1400px) {
  .hero-pay-cta { display: none; }
}

.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero .lede { color: var(--tan-200); font-size: 1.2rem; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 242, 231, 0.18);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tan-200);
}

.hero-badge svg { width: 22px; height: 22px; color: var(--gold-500); flex-shrink: 0; }

.google-review-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 42px 20px;
  background: rgba(246, 242, 231, 0.06);
  border: 3px solid #39ff14;
  border-radius: var(--radius);
  color: var(--tan-100);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.7rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.5);
  transition: background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.google-review-cta:hover {
  background: rgba(246, 242, 231, 0.12);
  border-color: #39ff14;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.75);
}
.google-review-cta svg {
  width: 34px;
  height: 34px;
  color: var(--gold-500);
  flex-shrink: 0;
  fill: var(--gold-500);
}

.hero-contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: rgba(246, 242, 231, 0.06);
  border: 2px solid #ff073a;
  border-radius: var(--radius);
  color: var(--tan-100);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 7, 58, 0.45);
  transition: background 0.12s ease, box-shadow 0.12s ease;
}
.hero-contact-cta:hover {
  background: rgba(246, 242, 231, 0.12);
  box-shadow: 0 0 18px rgba(255, 7, 58, 0.7);
}
.hero-contact-cta svg {
  width: 20px;
  height: 20px;
  color: #ff073a;
  flex-shrink: 0;
}

.hero-panel {
  background: rgba(246, 242, 231, 0.06);
  border: 1px solid rgba(246, 242, 231, 0.25);
  border-radius: var(--radius);
  padding: 32px;
}

.hero-panel h3 {
  color: var(--gold-500);
  margin-bottom: 16px;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-panel li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--tan-200);
}

.hero-panel li svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }

/* ---------- Page header (inner pages) ---------- */

.page-header {
  background: var(--olive-900);
  color: var(--tan-100);
  padding: 56px 0;
  border-bottom: 4px solid var(--gold-500);
}
.page-header .eyebrow { color: var(--gold-500); }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: var(--tan-200); max-width: 640px; margin: 0; }

/* ---------- Notice banner ---------- */

.notice {
  background: var(--tan-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.notice svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.notice p { margin: 0; color: var(--ink-soft); }
.notice strong { color: var(--olive-900); }

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--tan-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--olive-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }

.card p:last-child { margin-bottom: 0; }

.section-header {
  max-width: 680px;
  margin: 0 0 44px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--white);
  border: 1px solid var(--tan-200);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold-500);
  border: 2px solid var(--gold-500);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--white);
  border: 1px solid var(--tan-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.plan.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  position: relative;
}
.plan.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.plan-name {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--olive-800);
  margin-bottom: 6px;
}
.plan-freq {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold-600);
  margin-bottom: 4px;
}
.plan-price span {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
  text-transform: none;
}
.plan-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-note {
  margin-top: 28px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Before / after ---------- */

.before-after-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--tan-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.before-after-card img {
  width: 100%;
  height: auto;
  display: block;
}
.before-after-card figcaption {
  padding: 14px 18px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--olive-800);
  background: var(--tan-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.before-after-card figcaption span { color: var(--gold-600); }

/* ---------- Service area ---------- */

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.area-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1.05rem;
}
.area-list svg { width: 22px; height: 22px; color: var(--gold-500); flex-shrink: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--olive-900);
  color: var(--tan-100);
  padding: 56px 0;
  text-align: center;
  border-top: 4px solid var(--gold-500);
  border-bottom: 4px solid var(--gold-500);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--tan-200); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--tan-200);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(246,242,231,0.15);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-brand-name {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer h4 {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--tan-200); font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold-500); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(246,242,231,0.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--tan-200);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--olive-800);
  margin-bottom: 6px;
}
.field .hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 4px;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--tan-300);
  border-radius: var(--radius);
  background: var(--tan-100);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}

.field textarea { resize: vertical; min-height: 110px; }

.address-autocomplete-wrapper {
  position: relative;
}

.address-suggestions {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  right: 0;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--tan-300);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-height: 220px;
  overflow-y: auto;
}

.address-suggestions button {
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
}

.address-suggestions button:hover {
  background: var(--tan-100);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 560px) { .radio-group { grid-template-columns: 1fr; } }

.radio-card {
  border: 1px solid var(--tan-300);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--tan-100);
}
.radio-card input { width: auto; }
.radio-card:has(input:checked) {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--gold-500);
}
.radio-card-label { font-weight: 600; font-size: 0.95rem; }
.radio-card-price { font-family: var(--font-head); color: var(--gold-600); }

.checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-500);
  flex-shrink: 0;
}

.trust-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.trust-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--tan-200);
}
.trust-checks svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #e4efe0; color: #2c5c22; border: 1px solid #b7d4ac; }
.form-status.error { background: #f6e2df; color: var(--danger); border: 1px solid #e3b3ab; }
.form-status.loading { background: var(--tan-100); color: var(--ink-soft); border: 1px solid var(--tan-300); }

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
