/* =========================================================
   ANDRUS WINDOW CO. — Premium Design System
   ========================================================= */

:root {
  --navy: #0e1b2c;
  --navy-deep: #07111c;
  --charcoal: #1f2a37;
  --gold: #c9a35c;
  --gold-bright: #e0bd75;
  --cream: #f6f1e7;
  --cream-warm: #efe6d4;
  --bone: #fbf8f2;
  --text: #1a1f29;
  --text-soft: #4a5363;
  --line: rgba(14, 27, 44, 0.08);
  --shadow-sm: 0 2px 8px rgba(14, 27, 44, 0.06);
  --shadow-md: 0 12px 40px rgba(14, 27, 44, 0.12);
  --shadow-lg: 0 24px 80px rgba(14, 27, 44, 0.18);
  --radius: 4px;
  --radius-lg: 10px;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.lead {
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.65;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section { padding: clamp(4rem, 9vw, 8rem) 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all 0.35s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.site-header.scrolled .logo {
  color: var(--navy);
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 2px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links > li > a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--bone);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}
.site-header.scrolled .nav-links > li > a:not(.btn) {
  color: var(--charcoal);
}
.nav-links > li > a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links > li > a:not(.btn):hover::after,
.nav-links > li > a:not(.btn).active::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%; left: -1rem;
  min-width: 280px;
  background: white;
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  margin-top: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  border-top: 2px solid var(--gold);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--navy);
  padding-left: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--navy);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--bone);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(246, 241, 231, 0.4);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn .arrow {
  transition: transform 0.3s ease;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--bone);
  transition: all 0.3s ease;
}
.site-header.scrolled .mobile-toggle span {
  background: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--navy-deep);
  color: var(--bone);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(7, 17, 28, 0.55) 0%, rgba(14, 27, 44, 0.30) 50%, rgba(7, 17, 28, 0.68) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2400&q=85');
  background-size: cover;
  background-position: center;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero h1 {
  color: var(--bone);
  margin-bottom: 1.75rem;
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero h1 .highlight {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 500;
}
.hero .lead {
  color: rgba(246, 241, 231, 0.92);
  font-size: 1.35rem;
  max-width: 660px;
  margin-bottom: 2.75rem;
  font-weight: 400;
  line-height: 1.55;
}
.hero-eyebrow {
  font-size: 0.82rem !important;
  letter-spacing: 0.26em !important;
  font-weight: 700 !important;
}
.hero-actions .btn {
  padding: 1.05rem 2.1rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}
.hero-meta-item .num {
  font-size: 2.8rem;
}
.hero-eyebrow {
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-meta {
  position: absolute;
  bottom: 3rem;
  left: 0; right: 0;
  z-index: 2;
}
.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 241, 231, 0.18);
}
.hero-meta-item .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-bright);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-meta-item .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.7);
}

/* ---------- Section Headers ---------- */
.section-head {
  max-width: 820px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 1.25rem; }

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  background: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 27, 44, 0.6) 100%);
}
.service-card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  z-index: 2;
}
.service-card-body {
  padding: 1.75rem 1.6rem 1.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  margin-bottom: 0.7rem;
}
.service-card-body p {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: 0.96rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold);
  width: fit-content;
  transition: all 0.3s ease;
}
.service-card:hover .service-card-link {
  color: var(--gold);
  gap: 0.85rem;
}

/* ---------- About strip ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-img::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--gold);
  z-index: -1;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.split-content .signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* ---------- Process ---------- */
.process-section {
  background: var(--cream);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.process-step {
  position: relative;
}
.process-step-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.process-step h3 { margin-bottom: 0.75rem; }
.process-step p { color: var(--text-soft); }

/* ---------- Reviews ---------- */
.reviews-section {
  background: var(--navy);
  color: var(--bone);
}
.reviews-section h2 { color: var(--bone); }
.reviews-section .eyebrow { color: var(--gold-bright); }
.reviews-section .lead { color: rgba(246, 241, 231, 0.75); margin: 0 auto; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(246, 241, 231, 0.06);
  padding: 1.2rem 1.8rem;
  border: 1px solid rgba(246, 241, 231, 0.12);
  margin-top: 2rem;
}
.google-badge .stars {
  color: #fbbc05;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.google-badge-text {
  text-align: left;
}
.google-badge .rating {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--bone);
  line-height: 1;
}
.google-badge .label {
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.7);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 4rem;
}
.review-card {
  background: rgba(246, 241, 231, 0.04);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(246, 241, 231, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.review-card:hover {
  background: rgba(201, 163, 92, 0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.review-stars {
  color: #fbbc05;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.review-text {
  color: rgba(246, 241, 231, 0.9);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(246, 241, 231, 0.15);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.review-name {
  font-weight: 600;
  color: var(--bone);
  font-size: 0.95rem;
}
.review-location {
  font-size: 0.78rem;
  color: rgba(246, 241, 231, 0.6);
}
.review-source {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.7;
}

/* ---------- Suppliers ---------- */
.suppliers-section { background: var(--bone); }
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  align-items: center;
}
.supplier-card {
  background: white;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.supplier-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.supplier-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.supplier-card img.brand-logo {
  width: 100%;
  max-width: 170px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.supplier-card:hover img.brand-logo { transform: scale(1.04); }

/* ---------- CTA strip ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--bone);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/exteriors/red-brick-two-story-texas.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  color: var(--bone);
  margin-bottom: 1.25rem;
}
.cta-section .lead {
  color: rgba(246, 241, 231, 0.85);
  margin: 0 auto 2.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(246, 241, 231, 0.75);
  padding: 5rem 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo { color: var(--bone); }
.footer-brand p {
  margin-top: 1.2rem;
  color: rgba(246, 241, 231, 0.6);
  max-width: 280px;
  line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  color: rgba(246, 241, 231, 0.75);
  font-size: 0.93rem;
}
.footer-col a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.social-link {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(246, 241, 231, 0.2);
  color: rgba(246, 241, 231, 0.85);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.social-link svg { width: 18px; height: 18px; }

/* Footer "Areas We Serve" compact city link list (site-wide internal linking for SEO) */
.footer-areas {
  border-top: 1px solid rgba(246, 241, 231, 0.1);
  padding-top: 2rem;
  margin-bottom: 2.5rem;
}
.footer-areas h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}
.footer-areas-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
}
.footer-areas-links a {
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.6);
  white-space: nowrap;
}
.footer-areas-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 231, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(246, 241, 231, 0.55);
}

/* ---------- Service detail page ---------- */
.page-hero {
  padding: 180px 0 5rem;
  background: var(--navy);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.page-hero.win::before { background-image: url('images/exteriors/red-brick-two-story-texas.png'); }
.page-hero.door::before { background-image: url('images/doors/front-door-rocking-chairs.jpg'); }
.page-hero.newcon::before { background-image: url('images/projects/new-window-brick-home.jpg'); }
.page-hero.guide::before { background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=2000&q=80'); }
.page-hero.install::before { background-image: url('images/projects/black-framed-windows-brick.jpg'); }
.page-hero.about::before { background-image: url('images/exteriors/pool-home-andrus-texas.jpg'); }
.page-hero.contact::before { background-image: url('images/exteriors/red-brick-two-story-texas.png'); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--bone); margin-bottom: 1rem; font-weight: 400; }
.page-hero h1 .highlight { color: var(--gold-bright); font-style: italic; }
.page-hero .lead { color: rgba(246, 241, 231, 0.88); }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(246, 241, 231, 0.6);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* Service page content */
.service-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.service-main h2 { margin-top: 3rem; margin-bottom: 1rem; }
.service-main h2:first-child { margin-top: 0; }
.service-main p { color: var(--text-soft); margin-bottom: 1.25rem; font-size: 1.05rem; }
.service-main ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.service-main ul li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
}
.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 14px; height: 14px;
  border: 2px solid var(--gold);
  border-right: none;
  border-top: none;
  transform: rotate(-45deg) translateY(-3px);
}
.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
.service-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}
.service-gallery img:hover {
  transform: scale(1.03);
}
.service-gallery .span2 { grid-column: span 2; aspect-ratio: 16 / 7; }

.sidebar {
  position: sticky;
  top: 110px;
  background: var(--cream);
  padding: 2.2rem 2rem;
  border-top: 3px solid var(--gold);
}
.sidebar h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.sidebar p { color: var(--text-soft); margin-bottom: 1.5rem; font-size: 0.96rem; }
.sidebar-list {
  list-style: none;
  margin: 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.sidebar-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--line);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list .key { color: var(--text-soft); }
.sidebar-list .val { color: var(--navy); font-weight: 600; }
.sidebar .btn { width: 100%; justify-content: center; }
.sidebar .phone {
  display: block;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 1.2rem;
}

/* FAQ */
.faq-section { background: var(--cream); }
.faq-grid { max-width: 880px; margin: 3rem auto 0; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-soft);
  padding: 0 1.6rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.6rem 1.5rem;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: white;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bone);
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  transition: all 0.25s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 163, 92, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-soft); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-detail h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.contact-detail a, .contact-detail span {
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--cream);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }
.trust-item .stars { color: #fbbc05; letter-spacing: 0.05em; }
.trust-item strong { color: var(--navy); font-weight: 600; }

/* ---------- Why Choose Us ---------- */
.why-section { background: var(--bone); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.why-card {
  background: white;
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.why-card-icon {
  width: 54px; height: 54px;
  background: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 1.4rem;
}
.why-card-icon svg { width: 26px; height: 26px; color: var(--gold); stroke-width: 1.8; }
.why-card h3 { margin-bottom: 0.6rem; font-size: 1.3rem; }
.why-card p { color: var(--text-soft); font-size: 0.96rem; line-height: 1.65; }

/* ---------- Areas Served ---------- */
.areas-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/exteriors/red-brick-two-story-texas.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(100%);
}
.areas-section .container { position: relative; z-index: 2; }
.areas-section h2 { color: var(--bone); }
.areas-section .eyebrow { color: var(--gold-bright); }
.areas-section .lead { color: rgba(246, 241, 231, 0.78); margin: 0 auto; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
  margin-top: 3.5rem;
}
.area-card {
  background: rgba(246, 241, 231, 0.04);
  border: 1px solid rgba(246, 241, 231, 0.1);
  padding: 1.5rem 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  color: rgba(246, 241, 231, 0.85);
}
.area-card:hover {
  background: rgba(201, 163, 92, 0.12);
  border-color: var(--gold);
  color: var(--bone);
  transform: translateY(-3px);
}
.area-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}
.area-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.55);
}

/* ---------- Projects Gallery ---------- */
.projects-section { background: var(--bone); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
  margin-top: 3.5rem;
}
.project-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 17, 28, 0.85) 100%);
  transition: opacity 0.3s ease;
}
.project-tile:hover img { transform: scale(1.08); }
.project-tile-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: var(--bone);
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.3s ease;
}
.project-tile:hover .project-tile-info { transform: translateY(0); opacity: 1; }
.project-tile-info .ptype {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 0.3rem;
}
.project-tile-info h4 {
  font-family: var(--font-serif);
  color: var(--bone);
  font-weight: 500;
  font-size: 1.25rem;
}
.project-tile.feat { grid-column: span 2; grid-row: span 2; }

/* ---------- Energy Savings ---------- */
.energy-section {
  background: var(--cream);
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.energy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.energy-content h2 { margin-bottom: 1.5rem; }
.energy-content p { color: var(--text-soft); margin-bottom: 1.2rem; font-size: 1.05rem; }
.energy-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.energy-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.energy-stat .stat-lbl {
  font-size: 0.86rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.energy-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.energy-img::before {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  z-index: -1;
}
.energy-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Financing ---------- */
.financing-section { background: var(--navy); color: var(--bone); }
.financing-section h2 { color: var(--bone); }
.financing-section .eyebrow { color: var(--gold-bright); }
.financing-section .lead { color: rgba(246, 241, 231, 0.78); }
.financing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.financing-features {
  list-style: none;
  margin-top: 2rem;
}
.financing-features li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
  color: rgba(246, 241, 231, 0.85);
}
.financing-features li:last-child { border: none; }
.financing-features .check {
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
}
.financing-cta {
  background: rgba(246, 241, 231, 0.05);
  padding: 2.5rem;
  border: 1px solid rgba(246, 241, 231, 0.1);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.financing-cta h3 { color: var(--bone); margin-bottom: 0.5rem; }
.financing-cta p { color: rgba(246, 241, 231, 0.7); margin-bottom: 1.5rem; font-size: 0.95rem; }
.financing-cta .btn { width: 100%; justify-content: center; }
.financing-cta .pricing {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-bright);
  display: block;
  margin: 0.5rem 0;
}
.financing-cta .pricing-lbl {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.6);
}

/* ---------- Compact Reviews Grid (when on home + condensed) ---------- */
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* ---------- Review Banner (auto-scrolling marquee) ---------- */
.review-banner {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
}
.review-banner-head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
}
.review-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(246, 241, 231, 0.06);
  border: 1px solid rgba(246, 241, 231, 0.14);
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.review-banner-badge .gstars { color: #fbbc05; font-size: 1.05rem; letter-spacing: 0.08em; }
.review-banner-badge .grating { font-family: var(--font-serif); font-size: 1.5rem; color: var(--bone); line-height: 1; }
.review-banner-badge .gcount { font-size: 0.82rem; color: rgba(246, 241, 231, 0.7); }
.review-banner-head h2 { color: var(--bone); }
.review-banner-head .eyebrow { color: var(--gold-bright); }

.review-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.review-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviewMarquee 60s linear infinite;
}
.review-track-wrap:hover .review-track { animation-play-state: paused; }
@keyframes reviewMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-chip {
  flex: 0 0 360px;
  width: 360px;
  background: rgba(246, 241, 231, 0.05);
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: 8px;
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.review-chip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.review-chip .rstars { color: #fbbc05; font-size: 0.95rem; letter-spacing: 0.08em; }
.review-chip .rtext {
  color: rgba(246, 241, 231, 0.9);
  font-size: 0.97rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-chip-author { display: flex; align-items: center; gap: 0.75rem; }
.review-chip-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center;
  font-weight: 600; font-family: var(--font-serif); font-size: 1rem;
  flex-shrink: 0;
}
.review-chip-name { font-weight: 600; color: var(--bone); font-size: 0.9rem; }
.review-chip-loc { font-size: 0.76rem; color: rgba(246, 241, 231, 0.6); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80%, 360px);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav-links.open { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  body.nav-open .mobile-cta-bar,
  body.nav-open .gr-badge { display: none; }
  .nav-links a { color: var(--bone); font-size: 1.05rem; }
  .nav-links .btn { background: var(--gold); color: var(--navy); margin-top: 1rem; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    margin: 0;
    border: none;
  }
  .dropdown-menu a { color: rgba(246, 241, 231, 0.75); padding: 0.5rem 0; border: none; font-size: 0.92rem; }
  .dropdown-menu a:hover { background: transparent; padding-left: 0.5rem; color: var(--gold); }
  .mobile-toggle { display: flex; z-index: 200; position: relative; }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--bone); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--bone); }

  .split, .contact-grid, .service-content {
    grid-template-columns: 1fr;
  }
  .service-content .sidebar { position: static; }
  .hero-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .energy-grid, .financing-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .project-tile { aspect-ratio: 4 / 3; height: auto; }
  .project-tile.feat { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 9; }
  .home-reviews-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; font-size: 0.82rem; }
  .review-chip { flex: 0 0 290px; width: 290px; }
}

/* Compact areas-served list on mobile so it doesn't take forever to scroll */
@media (max-width: 768px) {
  .areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .area-card {
    flex: 0 0 auto;
    padding: 0.55rem 0.95rem;
    aspect-ratio: auto;
  }
  .area-card .area-name { font-size: 0.9rem; margin: 0; }
  .area-card .area-label { display: none; }

  /* Center the hero content on mobile */
  .hero { text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-content .eyebrow,
  .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .section-head, .section-head.left { text-align: center; }
}

/* Areas Served — collapsible "More Areas" toggle */
.area-extra { display: none; }
.areas-grid.show-all .area-extra { display: block; }
.areas-toggle-wrap { text-align: center; margin-top: 1.75rem; }
.areas-toggle {
  background: transparent;
  border: 1px solid rgba(246, 241, 231, 0.4);
  color: var(--bone);
  padding: 0.85rem 1.7rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.areas-toggle:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.areas-grid.show-all + .areas-toggle-wrap .areas-toggle { /* keep visible to allow collapse */ }
@media (max-width: 768px) {
  .areas-grid.show-all .area-extra { display: flex; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-meta { position: static; padding-top: 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-gallery { grid-template-columns: 1fr; }
  .service-gallery .span2 { grid-column: span 1; }
}

/* ============ BLOG ============ */
.page-hero.blog::before { background-image: url('images/interiors/white-living-room-andrus.jpg'); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.blog-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.6rem; }
.blog-card h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; line-height: 1.25; color: var(--navy); margin-bottom: 0.7rem; }
.blog-card p { color: var(--text-soft); font-size: 0.96rem; line-height: 1.6; margin-bottom: 1.2rem; }
.blog-card .read { margin-top: auto; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }
.blog-card:hover .read { color: var(--gold); }

/* Article body */
.post-wrap { max-width: 768px; margin: 0 auto; }
.post-meta { font-size: 0.9rem; color: var(--text-soft); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.post-article { margin-top: 1rem; }
.post-article p { font-size: 1.1rem; line-height: 1.85; color: var(--charcoal); margin-bottom: 1.35rem; }
.post-article h2 { font-family: var(--font-serif); font-weight: 500; font-size: 1.95rem; line-height: 1.2; color: var(--navy); margin: 2.6rem 0 1.1rem; }
.post-article h3 { font-family: var(--font-serif); font-weight: 600; font-size: 1.35rem; color: var(--navy); margin: 1.8rem 0 0.8rem; }
.post-article ul, .post-article ol { margin: 0 0 1.5rem 1.3rem; }
.post-article li { font-size: 1.08rem; line-height: 1.7; color: var(--charcoal); margin-bottom: 0.6rem; }
.post-article a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.post-article a:hover { color: var(--gold); }
.post-article strong { color: var(--navy); font-weight: 600; }
.post-callout { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.3rem 1.6rem; margin: 2rem 0; }
.post-callout p { margin: 0; font-size: 1.05rem; line-height: 1.7; }
.post-author { display: flex; align-items: center; gap: 1rem; margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.post-author .pa-mark { width: 52px; height: 52px; flex: none; border-radius: 50%; background: var(--navy); color: var(--gold-bright); display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.5rem; }
.post-author .pa-name { font-weight: 600; color: var(--navy); }
.post-author .pa-role { font-size: 0.9rem; color: var(--text-soft); }
@media (max-width: 560px) { .post-article p, .post-article li { font-size: 1.02rem; } .post-article h2 { font-size: 1.6rem; } }

/* ============ FLOATING GOOGLE RATING BADGE ============ */
.gr-badge {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.95rem;
  box-shadow: 0 8px 28px rgba(7, 17, 28, 0.18);
  text-decoration: none;
  font-family: var(--font-sans);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gr-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(7, 17, 28, 0.24); }
.gr-badge .gr-g { width: 22px; height: 22px; flex: none; }
.gr-badge .gr-text { display: flex; flex-direction: column; line-height: 1.15; }
.gr-badge .gr-top { display: flex; align-items: center; gap: 0.4rem; }
.gr-badge .gr-score { font-weight: 700; font-size: 1.02rem; color: var(--navy); }
.gr-badge .gr-stars { color: #fbbc04; font-size: 0.95rem; letter-spacing: 0.5px; }
.gr-badge .gr-sub { font-size: 0.72rem; color: var(--text-soft); letter-spacing: 0.02em; }
@media (max-width: 560px) {
  .gr-badge { left: 12px; bottom: 12px; padding: 0.5rem 0.7rem; gap: 0.5rem; }
  .gr-badge .gr-stars { font-size: 0.82rem; }
  .gr-badge .gr-sub { font-size: 0.68rem; }
}

/* ============ FOOTER LEGAL LINKS ============ */
.footer-legal { display: inline-block; }
.footer-legal a { color: var(--gold-bright); text-decoration: none; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }

/* ============ STICKY MOBILE CALL/QUOTE BAR ============ */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  display: none;
}
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.95rem 0.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
}
.mobile-cta-bar a svg { width: 18px; height: 18px; }
.mobile-cta-bar .mcb-call { background: var(--navy); color: var(--bone); }
.mobile-cta-bar .mcb-quote { background: var(--gold); color: #1a1205; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; box-shadow: 0 -4px 20px rgba(7, 17, 28, 0.2); }
  body { padding-bottom: 56px; }
  .gr-badge { bottom: 70px; }
}

/* ============ MEET THE OWNER ============ */
.owner-section { background: var(--cream); }
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.owner-photo { position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.owner-photo img { width: 100%; height: auto; display: block; }
.owner-photo::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 76px; height: 76px;
  background: var(--gold);
  z-index: -1;
}
.owner-content h2 { margin-bottom: 1.25rem; }
.owner-content p { color: var(--text-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }
.owner-sign { font-family: var(--font-serif); font-style: italic; font-size: 1.55rem; color: var(--navy); margin-top: 1.25rem; }
.owner-role { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 0.35rem; }
@media (max-width: 980px) { .owner-grid { grid-template-columns: 1fr; } .owner-photo { order: -1; } }
