/*
 * Holland Fix-It-All — Main Stylesheet
 * Handyman Services | Yorkville & Oswego, IL
 */

/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --navy:        #1B3A5C;
  --navy-dark:   #122844;
  --navy-light:  #234875;
  --orange:      #E8820C;
  --orange-dark: #C96F08;
  --orange-light:#F09A30;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FC;
  --gray-100:    #F2F4F7;
  --gray-200:    #E4E8EE;
  --gray-300:    #CED4DA;
  --gray-400:    #ADB5BD;
  --gray-500:    #6C757D;
  --text-dark:   #1A2332;
  --text-medium: #48576A;
  --text-light:  #718096;
  --star:        #FFB800;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.09);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.13);
  --shadow-xl: 0 16px 52px rgba(0,0,0,0.17);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;

  --ease: 0.28s ease;
  --ease-fast: 0.14s ease;

  --max-w: 1180px;
  --hh: 70px; /* header height */
}

/* ===========================
   Reset
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
ul   { list-style: none; }
a    { color: var(--orange); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--orange-dark); }

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; color: var(--text-dark); }
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.45rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }

/* ===========================
   Layout
   =========================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
}

.section       { padding: 84px 0; }
.section--alt  { background: var(--gray-100); }
.section--cta  {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e4a6e 100%);
  padding: 88px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -8%;
  width: 520px; height: 520px;
  border: 50px solid rgba(232,130,12,0.055);
  border-radius: 50%;
  pointer-events: none;
}
.section--cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section--cta p  { color: rgba(255,255,255,0.7); font-size: 1.08rem; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center p { max-width: 640px; margin-left: auto; margin-right: auto; }
.section__header h2 { margin-bottom: 12px; }
.section__header p  { font-size: 1.05rem; color: var(--text-medium); line-height: 1.72; }

.section__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease-fast);
  white-space: nowrap;
  text-decoration: none;
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,130,12,0.36);
}

.btn--lg  { padding: 17px 36px; font-size: 1.05rem; }
.btn--sm  { padding: 9px 18px; font-size: 0.83rem; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: none;
}

/* ===========================
   Header
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hh);
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled,
.header.header--solid {
  background: var(--navy-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hh);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.logo__text {
  font-family: var(--font-head);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo__accent { color: var(--orange); }

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 0.845rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--ease-fast);
}
.nav__link:hover      { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__link.active     { color: var(--orange); }
.nav__link.active::after { width: 100%; }

/* Header CTA */
.header__cta {
  padding: 9px 18px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-md);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--ease-fast);
}
.header__cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,130,12,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: all var(--ease-fast);
}
.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); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--navy-dark);
  z-index: 999;
  transition: right var(--ease);
  padding: calc(var(--hh) + 24px) 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  box-shadow: -4px 0 36px rgba(0,0,0,0.28);
}
.mobile-nav.open { right: 0; }

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--ease-fast);
}
.mobile-nav__link:hover,
.mobile-nav__link.active { color: var(--orange); }

.mobile-nav__cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--ease-fast);
}
.mobile-nav__cta:hover { background: var(--orange-dark); color: var(--white); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.48);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ===========================
   Hero — Homepage
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e4a6e 100%);
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 580px; height: 580px;
  border-radius: 50%;
  border: 60px solid rgba(232,130,12,0.055);
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -140px; right: 140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 36px solid rgba(232,130,12,0.038);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--hh) + 56px) 22px 88px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,130,12,0.14);
  border: 1px solid rgba(232,130,12,0.3);
  color: var(--orange-light);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(2.4rem, 5.8vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
  max-width: 560px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-size: 0.845rem;
  font-weight: 600;
}
.trust-item i { color: var(--orange); font-size: 0.88rem; }

/* ===========================
   Trust Bar
   =========================== */
.trust-bar {
  background: var(--white);
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.855rem;
  font-weight: 700;
  color: var(--text-dark);
}
.trust-bar__item i { color: var(--orange); font-size: 1rem; }
.trust-bar__div { width: 1px; height: 18px; background: var(--gray-300); }

/* ===========================
   Services Grid (Homepage)
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--gray-200);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,130,12,0.18);
}
.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 50px;
  height: 50px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.25rem;
  color: var(--navy);
  transition: all var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--orange);
  color: var(--white);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.62;
  margin: 0;
}

/* ===========================
   Service Detail (Services Page)
   =========================== */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child { border-bottom: none; }

.service-detail__icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--orange);
  flex-shrink: 0;
}

.service-detail__content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.service-detail__content p {
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}
.service-list li i {
  color: var(--orange);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ===========================
   Before & After Gallery
   =========================== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ba-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-card__img--full {
  grid-column: 1 / -1;
}
.ba-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.ba-label--before {
  background: var(--gray-500);
}
.ba-label--after {
  background: var(--orange);
}
.ba-card h3 {
  padding: 16px 20px 4px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--navy);
}
.ba-card p {
  padding: 0 20px 20px;
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===========================
   FAQ Section
   =========================== */
/* ===========================
   FAQ Section (index.html accordion)
   =========================== */
.faq {
  padding: 80px 0;
  background: var(--gray-50, #f8f9fa);
}
.faq .section-title {
  text-align: center;
  margin-bottom: 8px;
}
.faq .section-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.faq__grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
  padding: 0;
}
.faq__item:first-child {
  border-top: 1px solid var(--gray-200, #e5e7eb);
}
.faq__item summary {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq__item[open] summary::after {
  content: '−';
}
.faq__item summary:hover { color: var(--orange); }
.faq__item p {
  color: var(--text-medium);
  line-height: 1.75;
  font-size: 0.95rem;
  padding: 0 0 20px 0;
  margin: 0;
}
.faq__item a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}
.faq__item a:hover { text-decoration: underline; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-item p {
  color: var(--text-medium);
  line-height: 1.75;
  font-size: 0.95rem;
}
.faq-item a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.faq-item a:hover { text-decoration: underline; }

/* ===========================
   Blog Content
   =========================== */
.blog-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.blog-content h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.blog-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.blog-content ul {
  margin: 0.5rem 0 1.25rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.8;
}
.blog-content li { margin-bottom: 0.35rem; }
.blog-content a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.blog-content a:hover { text-decoration: underline; }

/* ===========================
   Features / Why Choose Us
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item { text-align: center; }
.feature-item__icon {
  width: 68px;
  height: 68px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--orange);
  transition: all var(--ease);
}
.feature-item:hover .feature-item__icon { background: var(--orange); color: var(--white); transform: scale(1.06); }
.feature-item h3 { font-size: 1rem; margin-bottom: 10px; }
.feature-item p  { font-size: 0.875rem; color: var(--text-medium); line-height: 1.65; }

/* ===========================
   Testimonials
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--orange);
  transition: transform var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card__stars {
  display: flex; gap: 3px; margin-bottom: 13px;
}
.testimonial-card__stars i { color: var(--star); font-size: 0.86rem; }

.testimonial-card__quote {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
}
.testimonial-card__quote::before {
  content: '\201C';
  font-size: 2.8rem;
  font-family: Georgia, serif;
  color: var(--orange);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 3px;
  opacity: 0.55;
}

.testimonial-card__author { display: flex; align-items: center; gap: 11px; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1px; }
.testimonial-card__location { font-size: 0.74rem; color: var(--text-light); }
.testimonial-card__service {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ===========================
   Service Area
   =========================== */
.area-section {
  background: var(--gray-100);
  padding: 52px 22px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}
.area-section p { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text-medium);
  font-family: var(--font-head);
  font-size: 0.845rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.area-tag i { color: var(--orange); font-size: 0.76rem; }

/* ===========================
   Page Header (inner pages)
   =========================== */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: calc(var(--hh) + 52px) 22px 64px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(232,130,12,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p  { color: rgba(255,255,255,0.7); font-size: 1.08rem; max-width: 560px; line-height: 1.7; }

/* ===========================
   About Page
   =========================== */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}
.about-photo-caption {
  margin-top: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-medium);
  text-align: center;
  max-width: 380px;
}

.about-block__content h2 { margin-bottom: 18px; }
.about-block__content p  { color: var(--text-medium); line-height: 1.78; }

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
}

.value-card__number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.875rem; color: var(--text-medium); line-height: 1.65; margin: 0; }

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  font-family: var(--font-head);
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--ease-fast);
}
.skill-item:hover { border-color: var(--orange); color: var(--navy); }
.skill-item i { color: var(--orange); font-size: 0.88rem; flex-shrink: 0; }

/* ===========================
   Contact Page
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info__phone {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  margin-bottom: 28px;
}
.contact-info__phone-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.44);
  margin-bottom: 8px;
}
.contact-info__phone-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  transition: color var(--ease-fast);
}
.contact-info__phone-number:hover { color: var(--orange-light); }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail  { display: flex; gap: 13px; align-items: flex-start; }
.contact-detail__icon {
  width: 40px; height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail__label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-detail__value { font-size: 0.93rem; color: var(--text-dark); font-weight: 600; }
.contact-detail__value a { color: var(--navy); text-decoration: none; transition: color var(--ease-fast); }
.contact-detail__value a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-form-box h2 { font-size: 1.45rem; margin-bottom: 6px; }
.contact-form-box .form-sub { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 28px; }

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

label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
label .req { color: var(--orange); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--ease-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C757D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,130,12,0.11);
}
textarea { resize: vertical; min-height: 110px; }

.form-error {
  display: none;
  font-size: 0.74rem;
  color: #DC3545;
  margin-top: 4px;
  font-weight: 600;
}
.form-group.error .form-error { display: block; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #DC3545; }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 11px;
  background: #D4EDDA;
  border: 1px solid #C3E6CB;
  color: #155724;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.93rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ===========================
   Reviews Page
   =========================== */
.reviews-summary {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 52px;
}
.reviews-score { text-align: center; flex-shrink: 0; }
.reviews-score__number {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.reviews-score__stars { display: flex; gap: 3px; justify-content: center; margin-bottom: 5px; }
.reviews-score__stars i { color: var(--star); font-size: 1.05rem; }
.reviews-score__count { font-size: 0.76rem; color: rgba(255,255,255,0.44); font-weight: 600; }

.reviews-divider { width: 1px; height: 90px; background: rgba(255,255,255,0.14); flex-shrink: 0; }

.reviews-breakdown { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.rating-row { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 0.74rem; font-weight: 600; }
.rating-row__label { color: rgba(255,255,255,0.52); width: 40px; flex-shrink: 0; }
.rating-row__track { flex: 1; height: 5px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.rating-row__fill  { height: 100%; background: var(--orange); border-radius: 100px; }
.rating-row__count { color: rgba(255,255,255,0.44); width: 18px; text-align: right; }

.reviews-cta { flex-shrink: 0; text-align: center; }
.reviews-cta p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 10px; }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 12px;
}
.review-card__author { display: flex; align-items: center; gap: 11px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__name { font-family: var(--font-head); font-size: 0.93rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.review-card__meta { font-size: 0.74rem; color: var(--text-light); }
.review-card__stars { display: flex; gap: 3px; margin-bottom: 12px; }
.review-card__stars i { color: var(--star); font-size: 0.82rem; }
.review-card__text { font-size: 0.9rem; color: var(--text-medium); line-height: 1.72; }
.review-card__service {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 100px;
}
.review-card__google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  flex-shrink: 0;
}

/* Avatar colors */
.av-navy   { background: #1B3A5C; }
.av-orange { background: #E8820C; }
.av-teal   { background: #0D7377; }
.av-purple { background: #6B46C1; }
.av-green  { background: #276749; }
.av-red    { background: #C53030; }
.av-indigo { background: #3730A3; }
.av-pink   { background: #9D174D; }
.av-brown  { background: #744210; }
.av-steel  { background: #2D3748; }

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}

.footer__brand .logo__text { color: var(--white); }
.footer__brand .logo--light .logo__text { color: var(--white); }
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.65;
  margin-top: 14px;
}

.footer__links h4,
.footer__services h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links a,
.footer__services a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.56);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--ease-fast);
}
.footer__links a:hover,
.footer__services a:hover { color: var(--orange); }

.footer__contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.footer__contact p i { color: var(--orange); margin-top: 2px; font-size: 0.88rem; flex-shrink: 0; }
.footer__contact p a { color: rgba(255,255,255,0.78); text-decoration: none; transition: color var(--ease-fast); }
.footer__contact p a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.36); margin: 0; }
.footer__bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.36); text-decoration: none; transition: color var(--ease-fast); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===========================
   Scroll Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===========================
   Utilities
   =========================== */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-orange { color: var(--orange) !important; }
.fw-700      { font-weight: 700; }
.mt-24       { margin-top: 24px !important; }
.mt-32       { margin-top: 32px !important; }
.mt-48       { margin-top: 48px !important; }
.mb-0        { margin-bottom: 0 !important; }
.mb-24       { margin-bottom: 24px !important; }
.mb-32       { margin-bottom: 32px !important; }
.mb-48       { margin-bottom: 48px !important; }

/* ===========================
   Responsive — Tablet (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-block       { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 100%; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .reviews-summary   { flex-direction: column; gap: 22px; }
  .reviews-divider   { width: 75%; height: 1px; }
  .skills-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   Responsive — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {
  :root { --hh: 60px; }

  .nav       { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }

  .section   { padding: 60px 0; }
  .section--cta { padding: 64px 22px; }

  .services-grid    { grid-template-columns: 1fr; }
  .ba-grid          { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr; gap: 28px; }
  .values-grid      { grid-template-columns: 1fr; }
  .skills-grid      { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .service-list     { grid-template-columns: 1fr; }
  .service-detail   { grid-template-columns: 1fr; gap: 14px; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  .hero__trust { flex-direction: column; gap: 10px; }

  .trust-bar__div { display: none; }

  .contact-form-box { padding: 24px 18px; }
  .reviews-summary  { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .skills-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .skills-grid   { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===========================
   Additional component styles
   (for homepage variant classes)
   =========================== */

/* Feature items (homepage why-us grid) */
.feature {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--ease);
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(232,130,12,0.18); }
.feature__icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--orange);
  transition: all var(--ease);
}
.feature:hover .feature__icon { background: var(--orange); color: var(--white); }
.feature h3 { font-size: 1rem; margin-bottom: 10px; }
.feature p  { font-size: 0.875rem; color: var(--text-medium); line-height: 1.65; margin: 0; }

/* Testimonials (homepage variant) */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--orange);
  transition: transform var(--ease);
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 13px; }
.testimonial__stars i { color: var(--star); font-size: 0.86rem; }
.testimonial__text {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial__author { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 0.86rem; }
.testimonial__author strong { color: var(--text-dark); font-weight: 700; }
.testimonial__author span  { color: var(--text-light); font-weight: 500; }

/* Area block (homepage service-area section) */
.area-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.area-block h2 { margin-bottom: 14px; }
.area-block p  { color: var(--text-medium); line-height: 1.72; margin-bottom: 22px; }
.area-block .area-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.area-block .area-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.area-block .area-list li i { color: var(--orange); }

/* CTA Card */
.cta-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  min-width: 280px;
  box-shadow: var(--shadow-xl);
}
.cta-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.cta-card p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 22px; }
.cta-card .btn--block { width: 100%; justify-content: center; }
.cta-card__sub {
  display: block;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .area-block { grid-template-columns: 1fr; gap: 32px; }
  .cta-card { min-width: auto; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Contact Page — Extended
   (form-left, info-right layout from hook)
   =========================== */
.contact-grid {
  grid-template-columns: 1.5fr 1fr; /* override: form on left is wider */
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.contact-form-wrap h2 { font-size: 1.45rem; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 28px; }

.contact-form-wrap label .required { color: var(--orange); margin-left: 2px; }
.contact-form-wrap label .optional { color: var(--text-light); font-weight: 500; font-size: 0.7rem; text-transform: none; letter-spacing: 0; }

.contact-form-wrap .form-success {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
}
.contact-form-wrap .form-success i { font-size: 2rem; }
.contact-form-wrap .form-success h3 { font-size: 1.1rem; color: #155724; }
.contact-form-wrap .form-success p  { font-size: 0.88rem; margin: 0; }

.btn--block { width: 100%; justify-content: center; }

/* Contact Info (right column) */
.contact-info { display: flex; flex-direction: column; gap: 18px; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info-card h3 i { color: var(--orange); font-size: 0.88rem; }
.contact-info-card p   { font-size: 0.875rem; color: var(--text-medium); margin-bottom: 6px; }
.contact-info-card p:last-child { margin-bottom: 0; }

.contact-info-card--highlight {
  background: var(--navy);
}
.contact-info-card--highlight h3 { color: var(--white); }
.contact-info-card--highlight h3 i { color: var(--orange); }
.contact-info-card--highlight p { color: rgba(255,255,255,0.65); }

.contact-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--ease-fast);
}
.contact-phone:hover { color: var(--orange-light); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  font-size: 0.875rem;
}
.hours-grid span:nth-child(odd)  { color: var(--text-medium); }
.hours-grid span:nth-child(even) { color: var(--text-dark); font-weight: 700; font-family: var(--font-head); }

.area-list--compact { list-style: none; margin: 0; }
.area-list--compact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 600;
  padding: 4px 0;
}
.area-list--compact li i { color: var(--orange); font-size: 0.8rem; }

.price-display {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.price-display span { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); }

/* ===========================
   Reviews Page — Extended
   =========================== */
.review-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-bottom: 48px;
  text-align: center;
}
.review-summary__score {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.review-summary__stars { display: flex; gap: 4px; justify-content: center; }
.review-summary__stars i { color: var(--star); font-size: 1.1rem; }
.review-summary__count { font-size: 0.82rem; color: rgba(255,255,255,0.46); font-weight: 600; }

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

/* review-card overrides for hook's HTML structure */
.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.review-card__header > div { flex: 1; }
.review-card__header strong { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 3px; }
.review-card__date { font-size: 0.74rem; color: var(--text-light); flex-shrink: 0; margin-left: auto; }

.review-card > p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.72; font-style: italic; }
.review-card > p::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--orange);
  opacity: 0.55;
  vertical-align: -0.25rem;
  margin-right: 2px;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .reviews-list { grid-template-columns: 1fr; }
  .review-summary { padding: 24px 20px; }
  .contact-form-wrap { padding: 24px 18px; }
}
