/*
Theme Name: CCY Roofing
Theme URI: https://ccyroofing.com
Author: Hayden Haskins
Description: Custom local-SEO silo theme for CCY Roofing — Aiken, Augusta & the CSRA. Built on underscores conventions with ACF Pro and Gravity Forms. Heritage Copper palette.
Version: 1.17.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ccy-roofing
*/

/* ==========================================================================
   Design tokens — "Heritage Copper" (from design handoff)
   ========================================================================== */
:root {
  --accent: #B4531F;
  --accent-dk: #8F3E13;
  --accent-hv: #9A4418;
  --gold: #E8B24B;
  --ink: #131F28;
  --ink2: #0B131A;
  --bg: #F7F2E9;
  --card: #FDFAF3;
  --band: #EFE7D7;
  --border-card: #E2D8C4;
  --border-input: #D8CDB8;
  --body: #1B2830;
  --muted: #5B6770;
  --faint: #8A8272;
  --chip-text: #43525C;
  --stat-label: #8A7A57;
  --util-text: #C8B693;
  --footer-gold: #C9B98F;
  --green: #2F6B3A;
  --green-lt: #7FB88A;
  --fh: 'Spectral', Georgia, serif;
  --fs: 'Oswald', 'Arial Narrow', sans-serif;
  --fb: 'Archivo', -apple-system, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
  --pad-x: 24px;
  --sec-y: 84px;
  --r-card: 8px;
  --r-btn: 4px;
  --r-chip: 999px;
  --r-badge: 6px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  /* Faint paper grain keeps the cream from feeling flat-digital. */
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.13'/%3E%3C/svg%3E") repeat;
  color: var(--body);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--accent-dk); }
h1, h2, h3, h4 { font-family: var(--fh); font-weight: 700; color: var(--ink); margin: 0; }
p { margin: 0 0 1em; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important; word-wrap: normal !important;
}

.ccy-wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.ccy-section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }

.ccy-eyebrow {
  font-family: var(--fs); font-size: 14.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 10px;
}
/* Heritage gable mark before every eyebrow — the letterhead touch. */
.ccy-eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 10px;
  margin-right: 9px; vertical-align: baseline;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 26'%3E%3Cpath d='M4 24 L30 4 L56 24' fill='none' stroke='%23B4531F' stroke-width='4'/%3E%3Cpath d='M14 24 L30 12.5 L46 24' fill='none' stroke='%23E8B24B' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
}
/* .ccy-h2 is a VISUAL style — often on a <p>, with the keyword-bearing
   .ccy-eyebrow holding the real <h2> tag. Carries full heading styling. */
.ccy-h2 {
  font-family: var(--fh); font-weight: 700; color: var(--ink);
  font-size: clamp(32px, 3.6vw, 44px); line-height: 1.1; margin: 10px 0 8px;
}
/* Link grids marked up as h3s without affecting flex/grid layout. */
.ccy-chips h3, .ccy-silo-links h3 { display: contents; }
/* Double hairline under centered section headings — old-sign detailing. */
.ccy-center .ccy-h2::after {
  content: ""; display: block; width: 74px; height: 6px;
  margin: 18px auto 0; box-sizing: border-box;
  border-top: 2px solid var(--accent); border-bottom: 1px solid var(--gold);
}
.ccy-sub { font-size: 17px; color: var(--muted); max-width: 62ch; }
.ccy-center { text-align: center; }
.ccy-center .ccy-sub { margin-left: auto; margin-right: auto; }

/* Buttons */
.ccy-btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 16px 28px; border: 0; border-radius: var(--r-btn); cursor: pointer;
  font-family: var(--fs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 16px;
  box-shadow: 0 3px 0 var(--accent-dk);
  transition: background .18s ease;
}
.ccy-btn:hover { background: var(--accent-hv); color: #fff; }
.ccy-btn--sm { padding: 11px 20px; font-size: 14px; box-shadow: 0 2px 0 var(--accent-dk); }
.ccy-btn--navy { background: var(--ink); box-shadow: 0 3px 0 #000; }
.ccy-btn--navy:hover { background: #24333E; }
.ccy-btn--outline {
  background: transparent; color: #FDFAF3; box-shadow: none;
  border: 1.5px solid rgba(253,250,243,0.5);
}
.ccy-btn--outline:hover { background: rgba(253,250,243,0.08); color: #fff; }

/* ==========================================================================
   Storm banner
   ========================================================================== */
.ccy-storm {
  background: var(--accent); color: #fff; text-align: center;
  font-size: 14px; font-weight: 600; padding: 9px 16px;
  animation: ccySlideDown .6s .3s ease both;
}
.ccy-storm a { color: #fff; text-decoration: underline; }
.ccy-storm a:hover { color: #FDE8DC; }

/* Utility bar */
.ccy-util {
  background: var(--ink); color: var(--util-text);
  font-size: 13px; text-align: center; padding: 7px 16px;
}
.ccy-util .sep { opacity: .45; margin: 0 10px; }

/* ==========================================================================
   Header
   ========================================================================== */
.ccy-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,242,233,0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-card);
}
.ccy-header__row {
  /* Wider than the content column so the taller phone block + nav share one row. */
  max-width: 1320px; margin: 0 auto; padding: 10px var(--pad-x);
  display: flex; align-items: center; gap: 18px; justify-content: space-between; flex-wrap: wrap;
}
.ccy-header__brand { display: flex; align-items: center; gap: 16px; }
.ccy-logo { display: block; line-height: 0; }
.ccy-logo svg { display: block; width: 222px; height: 32px; }
.ccy-logo__img { display: block; max-height: 44px; width: auto; }
.ccy-est {
  font-family: var(--fh); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--stat-label);
  border-left: 1px solid var(--border-card); padding-left: 14px; white-space: nowrap;
}
/* Nav lives on its own row under logo/phone/CTA. */
.ccy-header__navrow { border-top: 1px solid var(--border-card); }
.ccy-nav {
  display: flex; gap: 30px; justify-content: center; align-items: center;
  max-width: 1320px; margin: 0 auto; padding: 10px var(--pad-x);
  font-size: 14px; font-weight: 600; white-space: nowrap;
}
.ccy-nav a { color: var(--body); }
.ccy-nav a:hover { color: var(--accent); }
.ccy-nav__caret { font-size: 9px; margin-left: 5px; opacity: .55; vertical-align: 1px; }
.ccy-nav__item, .ccy-nav .menu-item-has-children { position: relative; }
.ccy-nav__drop, .ccy-nav ul.sub-menu {
  position: absolute; top: 100%; left: -16px; z-index: 60;
  display: none; min-width: 230px; padding: 10px 0; margin: 0;
  background: var(--card); border: 1px solid var(--border-card);
  border-top: 3px solid var(--accent); border-radius: 0 0 var(--r-card) var(--r-card);
  box-shadow: 0 18px 40px rgba(19,31,40,0.16);
  list-style: none;
}
.ccy-nav__item::after, .ccy-nav .menu-item-has-children::after {
  /* invisible hover bridge so the dropdown doesn't close in the gap */
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px;
}
.ccy-nav__item:hover .ccy-nav__drop, .ccy-nav__item:focus-within .ccy-nav__drop,
.ccy-nav .menu-item-has-children:hover ul.sub-menu, .ccy-nav .menu-item-has-children:focus-within ul.sub-menu { display: block; }
.ccy-nav__drop a, .ccy-nav ul.sub-menu a {
  display: block; padding: 9px 20px; font-size: 13.5px; color: var(--body);
}
.ccy-nav__drop a:hover, .ccy-nav ul.sub-menu a:hover { background: var(--band); color: var(--accent); }
.ccy-nav__drop--cols { min-width: 400px; column-count: 2; column-gap: 0; padding: 12px 0; }
.ccy-nav__drop--cols a { break-inside: avoid; }
.ccy-header__phone { text-align: center; white-space: nowrap; display: block; color: var(--ink); }
.ccy-header__phone:hover { color: var(--ink); }
.ccy-header__phone .tag {
  display: block; font-family: var(--fs); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
}
.ccy-header__phone .num { display: block; font-weight: 800; font-size: 21px; line-height: 1.15; letter-spacing: -0.01em; }
.ccy-header__phone .live {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--fs); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
  margin-top: 1px;
}
.ccy-header__phone .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: ccyPulse 2s infinite; flex: none;
}
.ccy-header__right { display: flex; align-items: center; gap: 14px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.ccy-hero { position: relative; background: var(--ink); overflow: hidden; }
.ccy-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; opacity: 0.55;
  animation: ccyKenburns 22s ease-out both; transform-origin: center 20%;
}
.ccy-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,19,26,0.94) 0%, rgba(11,19,26,0.75) 45%, rgba(11,19,26,0.25) 100%);
}
.ccy-hero__grid {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: 96px var(--pad-x) 88px;
  display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,0.85fr);
  gap: 56px; align-items: center;
}
.ccy-hero__copy { animation: ccyFadeUp .7s ease both; }
.ccy-hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(200,182,147,0.45); color: var(--util-text);
  border-radius: var(--r-chip); padding: 6px 16px;
  font-family: var(--fs); font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.ccy-hero__h1 {
  font-size: clamp(42px, 5.2vw, 66px); line-height: 1.06;
  color: #FDFAF3; margin: 22px 0 18px; text-wrap: balance;
}
.ccy-hero__kicker {
  display: block; font-family: var(--fs); font-weight: 600;
  font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.ccy-hero__sub { font-size: 18px; line-height: 1.6; color: rgba(253,250,243,0.82); max-width: 54ch; margin: 0 0 30px; }
.ccy-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ccy-hero__call { color: #FDFAF3; font-weight: 700; font-size: 16px; padding: 16px 10px; display: inline-flex; align-items: center; gap: 8px; }
.ccy-hero__call:hover { color: var(--util-text); }
.ccy-hero__micro { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; font-size: 13.5px; color: rgba(253,250,243,0.7); font-weight: 600; }
.ccy-hero__micro span { display: inline-flex; align-items: center; gap: 6px; }
.ccy-hero__micro .ck { color: var(--green-lt); }
.ccy-hero__trust {
  display: flex; gap: 26px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(200,182,147,0.25);
  animation: ccyFadeUp .7s .45s ease both;
  font-size: 14px; font-weight: 600; color: rgba(253,250,243,0.75);
}
.ccy-hero__trust .lead { display: flex; align-items: center; gap: 9px; color: #FDFAF3; }
.ccy-hero__trust .stars { color: var(--gold); letter-spacing: 2px; }

/* Lead form card */
.ccy-form-card {
  background: var(--card); border-radius: var(--r-card); padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border-top: 5px solid var(--accent);
  animation: ccyFadeUp .7s .15s ease both;
  scroll-margin-top: 120px;
}
.ccy-form-card__title { font-family: var(--fh); font-weight: 700; font-size: 25px; color: var(--ink); line-height: 1.15; }
.ccy-form-card__sub { font-size: 14px; color: var(--muted); margin: 8px 0 20px; }
/* Modal-only conversion furniture: call-first block + trust signals */
.ccy-form-card__call {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--ink); border-radius: var(--r-btn);
  padding: 11px 14px 12px; margin: 0 0 14px;
  box-shadow: 0 3px 0 #000; transition: background .18s ease;
}
.ccy-form-card__call:hover { background: #24333E; }
.ccy-form-card__call .num { color: #fff; font-weight: 800; font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; }
.ccy-form-card__call .live {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--fs); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.ccy-form-card__call .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-lt);
  animation: ccyPulseLt 2s infinite; flex: none;
}
.ccy-form-card__or {
  display: flex; align-items: center; gap: 12px; margin: 0 0 14px;
  font-family: var(--fs); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint);
}
.ccy-form-card__or::before, .ccy-form-card__or::after {
  content: ""; flex: 1; height: 1px; background: var(--border-input);
}
.ccy-form-card__trust {
  list-style: none; margin: 14px 0 0; padding: 12px 0 0;
  border-top: 1px solid var(--border-input);
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px 10px;
  font-size: 12px; font-weight: 600; color: var(--chip-text); text-align: left;
}
.ccy-form-card__trust li { display: flex; align-items: center; gap: 5px; }
.ccy-form-card__trust .ck { color: var(--green); font-weight: 700; }
.ccy-form-card__trust .ccy-g { flex: none; }

.ccy-form-card__live {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 12.5px; font-weight: 700; color: var(--green);
}
.ccy-form-card__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: ccyPulse 2s infinite;
}
.ccy-form-card__privacy { font-size: 12px; color: var(--faint); margin: 10px 0 0; line-height: 1.5; }

/* Contact Form 7 restyle inside the card */
.ccy-form-card .wpcf7 form { margin: 0; display: grid; gap: 12px; }
.ccy-form-card .wpcf7 p { margin: 0; }
.ccy-form-card .wpcf7-form-control-wrap { display: block; }
.ccy-form-card .wpcf7 input[type="text"],
.ccy-form-card .wpcf7 input[type="tel"],
.ccy-form-card .wpcf7 input[type="email"],
.ccy-form-card .wpcf7 input[type="number"] {
  width: 100%; padding: 13px 14px; font-size: 15px; font-family: var(--fb);
  border: 1px solid var(--border-input); border-radius: var(--r-btn);
  background: #fff; color: var(--body);
}
.ccy-form-card .wpcf7 select {
  width: 100%; padding: 13px 38px 13px 14px; font-size: 15px; font-family: var(--fb);
  border: 1px solid var(--border-input); border-radius: var(--r-btn);
  background: #fff 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' fill='none' stroke='%23636E76' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--body); appearance: none; -webkit-appearance: none; cursor: pointer;
}
.ccy-form-card .wpcf7 input:focus,
.ccy-form-card .wpcf7 select:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.ccy-form-card .wpcf7 input[type="submit"] {
  width: 100%; background: var(--accent); color: #fff; border: 0; cursor: pointer;
  padding: 16px 20px; border-radius: var(--r-btn);
  font-family: var(--fs); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 3px 0 var(--accent-dk); transition: background .18s ease;
}
.ccy-form-card .wpcf7 input[type="submit"]:hover { background: var(--accent-hv); }
.ccy-form-card .wpcf7-spinner { display: block; margin: 4px auto 0; }
.ccy-form-card .wpcf7-not-valid-tip { color: var(--accent-dk); font-size: 12.5px; font-weight: 600; margin-top: 4px; }
.ccy-form-card .wpcf7-response-output {
  margin: 4px 0 0; padding: 12px 14px; border: 0 !important;
  border-radius: var(--r-btn); font-size: 13.5px; font-weight: 600;
  background: var(--band); color: var(--body); text-align: center;
}
.ccy-form-card .wpcf7 form.sent .wpcf7-response-output {
  background: var(--green); color: #fff;
}
.ccy-form-card .wpcf7 form.invalid .wpcf7-response-output,
.ccy-form-card .wpcf7 form.failed .wpcf7-response-output {
  background: #F3D9CB; color: var(--accent-dk);
}
.ccy-fallback-form { display: grid; gap: 12px; }
.ccy-fallback-form input {
  width: 100%; padding: 13px 14px; font-size: 15px; font-family: var(--fb);
  border: 1px solid var(--border-input); border-radius: var(--r-btn); background: #fff;
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.ccy-stats { background: var(--card); border-bottom: 1px solid var(--border-card); }
.ccy-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center; padding: 46px 0 34px;
}
.ccy-stat__num { font-family: var(--fh); font-weight: 700; font-size: 36px; color: var(--ink); line-height: 1.1; }
.ccy-stat__label {
  font-family: var(--fs); font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--stat-label); margin-top: 4px;
}
.ccy-badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding-bottom: 42px; }
.ccy-badge {
  border: 1px solid var(--border-card); border-radius: var(--r-badge);
  background: var(--bg); padding: 9px 16px;
  font-size: 13px; font-weight: 600; color: var(--chip-text);
}

/* ==========================================================================
   Cards (services)
   ========================================================================== */
.ccy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 42px; }
.ccy-card {
  background: var(--card); border: 1px solid var(--border-card); border-radius: var(--r-card);
  overflow: hidden; display: block; color: inherit;
  transition: box-shadow .25s ease, transform .25s ease;
}
.ccy-card:hover { box-shadow: 0 16px 36px rgba(19,31,40,0.14); transform: translateY(-3px); color: inherit; }
.ccy-card__media { display: block; position: relative; height: 230px; overflow: hidden; }
.ccy-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ccy-card__tag {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--ink); color: var(--util-text);
  font-family: var(--fs); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-badge);
  white-space: nowrap;
}
.ccy-card__body { display: block; padding: 24px 26px 26px; }
.ccy-card__title { font-size: 25px; margin: 0 0 8px; }
.ccy-card__blurb { font-size: 15px; color: var(--muted); margin: 0 0 14px; }
.ccy-card__link { font-weight: 700; font-size: 14.5px; color: var(--accent); }

/* ==========================================================================
   Insurance (dark)
   ========================================================================== */
.ccy-dark { background: var(--ink); color: rgba(253,250,243,0.85); }
.ccy-dark .ccy-eyebrow { color: var(--gold); }
.ccy-dark h2, .ccy-dark .ccy-h2 { color: #FDFAF3; }
.ccy-dark h2.ccy-eyebrow { color: var(--gold); }
.ccy-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ccy-steps { margin: 28px 0 30px; display: grid; gap: 20px; }
.ccy-step { display: flex; gap: 18px; align-items: baseline; }
.ccy-step__num { font-family: var(--fh); font-weight: 700; font-size: 26px; color: var(--gold); min-width: 42px; }
.ccy-step__text { font-size: 15.5px; line-height: 1.55; }
.ccy-step__text strong { color: #FDFAF3; }
.ccy-micro { font-size: 13px; color: rgba(253,250,243,0.6); margin-top: 12px; }
.ccy-ins-photo { position: relative; }
.ccy-ins-photo img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-card); display: block; }
.ccy-quote-card {
  position: absolute; left: -20px; bottom: 26px; max-width: 320px;
  background: var(--card); color: var(--body); border-radius: var(--r-card);
  padding: 26px 20px 18px; box-shadow: 0 18px 44px rgba(0,0,0,0.4);
  font-size: 14.5px; line-height: 1.5;
  border-top: 3px solid var(--gold);
}
.ccy-quote-card::before {
  content: "\201C"; position: absolute; top: -6px; left: 14px;
  font-family: var(--fh); font-size: 58px; line-height: 1;
  color: var(--accent); opacity: .5; pointer-events: none;
}
.ccy-quote-card strong { color: var(--ink); }

/* ==========================================================================
   Why CCY
   ========================================================================== */
.ccy-why-photo { position: relative; }
.ccy-why-photo img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--r-card); display: block; }
.ccy-since-badge {
  position: absolute; top: -30px; right: -16px; width: 132px; height: 132px;
  transform: rotate(6deg);
  filter: drop-shadow(0 10px 22px rgba(19,31,40,0.35));
}
.ccy-since-badge svg { width: 100%; height: 100%; display: block; }
.ccy-seal text { text-transform: uppercase; }
.ccy-why-rows { display: grid; gap: 22px; margin-top: 30px; }
.ccy-why-row { border-left: 4px solid var(--accent); padding-left: 18px; }
.ccy-why-row h3 { font-size: 19px; margin: 0 0 4px; }
.ccy-why-row p { font-size: 15px; color: var(--muted); margin: 0; }

/* ==========================================================================
   Process
   ========================================================================== */
.ccy-band { background: var(--band); }
.ccy-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.ccy-process__card {
  background: var(--card); border: 1px solid var(--border-card);
  border-radius: var(--r-card); padding: 26px 24px;
}
.ccy-process__num { font-family: var(--fh); font-weight: 700; font-size: 40px; color: #D8C6A2; line-height: 1; }
.ccy-process__title { font-size: 19px; margin: 12px 0 6px; }
.ccy-process__blurb { font-size: 14.5px; color: var(--muted); margin: 0; }
/* Process section runs dark: cards become quiet raised panels on navy. */
.ccy-dark .ccy-process__card {
  background: rgba(253,250,243,0.055);
  border-color: rgba(253,250,243,0.14);
}
.ccy-dark .ccy-process__card:hover { box-shadow: 0 16px 36px rgba(0,0,0,0.35); }
.ccy-dark .ccy-process__num { color: rgba(232,178,75,0.9); }
.ccy-dark .ccy-process__title { color: #FDFAF3; }
.ccy-dark .ccy-process__blurb { color: rgba(253,250,243,0.72); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.ccy-stars-lg { color: var(--gold); font-size: 26px; letter-spacing: 5px; }
.ccy-stars-lg .st { display: inline-block; }
.ccy-platforms { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 26px 0 40px; }
.ccy-platform {
  border: 1px solid var(--border-input); border-radius: var(--r-chip);
  padding: 8px 18px; background: var(--card);
  font-family: var(--fs); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--chip-text);
}
.ccy-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ccy-review {
  position: relative;
  background: var(--card); border: 1px solid var(--border-card);
  border-radius: var(--r-card); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.ccy-review::before {
  content: "\201C"; position: absolute; top: 2px; right: 16px;
  font-family: var(--fh); font-size: 74px; line-height: 1;
  color: var(--gold); opacity: .35; pointer-events: none;
}
.ccy-review:hover { box-shadow: 0 16px 36px rgba(19,31,40,0.14); transform: translateY(-3px); }
.ccy-review__stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.ccy-review__quote { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; flex: 1; }
.ccy-review__who { display: flex; align-items: center; gap: 12px; }
.ccy-review__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--ink); color: var(--util-text);
  display: grid; place-items: center;
  font-family: var(--fs); font-size: 13px; font-weight: 700;
}
.ccy-review__name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.ccy-review__where { font-size: 13px; color: var(--muted); }
.ccy-review__source { margin-left: auto; display: flex; align-items: center; }
.ccy-review__source .ccy-g { display: block; }
.ccy-reviews-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 34px;
  padding: 13px 24px; border: 1.5px solid var(--border-input);
  border-radius: var(--r-chip); background: var(--card);
  font-family: var(--fs); font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--body);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.ccy-reviews-link:hover { border-color: var(--accent); color: var(--body); box-shadow: 0 10px 24px rgba(19,31,40,0.1); }
.ccy-reviews-link .ar { color: var(--accent); }

/* ==========================================================================
   Photo strip
   ========================================================================== */
.ccy-strip { background: var(--ink); display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.ccy-strip img { width: 100%; height: 190px; object-fit: cover; display: block; }

/* ==========================================================================
   Service area
   ========================================================================== */
.ccy-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.ccy-chip {
  border: 1px solid var(--border-input); border-radius: var(--r-chip);
  background: var(--card); padding: 9px 18px;
  font-size: 14px; font-weight: 600; color: var(--chip-text);
  transition: border-color .18s ease, color .18s ease;
}
a.ccy-chip:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.ccy-final { position: relative; background: var(--ink); overflow: hidden; text-align: center; }
.ccy-final__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.ccy-final__inner { position: relative; }
.ccy-final h2, .ccy-final .ccy-final__hline {
  font-family: var(--fh); font-weight: 700; margin: 0;
  color: #FDFAF3; font-size: clamp(32px, 3.6vw, 44px); line-height: 1.1; text-wrap: balance;
}
.ccy-final__sub { color: rgba(253,250,243,0.78); font-size: 17px; margin: 14px auto 30px; max-width: 58ch; }
.ccy-final__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ccy-final__checks {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px; font-size: 13.5px; font-weight: 600; color: rgba(253,250,243,0.72);
}
.ccy-final__checks .ck { color: var(--green-lt); margin-right: 5px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.ccy-footer { background: var(--ink2); color: rgba(253,250,243,0.65); font-size: 14.5px; border-top: 4px double var(--footer-gold); }
.ccy-footer__seal { margin-top: 20px; width: 92px; opacity: .85; }
.ccy-footer__grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 46px;
  padding: 64px 0 46px;
}
.ccy-footer h4 {
  color: #FDFAF3; font-family: var(--fs); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px;
}
.ccy-footer a { color: rgba(253,250,243,0.75); }
.ccy-footer a:hover { color: var(--footer-gold); }
.ccy-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ccy-footer__logo svg { width: 240px; height: 35px; display: block; margin-bottom: 16px; }
.ccy-footer__bottom {
  border-top: 1px solid rgba(253,250,243,0.1);
  padding: 20px 0; text-align: center; font-size: 13px; color: rgba(253,250,243,0.45);
}
.ccy-footer__towns { margin-top: 10px; font-size: 12.5px; line-height: 1.8; color: rgba(253,250,243,0.4); }
.ccy-footer__towns a { color: rgba(253,250,243,0.55); }

/* ==========================================================================
   Mobile call bar — one big orange CALL row inside the sticky header.
   Calling is the obvious option; the inspection button lives up by the logo.
   ========================================================================== */
.ccy-callbar { display: none; background: var(--accent); }
.ccy-callbar__call {
  /* The entire orange row is the tap target. */
  display: flex; width: 100%; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 16px 11px; color: #fff;
}
.ccy-callbar__call:hover { color: #fff; }
.ccy-callbar__num {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 23px; line-height: 1.1; letter-spacing: -0.01em; color: #fff;
}
.ccy-callbar__num svg { flex: none; }
.ccy-callbar__live {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--fs); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.ccy-callbar__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-lt);
  animation: ccyPulseLt 2s infinite; flex: none;
}
@keyframes ccyPulseLt {
  0% { box-shadow: 0 0 0 0 rgba(127,184,138,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(127,184,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,184,138,0); }
}

/* ==========================================================================
   Work gallery section + Gallery page
   ========================================================================== */
.ccy-dark .ccy-sub { color: rgba(253,250,243,0.72); }
.ccy-work__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin: 36px 0 32px;
}
.ccy-work__item {
  display: block; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--r-badge); position: relative;
}
.ccy-work__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.ccy-work__item:hover img { transform: scale(1.06); }
.ccy-gallery-hero { padding: 64px 0 72px; }
.ccy-gallery-hero__sub { margin-left: auto; margin-right: auto; color: rgba(253,250,243,0.75); }
.ccy-gallery-body { padding-top: 48px; }
.ccy-work__grid--full { margin-top: 0; }

/* Lightbox */
.ccy-lb { position: fixed; inset: 0; z-index: 130; }
.ccy-lb[hidden] { display: none; }
.ccy-lb__backdrop { position: absolute; inset: 0; background: rgba(11,19,26,0.93); }
.ccy-lb__stage {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; padding: 56px 84px;
}
.ccy-lb__img {
  max-width: 100%; max-height: 100%; border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6); display: block;
}
/* The explicit display rules above would defeat the hidden attribute —
   without these, the last photo stays on screen beside the end card. */
.ccy-lb__img[hidden], .ccy-lb__end[hidden] { display: none; }
.ccy-lb__count {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--fs); font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(253,250,243,0.8);
}
.ccy-lb__btn {
  position: absolute; z-index: 2; width: 48px; height: 48px;
  border: 1.5px solid rgba(253,250,243,0.4); border-radius: 50%;
  background: rgba(11,19,26,0.5); color: #FDFAF3; cursor: pointer;
  font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, border-color .18s ease;
}
.ccy-lb__btn:hover { background: var(--accent); border-color: var(--accent); }
.ccy-lb__btn--prev { left: 18px; top: 50%; transform: translateY(-50%); }
.ccy-lb__btn--next { right: 18px; top: 50%; transform: translateY(-50%); }
.ccy-lb__btn--close { top: 16px; right: 18px; font-size: 26px; }
.ccy-lb__btn[disabled] { opacity: .3; cursor: default; }
.ccy-lb__btn[disabled]:hover { background: rgba(11,19,26,0.5); border-color: rgba(253,250,243,0.4); }

/* Lightbox end card — the "see the full gallery" funnel */
.ccy-lb__end {
  background: var(--card); border-radius: var(--r-card); text-align: center;
  padding: 48px 44px; max-width: 460px;
  border-top: 5px solid var(--accent);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.ccy-lb__end svg { display: block; margin: 0 auto 18px; }
.ccy-lb__end-title { font-family: var(--fh); font-weight: 700; font-size: 26px; color: var(--ink); line-height: 1.2; margin-bottom: 10px; }
.ccy-lb__end-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }

@media (max-width: 780px) {
  .ccy-work__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .ccy-lb__stage { padding: 64px 12px; }
  .ccy-lb__btn--prev { left: 8px; }
  .ccy-lb__btn--next { right: 8px; }
  .ccy-gallery-hero { padding: 44px 0 52px; }
}

/* ==========================================================================
   About page
   ========================================================================== */
.ccy-about-hero { padding: 64px 0 72px; }
.ccy-about-hero__sub { margin-left: auto; margin-right: auto; color: rgba(253,250,243,0.75); }
.ccy-about-story { align-items: start; }
.ccy-about-story .ccy-prose { max-width: none; }
.ccy-about-story .ccy-why-photo img { height: 520px; }
.ccy-about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px 44px; margin-top: 34px;
}
@media (max-width: 780px) {
  .ccy-about-hero { padding: 44px 0 52px; }
  .ccy-about-story .ccy-why-photo img { height: 300px; }
  .ccy-about-pillars { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.ccy-contact-hero { padding: 64px 0 150px; }
.ccy-contact-hero__sub { color: rgba(253,250,243,0.75); }
.ccy-contact-body { padding-top: 0; }
.ccy-contact-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items: start; margin-top: -96px;
}
.ccy-contact-info {
  background: var(--card); border: 1px solid var(--border-card);
  border-radius: var(--r-card); padding: 34px 36px;
  box-shadow: 0 18px 44px rgba(19,31,40,0.12);
  position: relative;
}
.ccy-contact-blurb { font-size: 15.5px; max-width: none; }
.ccy-prose.ccy-contact-blurb > p:first-of-type::first-letter { font-size: 1em; font-weight: inherit; float: none; padding: 0; color: inherit; font-family: inherit; line-height: inherit; }
.ccy-contact-phone { display: block; margin: 22px 0 8px; }
.ccy-contact-phone__tag {
  display: block; font-family: var(--fs); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.ccy-contact-phone__num {
  display: inline-block; font-family: var(--fh); font-weight: 700;
  font-size: clamp(42px, 4.8vw, 58px); line-height: 1.1; color: var(--ink);
  letter-spacing: -0.01em;
}
.ccy-contact-phone__num:hover { color: var(--accent); }
.ccy-contact-phone__live {
  display: flex; align-items: center; gap: 9px; margin-top: 6px;
  font-family: var(--fs); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
}
.ccy-contact-phone__dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  animation: ccyPulse 2s infinite; flex: none;
}
.ccy-contact-facts {
  list-style: none; margin: 20px 0 0; padding: 18px 0 0;
  border-top: 1px solid var(--border-card);
  display: grid; gap: 9px; font-size: 14.5px; color: var(--body);
}
.ccy-contact-facts .ck { color: var(--green); margin-right: 7px; font-weight: 700; }
.ccy-contact-seal {
  position: absolute; top: -26px; right: 26px; width: 96px;
  transform: rotate(6deg); filter: drop-shadow(0 8px 18px rgba(19,31,40,0.25));
}
.ccy-contact-seal svg { width: 100%; height: auto; display: block; }
.ccy-contact-form .ccy-form-card { animation: none; box-shadow: 0 24px 60px rgba(19,31,40,0.28); }
@media (max-width: 780px) {
  .ccy-contact-hero { padding: 44px 0 120px; }
  .ccy-contact-grid { grid-template-columns: 1fr; gap: 26px; margin-top: -84px; }
  .ccy-contact-seal { width: 78px; top: -20px; right: 16px; }
}

/* ==========================================================================
   Estimate modal
   ========================================================================== */
.ccy-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.ccy-modal[hidden] { display: none; }
.ccy-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11,19,26,0.74);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .25s ease;
}
.ccy-modal.is-open .ccy-modal__backdrop { opacity: 1; }
.ccy-modal__card {
  position: relative; width: 100%; max-width: 440px;
  max-height: calc(100vh - 40px); overflow-y: auto;
  opacity: 0; transform: translateY(22px) scale(.97);
  transition: opacity .3s cubic-bezier(0.22,1,0.36,1), transform .3s cubic-bezier(0.22,1,0.36,1);
}
.ccy-modal.is-open .ccy-modal__card { opacity: 1; transform: none; }
.ccy-modal__card .ccy-form-card--modal { animation: none; box-shadow: 0 30px 80px rgba(0,0,0,0.55); }
.ccy-modal__close {
  position: absolute; top: 8px; right: 10px; z-index: 2;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: transparent; color: var(--muted); font-size: 26px; line-height: 1;
  cursor: pointer; transition: color .18s ease, background .18s ease;
}
.ccy-modal__close:hover { background: var(--band); color: var(--ink); }
body.ccy-modal-open { overflow: hidden; }

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.ccy-crumbs { font-size: 13px; color: var(--faint); padding: 14px 0; }
.ccy-crumbs a { color: var(--muted); }
.ccy-crumbs a:hover { color: var(--accent); }
.ccy-crumbs .sep { margin: 0 8px; opacity: .5; }

/* ==========================================================================
   Interior page content (territory/service body copy)
   ========================================================================== */
.ccy-prose { font-size: 16.5px; line-height: 1.7; max-width: 72ch; }
/* Drop cap on the opening paragraph — almanac feel on local copy. */
.ccy-prose > p:first-of-type::first-letter {
  font-family: var(--fh); font-weight: 700; font-size: 3.1em;
  line-height: .82; float: left; padding: 6px 10px 0 0;
  color: var(--accent);
}
.ccy-prose h2 { font-size: clamp(26px, 3vw, 34px); margin: 1.4em 0 .5em; }
.ccy-prose h3 { font-size: 21px; margin: 1.3em 0 .45em; }
.ccy-prose ul { padding-left: 1.2em; }
.ccy-prose li { margin-bottom: .4em; }

/* FAQ */
.ccy-faqs { display: grid; gap: 14px; margin-top: 36px; max-width: 820px; }
.ccy-faq {
  background: var(--card); border: 1px solid var(--border-card); border-radius: var(--r-card);
  padding: 4px 22px;
}
.ccy-faq summary {
  cursor: pointer; list-style: none; padding: 16px 0;
  font-family: var(--fh); font-weight: 600; font-size: 17.5px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.ccy-faq summary::-webkit-details-marker { display: none; }
.ccy-faq summary::after { content: "+"; font-size: 22px; color: var(--accent); flex: none; }
.ccy-faq[open] summary::after { content: "–"; }
.ccy-faq__a { padding: 0 0 18px; font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Main page-copy section (hub/territory/service) — white band, wide centered column */
.ccy-copy-section {
  background: var(--card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}
.ccy-copy-section .ccy-eyebrow { text-align: center; }
.ccy-copy-section .ccy-prose { max-width: 880px; margin: 0 auto; }

/* Service-area map inside the copy section */
.ccy-map { max-width: 880px; margin: 36px auto 0; }
.ccy-map iframe {
  display: block; width: 100%; height: 340px; border: 1px solid var(--border-input);
  border-radius: var(--r-card); box-shadow: 0 10px 26px rgba(19,31,40,0.08);
}
.ccy-map__caption {
  text-align: center; font-size: 13.5px; color: var(--muted);
  margin: 12px auto 0; max-width: 60ch;
}
@media (max-width: 780px) {
  .ccy-map iframe { height: 260px; }
}

/* Collapsed homepage copy ("read more") */
.ccy-copyfold {
  max-width: 920px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border-card);
  border-radius: var(--r-card); padding: 4px 28px;
}
.ccy-copyfold summary {
  cursor: pointer; list-style: none; padding: 20px 0;
  font-family: var(--fh); font-weight: 600; font-size: 19px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.ccy-copyfold summary::-webkit-details-marker { display: none; }
.ccy-copyfold summary::after { content: "+"; font-size: 24px; color: var(--accent); flex: none; }
.ccy-copyfold[open] summary::after { content: "–"; }
.ccy-copyfold .ccy-prose { padding: 0 0 24px; max-width: none; }

/* Sibling / silo link lists */
.ccy-silo-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.ccy-silo-link {
  background: var(--card); border: 1px solid var(--border-card); border-radius: var(--r-card);
  padding: 16px 20px; font-weight: 700; font-size: 15px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .18s ease;
}
.ccy-silo-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(19,31,40,0.1); }
.ccy-silo-link .ar { color: var(--accent); }

/* ==========================================================================
   Scroll reveal system (JS adds .is-in)
   ========================================================================== */
[data-reveal] { opacity: 0; transition: opacity .7s cubic-bezier(0.22,1,0.36,1), transform .7s cubic-bezier(0.22,1,0.36,1); }
[data-reveal="rise"], [data-reveal=""] { transform: translateY(26px); }
[data-reveal="pop"] { transform: scale(.85) translateY(14px); }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="spin"] { transform: rotate(-24deg) scale(.4); transition-duration: .9s; }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="spin"].is-in { transform: rotate(6deg) scale(1); }

@keyframes ccyFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes ccySlideDown { from { transform: translateY(-100%); } to { transform: none; } }
@keyframes ccyKenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
@keyframes ccyPulse {
  0% { box-shadow: 0 0 0 0 rgba(47,107,58,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(47,107,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,107,58,0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Responsive — breakpoint 780px
   ========================================================================== */
@media (max-width: 780px) {
  :root { --sec-y: 56px; }
  .m-hide { display: none !important; }
  .ccy-nav { display: none; }
  .ccy-header__phone { display: none; }
  /* Free Inspection stays in the logo row on mobile — navy so the orange
     call bar below owns the attention. */
  .ccy-header__row { flex-wrap: nowrap; gap: 10px; }
  .ccy-header__row .ccy-btn--sm {
    background: var(--ink); box-shadow: 0 2px 0 #000;
    font-size: 11.5px; padding: 10px 13px; white-space: nowrap;
  }
  .ccy-header__row .ccy-btn--sm:hover { background: #24333E; }
  .ccy-callbar { display: block; }
  .ccy-logo svg { width: 178px; height: 26px; }
  .ccy-since-badge { top: -20px; right: 6px; width: 106px; height: 106px; }
  .ccy-hero__grid { grid-template-columns: 1fr; padding: 64px var(--pad-x) 56px; gap: 40px; }
  .ccy-stats__grid { grid-template-columns: 1fr 1fr; }
  .ccy-cards { grid-template-columns: 1fr; }
  .ccy-2col { grid-template-columns: 1fr; gap: 40px; }
  .ccy-ins-photo img, .ccy-why-photo img { height: 300px; }
  .ccy-quote-card { left: 12px; right: 12px; max-width: none; }
  .ccy-since-badge { top: -18px; right: 8px; width: 100px; height: 100px; font-size: 11.5px; }
  .ccy-process { grid-template-columns: 1fr 1fr; }
  .ccy-reviews { grid-template-columns: 1fr; }
  .ccy-strip { grid-template-columns: repeat(3, 1fr); }
  .ccy-strip img:nth-child(n+4) { display: none; }
  .ccy-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .ccy-silo-links { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Palette: Field & Forest Green (option ccy_palette = green)
   Green carries the action layer; the deep navy stays on photo overlays
   and dark section backgrounds for warmth and contrast.
   ========================================================================== */
body.ccy-palette-green {
  --accent: #3F8C1B;
  --accent-dk: #245808;
  --accent-hv: #337316;
  /* ink/ink2 intentionally stay navy (#131F28 / #0B131A) */
  --bg: #F2F2F2;
  --card: #FBFBFB;
  --band: #E7ECE1;
  --border-card: #DDE3D6;
  --border-input: #C8D2BF;
  --body: #1B2814;
  --muted: #55614D;
  --faint: #7C8574;
  --chip-text: #47523F;
  --stat-label: #567A3E;
  --util-text: #A9C494;
  --footer-gold: #B7CCA4;
}
/* Benefit tags on service-card photos: navy with white text. */
body.ccy-palette-green .ccy-card__tag { color: #fff; }
/* Eyebrow headings on dark sections: light sage instead of gold. */
body.ccy-palette-green .ccy-dark h2.ccy-eyebrow,
body.ccy-palette-green .ccy-dark .ccy-eyebrow { color: #A9C494; }
body.ccy-palette-green .ccy-dark .ccy-eyebrow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 26'%3E%3Cpath d='M4 24 L30 4 L56 24' fill='none' stroke='%23A9C494' stroke-width='4'/%3E%3Cpath d='M14 24 L30 12.5 L46 24' fill='none' stroke='%23E8B24B' stroke-width='2'/%3E%3C/svg%3E");
}
/* Light-section eyebrow glyph in green. */
body.ccy-palette-green .ccy-eyebrow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 26'%3E%3Cpath d='M4 24 L30 4 L56 24' fill='none' stroke='%233F8C1B' stroke-width='4'/%3E%3Cpath d='M14 24 L30 12.5 L46 24' fill='none' stroke='%23E8B24B' stroke-width='2'/%3E%3C/svg%3E");
}
body.ccy-palette-green .ccy-dark .ccy-eyebrow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 26'%3E%3Cpath d='M4 24 L30 4 L56 24' fill='none' stroke='%23A9C494' stroke-width='4'/%3E%3Cpath d='M14 24 L30 12.5 L46 24' fill='none' stroke='%23E8B24B' stroke-width='2'/%3E%3C/svg%3E");
}
body.ccy-palette-green .ccy-process__num { color: #B9CBA6; }
body.ccy-palette-green .ccy-dark .ccy-process__num { color: #A9C494; }
