/* ==========================================================================
   Tri-City Cleaning Co. — site styles
   Palette, type and spacing tokens live at the top. Change them here once
   and they change everywhere.
   ========================================================================== */

:root {
  /* Color */
  --ink:        #14302A;   /* deep pine — headlines, dark sections */
  --ink-deep:   #0D211D;   /* footer, deepest ground */
  --river:      #2F6F62;   /* primary teal — buttons, links */
  --river-lift: #47897A;   /* hover */
  --wash:       #E6F0EC;   /* pale panel background */
  --wash-deep:  #CFE1DA;   /* borders inside washed panels */
  --paper:      #FCFBF8;   /* page background */
  --white:      #FFFFFF;
  --brass:      #B87D2E;   /* accent, used sparingly */
  --stone:      #5E6E6A;   /* secondary text */
  --line:       #D7E2DE;   /* hairlines */

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-lg:   1.4375rem;
  --fs-xl:   1.875rem;
  --fs-2xl:  2.5rem;
  --fs-3xl:  3.375rem;

  /* Space */
  --gutter: 1.5rem;
  --maxw: 1140px;
  --maxw-text: 64ch;
  --radius: 6px;
  --radius-lg: 12px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--river); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--river-lift); }
:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 25, "WONK" 1, "opsz" 110;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.125rem, 5.2vw, var(--fs-3xl)); }
h2 { font-size: clamp(1.75rem, 3.6vw, var(--fs-2xl)); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); font-family: var(--body); font-weight: 700; letter-spacing: 0; }
p  { margin: 0 0 1.1em; max-width: var(--maxw-text); }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: 0.35em; }
strong { font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

.lede { font-size: var(--fs-md); color: var(--stone); line-height: 1.55; }
.small { font-size: var(--fs-sm); color: var(--stone); }
.tiny { font-size: var(--fs-xs); color: var(--stone); line-height: 1.5; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 780px; }
section { padding: 4.5rem 0; }
section.tight { padding: 3rem 0; }
.band-wash { background: var(--wash); }
.band-ink { background: var(--ink); color: var(--wash); }
.band-ink h2, .band-ink h3 { color: var(--white); }
.band-ink p { color: #C9DCD5; }
.band-ink a:not(.btn) { color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 0.75rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Announcement bar ---------- */
.topbar { background: var(--ink); color: #B9D0C9; font-size: var(--fs-xs); letter-spacing: 0.01em; }
.topbar .wrap {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.3rem 1.75rem; padding-top: 0.6rem; padding-bottom: 0.6rem; text-align: center;
}
.topbar span { position: relative; padding-left: 1.1rem; }
.topbar span::before {
  content: ""; position: absolute; left: 0; top: 0.46em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
@media (max-width: 620px) { .topbar .wrap { gap: 0.25rem 1.1rem; } }

/* ---------- Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 251, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-logo { height: 42px; width: auto; }
@media (max-width: 420px) { .brand-logo { height: 34px; } }
.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a:not(.btn) {
  color: var(--ink); text-decoration: none; font-size: var(--fs-sm); font-weight: 500;
  padding: 0.4rem 0; border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover { border-bottom-color: var(--brass); color: var(--ink); }
.nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--river); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.5rem 0.7rem; font: inherit; font-size: var(--fs-sm); cursor: pointer; color: var(--ink);
}

@media (max-width: 880px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 0.85rem; text-align: center; border-bottom: none; }
  .nav-toggle { display: block; }
  .masthead-inner { position: relative; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font: inherit; font-weight: 700; font-size: var(--fs-sm);
  padding: 0.8rem 1.4rem; border-radius: var(--radius); border: 2px solid var(--river);
  background: var(--river); color: var(--white); text-decoration: none; cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { background: var(--river-lift); border-color: var(--river-lift); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-light:hover { background: var(--wash); border-color: var(--wash); color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-lg { font-size: var(--fs-base); padding: 0.95rem 1.8rem; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ---------- Hero ----------
   Photo behind the words. The gradient is heaviest on the left, where the
   text sits, and lifts toward the right so the kitchen still reads. The
   numbers are set for contrast, not taste — see the note below. */
.hero { padding: 3.5rem 0 3rem; border-bottom: 1px solid var(--line); }
.hero-solo { max-width: 760px; }

.hero-image {
  border-bottom: 0;
  padding: 6rem 0 5.25rem;
  background-color: var(--ink-deep);
  background-image:
    linear-gradient(100deg,
      rgba(13, 33, 29, 0.64) 0%,
      rgba(13, 33, 29, 0.64) 46%,
      rgba(13, 33, 29, 0.30) 76%,
      rgba(13, 33, 29, 0.12) 100%),
    url("/images/hero-kitchen.jpg?v=20260913-1108");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}
.hero-image h1,
.hero-image .lede,
.hero-image .tiny,
.hero-image .trust-strip { color: var(--white); }
.hero-image h1 { text-shadow: 0 2px 24px rgba(13, 33, 29, 0.45); }
.hero-image .lede,
.hero-image .tiny,
.hero-image .trust-strip { text-shadow: 0 1px 14px rgba(13, 33, 29, 0.55); }

/* On a narrow screen the text runs the full width, so the wash has to be
   even rather than angled, or the right-hand words lose contrast. */
@media (max-width: 820px) {
  .hero-image {
    padding: 3.75rem 0 3.25rem;
    background-position: center 38%;
    background-image:
      linear-gradient(180deg,
        rgba(13, 33, 29, 0.66) 0%,
        rgba(13, 33, 29, 0.62) 100%),
      url("/images/hero-kitchen.jpg?v=20260913-1108");
  }
}
.hero h1 { margin-bottom: 0.55em; }
.hero .lede { max-width: 52ch; }
.trust-strip {
  list-style: none; padding: 0; margin: 1.75rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: var(--fs-sm); color: var(--stone);
}
.trust-strip li { margin: 0; padding-left: 1.35rem; position: relative; }
.trust-strip li::before {
  content: ""; position: absolute; left: 0; top: 0.52em;
  width: 9px; height: 9px; border-radius: 50%; background: var(--brass);
}

/* ---------- Quote builder ----------
   One card. Inputs and the running total live together, and the total
   stays pinned while you scroll the controls so you can watch it move. */
.quote-layout {
  display: grid; grid-template-columns: 1fr 440px; gap: 3.5rem; align-items: start;
}
.quote-intro p { font-size: var(--fs-base); }

.quote-builder {
  border: 1px solid var(--wash-deep); border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 38px -26px rgba(20, 48, 42, 0.5);
}

.qb-total {
  position: sticky; top: 78px; z-index: 4;
  background: var(--ink); color: var(--white);
  padding: 1.4rem 1.6rem 1.2rem;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
}
.qb-total-head { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.qb-price {
  font-family: var(--display); font-variation-settings: "SOFT" 25, "WONK" 1, "opsz" 144;
  font-weight: 600; font-size: 3rem; line-height: 1; letter-spacing: -0.03em;
}
.qb-unit { font-size: var(--fs-sm); color: #A9C0B9; }

.qb-lines { width: 100%; border-collapse: collapse; margin-top: 0.9rem; }
.qb-lines tr { border-top: 1px solid #2B4A43; }
.qb-lines th, .qb-lines td {
  padding: 0.42rem 0; font-size: var(--fs-xs); font-weight: 400;
  color: #C9DCD5; text-align: left;
}
.qb-lines td { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

.qb-fields { padding: 1.6rem; }
.qb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.qb-addons { display: grid; gap: 0.55rem; }
.qb-fields .field:last-child { margin-bottom: 0; }
.qb-fields fieldset { margin-bottom: 0; }

.qb-foot {
  padding: 1.5rem 1.6rem 1.7rem; background: var(--wash);
  border-top: 1px solid var(--wash-deep);
  border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
}
.qb-note { font-size: var(--fs-xs); color: var(--stone); margin: 0 0 0.8rem; }
.qb-note:empty { display: none; }
.qb-disclaimer {
  font-size: var(--fs-xs); color: var(--ink); margin: 0 0 1.2rem;
  padding-left: 0.85rem; border-left: 3px solid var(--brass); line-height: 1.5;
}

@media (max-width: 1000px) {
  .quote-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-builder { max-width: 520px; }
}
@media (max-width: 560px) {
  .qb-fields, .qb-total, .qb-foot { padding-left: 1.15rem; padding-right: 1.15rem; }
  .qb-price { font-size: 2.5rem; }
}

/* ---------- Forms ---------- */
label { display: block; font-size: var(--fs-sm); font-weight: 700; margin-bottom: 0.3rem; color: var(--ink); }
.field { margin-bottom: 1.15rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], select, textarea {
  width: 100%; font: inherit; font-size: var(--fs-base);
  padding: 0.65rem 0.75rem; color: var(--ink); background: var(--white);
  border: 1px solid var(--wash-deep); border-radius: var(--radius);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235E6E6A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; padding-right: 2.2rem;
}
textarea { min-height: 130px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: var(--river); }
.field-hint { font-size: var(--fs-xs); color: var(--stone); margin: 0.3rem 0 0; }
.req { color: var(--brass); font-weight: 700; }

fieldset { border: 0; padding: 0; margin: 0 0 1.15rem; }
legend { font-size: var(--fs-sm); font-weight: 700; padding: 0; margin-bottom: 0.5rem; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0.5rem 1rem; }
.check {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: var(--fs-sm); font-weight: 400; margin: 0; cursor: pointer;
}
.check input { width: auto; margin: 0.28rem 0 0; accent-color: var(--river); flex: none; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }

.honeypot { position: absolute; left: -9999px; }

.form-card {
  background: var(--white); border: 1px solid var(--wash-deep);
  border-radius: var(--radius-lg); padding: 2rem;
}
@media (max-width: 520px) { .form-card { padding: 1.35rem; } }

.prefill-note {
  background: var(--wash); border-left: 3px solid var(--brass);
  padding: 0.9rem 1.1rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1.5rem;
}
.prefill-note p { margin: 0; font-size: var(--fs-sm); }

.summary-line {
  background: var(--wash); border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem; margin: 0 0 0.7rem; font-size: var(--fs-sm); font-weight: 500;
}
.link-btn {
  background: none; border: 0; padding: 0; font: inherit; font-size: var(--fs-sm);
  color: var(--river); text-decoration: underline; text-underline-offset: 3px; cursor: pointer;
}
.link-btn:hover { color: var(--river-lift); }

/* A single line standing in for a page title. The real <h1> is still there
   for search engines and screen readers, just not shown. */
.page-lede { padding: 2.5rem 0 0; }
.page-lede p {
  margin: 0; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
  font-size: var(--fs-md); color: var(--stone); max-width: none;
}
.page-lede a { font-weight: 700; color: var(--river); }

/* ---------- Content blocks ---------- */
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head p:last-child { margin-bottom: 0; }

.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.25rem; }
@media (max-width: 1000px) { .cols-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cols-4 { grid-template-columns: 1fr; gap: 1.75rem; } }
@media (max-width: 860px) { .cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cols-3, .cols-2 { grid-template-columns: 1fr; gap: 1.75rem; } }

.room-list { list-style: none; padding: 0; margin: 0; }
.room-list li {
  padding: 0.5rem 0 0.5rem 1.5rem; border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm); position: relative; margin: 0;
}
.room-list li::before {
  content: ""; position: absolute; left: 0; top: 1.02em;
  width: 8px; height: 2px; background: var(--river);
}
.room-head {
  font-family: var(--body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.06em; color: var(--brass); margin-bottom: 0.65rem;
}

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 2rem; grid-template-columns: repeat(3, 1fr); }
.steps li { counter-increment: step; margin: 0; padding-top: 1.1rem; border-top: 2px solid var(--ink); }
.steps li::before {
  content: counter(step); display: block;
  font-family: var(--display); font-variation-settings: "WONK" 1, "opsz" 60;
  font-size: 1.5rem; font-weight: 600; color: var(--brass); line-height: 1; margin-bottom: 0.6rem;
}
.steps h3 { font-size: var(--fs-md); margin-bottom: 0.35em; }
.steps p { font-size: var(--fs-sm); margin: 0; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 1.5rem; } }

.service-list { display: grid; gap: 0; }
.service-row { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row h3 { margin-bottom: 0.3em; }
.service-row p { margin: 0; font-size: var(--fs-sm); max-width: 58ch; }
.service-price {
  font-family: var(--display); font-variation-settings: "WONK" 1, "opsz" 60;
  font-size: var(--fs-lg); font-weight: 600; white-space: nowrap; color: var(--ink);
}
.service-price small { display: block; font-family: var(--body); font-size: var(--fs-xs); color: var(--stone); font-weight: 400; }
@media (max-width: 620px) {
  .service-row { grid-template-columns: 1fr; }
  .service-price { font-size: var(--fs-md); }
}

/* ---------- Photos ---------- */
.photo { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--wash); }
.photo::after {
  content: attr(data-placeholder);
  position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem;
  font-size: var(--fs-xs); color: var(--stone); text-align: center;
  background: repeating-linear-gradient(135deg, var(--wash) 0 12px, #DEEAE5 12px 24px);
  z-index: 0;
}
.photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.photo-band { height: clamp(240px, 34vw, 420px); border-radius: 0; }
.photo-4x3 { aspect-ratio: 4 / 3; }
.photo-1x1 { aspect-ratio: 1 / 1; }

/* ---------- Town list ---------- */
.towns { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.towns li {
  margin: 0; padding: 0.45rem 0.95rem; border: 1px solid var(--wash-deep);
  border-radius: 100px; font-size: var(--fs-sm); background: var(--white);
}
.band-ink .towns li { background: transparent; border-color: #3C5B53; color: var(--wash); }

/* ---------- Quote / testimonial ---------- */
.quote-block {
  border-left: 3px solid var(--brass); padding: 0.25rem 0 0.25rem 1.5rem; margin: 0;
}
.quote-block p {
  font-family: var(--display); font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 90;
  font-size: var(--fs-md); line-height: 1.45; margin-bottom: 0.6em;
}
.quote-block cite { font-style: normal; font-size: var(--fs-sm); color: var(--stone); }

/* ---------- Tables ---------- */
.rate-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); margin-bottom: 1.5rem; }
.rate-table caption { text-align: left; font-weight: 700; margin-bottom: 0.65rem; font-size: var(--fs-base); }
.rate-table th, .rate-table td { text-align: left; padding: 0.7rem 0.9rem 0.7rem 0; border-bottom: 1px solid var(--line); }
.rate-table th { font-weight: 700; }
.rate-table thead th { border-bottom: 2px solid var(--ink); }
.rate-table td:last-child, .rate-table th:last-child { text-align: right; padding-right: 0; white-space: nowrap; }

.table-scroll { overflow-x: auto; margin-bottom: 1.25rem; -webkit-overflow-scrolling: touch; }
.rate-card { min-width: 660px; background: var(--white); border-radius: var(--radius); }
.rate-card th, .rate-card td { padding: 0.75rem 0.9rem; vertical-align: top; }
.rate-card thead th { background: var(--ink); color: var(--white); border-bottom: 0; font-size: var(--fs-xs); line-height: 1.3; }
.rate-card thead th:first-child { border-top-left-radius: var(--radius); }
.rate-card thead th:last-child { border-top-right-radius: var(--radius); }
.rate-card tbody th { font-weight: 700; white-space: nowrap; }
.rate-card td { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.rate-card tbody tr:nth-child(even) { background: #F5F9F7; }
.th-note { display: block; font-weight: 400; font-size: var(--fs-xs); opacity: 0.72; }
.rate-card tbody .th-note { opacity: 0.6; }

.callout {
  background: var(--white); border: 1px solid var(--wash-deep);
  border-left: 4px solid var(--brass); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.6rem; margin: 2rem 0 0; max-width: 640px;
}
.callout-lead {
  font-family: var(--display); font-variation-settings: "SOFT" 25, "WONK" 1, "opsz" 90;
  font-weight: 600; font-size: var(--fs-lg); line-height: 1.15; margin: 0 0 0.35rem;
}
.callout p:last-child { margin: 0; font-size: var(--fs-sm); color: var(--stone); }

.rate-details { border-top: 1px solid var(--wash-deep); margin-top: 2rem; }
.rate-details summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0;
  font-family: var(--body); font-weight: 700; font-size: var(--fs-base); color: var(--ink);
  display: flex; align-items: center; gap: 0.6rem;
}
.rate-details summary::-webkit-details-marker { display: none; }
.rate-details summary::before {
  content: "+"; display: grid; place-items: center; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--white); font-size: 0.9rem; line-height: 1;
}
.rate-details[open] summary::before { content: "\2212"; }
.rate-details summary:hover { color: var(--river); }
.rate-details-body { padding-bottom: 1rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .wrap { max-width: 660px; }
.cta-band p { margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  background: var(--ink); padding: 0.7rem var(--gutter);
  align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -6px 20px -12px rgba(0,0,0,0.5);
}
.sticky-cta span { color: var(--wash); font-size: var(--fs-sm); font-weight: 500; }
@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: #A9C0B9; padding: 3.5rem 0 2rem; font-size: var(--fs-sm); }
.footer a:not(.btn) { color: var(--wash); }
.footer h4 { color: var(--white); font-size: var(--fs-sm); margin-bottom: 0.8rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.45rem; }
.footer p { max-width: 40ch; }
.build-stamp { opacity: 0.35; font-size: 0.6875rem; letter-spacing: 0.04em; }
.footer-base {
  margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid #24443C;
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between;
  font-size: var(--fs-xs);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
