/* Self-hosted fonts — replaces the Google Fonts CDN request (removed for performance: avoids an extra DNS/redirect hop on the critical render path). Files live in /fonts/. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/fraunces-normal-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-italic-500.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/worksans-normal-variable.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ibmplexmono-500.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/ibmplexmono-600.woff2") format("woff2");
}

/*
  THEME — edit this block per client. Nothing else should need to change to
  rebrand the whole site.

  "Wet Edge" — Roy Painting Services identity. Colors sampled directly from
  the client logo (images/gallery/logo.png): the dark forest green of the
  wordmark/silhouette and the brighter grass green of the roof gradient,
  both tuned slightly for text contrast.
*/
:root {
  /* Brand colors — Roy Painting Services, matched to the logo's two greens */
  --color-primary: #3d6e12;
  --color-primary-dark: #1c2b0d;
  --color-accent: #74ab1a;
  --color-text: #211f1c;
  --color-text-muted: #5c5954;
  --color-bg: #f5f3ec;
  --color-bg-alt: #e9e7dc;
  --color-border: #dad7cb;
  --color-white: #ffffff;
  --color-footer-bg: #1c2b0d;
  --color-icon-bg: #e7f0de;
  --color-star: #f4b400;

  /* Type */
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  /* Shape */
  --radius: 8px;
  --radius-sm: 5px;
  --shadow-soft: 0 3px 14px rgba(28, 27, 25, 0.08);
  --shadow-lift: 0 10px 26px rgba(28, 27, 25, 0.14);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.4s;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
}
/* --- End theme block --- */

/* Shared layout and component styles. */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 var(--space-2);
}

p { margin: 0 0 var(--space-2); }

a { color: var(--color-primary); text-decoration: none; }

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

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

/* "Tape Tab" signature — every section eyebrow reads like a strip of
   painter's tape, because on a job site that's exactly what tape does:
   label something and mark a line. Used only for eyebrows, nowhere else. */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--color-accent);
  padding: 6px 14px 7px;
  margin-bottom: 18px;
  transform: rotate(-1.4deg);
  position: relative;
  box-shadow: 1px 3px 6px rgba(28, 27, 25, 0.16);
}
.section-label::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.22) 0,
    rgba(255, 255, 255, 0.22) 1px,
    transparent 1px,
    transparent 7px
  );
  pointer-events: none;
}

.section-heading h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 16px;
}
.section-heading p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
.section-heading--center { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--color-primary); color: var(--color-white); }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid #cdd6c0;
}
.btn-secondary:hover { border-color: var(--color-primary); background: var(--color-bg-alt); }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-1) var(--space-2);
  z-index: 1000;
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

/* ===== Top bar ===== */
.top-bar {
  background: var(--color-primary-dark);
  color: var(--color-white);
  height: 36px;
  display: flex;
  align-items: center;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.top-bar span, .top-bar a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar a { color: var(--color-white); }
.top-bar a:hover { color: var(--color-accent); }
.top-bar svg { width: 14px; height: 14px; }

@media (max-width: 767px) {
  .top-bar { height: auto; padding: 10px 0; }
  .top-bar .container {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }
  .top-bar span, .top-bar a { white-space: normal; }
  .top-bar span { font-size: 10.5px; }
}

/* ===== Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  backdrop-filter: blur(6px);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--space-3);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { height: 48px; width: auto; display: block; }

/* The logo's wordmark is dark-on-transparent, designed for light backgrounds.
   On dark sections (footer, mobile menu) it sits on a small light plate
   instead of a separate reversed-color asset we don't have. */
.logo-chip {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  flex: none;
}
.logo-chip .logo-img { height: 38px; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-text);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.main-nav a:hover { border-bottom-color: var(--color-accent); }
.main-nav .btn-primary {
  font-family: var(--font-heading);
  font-size: 15px;
  padding: 11px 22px;
  color: var(--color-white);
}

.has-dropdown { position: relative; }
.nav-link-button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link-button:hover { color: var(--color-primary); }
.nav-caret { width: 16px; height: 16px; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  display: none;
  z-index: 60;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  display: block;
}
.dropdown-menu-inner {
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.dropdown-menu a {
  padding: 10px 16px;
  color: var(--color-text);
  border-bottom: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}
.dropdown-menu a:hover {
  background: var(--color-bg-alt);
  border-bottom-color: transparent;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-primary-dark);
  display: none;
  flex-direction: column;
  padding: 28px 32px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-menu-top span { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: var(--color-white); }
.mobile-menu-close { background: none; border: none; cursor: pointer; color: var(--color-white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin: -10px -10px -10px 0; }
.mobile-menu-close svg { width: 28px; height: 28px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu-cta {
  margin-top: 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
  background: var(--color-accent);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.mobile-menu-phone {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
}
.mobile-menu-phone svg { width: 18px; height: 18px; }

@media (max-width: 767px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: stretch;
  margin-top: -76px;
  padding-top: 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  gap: 56px;
  width: 100%;
}
.hero-copy { padding: 72px 0; }
.hero-copy h1 {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.hero-copy .lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 36px;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}
.hero-badges span { display: flex; align-items: center; gap: 7px; }
.hero-badges svg { width: 17px; height: 17px; color: var(--color-primary); }
.hero-badges .divider { color: #cdd6c0; }

.hero-image {
  align-self: stretch;
  min-height: 460px;
  margin: 48px 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(28, 43, 13, 0.25);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-rating-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
}
.hero-rating-badge .stars { color: var(--color-star); font-size: 16px; letter-spacing: 1px; }
.hero-rating-badge span:last-child { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-text); }

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { min-height: 320px; }
}
@media (max-width: 767px) {
  .hero-copy h1 { font-size: 44px; }
  .hero-copy { padding: 48px 0; text-align: center; }
  .hero-actions, .hero-badges { justify-content: center; }
}

/* Hero entrance animation */
.hero-fade-up { opacity: 0; animation: royFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-fade-up:nth-of-type(1) { animation-delay: 0s; }
.hero-fade-up:nth-of-type(2) { animation-delay: 0.15s; }
.hero-fade-up:nth-of-type(3) { animation-delay: 0.3s; }
.hero-fade-up:nth-of-type(4) { animation-delay: 0.45s; }

/* ===== Stats ===== */
.stats { background: var(--color-bg-alt); padding: 56px 0; }
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-block { text-align: center; padding: 8px 24px; border-right: 1px solid var(--color-border); }
.stat-block:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-weight: 800; font-size: 50px; color: var(--color-primary); line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: 13px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 12px; }

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-block { border-right: none; }
}

/* ===== Services ===== */
.services-section { background: var(--color-bg); padding: 96px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--color-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.service-card h3 { font-weight: 600; font-size: 21px; margin: 0 0 10px; }
.service-card p { font-size: 15px; color: var(--color-text-muted); margin: 0 0 18px; }
.service-link { font-weight: 500; font-size: 14px; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; }
.service-link svg { width: 15px; height: 15px; }

@media (max-width: 1023px) and (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== Why Roy ===== */
.why-section { background: var(--color-bg); padding: 96px 0; border-top: 1px solid #f0f0ec; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-image {
  min-height: 480px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(28, 43, 13, 0.20);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item-icon svg { width: 22px; height: 22px; color: var(--color-primary); }
.why-item h3 { font-weight: 600; font-size: 18px; margin: 0 0 6px; }
.why-item p { font-size: 15px; color: var(--color-text-muted); margin: 0; }

@media (max-width: 1023px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } .why-image { order: -1; } }

.why-grid--full { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }

.project-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.project-gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.project-gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform var(--duration) var(--ease); }
.project-gallery-item:hover img { transform: scale(1.04); }
.project-gallery-caption { font-size: 13px; color: var(--color-text-muted); margin: 10px 2px 0; }

@media (max-width: 1023px) { .project-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .project-gallery-grid { grid-template-columns: 1fr; } }

/* ===== Process ===== */
.process-section { background: var(--color-bg-alt); padding: 96px 0; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
.process-step { text-align: center; padding: 0 8px; }
.process-number {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 6px 18px rgba(61, 110, 18, 0.28);
}
.process-step h3 { font-weight: 600; font-size: 20px; margin: 0 0 10px; }
.process-step p { font-size: 15px; color: var(--color-text-muted); margin: 0; max-width: 300px; margin-left: auto; margin-right: auto; }

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

.process-grid--5 { grid-template-columns: repeat(5, 1fr); max-width: none; }
@media (max-width: 1023px) { .process-grid--5 { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; } }
@media (max-width: 767px) { .process-grid--5 { grid-template-columns: 1fr; } }

/* ===== Reviews ===== */
.reviews-section { background: var(--color-bg); padding: 96px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reviews-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.review-card { background: var(--color-bg-alt); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.review-stars { color: var(--color-star); font-size: 16px; letter-spacing: 1.5px; margin-bottom: 14px; }
.review-quote { font-style: italic; font-size: 15px; line-height: 1.65; color: var(--color-text); margin: 0 0 20px; flex: 1; }
.review-footer { display: flex; align-items: center; justify-content: space-between; }
.review-author { font-weight: 500; font-size: 13px; color: var(--color-text-muted); }
.review-source { font-size: 12px; color: #9a9a92; display: flex; align-items: center; gap: 5px; }
.review-source svg { width: 14px; height: 14px; color: var(--color-primary); }
.reviews-link { text-align: center; margin-top: 36px; }
.reviews-link a { font-weight: 500; font-size: 15px; color: var(--color-primary); display: inline-flex; align-items: center; gap: 7px; }
.reviews-link a:hover { text-decoration: underline; }
.reviews-link svg { width: 16px; height: 16px; }

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

/* ===== Service area ===== */
.area-section { background: var(--color-bg-alt); padding: 96px 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-grid h2 { font-size: 38px; }
.town-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.town-pill, .pill {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 500;
  font-size: 13px;
  color: var(--color-primary);
}
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto; }
.area-map {
  min-height: 380px;
  border-radius: 16px;
  background: #e7ecdd;
  border: 1px solid #d4dbc6;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-map-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(61, 110, 18, 0.12);
  border: 2px dashed rgba(61, 110, 18, 0.4);
}
.area-map-pin { position: relative; text-align: center; color: var(--color-primary); }
.area-map-pin svg { width: 40px; height: 40px; }
.area-map-pin .city { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-top: 8px; }
.area-map-pin .radius { font-size: 13px; color: var(--color-text-muted); margin-top: 2px; }

@media (max-width: 1023px) { .area-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FAQ ===== */
.faq-section { background: var(--color-bg); padding: 96px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-text);
}
.faq-question svg { width: 20px; height: 20px; color: var(--color-primary); flex: none; }
.faq-icon-minus { display: none; }
.faq-item.is-open .faq-icon-plus { display: none; }
.faq-item.is-open .faq-icon-minus { display: block; }
.faq-answer { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: var(--color-text-muted); display: none; }
.faq-item.is-open .faq-answer { display: block; }

/* ===== Estimate form ===== */
.estimate-section { background: var(--color-primary-dark); padding: 96px 0; color: var(--color-white); }
.estimate-grid { display: grid; grid-template-columns: 60fr 40fr; gap: 64px; align-items: start; max-width: 1100px; margin: 0 auto; }
.estimate-section h2 { color: var(--color-white); font-size: 38px; margin: 0 0 12px; }
.estimate-section .lead { font-size: 17px; color: rgba(255, 255, 255, 0.78); margin: 0 0 32px; }

.estimate-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-white); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(116, 171, 26, 0.35);
}
.form-field select option { color: var(--color-text); }
.estimate-submit {
  grid-column: 1 / -1;
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-sm);
  padding: 17px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.estimate-submit:hover { background: #8bc424; transform: translateY(-2px); }

.estimate-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px 32px;
}
.estimate-panel .label-small { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.7); margin-bottom: 10px; }
.estimate-panel .phone-large { font-family: var(--font-heading); font-weight: 700; font-size: 30px; color: var(--color-white); letter-spacing: -0.01em; }
.estimate-panel .hours { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-top: 8px; }
.estimate-panel .divider { height: 1px; background: rgba(255, 255, 255, 0.12); margin: 28px 0; }
.trust-list { display: flex; flex-direction: column; gap: 20px; }
.trust-list-item { display: flex; align-items: center; gap: 13px; }
.trust-list-item svg { width: 22px; height: 22px; color: var(--color-accent); flex: none; }
.trust-list-item span { font-weight: 500; font-size: 16px; }

@media (max-width: 1023px) { .estimate-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 767px) { .estimate-form { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: var(--color-footer-bg); color: rgba(255, 255, 255, 0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-tagline { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--color-accent); margin: 0 0 8px; }
.footer-since { font-size: 14px; line-height: 1.6; margin: 0; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 15px; }
.footer-links a:hover { color: var(--color-white); }
.footer-contact { display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer-contact a, .footer-contact span { color: rgba(255, 255, 255, 0.75); display: flex; align-items: center; gap: 9px; }
.footer-contact a:hover { color: var(--color-white); }
.footer-contact svg { width: 16px; height: 16px; }
.footer-cta {
  display: inline-block;
  margin-top: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.footer-cta:hover { background: var(--color-primary); border-color: var(--color-primary); }
.footer-bottom-bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  max-width: var(--container-width);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-1) var(--space-2);
  gap: var(--space-1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 0.7rem; }

@media (max-width: 640px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* 404 / thank-you simple pages */
.center-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== Service page variant components (visually distinct from homepage) ===== */

/* Full-bleed banner hero */
.hero-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  margin-top: -76px;
  padding-top: 76px;
  background: var(--color-primary-dark);
  overflow: hidden;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 96px 0 64px;
}
.hero-banner h1 { color: var(--color-white); font-size: 44px; }
.hero-banner .lead { color: rgba(255, 255, 255, 0.85); }
.hero-banner .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}
@media (max-width: 767px) { .hero-banner h1 { font-size: 32px; } }

/* Comparison grid (pain points) */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.compare-col { border-radius: var(--radius); padding: 32px; }
.compare-col--bad { background: var(--color-bg-alt); }
.compare-col--good { background: var(--color-icon-bg); }
.compare-col h3 { font-size: 18px; margin-bottom: 18px; }
.compare-col--bad h3 { color: #a13a2a; }
.compare-col--good h3 { color: var(--color-primary-dark); }
.compare-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 15px; color: var(--color-text-muted); }
.compare-item:last-child { margin-bottom: 0; }
.compare-item svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }
.compare-col--bad svg { color: #a13a2a; }
.compare-col--good svg { color: var(--color-primary); }
@media (max-width: 767px) { .compare-grid { grid-template-columns: 1fr; } }

/* Horizontal feature strip (benefits) */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-strip-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--color-border); }
.feature-strip-item:last-child { border-right: none; }
.feature-strip-icon {
  width: 52px; height: 52px; border-radius: 999px; background: var(--color-icon-bg);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.feature-strip-icon svg { width: 24px; height: 24px; color: var(--color-primary); }
.feature-strip-item h3 { font-size: 17px; margin-bottom: 6px; }
.feature-strip-item p { font-size: 14px; color: var(--color-text-muted); margin: 0; }
@media (max-width: 1023px) { .feature-strip { grid-template-columns: repeat(2, 1fr); row-gap: 36px; } .feature-strip-item:nth-child(2) { border-right: none; } }
@media (max-width: 767px) { .feature-strip { grid-template-columns: 1fr; } .feature-strip-item { border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: 28px; } .feature-strip-item:last-child { border-bottom: none; } }

/* Zigzag alternating rows (service breakdown) */
.zigzag-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--color-border); }
.zigzag-row:last-child { border-bottom: none; }
.zigzag-row--reverse .zigzag-image, .zigzag-row--reverse .zigzag-icon-panel { order: 2; }
.zigzag-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 220px; }
.zigzag-image img { width: 100%; height: 100%; object-fit: cover; }
.zigzag-icon-panel {
  border-radius: var(--radius); min-height: 220px; background: var(--color-icon-bg);
  display: flex; align-items: center; justify-content: center;
}
.zigzag-icon-panel svg { width: 64px; height: 64px; color: var(--color-primary); }
.zigzag-row h3 { font-size: 24px; margin-bottom: 10px; }
.zigzag-row p { color: var(--color-text-muted); margin: 0; }
@media (max-width: 767px) { .zigzag-row { grid-template-columns: 1fr; gap: 24px; } .zigzag-row--reverse .zigzag-image { order: 0; } }

/* Vertical timeline (process) */
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: var(--color-border); }
.timeline-step { position: relative; display: flex; gap: 24px; padding-bottom: 40px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-number {
  flex: none; width: 56px; height: 56px; border-radius: 999px; background: var(--color-primary);
  color: var(--color-white); font-family: var(--font-heading); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
  box-shadow: 0 6px 18px rgba(61, 110, 18, 0.28);
}
.timeline-step h3 { font-size: 19px; margin: 8px 0 6px; }
.timeline-step p { color: var(--color-text-muted); margin: 0; }

/* Duo gallery (recent work, 2 photos) */
.duo-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo-gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 320px; }
.duo-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 767px) { .duo-gallery { grid-template-columns: 1fr; } .duo-gallery-item { min-height: 240px; } }

/* Testimonial spotlight */
.testimonial-spotlight { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial-spotlight .review-stars { justify-content: center; display: flex; margin-bottom: 20px; }
.testimonial-spotlight .review-quote { font-size: 22px; line-height: 1.5; font-style: italic; color: var(--color-text); margin-bottom: 24px; }
.testimonial-spotlight .review-author { font-weight: 600; font-size: 15px; }
.testimonial-spotlight + .testimonial-spotlight { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--color-border); }

/* Two-column FAQ */
.faq-list--2col { max-width: 980px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
@media (max-width: 767px) { .faq-list--2col { grid-template-columns: 1fr; } }

/* Owner / team avatar (icon placeholder when no real photo is on file) */
.owner-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 999px; background: var(--color-icon-bg);
  display: flex; align-items: center; justify-content: center;
}
.owner-avatar svg { width: 25%; height: 25%; color: var(--color-primary); }

/* Simple closing CTA band (lighter weight than the full estimate form) */
.cta-band { background: var(--color-primary-dark); padding: 72px 0; text-align: center; }
.cta-band h2 { color: var(--color-white); font-size: 32px; margin: 0 0 24px; }
.cta-band .hero-actions { justify-content: center; }

/* Video testimonial placeholders — swap in real embeds when supplied */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-placeholder-card {
  aspect-ratio: 16 / 9; border-radius: var(--radius); background: var(--color-bg-alt);
  border: 1px dashed var(--color-border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px;
}
.video-placeholder-card .play-icon {
  width: 56px; height: 56px; border-radius: 999px; background: var(--color-white);
  box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center;
}
.video-placeholder-card .play-icon svg { width: 22px; height: 22px; color: var(--color-primary); }
.video-placeholder-card .label { font-size: 14px; font-weight: 500; color: var(--color-text-muted); }
@media (max-width: 1023px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }

/* Visible keyboard focus on custom buttons that don't get a default outline treatment */
.nav-link-button:focus-visible,
.nav-toggle:focus-visible,
.mobile-menu-close:focus-visible,
.faq-question:focus-visible,
.main-nav a:focus-visible,
.dropdown-menu a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* --- Scroll-reveal + entrance animations (merged from animations.css; animate transform/opacity only) --- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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