@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- VARIABLES ---- */
:root {
  --ink:         #191A1C;
  --ink-mid:     #4A4E58;
  --ink-light:   #6D7280;
  --canvas:      #F5F4F1;
  --canvas-mid:  #EDECE8;
  --white:       #FAFAF8;
  --navy:        #1B2A4A;
  --navy-dark:   #111E35;
  --navy-mid:    #243558;
  --steel:       #3A72A8;
  --steel-light: #5A94CA;
  --steel-pale:  #EAF2FA;
  --border:      rgba(0,0,0,0.09);
  --border-dark: rgba(255,255,255,0.10);

  --font-h: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-b: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --r:    6px;
  --r-lg: 12px;

  --shadow-sm: 0 1px 4px rgba(25,26,28,.08);
  --shadow-md: 0 4px 20px rgba(25,26,28,.10);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t:    220ms;

  --header-h: 90px;
  --gutter: 28px;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--navy); color: var(--white);
  padding: 12px 20px; font-family: var(--font-h);
  font-size: .78rem; font-weight: 600; letter-spacing: .10em;
  text-transform: uppercase; z-index: 9999;
  border-radius: 0 0 var(--r) var(--r);
  transition: top 0.18s;
}
.skip-link:focus { top: 0; }

/* ---- GRAIN ---- */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.07s; }
.reveal--d2 { transition-delay: 0.14s; }
.reveal--d3 { transition-delay: 0.21s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- TYPOGRAPHY ---- */
body {
  font-family: var(--font-b);
  font-size: 1rem; line-height: 1.65;
  color: var(--ink); background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h); font-weight: 700;
  line-height: 1.10; letter-spacing: -0.01em;
  text-wrap: balance; color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0; }

p { max-width: 64ch; color: var(--ink-mid); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-b); font-size: .72rem;
  font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: 14px;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1220px; margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}

.section { padding: 88px 0; }
.section--tint { background: var(--canvas-mid); }
.section--white { background: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: .86rem;
  font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap;
  padding: 13px 26px; border-radius: var(--r);
  border: 2px solid transparent;
  transition: background var(--t) var(--ease), color var(--t) var(--ease),
              border-color var(--t) var(--ease), transform 120ms ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--steel); outline-offset: 3px; }

.btn--steel { background: var(--steel); color: var(--white); border-color: var(--steel); }
.btn--steel:hover { background: var(--steel-light); border-color: var(--steel-light); }

.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--canvas); border-color: var(--canvas); }

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

.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.07); }

.text-link {
  display: inline-block;
  font-family: var(--font-h); font-size: .82rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--steel); border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity var(--t);
}
.text-link:hover { opacity: .7; }

/* ---- HEADER ---- */
.site-header {
  position: sticky; 
  top: 0; 
  z-index: 500;
  height: var(--header-h); 
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  transition: height var(--t) var(--ease);
}
.site-header.scrolled { 
    height: 60px; 

}

.header-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo__img {
  display: block; 
  height: 90px; 
  width: auto;
  padding: 10px 10px;
  border-radius: var(--r);
  transition: height var(--t) var(--ease);
}
.site-header.scrolled .site-logo__img { 
    height: 60px; 
}

.header-phone {
  font-family: var(--font-h); font-size: .80rem;
  font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.55); white-space: nowrap;
  transition: color var(--t);
}
.header-phone:hover { color: rgba(255,255,255,.9); }

.site-nav {
  display: flex; align-items: center; gap: 0;
  margin-left: auto;
}

.site-nav > a,
.nav-has-drop > a {
  font-family: var(--font-h); font-size: .82rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 7px 10px; border-radius: var(--r);
  transition: color var(--t);
  white-space: nowrap;
}
.site-nav > a:hover,
.site-nav > a.active,
.nav-has-drop > a:hover,
.nav-has-drop > a.active { color: var(--white); }

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--steel); color: var(--white) !important;
  padding: 9px 18px; border-radius: var(--r);
  transition: background var(--t);
}
.site-nav .nav-cta:hover { background: var(--steel-light); }

/* Dropdown */
.nav-has-drop { position: relative; }
.nav-has-drop > a::after { content: ' \25BE'; font-size: .65em; }
.nav-drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 252px; background: var(--navy-dark);
  border-top: 2px solid var(--steel);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t) var(--ease); z-index: 200;
}
.nav-has-drop:hover .nav-drop {
  opacity: 1; visibility: visible; transform: none;
}
.nav-drop a {
  display: block; font-family: var(--font-h);
  font-size: .80rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.68);
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t), background var(--t);
}
.nav-drop a:last-child { border-bottom: none; }
.nav-drop a:hover { color: var(--white); background: rgba(255,255,255,.04); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: var(--r); flex-shrink: 0;
  transition: background var(--t);
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 400;
  background: var(--navy-dark);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 20px) 24px 32px;
  gap: 2px; overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-h); font-size: 1.1rem;
  font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.78); padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mobile-cta {
  margin-top: 18px; background: var(--steel);
  color: var(--white) !important; padding: 16px;
  border-radius: var(--r); border-bottom: none;
  text-align: center;
}
.mobile-nav .mobile-cta:hover { background: var(--steel-light); }
.mobile-phone {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.mobile-phone-label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 7px;
}
.mobile-phone a {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  color: var(--white); border-bottom: none; padding: 0;
  letter-spacing: .02em;
}

/* ---- HERO ---- */
.hero {
  min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  background-color: var(--navy-dark);
  background-image:
    linear-gradient(160deg, rgba(17,30,53,.94) 0%, rgba(27,42,74,.85) 55%, rgba(15,24,45,.91) 100%),
    url('https://picsum.photos/seed/house-frame-469/1920/1080');
  background-size: cover; background-position: center 30%;
  color: var(--white);
}

.hero__inner {
  display: grid; grid-template-columns: 1fr 260px;
  gap: 48px; align-items: center;
  padding: 80px 0;
}

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--steel-light); }

.hero__sub {
  font-size: 1.06rem; line-height: 1.62;
  color: rgba(255,255,255,.78); max-width: 52ch;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
}

.hero__phone-line {
  margin-top: 22px; font-size: .88rem;
  color: rgba(255,255,255,.48);
}
.hero__phone-line a {
  color: rgba(255,255,255,.88); font-family: var(--font-h);
  font-weight: 600; letter-spacing: .03em;
  transition: color var(--t);
}
.hero__phone-line a:hover { color: var(--white); }

.hero__stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg);
  padding: 32px 28px; text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__stat .stat-n {
  display: block; font-family: var(--font-h);
  font-size: 4rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.hero__stat .stat-l {
  display: block; font-size: .74rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .07em; text-transform: uppercase;
  margin-top: 8px; line-height: 1.5;
}

/* ---- SERVICES ---- */
.services-intro { margin-bottom: 48px; }
.services-intro h2 { margin-bottom: 0; }

.services-primary {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; margin-bottom: 3px;
}

.service-feature {
  position: relative; overflow: hidden;
  background: var(--navy); min-height: 400px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.service-feature__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.service-feature__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(17,30,53,.95) 0%,
    rgba(17,30,53,.60) 50%,
    rgba(17,30,53,.22) 100%);
}
.service-feature__body {
  position: relative; z-index: 1;
  padding: 36px 40px;
}
.service-feature__body h3 { color: var(--white); margin-bottom: 10px; font-size: 1.5rem; }
.service-feature__body p {
  color: rgba(255,255,255,.74); font-size: .95rem;
  max-width: 44ch; margin-bottom: 20px;
}
.service-feature__body .text-link {
  color: var(--steel-light); border-color: var(--steel-light);
}

.services-secondary {
  display: flex; align-items: center;
  background: var(--canvas-mid);
  border: 1px solid var(--border);
  border-top: none;
}
.services-secondary-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .10em;
  text-transform: uppercase; color: var(--ink-light);
  padding: 17px 22px; flex-shrink: 0;
  border-right: 1px solid var(--border);
}
.services-secondary a {
  font-family: var(--font-h); font-size: .80rem;
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-mid); padding: 17px 20px;
  border-right: 1px solid var(--border);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.services-secondary a:last-child { border-right: none; }
.services-secondary a:hover { color: var(--steel); background: var(--steel-pale); }

/* ---- KEVIN SPLIT ---- */
.kevin-split {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 72px; align-items: start;
}
.kevin-split__img img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--r-lg);
}
.kevin-split__copy h2 { margin-bottom: 22px; }
.kevin-split__copy > p { margin-bottom: 18px; font-size: 1.02rem; }

.kevin-pillars {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; margin: 32px 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.kevin-pillar strong {
  display: block; font-family: var(--font-h);
  font-size: .95rem; font-weight: 700;
  color: var(--ink); margin-bottom: 5px;
}
.kevin-pillar span {
  font-size: .86rem; color: var(--ink-light); line-height: 1.45;
}

/* ---- PROCESS ---- */
.section-lead { margin-bottom: 52px; }
.section-lead h2 { margin-bottom: 12px; }
.section-lead p { font-size: 1.02rem; }

.process-rail {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start; gap: 0;
}
.process-connector {
  height: 2px; background: var(--border);
  margin-top: 27px; width: 100%;
}
.process-step__n {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--steel-pale);
  border: 2px solid var(--steel);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.1rem;
  font-weight: 700; color: var(--steel);
  margin-bottom: 18px;
}
.process-step h4 { color: var(--ink); margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: .9rem; color: var(--ink-mid); max-width: 22ch; }

.process-cta { margin-top: 48px; }

/* ---- TESTIMONIALS ---- */
.testimonials { max-width: 860px; margin: 0 auto; }

.testimonial-lead {
  border: none; margin: 0; padding: 0 0 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 44px;
}
.testimonial-lead p {
  font-size: 1.22rem; line-height: 1.65;
  color: var(--ink); font-style: italic;
  max-width: 58ch; margin-bottom: 18px;
}
.testimonial-lead cite {
  font-style: normal; font-family: var(--font-h);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-light);
}

.testimonials-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
}
.testimonial-item { border: none; margin: 0; padding: 0; }
.testimonial-item p {
  font-size: 1rem; line-height: 1.62;
  color: var(--ink-mid); font-style: italic;
  max-width: 40ch; margin-bottom: 14px;
}
.testimonial-item cite {
  font-style: normal; font-family: var(--font-h);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-light);
}

/* ---- CTA BAND ---- */
.cta-band { background: var(--navy); padding: 88px 0; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.70); max-width: 50ch; margin-bottom: 34px; }
.cta-band__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-phone {
  font-family: var(--font-h); font-size: .98rem;
  font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.62);
  transition: color var(--t);
}
.cta-phone:hover { color: var(--white); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.60);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  height: 46px; width: auto; margin-bottom: 20px;
}
.footer-brand p { font-size: .90rem; line-height: 1.6; max-width: 34ch; margin-bottom: 12px; }
.footer-counties { font-size: .76rem; letter-spacing: .06em; color: rgba(255,255,255,.36); }
.footer-col h4, .footer-contact h4 {
  font-family: var(--font-h); font-size: .76rem;
  font-weight: 600; letter-spacing: .10em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-col a:hover { color: var(--white); }
.footer-phone {
  display: block; font-family: var(--font-h);
  font-size: 1.4rem; font-weight: 700; letter-spacing: .02em;
  color: var(--white); margin-bottom: 5px;
  transition: color var(--t);
}
.footer-phone:hover { color: var(--steel-light); }
.footer-phone-sub { font-size: .80rem; color: rgba(255,255,255,.40); display: block; margin-bottom: 22px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .80rem; color: rgba(255,255,255,.30);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,.30); transition: color var(--t); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background-color: var(--navy-dark);
  background-image:
    linear-gradient(160deg, rgba(17,30,53,.96) 0%, rgba(27,42,74,.92) 100%),
    url('https://picsum.photos/seed/architecture-residential-211/1920/600');
  background-size: cover; background-position: center;
  padding: calc(var(--header-h) + 56px) 0 60px;
  color: var(--white);
}
.page-hero__crumb {
  font-family: var(--font-h); font-size: .72rem;
  font-weight: 500; letter-spacing: .10em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 18px;
}
.page-hero__crumb a { color: rgba(255,255,255,.45); transition: color var(--t); }
.page-hero__crumb a:hover { color: rgba(255,255,255,.85); }
.page-hero__crumb span { color: rgba(255,255,255,.85); }
.page-hero h1 { color: var(--white); max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.68); font-size: 1.04rem; margin-top: 16px; max-width: 54ch; }

/* ---- CONTENT SECTIONS (inner) ---- */
.content-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.content-split--flip { direction: rtl; }
.content-split--flip > * { direction: ltr; }

.content-img {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3;
}
.content-img img { width: 100%; height: 100%; object-fit: cover; }

.content-copy h2 { margin-bottom: 18px; }
.content-copy p { margin-bottom: 16px; }

/* Services list rows (inner pages) */
.services-list {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
}
.service-row {
  background: var(--white); padding: 28px 32px;
  display: flex; flex-direction: column; gap: 6px;
}
.service-row h3 { font-size: 1.1rem; margin-bottom: 0; }
.service-row p { font-size: .92rem; max-width: 60ch; margin: 0; }

/* ---- FAQ ---- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 22px 0; text-align: left; gap: 16px;
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--steel); }
.faq-btn:focus-visible { outline: 2px solid var(--steel); outline-offset: 2px; border-radius: 2px; }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: var(--ink-light);
  transition: transform var(--t) var(--ease), background var(--t), border-color var(--t);
}
.faq-btn.active { color: var(--steel); }
.faq-btn.active .faq-icon {
  background: var(--steel); border-color: var(--steel);
  color: var(--white); transform: rotate(45deg);
}
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq-body.open { max-height: 400px; }
.faq-body p { padding: 0 0 22px; font-size: .95rem; color: var(--ink-mid); max-width: 62ch; }

/* ---- CONTACT FORM ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-stack { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.form-group label {
  font-family: var(--font-h); font-size: .76rem;
  font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 12px 14px; font-family: var(--font-b);
  font-size: .96rem; color: var(--ink); background: var(--white);
  transition: border-color var(--t);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--steel);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error { font-size: .80rem; color: #C0392B; display: none; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #C0392B; }
.form-group.has-error .field-error { display: block; }

.contact-info h3 { margin-bottom: 22px; }
.contact-detail { display: flex; flex-direction: column; gap: 5px; margin-bottom: 28px; }
.contact-detail strong {
  font-family: var(--font-h); font-size: .74rem;
  font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-light);
}
.contact-detail a,
.contact-detail span { font-size: 1.05rem; color: var(--ink); }
.contact-detail a:hover { color: var(--steel); }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.gallery-item { aspect-ratio: 4/3; overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-intro { max-width: 56ch; margin-bottom: 40px; }
.gallery-intro h1 { margin-bottom: 14px; }

/* ---- ABOUT PAGE ---- */
.about-intro { max-width: 64ch; }
.about-intro h1 { margin-bottom: 20px; }
.about-intro p { font-size: 1.08rem; margin-bottom: 18px; }

/* ---- PAGE HERO ITALIC EMPHASIS ---- */
.page-hero h1 em { font-style: normal; color: var(--steel-light); }

/* ---- SECTION NAVY ---- */
.section--navy {
  background: var(--navy); padding: 88px 0;
}
.section--navy h2 { color: var(--white); }
.section--navy .testimonial-lead p { color: rgba(255,255,255,.88); }
.section--navy .testimonial-lead cite { color: rgba(255,255,255,.44); }
.section--navy .testimonial-item p { color: rgba(255,255,255,.72); }
.section--navy .testimonial-item cite { color: rgba(255,255,255,.40); }
.section--navy .testimonial-lead { border-bottom-color: rgba(255,255,255,.12); }

/* ---- CONTACT PAGE ---- */
.contact-form-col h2,
.contact-info-col h2 { margin-bottom: 14px; }
.contact-form-col > p,
.contact-info-col > p { margin-bottom: 28px; font-size: 1rem; }

.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; align-items: flex-start; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%;
}
.form-row .form-group:only-child { grid-column: 1 / -1; }
.form-group label span { color: var(--steel); }

.contact-phone-big {
  display: block; font-family: var(--font-h);
  font-size: 2.2rem; font-weight: 700; letter-spacing: .02em;
  color: var(--steel); line-height: 1; margin-bottom: 8px;
  transition: color var(--t);
}
.contact-phone-big:hover { color: var(--ink); }
.contact-phone-note { font-size: .86rem; color: var(--ink-light); margin-bottom: 32px; }

.contact-info-block { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.contact-info-block h3 { font-size: 1rem; margin-bottom: 10px; }
.contact-info-block ul { display: flex; flex-direction: column; gap: 4px; }
.contact-info-block ul li { font-size: .94rem; color: var(--ink-mid); }
.contact-info-block p { font-size: .94rem; max-width: 38ch; margin-bottom: 14px; }

/* ---- FAQ PAGE GROUPS ---- */
.faq-group-label {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0; padding-bottom: 0;
}

/* FAQ btn open/close visual */
.faq-btn::after {
  content: '+'; flex-shrink: 0;
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 400;
  color: var(--ink-light); width: 28px; text-align: center;
  transition: transform var(--t) var(--ease), color var(--t);
}
.faq-btn.active::after { transform: rotate(45deg); color: var(--steel); }

/* ---- GALLERY CATEGORIES (portfolio index) ---- */
.gallery-categories {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  margin-bottom: 72px;
}
.gallery-cat {
  display: block; position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.gallery-cat__img { aspect-ratio: 16/9; overflow: hidden; }
.gallery-cat__img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .82; transition: transform 0.45s var(--ease), opacity 0.45s;
}
.gallery-cat:hover .gallery-cat__img img { transform: scale(1.04); opacity: .95; }

.gallery-cat__label {
  padding: 20px 24px 24px;
  background: var(--canvas-mid);
  border: 1px solid var(--border); border-top: none;
  display: flex; justify-content: space-between; align-items: center;
}
.gallery-cat__label h2 {
  font-size: 1.15rem; margin-bottom: 0;
}
.gallery-cat__label .text-link {
  flex-shrink: 0; font-size: .76rem;
}

/* ---- PHOTO GRID (portfolio) ---- */
.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.photo-grid__item {
  position: relative; overflow: hidden; background: var(--canvas-mid);
}
.photo-grid__item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 0.42s var(--ease);
}
.photo-grid__item:hover img { transform: scale(1.04); }
.photo-grid__caption {
  padding: 9px 12px;
  font-size: .76rem; color: var(--ink-light);
  border-top: 1px solid var(--border);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1060px) {
  :root { --gutter: 20px; }
  .kevin-split { grid-template-columns: 1fr; gap: 40px; }
  .kevin-split__img { max-width: 440px; }
  .kevin-pillars { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stat { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 90px; }
  .section { padding: 60px 0; }
  .site-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .services-primary { grid-template-columns: 1fr; gap: 3px; }
  .service-feature { min-height: 320px; }
  .services-secondary { flex-direction: column; align-items: stretch; }
  .services-secondary a { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 20px; }
  .services-secondary a:last-child { border-bottom: none; }

  .kevin-pillars { grid-template-columns: 1fr; gap: 14px; }

  .process-rail { grid-template-columns: 1fr; gap: 28px; }
  .process-connector { display: none; }

  .testimonials-row { grid-template-columns: 1fr; gap: 32px; }

  .content-split { grid-template-columns: 1fr; gap: 32px; }
  .content-split--flip { direction: ltr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-categories { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 64px 0; }
  .cta-band__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }
  h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero__inner { padding: 52px 0 36px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
