/* ============================================================
   GUTTER BROTHERS — Design System
   Built by YelloPost
   Mobile-first · No frameworks · Pure CSS
   ============================================================ */

:root {
  /* Brand palette — from logo */
  --green: #2aa548;
  --green-dk: #1a7a33;
  --green-darker: #0f5520;
  --green-pale: #eaf5ec;
  --green-tint: #f4faf5;

  /* Gold accent (Irish/shamrock tie-in) */
  --gold: #d4a017;
  --gold-dk: #a67c0f;
  --gold-lt: #e8b835;
  --gold-pale: #fdf6e3;

  /* Neutrals */
  --charcoal: #1a1a18;
  --ink: #2c2c28;
  --stone: #5c5c54;
  --muted: #7c7c74;
  --border: #e0ddd6;
  --linen: #f7f5f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.14);

  /* Typography */
  --font-h: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-serif: 'Fraunces', 'Georgia', serif;

  /* Layout */
  --max-w: 1280px;
  --pad: 1.1rem;
  --nav-h: 72px;
  --radius: 8px;
  --radius-lg: 14px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-h);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dk); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-dk); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Heading system — Fraunces serif for display (h1, h2), Plus Jakarta for smaller */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(2.25rem, 5.5vw + 0.5rem, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
h2 { font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.75rem); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--ink); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: 0.75rem;
}
.eyebrow-gold { color: var(--gold-dk); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-lg { padding: 6rem 0; }
@media (min-width: 768px) {
  :root { --pad: 1.75rem; }
  .section { padding: 5.5rem 0; }
  .section-lg { padding: 8rem 0; }
}

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; gap: 1rem; flex-wrap: wrap; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  height: 100%;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo svg { height: 44px; width: auto; }
.nav-logo-text { display: none; }
@media (min-width: 900px) {
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .nav-logo-text strong {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--charcoal);
    letter-spacing: -0.02em;
  }
  .nav-logo-text span {
    font-size: 0.7rem;
    color: var(--stone);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
  }
}

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--green-dk); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green-dk); }
.nav-links a.active::after { width: 100%; background: var(--green); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
}

.nav-phone {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone:hover { color: var(--green-dk); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  gap: 5px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem var(--pad) 2rem;
  transform: translateY(-120%);
  transition: transform .35s ease;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile ul { list-style: none; padding: 0; margin: 0; }
.nav-mobile li { border-bottom: 1px solid var(--border); }
.nav-mobile a {
  display: block;
  padding: 0.95rem 0.25rem;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1.05rem;
}
.nav-mobile .btn { display: block; margin-top: 1rem; text-align: center; }
@media (min-width: 1024px) { .nav-mobile { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--gold-lt); color: var(--charcoal); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dk); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }

.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  background:
    linear-gradient(135deg, rgba(15, 85, 32, 0.92) 0%, rgba(42, 165, 72, 0.88) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0 30 L30 0 L60 30 L30 60 Z" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>');
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212, 160, 23, 0.25), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero { padding: calc(var(--nav-h) + 5rem) 0 7rem; }
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 .gold {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-trust {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-trust-item .n {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}
.hero-trust-item .l {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
  display: block;
  font-weight: 500;
}

/* Hero instant quote card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  color: var(--ink);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px; bottom: -8px; left: -8px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 8px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}
.hero-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.hero-card .sub {
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 1.25rem;
}
.hero-card .ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  border: 1px solid var(--gold);
  color: var(--green-darker);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ============================================================
   WHY STRIP
   ============================================================ */
.why-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 1.25rem 0;
  overflow: hidden;
}
.why-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
}
.why-strip-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.why-strip-item svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--stone);
  margin-top: 0.75rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-dk);
  transition: background .25s, transform .25s;
}
.service-card:hover .icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-dk);
  font-weight: 700;
  font-size: 0.9rem;
}
.service-card .learn::after {
  content: '→';
  transition: transform .2s;
}
.service-card:hover .learn::after { transform: translateX(4px); }

/* ============================================================
   FEATURE / CONTENT BLOCK
   ============================================================ */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse > *:first-child { order: 2; }
}
.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  aspect-ratio: 4/3;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual svg { width: 60%; height: 60%; color: var(--green-dk); opacity: 0.9; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}
.checklist li::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-top: 2px;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: linear-gradient(135deg, var(--green-darker), var(--green-dk));
  color: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-band-inner {
  position: relative;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-band-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat .n {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.stat .l {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
  letter-spacing: 0.03em;
}

/* ============================================================
   AI QUOTE ESTIMATOR
   ============================================================ */
.estimator {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.estimator h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.estimator .ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: var(--white);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.estimator-sub {
  color: var(--stone);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.estimator-row {
  margin-bottom: 1.1rem;
}
.estimator-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.estimator-row input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}
.estimator-row .range-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 0.25rem;
}
.estimator-row .range-value {
  color: var(--green-dk);
  font-weight: 800;
  font-size: 1.05rem;
}
.estimator-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .estimator-options { grid-template-columns: repeat(3, 1fr); }
}
.estimator-options label {
  padding: 0.65rem 0.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all .2s;
  background: var(--white);
  margin-bottom: 0;
}
.estimator-options input[type="radio"] { display: none; }
.estimator-options input[type="radio"]:checked + label,
.estimator-options label:has(input:checked) {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.estimator-result {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.5rem;
  text-align: center;
}
.estimator-result .label {
  font-size: 0.8rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.estimator-result .value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green-darker);
  letter-spacing: -0.02em;
  display: block;
  margin: 0.25rem 0;
}
.estimator-result .note {
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 0.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.2;
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.testimonial p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial .who .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.testimonial .who .name {
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial .who .loc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at right, rgba(212, 160, 23, 0.3), transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  position: relative;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}
.cta-band .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.cta-band .btn-primary:hover { background: var(--white); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.1rem;
}
.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group label,
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select,
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42, 165, 72, 0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; }

.form-msg {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-msg.success {
  background: var(--green-pale);
  color: var(--green-darker);
  border: 1px solid var(--green);
  display: block;
}
.form-msg.error {
  background: #fdecec;
  color: #a61414;
  border: 1px solid #e74c3c;
  display: block;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.crumbs {
  padding: calc(var(--nav-h) + 1rem) 0 1rem;
  font-size: 0.85rem;
  color: var(--stone);
  background: var(--linen);
  border-bottom: 1px solid var(--border);
}
.crumbs-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.crumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.crumbs li { display: flex; align-items: center; gap: 0.5rem; }
.crumbs li:not(:last-child)::after {
  content: '/';
  color: var(--muted);
}
.crumbs a { color: var(--stone); }
.crumbs a:hover { color: var(--green-dk); }
.crumbs li:last-child { color: var(--charcoal); font-weight: 600; }

/* ============================================================
   PAGE HEADER (non-hero)
   ============================================================ */
.page-head {
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  background: linear-gradient(135deg, var(--green-darker), var(--green-dk));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 L40 0 L80 40 L40 80 Z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-head-inner {
  position: relative;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.page-head h1 {
  color: var(--white);
  max-width: 820px;
}
.page-head .lead {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 680px;
  margin-top: 1rem;
  line-height: 1.55;
}
.page-head .eyebrow {
  color: var(--gold);
  display: inline-block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color .2s;
}
.faq:hover { border-color: var(--green); }
.faq summary {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--charcoal);
  transition: background .2s;
}
.faq summary:hover { background: var(--green-tint); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 400;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--stone);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; } }

.footer-brand svg { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer-brand .license {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gold-lt);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.55rem; }
.footer a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color .2s;
}
.footer a:hover { color: var(--gold); }

.footer-contact { display: grid; gap: 0.6rem; font-size: 0.92rem; }
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  margin-right: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold); }
.yellopost-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.55);
}
.yellopost-credit strong { color: var(--gold-lt); font-weight: 800; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0; }
.table-wrap table { width: 100%; border-collapse: collapse; min-width: 500px; }
.table-wrap th, .table-wrap td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.table-wrap th { background: var(--green-pale); font-weight: 700; color: var(--green-darker); }
.table-wrap tr:hover td { background: var(--linen); }

.tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--green-pale);
  color: var(--green-darker);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Accessibility: focus states */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Print */
@media print {
  .nav, .footer, #pb-ada-container, #pb-chat-container, #cookie-banner { display: none !important; }
  body { color: #000; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   IMAGES & GALLERY (added in Phase 2)
   ============================================================ */

/* Photo-powered hero variant — dark overlay on image background */
.hero.hero-photo {
  background:
    linear-gradient(135deg, rgba(15, 85, 32, 0.88) 0%, rgba(10, 63, 24, 0.85) 100%),
    var(--hero-bg-url) center/cover no-repeat;
}

/* Responsive image card */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--linen);
  aspect-ratio: 3/4;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card .tag-overlay {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--green-darker);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.photo-card .caption-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: white;
  padding: 2rem 1.25rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s;
}
.photo-card:hover .caption-overlay { opacity: 1; }

/* Photo strip (below hero, above services) */
.photo-strip {
  padding: 1rem 0;
  background: var(--charcoal);
  overflow: hidden;
}
.photo-strip-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.photo-strip-scroll::-webkit-scrollbar { display: none; }
.photo-strip-scroll img {
  height: 140px;
  width: auto;
  border-radius: var(--radius);
  flex-shrink: 0;
  scroll-snap-align: start;
  opacity: 0.8;
  transition: opacity .25s, transform .25s;
  cursor: pointer;
}
.photo-strip-scroll img:hover { opacity: 1; transform: scale(1.03); }

/* Feature photo block — full-bleed with text overlay */
.feature-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.feature-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.feature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,85,32,0.9) 0%, rgba(15,85,32,0.1) 50%, transparent 100%);
  z-index: 1;
}
.feature-photo .caption {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem 1.75rem;
  width: 100%;
}
.feature-photo .caption h3 {
  color: white;
  margin-bottom: 0.25rem;
}
.feature-photo .caption p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 0.95rem;
}

/* Gallery grid (for /gallery/) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Gallery filter pills */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gallery-filter button {
  padding: 0.55rem 1.1rem;
  border: 2px solid var(--border);
  background: white;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--stone);
  cursor: pointer;
  transition: all .2s;
}
.gallery-filter button:hover {
  border-color: var(--green);
  color: var(--green-dk);
}
.gallery-filter button.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

/* Hidden filter state */
.photo-card.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.94);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .25s;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-inner {
  max-width: 1100px;
  max-height: 90vh;
  position: relative;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
  color: white;
  text-align: center;
  padding-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.lightbox-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.lightbox-close:hover { background: var(--gold-lt); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }
@media (max-width: 768px) {
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
}

/* Split with photo (replaces previous .split-visual) */
.split-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 320px;
  box-shadow: var(--shadow-lg);
}
.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(42,165,72,0.15) 100%);
}
.split-photo .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

/* Responsive image wrapper */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Service card with thumbnail */
.service-card.has-photo {
  padding: 0;
  overflow: hidden;
}
.service-card.has-photo .photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-card.has-photo .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-card.has-photo:hover .photo img {
  transform: scale(1.05);
}
.service-card.has-photo .body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


/* ============================================================
   PHASE 3A — ANNOUNCEMENT BAR (scroll-aware)
   ============================================================ */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #d4a017 0%, #e5b92d 50%, #d4a017 100%);
  color: var(--charcoal);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.3s ease;
  letter-spacing: 0.01em;
}
.announce-bar.hidden {
  transform: translateY(-100%);
}
.announce-bar strong {
  font-weight: 800;
}
.announce-bar a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 900;
  padding: 0.2rem 0.7rem;
  background: rgba(26, 26, 24, 0.12);
  border-radius: 100px;
  transition: background 0.18s;
  white-space: nowrap;
}
.announce-bar a:hover {
  background: rgba(26, 26, 24, 0.22);
}
.announce-bar svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* Push rest of page below bar */
body.has-announce-bar .nav {
  margin-top: 34px;
  transition: margin-top 0.3s ease;
}
body.has-announce-bar.announce-hidden .nav {
  margin-top: 0;
}

@media (max-width: 580px) {
  .announce-bar { font-size: 0.78rem; padding: 0.4rem 0.6rem; gap: 0.5rem; }
  .announce-bar .announce-label { display: none; }
}

/* ============================================================
   PHASE 3A — CINEMATIC HERO (photo + dark overlay + editorial type)
   ============================================================ */
.hero.hero-cinema {
  position: relative;
  min-height: 720px;
  padding: 5rem 0 6rem;
  color: white;
  background: #0a0a08;
  overflow: hidden;
}
.hero.hero-cinema .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero-cinema .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.9) contrast(1.05);
}
.hero.hero-cinema .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.55) 0%, rgba(10, 10, 8, 0.35) 40%, rgba(10, 10, 8, 0.75) 100%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.82) 0%, rgba(10, 10, 8, 0.5) 50%, rgba(10, 10, 8, 0.3) 100%);
}
.hero.hero-cinema .hero-inner {
  position: relative;
  z-index: 2;
}
.hero.hero-cinema h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw + 0.5rem, 5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero.hero-cinema h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero.hero-cinema .hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 560px;
  margin-top: 1.5rem;
  font-family: var(--font-h);
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero.hero-cinema .hero-eyebrow {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero.hero-cinema .hero-eyebrow .dot {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.hero.hero-cinema .hero-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.75rem;
  margin-top: 2.5rem;
}
.hero.hero-cinema .hero-trust-item .n {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1;
}
.hero.hero-cinema .hero-trust-item .l {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero estimator card — adjust for dark bg */
.hero.hero-cinema .hero-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Photo attribution tag (small, bottom of hero) */
.hero-attribution {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-h);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  z-index: 3;
}
.hero-attribution a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.hero-attribution a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   PHASE 3A — REFINED SECTION STYLE FOR PREMIUM FEEL
   ============================================================ */
.section-head h2 {
  font-style: normal;
}
.section-head h2 em,
.hero.hero-cinema h1 em,
.page-head h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* Cream accent background variant for premium sections */
.section-cream {
  background: #f9f6ed;
}

/* Override: copper section uses gold-tinted cream */
.section-copper {
  background: linear-gradient(180deg, #f9f6ed 0%, #fdf6dc 100%);
}


/* SVG illustration cards (copper/leaf-guard/downspout placeholders) */
.service-card.has-photo .photo svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.service-card.has-photo .photo.photo-copper,
.service-card.has-photo .photo.photo-leafguard,
.service-card.has-photo .photo.photo-downspout {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card.has-photo .photo .photo-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--charcoal);
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  text-transform: uppercase;
}
