/* Flow Through Home Improvements - styles.css */
/* Colors: #1A1A1A (charcoal), #00B5B5 (teal), #FFFFFF (white) */
/* Mobile-first, Inter font */


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

:root {
  --charcoal: #1A1A1A;
  --teal: #00B5B5;
  --white: #FFFFFF;
  --light-gray: #F7F7F5;
  --mid-gray: #888888;
  --dark-gray: #2A2A2A;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
  background: var(--charcoal);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header-logo .logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.header-logo span {
  display: none;
}

.header-phone {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
  display: none;
}

.nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--charcoal);
  padding: 20px;
  gap: 16px;
  border-top: 1px solid var(--dark-gray);
}

.nav.active {
  display: flex;
}

.nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--teal);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HEADINGS (General Sans) ========== */
h1, h2, h3, h4,
.hero h1,
.section-title,
.page-header h1 {
  font-family: 'General Sans', 'DM Sans', sans-serif;
}

/* ========== HERO ========== */
.hero {
  background: var(--charcoal);
  padding: 60px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,181,181,0.15) 0%, rgba(26,26,26,0.75) 40%, rgba(26,26,26,0.85) 100%);
  pointer-events: none;
}

.hero h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
}

.hero h1 .teal {
  color: var(--teal);
}

.hero p {
  font-size: 17px;
  color: #CCCCCC;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}

.hero-phone {
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
  position: relative;
}

.hero-phone a {
  color: var(--teal);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--charcoal);
  padding: 40px 0;
  border-top: 1px solid var(--dark-gray);
  border-bottom: 1px solid var(--dark-gray);
}

.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 8px 0;
}

.stat-number {
  font-family: 'DM Mono', 'DM Sans', monospace;
  font-size: 24px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== SECTIONS ========== */
.section {
  padding: 60px 0;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card-image {
  width: 100%;
  height: 200px;
  background: #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 14px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--mid-gray);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ========== PROCESS STEPS ========== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 24px;
}

.process-number {
  font-family: 'DM Mono', monospace;
  font-size: 40px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.process-step p {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 48px;
  color: var(--teal);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  padding-top: 24px;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E0E0E0;
}

.faq-item:first-child {
  border-top: 1px solid #E0E0E0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--teal);
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content p {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* ========== CONTACT FORM ========== */
.form-section {
  background: var(--charcoal);
  padding: 60px 0;
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.form-info h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.form-info p {
  color: #CCCCCC;
  margin-bottom: 24px;
  line-height: 1.7;
}

.form-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.form-info-item .icon {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.contact-form {
  background: var(--dark-gray);
  padding: 32px;
  border-radius: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #CCCCCC;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #333;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group .error-msg {
  color: #FF6B6B;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #FF6B6B;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--teal);
}

.form-success p {
  color: #CCCCCC;
}

.form-error-msg {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(255,107,107,0.1);
  border-radius: 6px;
  color: #FF6B6B;
  margin-top: 16px;
  font-size: 14px;
}

/* ========== PORTFOLIO GRID ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.portfolio-image {
  width: 100%;
  height: 240px;
  background: #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 14px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item-body {
  padding: 20px;
}

.portfolio-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-item p {
  color: var(--mid-gray);
  font-size: 14px;
}

/* ========== CONTACT PAGE ========== */
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid #E0E0E0;
  font-size: 15px;
}

.hours-table td:first-child {
  font-weight: 600;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #D0D0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--charcoal);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,181,181,0.2) 0%, rgba(26,26,26,0.85) 50%, rgba(26,26,26,0.9) 100%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  margin-bottom: 28px;
  font-size: 17px;
  color: #CCC;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

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

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: #CCCCCC;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

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

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--mid-gray);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a:hover {
  color: var(--teal);
}

/* ========== STICKY CALL BUTTON (mobile) ========== */
.sticky-call {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0,181,181,0.4);
  z-index: 99;
  transition: transform 0.2s;
}

.sticky-call:hover {
  transform: scale(1.1);
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-header {
  background: var(--charcoal);
  padding: 48px 0;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-header p {
  color: #CCCCCC;
  margin-top: 8px;
  font-size: 17px;
}

/* ========== 404 ========== */
.error-page {
  text-align: center;
  padding: 120px 20px;
}

.error-page h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 16px;
}

.error-page p {
  font-size: 18px;
  color: var(--mid-gray);
  margin-bottom: 32px;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .stat-number {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .header-logo span {
    display: inline;
  }

  .header-phone {
    display: block;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 32px;
    border: none;
  }

  .hamburger {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero h1 {
    font-size: 52px;
  }

  .section {
    padding: 80px 0;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .cta-banner h2 {
    font-size: 36px;
  }

  .sticky-call {
    display: none;
  }
}

/* ========== ACCESSIBILITY ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus-visible for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.calculator__option:focus-visible,
.calculator__size-btn:focus-visible,
.calculator__roof-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.calculator__extra input:focus-visible + .calculator__extra-box {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.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;
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== EDITORIAL HOMEPAGE ========== */

/* Transparent header for homepage */
.header--transparent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 24px 0;
  z-index: 100;
  transition: background 0.3s;
}

.header--transparent.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(8px);
}

/* Hero — editorial full viewport */
.hero-editorial {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-editorial__bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.6) 60%, rgba(26,26,26,0.85) 100%);
  z-index: 1;
}

.hero-editorial__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-editorial__heading {
  font-family: 'General Sans', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-editorial__cta {
  display: inline-block;
  padding: 16px 40px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.3s, color 0.3s;
}

.hero-editorial__cta:hover {
  background: var(--white);
  color: var(--charcoal);
}

.hero-editorial__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 2;
}

.hero-editorial__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
  margin: 8px auto 0;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Intro — split 50/50 */
.intro {
  padding: 80px 0;
  background: var(--charcoal);
  color: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.intro__tagline {
  font-family: 'General Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 16px;
}

.intro__small {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.intro__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.intro__body {
  font-size: 15px;
  line-height: 1.8;
  color: #AAA;
}

/* Marquee ticker — service areas */
.ticker {
  background: var(--charcoal);
  border-top: 1px solid var(--dark-gray);
  border-bottom: 1px solid var(--dark-gray);
  overflow: hidden;
  padding: 20px 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

.ticker__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.ticker__content span {
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 16px;
}

.ticker__dot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }
}

/* Gallery strip — edge to edge images */
.gallery-strip {
  padding: 80px 0;
  background: var(--light-gray);
}

.gallery-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.gallery-strip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-strip__item:hover img {
  transform: scale(1.05);
}

.gallery-strip__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(26,26,26,0.8));
  color: var(--white);
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* Services editorial — tall image cards */
.services-editorial {
  padding: 80px 0;
  background: var(--charcoal);
}

.services-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.services-editorial__card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16/10;
}

.services-editorial__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-editorial__card:hover img {
  transform: scale(1.05);
}

.services-editorial__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(26,26,26,0.9));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-editorial__info h3 {
  font-family: 'General Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.services-editorial__arrow {
  font-size: 24px;
  color: var(--teal);
  transition: transform 0.2s;
}

.services-editorial__card:hover .services-editorial__arrow {
  transform: translateX(4px);
}

/* Stats editorial */
.stats-editorial {
  padding: 64px 0;
  background: var(--charcoal);
  border-top: 1px solid var(--dark-gray);
}

.stats-editorial__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-editorial__number {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 4px;
}

.stats-editorial__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA editorial */
.cta-editorial {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cta-editorial__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.8);
}

.cta-editorial__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-editorial__content h2 {
  font-family: 'General Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-editorial__content p {
  font-size: 16px;
  color: #AAA;
  margin-bottom: 32px;
}

.cta-editorial__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer editorial */
.footer-editorial {
  background: var(--charcoal);
  color: #999;
  padding: 64px 0 24px;
  border-top: 1px solid var(--dark-gray);
}

.footer-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-editorial__brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-editorial__logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.footer-editorial__legal {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #555;
  margin-top: 8px;
}

.footer-editorial__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-editorial__links a {
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-editorial__links a:hover {
  color: var(--teal);
}

.footer-editorial__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.footer-editorial__contact a,
.footer-editorial__contact span {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-editorial__contact a:hover {
  color: var(--teal);
}

.footer-editorial__bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #555;
}

.footer-editorial__social {
  display: flex;
  gap: 16px;
}

.footer-editorial__social a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-editorial__social a:hover {
  color: var(--teal);
}

/* Editorial responsive */
@media (min-width: 640px) {
  .gallery-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .stats-editorial__number {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .hero-editorial__heading {
    font-size: 72px;
  }

  .intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
  }

  .intro__tagline {
    font-size: 32px;
  }

  .services-editorial__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cta-editorial__content h2 {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .hero-editorial__heading {
    font-size: 96px;
  }

  .header--transparent .nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 32px;
    border: none;
  }

  .header--transparent .hamburger {
    display: none;
  }

  .header--transparent .header-phone {
    display: block;
  }
}

/* ========== SUB-PAGE EDITORIAL STYLES ========== */

/* Page header — editorial */
.page-header-editorial {
  background: var(--charcoal);
  padding: 100px 0 64px;
  color: var(--white);
}

.page-header-editorial__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.page-header-editorial h1 {
  font-family: 'General Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header-editorial__sub {
  font-size: 16px;
  color: #999;
  max-width: 500px;
  line-height: 1.6;
}

/* Service detail — alternating sections */
.service-detail {
  padding: 80px 0;
  background: var(--white);
}

.service-detail--alt {
  background: var(--light-gray);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.service-detail__image {
  border-radius: 8px;
  overflow: hidden;
}

.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.service-detail__content h2 {
  font-family: 'General Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.service-detail__content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 16px;
}

.service-detail__content ul {
  list-style: none;
  margin-bottom: 28px;
}

.service-detail__content ul li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--charcoal);
}

.service-detail__content ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

/* Portfolio editorial */
.portfolio-editorial {
  padding: 80px 0;
  background: var(--charcoal);
}

.portfolio-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.portfolio-editorial__item {
  background: var(--dark-gray);
  border-radius: 8px;
  overflow: hidden;
}

.portfolio-editorial__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.portfolio-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-editorial__item:hover .portfolio-editorial__image img {
  transform: scale(1.05);
}

.portfolio-editorial__body {
  padding: 24px;
}

.portfolio-editorial__body h3 {
  font-family: 'General Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.portfolio-editorial__body p {
  font-size: 14px;
  line-height: 1.7;
  color: #999;
}

/* Contact details section — dark */
.contact-details-section {
  padding: 64px 0;
  background: var(--light-gray);
}

.contact-details-section .contact-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-details-section h2 {
  font-family: 'General Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
}

.hours-table--dark td {
  border-color: #DDD;
}

/* 404 editorial */
.error-page-editorial {
  text-align: center;
  padding: 160px 20px 120px;
  background: var(--charcoal);
  color: var(--white);
}

.error-page-editorial h1 {
  font-family: 'General Sans', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page-editorial p {
  font-size: 18px;
  color: #999;
  margin-bottom: 32px;
}

/* Sub-page responsive */
@media (min-width: 768px) {
  .page-header-editorial {
    padding: 120px 0 80px;
  }

  .page-header-editorial h1 {
    font-size: 64px;
  }

  .service-detail__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .service-detail__grid--reverse .service-detail__image {
    order: 2;
  }

  .service-detail__grid--reverse .service-detail__content {
    order: 1;
  }

  .portfolio-editorial__grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ========== HOME CALCULATOR ========== */
.home-calculator {
  padding: 80px 0;
  background: var(--charcoal);
  color: var(--white);
}

.home-calculator__header {
  text-align: center;
  margin-bottom: 40px;
}

.home-calculator__heading {
  font-family: 'General Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.home-calculator__sub {
  font-size: 15px;
  color: #999;
}

.home-calculator__wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .home-calculator__heading {
    font-size: 36px;
  }

  .home-calculator__wrap {
    padding: 48px 40px;
  }
}

/* ========== QUOTE CALCULATOR ========== */
.calculator-section {
  padding: 64px 0 80px;
  background: var(--white);
}

.calculator {
  max-width: 720px;
  margin: 0 auto;
}

/* Step indicators */
.calculator__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.calculator__step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #CCC;
  transition: color 0.3s;
}

.calculator__step-dot span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.calculator__step-dot.active {
  color: var(--teal);
}

.calculator__step-dot.active span {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.calculator__step-dot.completed span {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.calculator__step-dot.completed {
  color: var(--teal);
}

.calculator__step-line {
  flex: 1;
  height: 2px;
  background: #DDD;
  margin: 0 8px;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.calculator__step-line.active {
  background: var(--teal);
}

/* Panels */
.calculator__panel {
  display: none;
}

.calculator__panel.active {
  display: block;
  animation: calcFadeIn 0.3s ease;
}

@keyframes calcFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.calculator__panel h2 {
  font-family: 'General Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.calculator__hint {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 32px;
}

/* Step 1: Project type cards */
.calculator__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calculator__option {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
  font-family: inherit;
}

.calculator__option:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(0,181,181,0.1);
}

.calculator__option.selected {
  border-color: var(--teal);
  box-shadow: 0 2px 16px rgba(0,181,181,0.15);
}

.calculator__option img {
  width: 80px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.calculator__option-info h3 {
  font-family: 'General Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.calculator__option-info p {
  font-size: 13px;
  color: var(--mid-gray);
  margin: 0;
}

/* Step 2: Size buttons */
.calculator__size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calculator__size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 24px 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.calculator__size-btn:hover {
  border-color: var(--teal);
}

.calculator__size-btn.selected {
  border-color: var(--teal);
  box-shadow: 0 2px 16px rgba(0,181,181,0.15);
}

.calculator__size-label {
  font-family: 'General Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}

.calculator__size-dim {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--teal);
  font-weight: 500;
}

.calculator__size-example {
  font-size: 12px;
  color: var(--mid-gray);
}

/* Step 3: Roof buttons */
.calculator__roof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.calculator__roof-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 24px 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.calculator__roof-btn:hover {
  border-color: var(--teal);
}

.calculator__roof-btn.selected {
  border-color: var(--teal);
  box-shadow: 0 2px 16px rgba(0,181,181,0.15);
}

.calculator__roof-icon {
  font-size: 28px;
  color: var(--teal);
  line-height: 1;
}

.calculator__roof-label {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
}

.calculator__roof-desc {
  font-size: 12px;
  color: var(--mid-gray);
}

/* Step 4: Extras checkboxes */
.calculator__extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.calculator__extra {
  cursor: pointer;
}

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

.calculator__extra-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-gray);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 16px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.calculator__extra input:checked + .calculator__extra-box {
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(0,181,181,0.1);
}

.calculator__extra:hover .calculator__extra-box {
  border-color: #CCC;
}

.calculator__extra input:checked + .calculator__extra-box {
  border-color: var(--teal);
}

.calculator__extra-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.calculator__extra-name {
  font-family: 'General Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  flex: 1;
}

.calculator__extra-price {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--teal);
  white-space: nowrap;
}

/* Nav buttons */
.calculator__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.calculator__back {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid-gray);
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}

.calculator__back:hover {
  color: var(--charcoal);
}

.calculator__get-quote {
  margin-left: auto;
}

/* Result */
.calculator__result {
  text-align: center;
  padding: 40px 0;
}

.calculator__result-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.calculator__result-price {
  font-family: 'General Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.calculator__result-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.calculator__result-tag {
  display: inline-block;
  background: var(--light-gray);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.calculator__result-note {
  font-size: 13px;
  color: var(--mid-gray);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.calculator__result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.calculator__restart {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

/* Calculator responsive */
@media (min-width: 640px) {
  .calculator__extras-grid {
    grid-template-columns: 1fr 1fr;
  }

  .calculator__result-price {
    font-size: 64px;
  }
}

@media (min-width: 768px) {
  .calculator__panel h2 {
    font-size: 36px;
  }
}

/* ========== CONTACT PAGE - TWO PATHS LAYOUT ========== */
.contact-paths {
  padding: 64px 0;
  background: var(--light-gray);
}

.contact-paths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.contact-paths__calc {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.contact-paths__calc-header {
  margin-bottom: 32px;
}

.contact-paths__calc-header h2 {
  font-family: 'General Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.contact-paths__calc .calculator {
  max-width: none;
}

.contact-paths__calc .calculator-section {
  padding: 0;
  background: none;
}

.contact-paths__info {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.contact-paths__info-inner {
  padding: 32px 24px;
}

.contact-paths__info h2 {
  font-family: 'General Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-paths__info-desc {
  font-size: 15px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-paths__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-paths__detail-icon {
  width: 36px;
  height: 36px;
  background: var(--dark-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-paths__detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
  margin-bottom: 2px;
}

.contact-paths__detail-value {
  font-size: 15px;
  color: var(--white);
}

.contact-paths__detail-value--phone {
  color: var(--teal);
  font-weight: 600;
  font-size: 18px;
}

.contact-paths__hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-gray);
}

.hours-table--compact td {
  padding: 6px 0;
  border-bottom: 1px solid var(--dark-gray);
  font-size: 14px;
  color: #999;
}

.hours-table--compact td:first-child {
  font-weight: 500;
  color: var(--white);
}

/* Wide form layout */
.form-section__header {
  margin-bottom: 0;
}

.contact-form--wide {
  max-width: none;
  background: none;
  padding: 0;
  border-radius: 0;
}

.form-row--3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Contact map full width */
.contact-map-full {
  max-width: 100%;
}

.contact-map-full .map-container {
  height: 350px;
}

/* Contact page responsive */
@media (min-width: 640px) {
  .form-row--3col {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .contact-paths__calc {
    padding: 40px 32px;
  }

  .contact-paths__info-inner {
    padding: 40px 32px;
  }

  .contact-paths__calc-header h2 {
    font-size: 26px;
  }

  .contact-paths__info h2 {
    font-size: 26px;
  }
}

@media (min-width: 1024px) {
  .contact-paths__grid {
    grid-template-columns: 3fr 2fr;
    gap: 32px;
  }

  .contact-paths__calc {
    padding: 48px 40px;
  }

  .contact-paths__info-inner {
    padding: 48px 40px;
  }
}

/* Honeypot (Netlify spam protection) */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
