/* Austin the Roofer — premium residential marketing site
   Mobile-first, CSS only, no framework CDN */

:root {
  --navy: #1B2A4A;
  --navy-deep: #121c32;
  --ink: #1B2A4A;
  --ink-soft: #3d4a5c;
  --muted: #5c6b7a;
  --paper: #f7f5f1;
  --paper-2: #efece6;
  --white: #ffffff;
  --terracotta: #C45C26;
  --terracotta-dark: #a3481c;
  --terracotta-soft: #f3e4da;
  --line: #d9d3c9;
  --focus: #2b6cb0;
  --shadow: 0 14px 44px rgba(27, 42, 74, 0.1);
  --shadow-sm: 0 2px 10px rgba(27, 42, 74, 0.05);
  --radius: 14px;
  --max: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --display: Georgia, "Times New Roman", "Iowan Old Style", "Palatino Linotype", serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--terracotta-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--terracotta);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

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

.muted-footer {
  color: rgba(255, 255, 255, 0.55);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  position: relative;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 3.4rem; /* ~42px */
  width: auto;
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 1px;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem 1rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
}

.site-nav a:hover {
  background: var(--paper-2);
  color: var(--ink);
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 0.35rem;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

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

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost-light:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

/* ========== Hero (full-bleed) ========== */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("austin-hero.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Left-weighted navy so copy reads cleanly; photo stays visible on right */
  background:
    linear-gradient(
      90deg,
      rgba(18, 28, 50, 0.92) 0%,
      rgba(27, 42, 74, 0.82) 38%,
      rgba(27, 42, 74, 0.45) 62%,
      rgba(27, 42, 74, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(18, 28, 50, 0.35) 0%,
      transparent 28%,
      transparent 72%,
      rgba(18, 28, 50, 0.45) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 4rem;
}

.hero-copy {
  max-width: 36rem;
  color: var(--white);
}

.hero .eyebrow {
  color: #f0c4a8;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 5.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-wrap: balance;
}

.lede {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.6rem;
  line-height: 1.65;
}

.lede strong {
  color: var(--white);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin: 0 0 0.85rem;
}

/* ========== Trust strip ========== */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  gap: 1.35rem;
}

.trust-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--terracotta);
}

.trust-grid strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ========== Sections ========== */
.section {
  padding: 3.75rem 0;
}

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

.section-cta {
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-header h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.2;
}

.section-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* ========== Steps ========== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.35rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.95rem;
  row-gap: 0.4rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.steps li:hover {
  border-color: #c9b8a8;
  box-shadow: var(--shadow);
}

.step-num {
  grid-row: 1 / span 2;
  align-self: start;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.steps h3 {
  margin: 0;
  font-size: 1.12rem;
  align-self: center;
  letter-spacing: -0.01em;
}

.steps p {
  margin: 0;
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ========== Why Austin ========== */
.why-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

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

.feature-list li {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
}

.callout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--terracotta);
}

.callout-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.15rem;
  font-family: var(--display);
}

.callout-card ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.callout-card li {
  margin-bottom: 0.5rem;
}

.callout-card .muted {
  margin: 0;
  font-size: 0.92rem;
}

/* ========== Service cards ========== */
.cards {
  display: grid;
  gap: 1.1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: #c9b8a8;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ========== Service area ========== */
.area-grid {
  display: grid;
  gap: 1.85rem;
  align-items: start;
}

.area-note {
  color: var(--ink-soft);
  margin: 0;
}

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.area-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-sm);
}

/* ========== Form ========== */
.form-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

.checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: inset 0 0 0 3px var(--terracotta-soft);
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.45rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1.05rem;
}

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

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px var(--terracotta-soft);
  background: var(--white);
}

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

.form-fineprint {
  margin: 0.9rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #f0c4a8;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.footer-brand {
  margin: 0 0 1rem;
}

.footer-wordmark {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  /* Keep true brand colors: sit wordmark on a soft paper chip against dark footer */
  background: var(--paper);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-prowest {
  margin-top: 0.9rem;
  line-height: 1.55;
}

.disclaimer {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin: 0;
}

/* ========== Breakpoints ========== */
@media (min-width: 640px) {
  .logo img {
    height: 3.9rem; /* ~46px */
  }

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

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

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

  .area-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lead-form {
    padding: 1.85rem;
  }

  .hero {
    min-height: min(82vh, 680px);
  }

  .hero-inner {
    padding: 4.5rem 0 5rem;
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.45rem 0.7rem;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.4rem;
    padding-inline: 1.05rem !important;
  }

  .hero-copy {
    max-width: 38rem;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9rem;
  }

  .steps li {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding: 1.35rem 1.15rem;
  }

  .step-num {
    grid-row: auto;
    margin-bottom: 0.4rem;
  }

  .steps h3 {
    grid-column: 1;
  }

  .steps p {
    grid-column: 1;
  }

  .why-grid {
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2.75rem;
  }

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

  .area-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 2.75rem;
  }

  .form-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2.75rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 1.2fr;
    gap: 2.25rem;
  }

  .section {
    padding: 4.75rem 0;
  }

  .hero-overlay {
    background:
      linear-gradient(
        95deg,
        rgba(18, 28, 50, 0.9) 0%,
        rgba(27, 42, 74, 0.78) 34%,
        rgba(27, 42, 74, 0.35) 58%,
        rgba(27, 42, 74, 0.1) 100%
      ),
      linear-gradient(
        180deg,
        rgba(18, 28, 50, 0.25) 0%,
        transparent 30%,
        transparent 75%,
        rgba(18, 28, 50, 0.35) 100%
      );
  }
}

@media (min-width: 1100px) {
  .steps li {
    min-height: 100%;
  }

  .hero {
    min-height: 640px;
  }
}

/* Mobile: stronger overlay so text stays readable when photo is centered */
@media (max-width: 639px) {
  .hero-bg {
    background-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(18, 28, 50, 0.75) 0%,
        rgba(18, 28, 50, 0.88) 45%,
        rgba(18, 28, 50, 0.92) 100%
      ),
      linear-gradient(
        90deg,
        rgba(18, 28, 50, 0.55) 0%,
        transparent 100%
      );
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 2.75rem 0 3.25rem;
  }
}

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

  .btn,
  .card,
  .steps li {
    transition: none;
  }

  .card:hover {
    transform: none;
  }
}


/* Mobile hero C — circular portrait on solid navy (no background face) */
@media (max-width: 639px) {
  .logo img { height: 3.4rem !important; }
  .hero-bg,
  .hero-overlay {
    display: none !important;
  }
  .hero {
    background: linear-gradient(180deg, #121c32 0%, #1B2A4A 100%);
    min-height: 0;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 1.75rem 0 2.5rem;
  }
  .hero-portrait-wrap {
    width: min(72vw, 280px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.85);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  }
  .hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 88% 18%;
  }
  .hero-copy { max-width: none; }
  .hero-actions { justify-content: center; }
}
@media (min-width: 640px) {
  .hero-portrait-wrap { display: none; }
}


/* ========== License strip ========== */
.license-strip {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.license-inner {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

.license-badge strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.license-badge span {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.license-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  font-size: 0.92rem;
}

.license-meta span {
  color: var(--copper, #c9854a);
  font-weight: 700;
  margin-right: 0.25rem;
}

.license-meta em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-size: 0.85em;
}

.license-note {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .license-inner {
    grid-template-columns: 1.2fr 1.4fr;
    align-items: center;
  }
  .license-note {
    grid-column: 1 / -1;
  }
}



/* ========== Roof types (clean cards, no stock photos) ========== */
.roof-types-section {
  background: var(--paper);
}

.roof-type-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.roof-type-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(18, 28, 50, 0.06);
  border: 1px solid rgba(18, 28, 50, 0.08);
  display: flex;
  flex-direction: column;
}

.roof-type-media {
  display: none; /* hide stock photos */
}

.roof-type-body {
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 4px solid var(--terracotta);
}

.roof-type-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  color: var(--navy);
}

.roof-type-body p {
  margin: 0;
  color: rgba(18, 28, 50, 0.78);
  line-height: 1.55;
  font-size: 0.98rem;
}

@media (min-width: 640px) {
  .roof-type-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}


/* ========== Call Austin CTA ========== */
/* Keep light section-cta background; dark text like rest of site */
#call-austin.section-cta {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  color: var(--ink);
}

#call-austin .section-header h2 {
  color: var(--navy);
}

#call-austin .eyebrow {
  color: var(--terracotta);
}

#call-austin .section-intro {
  color: var(--ink-soft);
}

#call-austin .checklist li {
  color: var(--ink);
}

.call-austin-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.call-phone {
  display: inline-block;
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.1;
}

.call-phone:hover {
  color: var(--terracotta);
}

.call-hours {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

/* Ghost buttons on light bg need dark borders */
#call-austin .btn-ghost-light {
  color: var(--navy);
  border-color: rgba(18, 28, 50, 0.28);
  background: transparent;
}

#call-austin .btn-ghost-light:hover {
  border-color: var(--navy);
  background: rgba(18, 28, 50, 0.05);
  color: var(--navy);
}

.call-checklist {
  margin-top: 0.5rem;
}

.call-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.call-aside-label {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--navy);
}

.call-aside-text {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.lead-form-compact {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.lead-form-compact .field label {
  color: var(--ink);
}

.lead-form-compact input,
.lead-form-compact textarea {
  background: var(--paper);
  color: var(--ink);
}

.lead-form-compact .form-fineprint {
  color: rgba(18, 28, 50, 0.55);
}

@media (min-width: 860px) {
  .call-austin-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }
}


/* ========== Credential badges (Kyle-style logo strip) ========== */
.badge-strip {
  background: var(--white);
  padding: 1.75rem 0 1.85rem;
  border-bottom: 1px solid rgba(18, 28, 50, 0.08);
}

.badge-kicker {
  margin: 0 0 1.1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 28, 50, 0.5);
}

.badge-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.badge-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.badge-logos a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.badge-logos img {
  display: block;
  width: auto;
  max-width: 150px;
  height: 52px;
  object-fit: contain;
}

/* CertainTeed mark is square — keep it from dominating */
.badge-logos li:nth-child(3) img {
  height: 64px;
  max-width: 88px;
}

.badge-note {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(18, 28, 50, 0.58);
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.45;
}

@media (min-width: 720px) {
  .badge-logos {
    gap: 1.5rem 2.75rem;
  }
  .badge-logos img {
    height: 58px;
    max-width: 170px;
  }
  .badge-logos li:nth-child(3) img {
    height: 72px;
    max-width: 96px;
  }
}


/* Aesthetic safety — light sections always use dark text */
.section,
.section-alt,
.roof-types-section,
.badge-strip,
#service-area,
#call-austin {
  color: var(--ink);
}

.section .section-header h2,
.section-alt .section-header h2,
.roof-types-section .section-header h2,
#service-area .section-header h2,
#call-austin .section-header h2 {
  color: var(--navy);
}

.section .eyebrow,
.section-alt .eyebrow,
.roof-types-section .eyebrow,
#service-area .eyebrow {
  color: var(--terracotta-dark);
}

#service-area {
  background: var(--white);
}

#service-area .area-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#service-area .area-list li {
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 700;
}

@media (max-width: 639px) {
  #service-area .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Condensed regional service area */
#service-area .area-list {
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

#service-area .area-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
  padding: 1rem 1.1rem;
}

#service-area .area-list li strong {
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

#service-area .area-list li span {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (max-width: 639px) {
  #service-area .area-list {
    grid-template-columns: 1fr;
  }
}


/* ========== FAQ ========== */
.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--terracotta);
  font-weight: 700;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0.75rem 0 0.25rem;
  color: var(--ink-soft);
}

.area-links {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.location-page .location-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.location-btn-dark {
  color: var(--navy) !important;
  border-color: rgba(18, 28, 50, 0.28) !important;
}

.location-btn-dark:hover {
  border-color: var(--navy) !important;
  background: rgba(18, 28, 50, 0.05) !important;
  color: var(--navy) !important;
}

.location-page .feature-list {
  margin-top: 1.5rem;
}
