@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --sage: #8f9e84;
  --sage-deep: #66745f;
  --sage-pale: #e6ebe2;
  --cream: #f5f2ec;
  --cream-light: #fcfaf6;
  --charcoal: #3b3f43;
  --charcoal-soft: #656a6e;
  --gold: #be9c5d;
  --white: #ffffff;
  --border: rgba(59, 63, 67, 0.14);
  --shadow: 0 24px 60px rgba(59, 63, 67, 0.12);
  --shadow-soft: 0 14px 36px rgba(59, 63, 67, 0.08);
  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream-light);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(190, 156, 93, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: 'Cinzel', Georgia, serif;
  line-height: 1.18;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.lead {
  color: var(--charcoal-soft);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  max-width: 690px;
}

.muted {
  color: var(--charcoal-soft);
}

.gold-rule {
  width: 70px;
  height: 2px;
  margin: 18px 0;
  background: var(--gold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--sage-deep);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(102, 116, 95, 0.22);
}

.btn-primary:hover {
  background: #586651;
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: var(--cream-light);
  color: var(--charcoal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(59, 63, 67, 0.07);
  background: rgba(252, 250, 246, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  width: min(360px, 42vw);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.btn) {
  position: relative;
  padding: 10px 0;
  color: var(--charcoal-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.btn)::after {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.btn):hover::after,
.site-nav > a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  content: '';
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded='true'] span {
  opacity: 0;
}

.menu-button[aria-expanded='true']::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded='true']::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 0 88px;
  background:
    radial-gradient(circle at 8% 12%, rgba(190, 156, 93, 0.12), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(143, 158, 132, 0.18), transparent 28%),
    var(--cream-light);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(143, 158, 132, 0.22);
  border-radius: 50%;
  content: '';
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 em {
  color: var(--sage-deep);
  font-style: normal;
}

.hero-copy .lead {
  margin-top: 24px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
}

.hero-note::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: '';
  box-shadow: 0 0 0 6px rgba(190, 156, 93, 0.12);
}

.hero-art {
  position: relative;
  z-index: 1;
}

.trust-strip {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: 1rem;
}

.section {
  padding: clamp(78px, 10vw, 130px) 0;
}

.section-soft {
  background: var(--cream);
}

.section-sage {
  background: var(--sage-deep);
  color: var(--white);
}

.section-sage h2,
.section-sage h3,
.section-sage .eyebrow {
  color: var(--white);
}

.section-sage .lead,
.section-sage .muted {
  color: rgba(255, 255, 255, 0.8);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  align-items: end;
  gap: 44px;
  margin-bottom: 46px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.card::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(143, 158, 132, 0.1);
  content: '';
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: 1.35rem;
}

.card h3 {
  margin-bottom: 13px;
}

.card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sage-deep);
  font-weight: 700;
  text-decoration: none;
}

.card-link::after {
  margin-left: 8px;
  content: '→';
  transition: transform 180ms ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.feature-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(143, 158, 132, 0.98), rgba(102, 116, 95, 0.96)),
    var(--sage-deep);
  box-shadow: var(--shadow);
}

.feature-panel::before,
.feature-panel::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: '';
}

.feature-panel::before {
  width: 340px;
  height: 340px;
  top: -90px;
  right: -70px;
}

.feature-panel::after {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -35px;
}

.feature-panel-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 6vw, 62px);
  color: var(--white);
}

.feature-panel h3 {
  max-width: 420px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.feature-panel p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.8);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-deep);
  content: '✓';
  font-size: 0.78rem;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.25rem;
}

.stat span {
  color: var(--charcoal-soft);
  font-size: 0.84rem;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-cloud span {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--charcoal-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 42px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(59, 63, 67, 0.05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--sage-deep);
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--charcoal-soft);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: var(--charcoal);
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  right: -70px;
  top: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: '';
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 730px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.page-hero {
  padding: 82px 0 72px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 15%, rgba(143, 158, 132, 0.18), transparent 30%),
    var(--cream);
}

.page-hero .lead {
  margin-top: 22px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--charcoal-soft);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--sage-deep);
  text-decoration: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-detail {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-detail h3 {
  margin-bottom: 14px;
}

.service-detail p {
  color: var(--charcoal-soft);
}

.service-detail ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--charcoal-soft);
}

.notice {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(190, 156, 93, 0.11);
  color: var(--charcoal-soft);
}

.notice strong {
  color: var(--charcoal);
}

.form-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--sage-deep);
  color: var(--white);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel .check-list li::before {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.quote-form {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-section + .form-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.form-section h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

label,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(59, 63, 67, 0.2);
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage-deep);
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 158, 132, 0.14);
}

[aria-invalid='true'] {
  border-color: #a94c4c;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.radio-option {
  position: relative;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-option label {
  min-height: 50px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(59, 63, 67, 0.2);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.radio-option input:checked + label {
  border-color: var(--sage-deep);
  background: var(--sage-pale);
  color: var(--sage-deep);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  min-height: auto;
  margin-top: 5px;
}

.checkbox-row label {
  margin: 0;
  color: var(--charcoal-soft);
  font-weight: 500;
}

.form-note {
  margin-top: 14px;
  color: var(--charcoal-soft);
  font-size: 0.82rem;
}

.site-footer {
  padding: 60px 0 30px;
  background: #303438;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 50px;
}

.footer-brand {
  width: min(360px, 100%);
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  text-decoration: none;
}

.centered {
  text-align: center;
}

.centered .lead {
  margin-inline: auto;
}

.spacer-top {
  margin-top: 28px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .brand-link {
    width: min(300px, 62vw);
  }

  .menu-button {
    display: block;
    flex: 0 0 48px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    padding: 34px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(252, 250, 246, 0.99);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a:not(.btn) {
    padding: 14px 0;
    font-size: 1.08rem;
  }

  .site-nav .btn {
    margin-top: 14px;
  }

  .hero-grid,
  .split-grid,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-width: 650px;
    margin-inline: auto;
  }

  .trust-grid,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-panel {
    position: static;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    padding-top: 58px;
  }

  .hero-art {
    margin-top: -10px;
  }

  .trust-grid,
  .cards-grid,
  .service-detail-grid,
  .stat-grid,
  .form-grid,
  .radio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .card,
  .service-detail,
  .quote-form,
  .contact-panel {
    padding: 24px;
  }

  .feature-panel,
  .feature-panel-inner {
    min-height: 440px;
  }

  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .field-full {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Supplied Hillside brand artwork */
.brand-link {
  width: min(430px, 43vw);
  height: 76px;
  align-items: center;
}

.brand-link img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.hero-art {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(59, 63, 67, 0.08);
  border-radius: 34px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 54% center;
}

.footer-brand {
  width: min(430px, 100%);
  padding: 0;
  filter: none;
  opacity: 1;
}

@media (max-width: 980px) {
  .brand-link {
    width: min(360px, 62vw);
    height: 68px;
  }

  .brand-link img {
    max-height: 68px;
  }

  .hero-art,
  .hero-art img {
    min-height: 430px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 82px;
  }

  .brand-link {
    width: min(275px, calc(100vw - 105px));
    height: 58px;
  }

  .brand-link img {
    max-height: 58px;
  }

  .hero-art,
  .hero-art img {
    min-height: 330px;
  }

  .hero-art {
    border-radius: 24px;
  }
}


/* Frequently asked questions page */
.faq-button-row {
  justify-content: center;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: start;
}

.faq-page-main {
  min-width: 0;
}

.faq-category + .faq-category {
  margin-top: 78px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

.faq-category h2 {
  max-width: 760px;
}

.faq-list-wide {
  max-width: none;
  margin-inline: 0;
}

.faq-contact-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.faq-contact-card p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--charcoal-soft);
}

.contact-kicker {
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-methods-dark a {
  color: var(--sage-deep);
}

@media (max-width: 980px) {
  .faq-page-layout {
    grid-template-columns: 1fr;
  }

  .faq-contact-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .faq-category + .faq-category {
    margin-top: 58px;
    padding-top: 54px;
  }
}
