/* ================================================================
   PAGES.CSS — Alpha Omega Windows & Doors
   All page-specific section styles
================================================================ */

/* ── HOMEPAGE HERO ──────────────────────────────────────── */

.home-hero {
  min-height: 100vh;
  background: var(--brand-navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://alphaomegapropertyservices.com/wp-content/uploads/2020/07/hero-bg.jpg")
    center/cover no-repeat;
  opacity: 0.14;
}

/* Gradient overlays for depth */
.home-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--brand-navy), transparent);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 4rem 7rem 5rem;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.home-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Right side logo panel */
.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(230,145,56,0.28);
  border-radius: 8px;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 340px;
  width: 100%;
}

.hero-card img {
  width: 190px;
  height: auto;
}

.hero-card-divider {
  width: 44px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-card-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

/* ── HOMEPAGE SERVICES ─────────────────────────────────── */

.services-section {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.services-section .section-header {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: rgba(0,0,0,0.06);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
  cursor: default;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.service-card:hover { background: var(--brand-navy); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.7rem;
  transition: color 0.25s;
}

.service-card:hover h3 { color: #fff; }

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  transition: color 0.25s;
}

.service-card:hover p { color: rgba(255,255,255,0.55); }

.service-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
  min-height: 44px;
}

.service-link::after { content: "→"; }

.service-card:hover .service-link {
  color: var(--gold-light);
  gap: 10px;
}

/* ── HOMEPAGE ABOUT TEASER ─────────────────────────────── */

.about-teaser {
  background: var(--brand-navy);
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-teaser-text .section-title { color: #fff; }

.about-teaser-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.95;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.value-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: rgba(230,145,56,0.15);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3 3 7-6' stroke='%23e69138' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.about-teaser-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.about-stat {
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.about-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── HOMEPAGE PROCESS TEASER ───────────────────────────── */

.process-teaser {
  padding: var(--section-pad);
  background: var(--off-white);
}

.process-teaser .section-header {
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.process-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.process-steps-row::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: var(--brand-sand);
  z-index: 0;
}

.process-step-item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--brand-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 auto 1.25rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.process-step-item:hover .process-step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── HOMEPAGE REVIEWS TEASER ───────────────────────────── */

.reviews-teaser {
  padding: var(--section-pad);
  background: var(--light-blue);
}

.reviews-teaser .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.reviews-teaser .section-header-left { max-width: 480px; }

.reviews-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(15,31,53,0.06);
  border: 1px solid rgba(15,31,53,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(15,31,53,0.1);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.review-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.review-meta {
  font-size: 0.74rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ── WHY REPLACE PAGE ──────────────────────────────────── */

.why-intro {
  padding: 5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--warm-white);
}

.why-intro-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.why-stats-section {
  background: var(--brand-navy);
  padding: 5rem;
}

.why-stats-section .section-header { margin-bottom: 3.5rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
}

.stat-block {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}

.stat-block:hover { background: rgba(255,255,255,0.06); }

.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.why-benefits {
  padding: var(--section-pad);
  background: var(--off-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 6px 24px rgba(15,31,53,0.08);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(230,145,56,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.benefit-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.benefit-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.why-aluminum {
  padding: var(--section-pad);
  background: var(--brand-navy);
}

.aluminum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.aluminum-problems ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aluminum-problems li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.aluminum-problems li::before {
  content: "✕";
  color: var(--brand-terracotta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.aluminum-solutions ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aluminum-solutions li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.aluminum-solutions li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.aluminum-col-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.aluminum-col-title--bad { color: var(--brand-terracotta); }
.aluminum-col-title--good { color: var(--gold); }

/* ── PRODUCTS PAGE ─────────────────────────────────────── */

.products-intro {
  padding: 5rem 5rem 3rem;
  background: var(--warm-white);
}

.products-grid {
  padding: 0 5rem 5rem;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(15,31,53,0.1);
  transform: translateY(-4px);
}

.product-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.badge-entry {
  background: rgba(194,181,163,0.25);
  color: var(--brand-charcoal);
}

.badge-popular {
  background: rgba(230,145,56,0.15);
  color: #b46c1a;
}

.badge-premium {
  background: rgba(15,31,53,0.1);
  color: var(--brand-navy);
}

.product-card-header {
  background: var(--brand-navy);
  padding: 2rem 2rem 1.75rem;
}

.product-card-header-entry { background: #2a3a50; }
.product-card-header-popular { background: var(--brand-navy); }
.product-card-header-premium { background: #0a1825; }

.product-model {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.product-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.product-card-body {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex: 1;
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.product-feature::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.82rem;
  margin-top: 1px;
}

.products-comparison {
  padding: var(--section-pad);
  background: var(--off-white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2.5rem;
  background: var(--warm-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.comparison-table th {
  background: var(--brand-navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.comparison-table th:first-child {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.015);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 0.86rem;
}

.check { color: var(--gold); font-weight: 700; }
.dash { color: var(--text-light); }

/* ── PROCESS PAGE ──────────────────────────────────────── */

.process-intro {
  padding: 5rem 5rem 3rem;
  background: var(--warm-white);
  max-width: 780px;
}

.process-timeline {
  padding: 0 5rem 5rem;
  background: var(--warm-white);
}

.process-step-full {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
}

.process-step-full:last-child { border-bottom: none; }

.process-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.process-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(230,145,56,0.05);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step-connector {
  width: 1px;
  flex: 1;
  background: var(--border-gold);
  margin-top: 0.5rem;
  min-height: 40px;
}

.process-step-full:last-child .process-step-connector { display: none; }

.process-step-content { padding-top: 1rem; }

.process-step-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.process-step-content h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.process-step-content p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 600px;
  font-weight: 300;
}

.process-step-note {
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(230,145,56,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* ── ABOUT PAGE ────────────────────────────────────────── */

.about-story {
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  background: var(--warm-white);
}

.about-story-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-story-body strong {
  color: var(--brand-navy);
  font-weight: 600;
}

.about-story-aside {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.about-story-aside h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 1.25rem;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.about-values-section {
  background: var(--brand-navy);
  padding: var(--section-pad);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3rem;
}

.about-value-block {
  background: rgba(255,255,255,0.03);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: background 0.2s;
}

.about-value-block:hover { background: rgba(230,145,56,0.07); }

.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(230,145,56,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.about-value-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.about-value-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-value-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ── SERVICE AREAS PAGE ────────────────────────────────── */

.areas-intro {
  padding: 4rem 5rem 2rem;
  background: var(--warm-white);
  max-width: 680px;
}

.areas-section {
  padding: 0 5rem 5rem;
  background: var(--warm-white);
}

.areas-map-note {
  padding: 1rem 1.5rem;
  background: rgba(230,145,56,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.area-card {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}

.area-card:hover {
  border-color: var(--gold);
  background: rgba(230,145,56,0.04);
  transform: translateY(-2px);
}

.area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.area-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-navy);
}

.area-state {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1px;
}

.areas-broader {
  padding: 4rem 5rem;
  background: var(--off-white);
}

/* ── REVIEWS PAGE ──────────────────────────────────────── */

.reviews-rating-bar {
  padding: 3.5rem 5rem;
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.rating-big {
  text-align: center;
  padding-right: 4rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.rating-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.rating-stars-row {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 0.5rem 0;
}

.rating-stars-row svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.rating-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.rating-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.rating-badge-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  max-width: 220px;
}

.rating-badge-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}

.reviews-full-grid {
  padding: var(--section-pad);
  background: var(--off-white);
}

.reviews-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card-full {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 2rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.review-card-full:hover {
  box-shadow: 0 8px 30px rgba(15,31,53,0.09);
  transform: translateY(-3px);
}

/* ── FAQ PAGE ──────────────────────────────────────────── */

.faq-section {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.faq-section .section-header {
  max-width: 560px;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: var(--warm-white);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  min-height: 64px;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(230,145,56,0.04); }

.faq-question-text {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-align: left;
  line-height: 1.35;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.25s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-mid);
  transition: stroke 0.2s, transform 0.25s;
  stroke-width: 2;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-item.open .faq-question { background: rgba(230,145,56,0.04); }

.faq-answer {
  display: none;
  padding: 0 1.75rem 1.5rem;
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  max-width: 640px;
}

/* ── OTHER SERVICES PAGE ───────────────────────────────── */

.other-services-hero-ext {
  padding: var(--section-pad);
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.other-services-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.services-list-other {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.services-list-other li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.services-list-other li::before {
  content: "→";
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.other-services-card {
  background: var(--brand-navy);
  border-radius: 8px;
  padding: 2.5rem;
  border: 1px solid var(--border-gold);
}

.other-services-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.other-services-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* ── RESPONSIVE — PAGES ────────────────────────────────── */

@media (max-width: 1100px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { display: none; }
  .home-hero-content { padding: 7rem 3rem 5rem; max-width: none; }

  .about-teaser { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps-row { grid-template-columns: 1fr; }
  .process-steps-row::before { display: none; }
  .reviews-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .services-section { padding: var(--section-pad-sm); }
  .about-teaser { padding: var(--section-pad-sm); }
  .about-teaser-stats { grid-template-columns: 1fr 1fr; }
  .process-teaser { padding: var(--section-pad-sm); }
  .reviews-teaser { padding: var(--section-pad-sm); }
  .reviews-teaser .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .reviews-grid-3 { grid-template-columns: 1fr; }

  .why-intro { grid-template-columns: 1fr; padding: var(--section-pad-sm); gap: 2rem; }
  .why-stats-section { padding: var(--section-pad-sm); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-benefits { padding: var(--section-pad-sm); }
  .benefits-grid { grid-template-columns: 1fr; }
  .why-aluminum { padding: var(--section-pad-sm); }
  .aluminum-grid { grid-template-columns: 1fr; gap: 2rem; }

  .products-intro { padding: var(--section-pad-sm); }
  .products-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .products-comparison { padding: var(--section-pad-sm); }
  .comparison-table { font-size: 0.82rem; }
  .comparison-table td, .comparison-table th { padding: 0.85rem 1rem; }

  .process-intro { padding: var(--section-pad-sm); }
  .process-timeline { padding: 0 1.5rem 3rem; }
  .process-step-full { grid-template-columns: 56px 1fr; gap: 1.5rem; padding: 2rem 0; }

  .about-story { grid-template-columns: 1fr; padding: var(--section-pad-sm); gap: 2.5rem; }
  .about-values-section { padding: var(--section-pad-sm); }
  .about-values-grid { grid-template-columns: 1fr 1fr; }

  .areas-intro { padding: 3rem 1.5rem 1.5rem; }
  .areas-section { padding: 0 1.5rem 3rem; }
  .areas-broader { padding: var(--section-pad-sm); }
  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  .reviews-rating-bar { padding: 3rem 1.5rem; gap: 2rem; }
  .rating-big { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; width: 100%; }
  .reviews-full-grid { padding: var(--section-pad-sm); }
  .reviews-grid-full { grid-template-columns: 1fr; }

  .faq-section { padding: var(--section-pad-sm); }

  .other-services-hero-ext { grid-template-columns: 1fr; padding: var(--section-pad-sm); gap: 2.5rem; }
}

@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .about-teaser-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { padding: 0 1.5rem 3rem; }
}
