/* ===========================================================================
   SaltDrop global styles
   Palette: deep teal + warm tan/cream. High contrast, senior-friendly.
   =========================================================================== */

:root {
  --teal-900: #0a4f4d;
  --teal-800: #0c615e;
  --teal-700: #0e7c7b;
  --teal-600: #129a97;
  --teal-100: #d9efed;
  --teal-50: #eef7f6;

  --brown-800: #6f4a22;
  --brown-700: #8a5a2b;
  --brown-500: #b0834b;
  --tan-300: #e3d0b4;
  --tan-200: #efe2cc;
  --tan-100: #f7efe3;

  --cream: #fcfaf6;
  --white: #ffffff;
  --ink: #1f2b29;
  --ink-muted: #4a5855;
  --border: #e6e0d6;
  --shadow: 0 2px 10px rgba(31, 43, 41, 0.08);

  --danger: #b3261e;
  --danger-bg: #fdecea;
  --success: #1b6b3a;
  --success-bg: #e9f6ee;

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

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

a {
  color: var(--teal-700);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal-900);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 {
  font-size: 2.35rem;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1em;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-700);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.center {
  text-align: center;
  margin-top: 1.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.6rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.05s ease;
}

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

.btn-primary {
  background: var(--teal-700);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-900);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--teal-800);
  border-color: var(--teal-700);
}

.btn-secondary:hover {
  background: var(--teal-50);
  color: var(--teal-900);
  border-color: var(--teal-900);
}

.btn-light {
  background: #fff;
  color: var(--teal-800);
}

.btn-light:hover {
  background: var(--teal-100);
  color: var(--teal-900);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-lg {
  min-height: 60px;
  padding: 1rem 2rem;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
}

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  flex-wrap: wrap;
}

.brand img {
  height: 56px;
  width: auto;
  margin-top: 0.3rem;
}

.main-nav {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.nav-link:hover {
  background: var(--teal-50);
  color: var(--teal-800);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-900);
  text-decoration: none;
  font-weight: 700;
}

.header-phone:hover {
  background: var(--teal-100);
  color: var(--teal-900);
}

.header-phone .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header-phone-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-800);
}

.header-phone-number {
  font-size: 1.1rem;
}

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

.hero {
  background: linear-gradient(160deg, var(--teal-700) 0%, var(--teal-900) 100%);
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-kicker {
  color: var(--tan-200);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  margin-bottom: 0.6rem;
}

.hero-lead {
  color: #eaf4f3;
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.25rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.steps li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1.02rem;
}

.step-dot {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-700);
  color: #fff;
  font-weight: 800;
}

/* --- Sections ------------------------------------------------------------- */

.section {
  padding: 4rem 0;
}

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

.section--faq {
  padding-bottom: 2rem;
}

.section--cta {
  padding-top: 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-sub {
  color: var(--ink-muted);
  font-size: 1.1rem;
}

/* --- Product cards -------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-media {
  background: #fff;
  padding: 1.25rem 1.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  height: 160px;
  width: auto;
  object-fit: contain;
}

.product-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.product-weight {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-800);
  margin: 0;
}

.product-price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
}

/* --- Feature cards -------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  color: var(--teal-800);
}

.feature-card p {
  margin: 0;
  color: var(--ink-muted);
}

/* --- FAQ ------------------------------------------------------------------- */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal-700);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--teal-800);
}

.faq-item p {
  margin: 0;
  color: var(--ink-muted);
}

/* --- CTA banner ----------------------------------------------------------- */

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(160deg, var(--teal-700), var(--teal-800));
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem;
}

.cta-copy h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-copy p {
  margin: 0;
  color: #eaf4f3;
}

.cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

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

.page-hero {
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  color: #fff;
  padding: 2.75rem 0;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.page-hero .lead {
  color: #eaf4f3;
  margin: 0;
}

.page-body {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

/* --- Alerts --------------------------------------------------------------- */

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.alert-error {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: #f2c1bd;
}

.alert-success {
  background: var(--success-bg);
  color: var(--success);
  border-color: #bfe3cc;
}

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

.form-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.75rem 1.6rem;
  margin: 0 0 1.5rem;
  box-shadow: var(--shadow);
}

.step-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  padding: 0;
  margin: 0 0 1.25rem;
  width: 100%;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-700);
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.field label,
.field-label {
  font-weight: 700;
  margin-bottom: 0.45rem;
  display: block;
}

.field--wide {
  grid-column: 1 / -1;
}

.field--small {
  max-width: 160px;
}

.req {
  color: var(--danger);
}

.opt {
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.85rem;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--brown-500);
  outline-offset: 2px;
}

.check-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

.check-row input[type="checkbox"] {
  width: 26px;
  height: 26px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--teal-700);
}

.check-row label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.check-row .hint {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.radio input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: var(--teal-700);
  margin: 0;
}

.radio:has(input:checked) {
  border-color: var(--teal-700);
  background: var(--teal-50);
}

.delivery-estimate {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}

.estimate-result {
  margin-top: 0.85rem;
  color: var(--ink-muted);
}

.estimate-result strong {
  color: var(--teal-800);
}

/* --- Address autocomplete -------------------------------------------------- */

.field--autocomplete {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0.3rem 0 0;
  padding: 0.3rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(31, 43, 41, 0.18);
  max-height: 320px;
  overflow-y: auto;
}

.autocomplete-item {
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1.3;
}

.autocomplete-item.is-active {
  background: var(--teal-50);
}

.autocomplete-main {
  font-weight: 600;
}

.autocomplete-sub {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* --- Quantity control ------------------------------------------------------ */

.qty-control {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
}

.qty-btn {
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-800);
  background: var(--teal-50);
  border: 2px solid var(--teal-100);
  cursor: pointer;
  line-height: 1;
}

.qty-btn:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.qty-btn:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.qty-btn:hover {
  background: var(--teal-100);
}

.qty-input {
  width: 68px;
  height: 48px;
  text-align: center;
  border-radius: 0;
  border-left: none;
  border-right: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

/* --- Order summary --------------------------------------------------------- */

.summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 6px solid var(--teal-700);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow);
}

.summary-title {
  font-size: 1.35rem;
}

.summary-list {
  margin: 0 0 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-row dt {
  color: var(--ink-muted);
}

.summary-row dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.summary-row--total {
  border-bottom: none;
  border-top: 2px solid var(--ink);
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  font-size: 1.25rem;
}

.summary-row--total dt {
  color: var(--ink);
  font-weight: 800;
}

.summary-row--total dd {
  color: var(--teal-800);
  font-size: 1.35rem;
}

.summary-note {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* --- Cards / contact ------------------------------------------------------- */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow);
}

.legal {
  max-width: 780px;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.legal li {
  margin-bottom: 0.4rem;
}

/* --- Admin ------------------------------------------------------------------ */

.admin-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.admin-hero h1 {
  margin-bottom: 0.2rem;
}

.admin-login-card {
  max-width: 460px;
  margin: 0 auto;
}

.admin-orders {
  display: grid;
  gap: 1.5rem;
}

.admin-order-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.admin-order-id {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
  color: var(--teal-800);
  overflow-wrap: anywhere;
}

.admin-order-date {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.admin-order-total {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-800);
}

.admin-section-title {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--ink);
}

.admin-dl {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.admin-dl > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
}

.admin-dl dt {
  color: var(--ink-muted);
}

.admin-dl dd {
  margin: 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.admin-total-row {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.35rem;
}

.admin-total-row dt,
.admin-total-row dd {
  color: var(--teal-800);
  font-weight: 800;
}

.admin-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.admin-meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.admin-notes dd {
  white-space: pre-wrap;
}

.admin-empty {
  margin: 0;
  color: var(--ink-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card h2 {
  font-size: 1.3rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-value a {
  color: var(--teal-700);
}

/* --- Thank-you ------------------------------------------------------------- */

.thank-you {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.thank-you-card {
  max-width: 720px;
  margin: 0 auto;
}

.thank-you-card h1 {
  font-size: 2rem;
}

.order-number {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.payment-note {
  background: var(--tan-100);
  border-color: var(--tan-300);
  box-shadow: none;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.payment-note p {
  margin: 0;
}

.thank-you-note {
  margin: 1.5rem 0;
}

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

.site-footer {
  background: var(--teal-900);
  color: #eaf4f3;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-tagline {
  color: #cfe6e4;
  margin: 0;
}

.footer-heading {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-list a {
  color: #d7ebe9;
  text-decoration: none;
}

.footer-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-text {
  color: #cfe6e4;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem 0;
  font-size: 0.9rem;
  color: #cfe6e4;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #d7ebe9;
}

/* --- Responsive ------------------------------------------------------------ */

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.55rem 0.8rem;
    font-size: 1rem;
  }

  .header-phone {
    margin-left: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field--small {
    max-width: none;
  }

  .cta-banner {
    padding: 1.75rem 1.25rem;
  }

  .admin-dl > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .admin-dl dt {
    font-size: 0.85rem;
  }

  .hero-inner,
  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .form-section,
  .summary {
    padding: 1.35rem 1.1rem;
  }

  .btn-lg {
    min-height: 56px;
  }
}

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