/* Aurelia Fountains — copper, limestone, and indigo water */

:root {
  --ink: #1c1612;
  --ink-soft: #5e5348;
  --copper: #c2643a;
  --copper-deep: #8a3a1c;
  --brass: #c9a06a;
  --navy: #1b2438;
  --navy-mid: #2c3a56;
  --limestone: #f3ead9;
  --stone: #e8dcc8;
  --sand: #d3c3a6;
  --ivory: #fffaf3;
  --focus: #c9a06a;
  --error: #9b2c2c;
  --radius: 8px;
  --shadow: 0 22px 50px rgba(28, 22, 18, 0.14);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--limestone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--copper-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

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

.sr-only {
  position: absolute;
  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: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--navy);
  color: var(--ivory);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 2px 10px rgba(27, 36, 56, 0.28);
}

.brand-mark--hero {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--brass) 45%, transparent),
    0 10px 28px rgba(12, 10, 8, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--copper);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(138, 58, 28, 0.32);
}

.btn-primary:hover {
  background: var(--copper-deep);
  color: var(--ivory);
}

.btn-secondary {
  background: transparent;
  border-color: var(--sand);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--copper);
  background: color-mix(in srgb, var(--brass) 18%, var(--ivory));
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: color-mix(in srgb, var(--ivory) 40%, transparent);
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--ivory) 12%, transparent);
  color: var(--ivory);
  border-color: var(--brass);
}

/* Hero */

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: end;
  color: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("images/hero-entry-sphere.jpg")
      center 68% / cover no-repeat,
    var(--navy);
  transform: scale(1.04);
  animation: hero-drift 28s var(--ease) infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(27, 36, 56, 0.55) 0%,
      rgba(27, 36, 56, 0.22) 42%,
      rgba(28, 22, 18, 0.72) 100%
    );
}

.hero-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.25rem 1fr 3.25rem;
  align-items: start;
  column-gap: 1rem;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 1rem auto 0;
  animation: rise-in 0.8s var(--ease) both;
}

.hero-frame .brand-mark--hero {
  justify-self: start;
  margin-top: 0.15rem;
}

.hero-brand-center {
  display: grid;
  justify-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3rem;
  min-width: 0;
  width: 100%;
}

.hero-frame-spacer {
  width: 3.25rem;
}

.brand-lockup {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
  text-align: center;
  width: 100%;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0;
  width: 100%;
  text-align: center;
}

.hero-nav a {
  color: color-mix(in srgb, var(--ivory) 78%, var(--brass));
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-nav a:hover {
  color: var(--ivory);
  border-bottom-color: var(--brass);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2.5rem));
  max-width: 720px;
  justify-self: center;
  align-self: start;
  text-align: center;
  margin: clamp(1.75rem, 7vh, 4rem) auto 3rem;
  padding: 0;
  animation: rise-in 0.9s var(--ease) 0.08s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.35rem, 6.4vw, 4.1rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.hero-lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  max-width: 38ch;
  margin-inline: auto;
  color: color-mix(in srgb, var(--ivory) 86%, var(--brass));
  margin-bottom: 1.35rem;
}

.quote-cards {
  width: min(100%, 36rem);
  margin: 0 auto 1.35rem;
  text-align: center;
  position: relative;
  z-index: 4;
  overflow: visible;
}

.quote-card {
  background: var(--ivory);
  color: var(--ink);
  border-radius: 4px;
  padding: 1.3rem 1.25rem 1.4rem;
  box-shadow:
    0 22px 48px rgba(12, 10, 8, 0.32),
    inset 0 3px 0 var(--copper);
  animation: rise-in 0.45s var(--ease) both;
  text-align: center;
  overflow: visible;
}

.quote-card[hidden] {
  display: none !important;
}

.quote-card-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-deep);
  text-align: center;
}

.quote-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--ink);
  text-align: center;
}

.quote-card-copy {
  margin: 0 0 1rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
}

.quote-card-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.quote-card .hero-quote-search,
.quote-card .quote-contact-form {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.quote-card .hero-search-hint {
  text-align: center;
  color: var(--ink-soft);
}

.quote-card .hero-search-hint[data-kind="ok"] {
  color: var(--copper-deep);
}

.quote-card .hero-search-hint[data-kind="warn"] {
  color: var(--copper-deep);
}

.quote-card .hero-search-bar {
  background: var(--limestone);
  box-shadow: none;
  border: 1px solid var(--sand);
}

.quote-back {
  margin-top: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--copper-deep);
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  display: block;
  width: 100%;
  text-align: center;
}

.quote-back:hover {
  color: var(--ink);
}

.quote-card--success .btn {
  width: 100%;
}

.hero-quote-search {
  width: min(100%, 34rem);
  margin: 0 auto;
  text-align: center;
}

.hero-search-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--ivory) 96%, transparent);
  box-shadow:
    0 18px 40px rgba(12, 10, 8, 0.28),
    0 0 0 1px color-mix(in srgb, var(--ivory) 30%, transparent);
  position: relative;
}

.hero-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
}

.hero-search-bar input {
  flex: 1 1 12rem;
  min-width: 0;
  height: 3rem;
  border: none;
  background: transparent;
  padding: 0 0.75rem 0 2.65rem;
  font: inherit;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
}

.hero-search-bar input::placeholder {
  color: color-mix(in srgb, var(--ink-soft) 80%, transparent);
}

.hero-search-btn {
  flex: 0 0 auto;
  height: 3rem;
  min-height: 3rem;
  margin: 0;
  border-radius: 6px;
  padding-inline: 1.15rem;
  white-space: nowrap;
}

.hero-search-hint {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  text-align: center;
  color: color-mix(in srgb, var(--ivory) 82%, var(--brass));
  line-height: 1.4;
}

.hero-search-hint[data-kind="warn"] {
  color: #f3d2a8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.75rem;
}

.section h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  max-width: 16ch;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 50ch;
  font-size: 1.06rem;
}

.how {
  background:
    radial-gradient(circle at 50% -10%, color-mix(in srgb, var(--brass) 28%, transparent), transparent 42%),
    linear-gradient(180deg, var(--stone) 0%, var(--limestone) 55%);
  text-align: center;
}

.how .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how .eyebrow,
.how h2,
.how .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.how h2 {
  max-width: 14ch;
}

.how .section-lead {
  max-width: 42ch;
  margin-bottom: 0;
}

.steps {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.25rem;
  }
}

@media (min-width: 1060px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.steps li {
  position: relative;
  padding-top: 0.25rem;
  animation: rise-in 0.8s var(--ease) both;
  max-width: 28ch;
  margin-inline: auto;
}

.steps li:nth-child(2) {
  animation-delay: 0.06s;
}

.steps li:nth-child(3) {
  animation-delay: 0.12s;
}

.steps li:nth-child(4) {
  animation-delay: 0.18s;
}

.steps li:nth-child(5) {
  animation-delay: 0.24s;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 0.85rem;
}

.steps h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.steps p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.installs {
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, color-mix(in srgb, var(--brass) 22%, transparent), transparent 55%),
    linear-gradient(180deg, var(--limestone) 0%, var(--ivory) 50%, var(--stone) 100%);
  text-align: center;
}

.installs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.installs h2 {
  max-width: none;
  margin-inline: auto;
}

.installs .section-lead {
  margin-inline: auto;
  max-width: 44ch;
  text-align: center;
}

.install-grid {
  width: 100%;
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .install-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.install-card {
  text-align: left;
  background: var(--ivory);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--sand) 80%, transparent);
  box-shadow: 0 14px 36px rgba(28, 22, 18, 0.08);
  animation: rise-in 0.75s var(--ease) both;
}

.install-card:nth-child(2) {
  animation-delay: 0.08s;
}

.install-card:nth-child(3) {
  animation-delay: 0.16s;
}

.install-card-media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, transparent 50%, rgba(28, 22, 18, 0.38) 100%),
    var(--install-img) center / cover no-repeat;
  background-color: var(--stone);
}

.install-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: grid;
  gap: 0.3rem;
}

.install-card h3 {
  font-size: 1.18rem;
  margin: 0;
}

.install-card-meta {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--copper-deep);
}

.install-card-note {
  margin: 0.25rem 0 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.installs-footnote {
  margin: 1.35rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.help-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.why {
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(201, 160, 106, 0.18), transparent 50%),
    linear-gradient(165deg, #1b2438 0%, #241c16 55%, #1c1612 100%);
  color: var(--limestone);
}

.why .eyebrow {
  color: var(--brass);
}

.why .section-lead {
  color: color-mix(in srgb, var(--limestone) 78%, var(--brass));
}

.why-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
    gap: 4rem;
  }
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--limestone) 16%, transparent);
}

.why-list li {
  display: grid;
  gap: 0.2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--limestone) 16%, transparent);
}

.why-list strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.why-list span {
  color: color-mix(in srgb, var(--limestone) 70%, var(--brass));
  font-size: 0.98rem;
}

.quote {
  background:
    linear-gradient(180deg, var(--limestone), var(--stone) 42%, var(--limestone));
}

.quote-shell {
  display: grid;
  gap: 1.5rem;
  max-width: 40rem;
  margin-inline: auto;
}

.quote-intro {
  text-align: center;
}

.quote-intro h2 {
  max-width: none;
  margin-bottom: 0;
}

.form-panel {
  background: var(--ivory);
  border: 1px solid color-mix(in srgb, var(--sand) 80%, transparent);
  border-radius: 4px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  animation: rise-in 0.75s var(--ease) both;
}

.progress {
  height: 3px;
  background: var(--stone);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--brass), var(--copper-deep));
  transition: width 0.4s var(--ease);
}

.form-step-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.form-step {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.form-step[hidden] {
  display: none !important;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.optional {
  font-weight: 500;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--sand);
  border-radius: 6px;
  background: var(--limestone);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 6rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--ivory);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brass) 35%, transparent);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--error);
}

.address-wrap {
  position: relative;
}

.address-wrap .address-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.address-wrap input {
  padding-left: 2.55rem;
}

.address-status {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.address-status[data-kind="ok"] {
  color: var(--copper-deep);
}

.address-status[data-kind="warn"] {
  color: var(--error);
}

.places-field {
  position: relative;
}

.places-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 10050;
  margin: 0;
  padding: 0.3rem 0;
  list-style: none;
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 4px;
  box-shadow: var(--shadow);
  max-height: 16rem;
  overflow: auto;
  text-align: left;
}

.hero-search-bar.places-field .places-suggest {
  left: 0.45rem;
  right: 0.45rem;
  top: auto;
  bottom: calc(100% + 0.3rem);
}

.places-suggest__item {
  display: grid;
  gap: 0.1rem;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  color: var(--ink);
  border: 0;
  background: transparent;
}

.places-suggest__item:hover,
.places-suggest__item:focus {
  background: color-mix(in srgb, var(--limestone) 80%, var(--brass));
}

.places-suggest__main {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.places-suggest__secondary {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

.places-service-anchor {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}

.pac-container {
  display: none !important;
}

.field-row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .field-row:has(.field:nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
  }
}

.field-hint {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.form-error {
  color: var(--error);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
  min-width: 8.5rem;
}

.result {
  animation: rise-in 0.55s var(--ease) both;
}

.result-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--copper-deep);
  margin: 0.25rem 0 0.75rem;
}

.result-copy {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer {
  background: var(--navy);
  color: color-mix(in srgb, var(--limestone) 75%, transparent);
  padding: 2.5rem 0 2.75rem;
}

.footer-inner {
  display: grid;
  gap: 0.85rem;
  max-width: 52ch;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--limestone);
  margin-bottom: 0.25rem;
}

.footer-meta {
  font-size: 0.88rem;
  opacity: 0.75;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: var(--brass);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--limestone);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Support page */

body.support-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(201, 160, 106, 0.2), transparent 50%),
    linear-gradient(165deg, #1b2438 0%, #241c16 55%, #1c1612 100%);
  color: var(--limestone);
}

.support-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  width: min(40rem, calc(100% - 1.5rem));
  margin: 0 auto;
}

.support-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  text-decoration: none;
  color: inherit;
}

.support-brand:hover .support-brand-name,
.support-brand:focus-visible .support-brand-name {
  color: var(--brass);
}

.support-brand:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 6px;
  border-radius: 12px;
}

.support-brand .brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 10px;
}

.support-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ivory);
}

.support-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.7rem;
}

.support-shell h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--ivory);
  max-width: 16ch;
}

.support-lead {
  color: color-mix(in srgb, var(--limestone) 80%, var(--brass));
  max-width: 38ch;
  margin-bottom: 1.4rem;
}

.support-card {
  width: 100%;
  background: color-mix(in srgb, var(--ivory) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--brass) 35%, transparent);
  border-radius: 4px;
  padding: 1.25rem 1.2rem;
  margin-bottom: 1.4rem;
  text-align: left;
}

.support-card a {
  color: var(--brass);
  font-weight: 600;
}

.support-hours {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--limestone) 70%, transparent);
}

@media (max-width: 768px) {
  .shell {
    width: min(1120px, calc(100% - 1.35rem));
  }

  .section {
    padding: clamp(2.5rem, 8vw, 3.75rem) 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .hero-frame {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(1120px, calc(100% - 1.1rem));
    margin: 0.85rem auto 0;
    column-gap: 0;
  }

  .hero-frame .brand-mark--hero {
    justify-self: center;
    margin: 0 0 0.4rem;
  }

  .hero-frame-spacer {
    display: none;
  }

  .brand-mark--hero {
    width: 2.5rem;
    height: 2.5rem;
  }

  .brand-lockup {
    font-size: clamp(1.25rem, 5.8vw, 1.7rem);
  }

  .hero-nav {
    gap: 0.35rem 0.85rem;
    font-size: 0.8rem;
  }

  .hero-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.25rem 0.35rem;
  }

  .hero-content {
    width: min(720px, calc(100% - 1.1rem));
    margin: 1.1rem auto 2rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.45rem);
  }

  .hero-lead {
    font-size: 0.98rem;
    max-width: 34ch;
  }

  .quote-cards {
    width: 100%;
  }

  .quote-card {
    padding: 1.05rem 0.95rem 1.15rem;
  }

  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .hero-search-icon {
    top: calc(0.5rem + 1.5rem);
    transform: translateY(-50%);
    left: 1.05rem;
  }

  .hero-search-bar input {
    flex: 0 0 auto;
    width: 100%;
    height: 3rem;
    font-size: 16px;
    padding: 0 0.75rem 0 2.55rem;
  }

  .hero-search-btn {
    width: 100%;
  }

  .places-suggest {
    max-height: 40vh;
  }

  .hero-search-bar.places-field .places-suggest {
    left: 0.35rem;
    right: 0.35rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .how h2 {
    max-width: 12ch;
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }

  .steps {
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .help-actions {
    width: 100%;
    flex-direction: column;
  }

  .help-actions .btn {
    width: 100%;
  }

  .why h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
    max-width: 14ch;
  }

  .form-panel {
    padding: 1.1rem 0.95rem 1.25rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 3.05rem;
  }

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

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .btn-primary,
  .form-actions .btn-secondary {
    width: 100%;
    min-width: 0;
  }

  .result-actions {
    flex-direction: column;
  }

  .result-actions .btn {
    width: 100%;
  }

  .site-footer {
    padding: 2rem 1rem 2.5rem;
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner {
    max-width: none;
  }
}

@media (max-width: 380px) {
  .hero-nav {
    gap: 0.1rem 0.55rem;
    font-size: 0.76rem;
  }

  .brand-lockup {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-content,
  .steps li,
  .form-panel,
  .result,
  .quote-card,
  .install-card {
    animation: none;
  }

  .hero-media {
    transform: none;
  }
}
