/* =========================================================================
   Hickok Homes — Design System
   Typography: Fraunces (display/serif) + Inter (body/UI)
   Palette: deep forest charcoal, warm ivory, brushed brass accent
   ========================================================================= */

:root {
	--c-ink: #15201c;
	--c-ink-soft: #2a3631;
	--c-cream: #faf7f2;
	--c-cream-dim: #f1ece3;
	--c-white: #ffffff;
	--c-brass: #a9824f;
	--c-brass-light: #c9a877;
	--c-line: rgba(21, 32, 28, 0.12);
	--c-line-light: rgba(255, 255, 255, 0.18);
	--c-text-muted: #5b6660;

	--font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--container-w: 1280px;
	--radius-sm: 6px;
	--radius-md: 14px;
	--radius-lg: 28px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------- Reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--c-ink);
	background: var(--c-cream);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.12;
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 28px; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link {
	position: fixed; top: -60px; left: 12px; z-index: 9999;
	background: var(--c-ink); color: var(--c-white); padding: 12px 18px;
	border-radius: var(--radius-sm); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; width: auto; height: auto; clip: auto; }

.eyebrow {
	font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.16em;
	font-size: 0.78rem; font-weight: 600; color: var(--c-brass); margin-bottom: 0.9em;
}
.eyebrow--light { color: var(--c-brass-light); }

.section { padding: 96px 0; }
.section--tint { background: var(--c-cream-dim); }
.section--dark { background: var(--c-ink); color: var(--c-cream); }
.section--dark .eyebrow { color: var(--c-brass-light); }
.section-heading { max-width: 720px; margin: 0 0 48px; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-cta { margin-top: 44px; }

.text-link {
	display: inline-flex; align-items: center; gap: 6px; font-weight: 600;
	border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: opacity .25s var(--ease);
}
.text-link:hover { opacity: 0.65; }

/* ---------------- Buttons ---------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-weight: 600; font-size: 0.95rem; padding: 14px 28px; border-radius: 999px;
	border: 1px solid transparent; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
	white-space: nowrap;
}
.btn--primary { background: var(--c-ink); color: var(--c-white); }
.btn--primary:hover { background: var(--c-brass); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(169,130,79,.35); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-white); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: var(--c-cream); border-color: var(--c-line-light); }
.btn--outline-light:hover { background: var(--c-cream); color: var(--c-ink); transform: translateY(-2px); }
.btn--text-light { background: transparent; color: var(--c-cream); padding: 14px 6px; }
.btn--large { padding: 17px 34px; font-size: 1rem; }
.btn--small { padding: 10px 20px; font-size: 0.85rem; }

/* ---------------- Header / Nav ---------------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 500;
	transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header__bar {
	background: rgba(21, 32, 28, 0.42);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	border-bottom: 1px solid rgba(255,255,255,0.08);
	transition: background .35s var(--ease);
}
.site-header[data-scroll-state="scrolled"] .site-header__bar {
	background: rgba(21, 32, 28, 0.92);
	box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 28px; gap: 32px;
}
.site-logo img { height: 52px; width: auto; }
.primary-nav__list { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.primary-nav__list .menu-item { position: relative; }
.menu-link {
	display: flex; align-items: center; gap: 6px; color: var(--c-cream);
	font-size: 0.92rem; font-weight: 500; padding: 10px 14px; border-radius: 999px;
	transition: background .25s var(--ease), color .25s var(--ease);
}
.menu-link:hover, .menu-link:focus { background: rgba(255,255,255,0.12); }
.menu-caret { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .25s var(--ease); }
.menu-item-has-children:hover > .menu-link .menu-caret { transform: rotate(225deg); margin-top: 3px; }

.sub-menu {
	position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
	background: var(--c-white); border-radius: var(--radius-md);
	box-shadow: 0 18px 50px rgba(21,32,28,0.18); padding: 10px;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu .menu-link { color: var(--c-ink); border-radius: var(--radius-sm); padding: 10px 14px; }
.sub-menu .menu-link:hover { background: var(--c-cream-dim); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; color: var(--c-cream); font-weight: 600; font-size: 0.92rem; }
.header-phone__icon { color: var(--c-brass-light); display: flex; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle__bar { width: 24px; height: 2px; background: var(--c-cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

.sticky-call-btn {
	display: none; position: fixed; bottom: 20px; right: 20px; z-index: 600;
	align-items: center; gap: 8px; background: var(--c-brass); color: var(--c-white);
	padding: 14px 20px; border-radius: 999px; font-weight: 700; box-shadow: 0 14px 32px rgba(169,130,79,.4);
}

.hickok-breadcrumbs { padding: 120px 0 0; font-size: 0.85rem; color: var(--c-text-muted); }
.hickok-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.hickok-breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--c-line); }
.hickok-breadcrumbs a:hover { color: var(--c-brass); }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; color: var(--c-white); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,19,0.35) 0%, rgba(15,22,19,0.25) 40%, rgba(15,22,19,0.85) 100%); }
.hero__content { position: relative; z-index: 1; padding-bottom: 110px; max-width: 880px; }
.hero h1 { color: var(--c-white); margin-bottom: 0.35em; }
.hero__sub { font-size: 1.15rem; max-width: 580px; color: rgba(255,255,255,0.88); margin-bottom: 2em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__scroll-cue { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 1; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 14px; }
.hero__scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--c-white); border-radius: 2px; transform: translateX(-50%); animation: scrollcue 1.8s infinite var(--ease); }
@keyframes scrollcue { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; top: 22px; } }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.rounded-image img, .rounded-image picture img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }

/* ---------------- About teaser ---------------- */
.about-teaser__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-teaser__media { position: relative; }
.about-teaser__stat {
	position: absolute; bottom: -28px; left: -28px; background: var(--c-white);
	border-radius: var(--radius-md); padding: 22px 26px; box-shadow: 0 20px 50px rgba(21,32,28,0.16);
	max-width: 220px;
}
.about-teaser__stat-number { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--c-brass); }
.about-teaser__stat-label { font-size: 0.82rem; color: var(--c-text-muted); }

/* ---------------- Project / Service cards ---------------- */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { display: block; border-radius: var(--radius-md); overflow: hidden; background: var(--c-ink-soft); transition: transform .4s var(--ease); }
.project-card:hover { transform: translateY(-6px); }
.project-card__media { aspect-ratio: 4/3; overflow: hidden; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project-card:hover .project-card__media img { transform: scale(1.07); }
.project-card__body { padding: 24px; }
.project-card__body h3 { color: var(--c-white); font-size: 1.2rem; }
.project-card__body p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.project-card__body .text-link { color: var(--c-brass-light); }
.project-card__media--empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); }
.project-card__media--empty span { color: rgba(255,255,255,0.45); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.project-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 6px; }
.project-card__badge { display: inline-block; padding: 2px 10px; border-radius: 999px; background: rgba(212,175,120,0.16); color: var(--c-brass-light); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }

.services-grid__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { display: block; border-radius: var(--radius-md); overflow: hidden; background: var(--c-white); box-shadow: 0 10px 30px rgba(21,32,28,0.06); transition: transform .35s var(--ease), box-shadow .35s var(--ease); text-decoration: none; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(21,32,28,0.14); }
.service-card__media { aspect-ratio: 1/0.8; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card h3 { padding: 20px 22px 4px; font-size: 1.15rem; }
.service-card p { padding: 0 22px; color: var(--c-text-muted); font-size: 0.92rem; margin: 0; }
.service-card .text-link { display: inline-flex; margin: 10px 22px 22px; color: var(--c-brass); }

/* ---------------- Why us ---------------- */
.why-us__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-us__item { background: var(--c-white); padding: 30px 26px; border-radius: var(--radius-md); border: 1px solid var(--c-line); }
.why-us__item h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.why-us__item p { font-size: 0.92rem; color: var(--c-text-muted); margin: 0; }

/* ---------------- Process ---------------- */
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; counter-reset: step; }
.process-list li { display: flex; flex-direction: column; gap: 14px; padding-top: 18px; border-top: 2px solid var(--c-line); }
.process-list__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-brass); }
.process-list h3 { font-size: 1.05rem; }
.process-list p { font-size: 0.9rem; color: var(--c-text-muted); margin: 0; }

/* ---------------- Communities ---------------- */
.community-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.community-card { border-radius: var(--radius-md); overflow: hidden; background: var(--c-ink-soft); }
.community-card__media { aspect-ratio: 4/5; overflow: hidden; }
.community-card__media img { width: 100%; height: 100%; object-fit: cover; }
.community-card h3 { padding: 16px 16px 4px; font-size: 1rem; color: var(--c-white); }
.community-card p { padding: 0 16px 18px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ---------------- Masonry gallery preview ---------------- */
.masonry-grid { columns: 5 220px; column-gap: 18px; }
.masonry-grid__item { display: block; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden; break-inside: avoid; }
.masonry-grid__item img { width: 100%; transition: transform .5s var(--ease); }
.masonry-grid__item:hover img { transform: scale(1.05); }

/* ---------------- Team ---------------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card__media { aspect-ratio: 4/5; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 0.2em; }
.team-card__title { font-size: 0.85rem; color: var(--c-brass); font-weight: 600; }

/* Spotlight layout: used for the Meet the Founder bio, where the
   description needs room to breathe instead of being squeezed into a
   narrow card column. Picture sits on the left, text fills the rest of
   the row on desktop; stacks back to picture-on-top on small screens. */
.team-grid--spotlight { display: flex; flex-direction: column; gap: 40px; }
.team-card--spotlight { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start; }
.team-card--spotlight .team-card__media { margin-bottom: 0; }
.team-card--spotlight .team-card__body { padding-top: 4px; }
.team-card--spotlight h3 { font-size: 1.4rem; }
.team-card--spotlight .team-card__title { display: block; margin-bottom: 12px; }
.team-card--spotlight p:last-child { max-width: 70ch; }

@media (max-width: 720px) {
	.team-card--spotlight { grid-template-columns: 1fr; }
	.team-card--spotlight .team-card__media { max-width: 320px; }
}

/* ---------------- Testimonials ---------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--c-white); padding: 32px 28px; border-radius: var(--radius-md); border: 1px solid var(--c-line); }
.testimonial-card p { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; }
.testimonial-card cite { font-style: normal; font-size: 0.85rem; color: var(--c-text-muted); font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.testimonial-card__rating { color: #c9a227; letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 12px; }
.testimonial-card__source { font-weight: 500; font-size: 0.75rem; color: var(--c-text-muted); background: var(--c-bg-tint, #f4f3f0); border-radius: 999px; padding: 2px 10px; }

/* ---------------- Stats band ---------------- */
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__number { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--c-brass-light); }
.stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.stats-band__note { text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 36px; }

/* ---------------- Accolades & Certifications ---------------- */
/* A continuously-scrolling logo marquee (never stops, no hover-pause,
   per request). The track renders the logo list twice back-to-back in
   the markup; the animation slides it left by exactly one copy's width
   (50%) and then repeats, so the loop point is invisible. */
.accolades-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.accolades-marquee__track { display: flex; align-items: center; width: max-content; gap: 64px; animation: hickok-marquee 32s linear infinite; }
.accolade-badge { display: flex; align-items: center; justify-content: center; min-height: 64px; flex-shrink: 0; text-decoration: none; color: inherit; }
.accolade-badge img { max-height: 64px; max-width: 160px; width: auto; height: auto; object-fit: contain; opacity: 0.85; }
.accolade-badge__text { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; white-space: nowrap; color: var(--c-text-muted); border: 1px solid var(--c-line); border-radius: 999px; padding: 10px 20px; }

@keyframes hickok-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.accolades-marquee__track { animation: none; }
	.accolades-marquee { overflow-x: auto; }
}

/* ---------------- FAQ ---------------- */
.faq-section__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; }
.faq-accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 6px 22px; background: var(--c-white); }
.faq-item summary { padding: 16px 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--c-brass); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding-bottom: 18px; color: var(--c-text-muted); font-size: 0.95rem; }

/* ---------------- Service areas ---------------- */
.service-areas__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.service-areas__col h3 { font-size: 1.1rem; margin-bottom: 0.7em; }
.service-areas__chips { font-size: 0.92rem; color: var(--c-text-muted); line-height: 2; }
.service-areas__chips a { color: var(--c-ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--c-brass); transition: color .2s var(--ease), border-color .2s var(--ease); }
.service-areas__chips a:hover { color: var(--c-brass); }

/* ---------------- Corporate housing teaser ---------------- */
.corporate-housing-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ---------------- Pre-footer CTA ---------------- */
.pre-footer-cta { background: var(--c-brass); color: var(--c-white); padding: 70px 0; }
.pre-footer-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.pre-footer-cta__text h2 { color: var(--c-white); margin-bottom: 0.3em; }
.pre-footer-cta__text p { max-width: 480px; color: rgba(255,255,255,0.9); margin: 0; }
.pre-footer-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pre-footer-cta .btn--primary { background: var(--c-ink); }
.pre-footer-cta .btn--ghost { border-color: rgba(255,255,255,0.5); color: var(--c-white); }
.pre-footer-cta .btn--ghost:hover { background: var(--c-white); color: var(--c-ink); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--c-ink); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer h4 { color: var(--c-white); font-size: 1rem; margin-bottom: 1em; font-family: var(--font-body); font-weight: 600; }
.site-footer a:hover { color: var(--c-brass-light); }
.site-footer__brand p { font-size: 0.9rem; max-width: 280px; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), border-color .25s var(--ease); }
.social-links a:hover { background: var(--c-brass); border-color: var(--c-brass); color: var(--c-white); }
.footer-nav li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.site-footer__bottom-inner { display: flex; justify-content: space-between; padding: 26px 0; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }

/* ---------------- Forms ---------------- */
.hickok-form { display: grid; gap: 18px; }
.hickok-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hickok-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.hickok-form input[type="text"],
.hickok-form input[type="email"],
.hickok-form input[type="tel"],
.hickok-form input[type="date"],
.hickok-form select,
.hickok-form textarea {
	width: 100%; padding: 13px 16px; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
	font-family: var(--font-body); font-size: 0.96rem; background: var(--c-white); transition: border-color .25s var(--ease);
}
.hickok-form input:focus, .hickok-form select:focus, .hickok-form textarea:focus { outline: none; border-color: var(--c-brass); }
.hickok-form textarea { resize: vertical; min-height: 120px; }
.hickok-form__honeypot { position: absolute; left: -9999px; }
.hickok-form-banner { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-weight: 600; }
.hickok-form-banner--success { background: #e7f3ec; color: #1c6b42; }
.hickok-form-banner--error { background: #fbeaea; color: #a32a2a; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-card { background: var(--c-white); border-radius: var(--radius-md); padding: 32px; border: 1px solid var(--c-line); margin-bottom: 20px; }
.contact-info-card h3 { font-size: 1.1rem; }
.form-tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.form-tab { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--c-line); font-size: 0.85rem; font-weight: 600; background: var(--c-white); }
.form-tab.is-active { background: var(--c-ink); color: var(--c-white); border-color: var(--c-ink); }
.form-panel { display: none; }
.form-panel.is-active { display: block; }

/* ---------------- Gallery page ---------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.gallery-filter-btn { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--c-line); background: var(--c-white); font-size: 0.85rem; font-weight: 600; transition: background .2s var(--ease), color .2s var(--ease); }
.gallery-filter-btn.is-active, .gallery-filter-btn:hover { background: var(--c-ink); color: var(--c-white); border-color: var(--c-ink); }
.gallery-search { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; max-width: 420px; }
.gallery-search input { flex: 1; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--c-line); font-family: var(--font-body); }
.gallery-grid { columns: 4 260px; column-gap: 18px; }
.gallery-grid__item { display: block; margin-bottom: 18px; border-radius: var(--radius-sm); overflow: hidden; break-inside: avoid; position: relative; cursor: zoom-in; }
.gallery-grid__item img { width: 100%; transition: transform .5s var(--ease); }
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__item[hidden] { display: none; }

.lightbox { position: fixed; inset: 0; background: rgba(10,14,12,0.96); z-index: 2000; display: none; align-items: center; justify-content: center; flex-direction: column; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 6px; }
.lightbox__caption { color: var(--c-cream); margin-top: 16px; font-size: 0.9rem; text-align: center; max-width: 70vw; }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; background: rgba(255,255,255,0.1); color: var(--c-white); border: none; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--c-brass); }

/* ---------------- Generic content page ---------------- */
.page-hero { padding: 150px 0 70px; background: var(--c-ink); color: var(--c-white); }
.page-hero--image { position: relative; min-height: 56vh; display: flex; align-items: flex-end; color: var(--c-white); }
.page-hero--image .page-hero__media { position: absolute; inset: 0; }
.page-hero--image .page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--image .page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,19,0.25), rgba(15,22,19,0.85)); }
.page-hero--image .page-hero__content { position: relative; padding: 150px 0 70px; max-width: 760px; }
.page-hero p.eyebrow { color: var(--c-brass-light); }
.page-hero h1 { color: var(--c-white); margin-bottom: 0.3em; }
.page-hero__lede { max-width: 680px; font-size: 1.1rem; color: rgba(255,255,255,0.85); }

.prose { max-width: 760px; }
.prose p { font-size: 1.02rem; color: var(--c-ink-soft); }
.two-col-prose { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0; }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; padding: 18px; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-sm); font-size: 0.95rem; }
.benefit-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--c-brass); margin-top: 7px; flex-shrink: 0; }

.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.landmark-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 28px; }
.landmark-chips span { padding: 8px 16px; border-radius: 999px; background: var(--c-cream-dim); font-size: 0.85rem; }

/* Real Google Maps embeds (no API key needed — output=embed URLs),
   replacing what used to be a dashed-border "map placeholder" box that
   was never wired up to an actual map. */
.contact-maps { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-maps__item h3 { margin-bottom: 14px; }
.contact-maps__embed { aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--c-line); }
.contact-maps__embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-maps__embed--single { aspect-ratio: 16/7; margin: 28px 0; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--c-white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--c-line); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--c-cream-dim); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__meta { font-size: 0.78rem; color: var(--c-brass); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }

.single-content { max-width: 760px; margin: 0 auto; }
.single-content img { border-radius: var(--radius-md); margin: 1.5em 0; }

/* Before/After slider */
.ba-slider { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--c-white); cursor: ew-resize; }
.ba-slider__handle::after { content: '⇔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; background: var(--c-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.25); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
	.project-grid, .services-grid__list, .why-us__list, .process-list, .team-grid, .testimonial-grid, .related-services { grid-template-columns: repeat(2, 1fr); }
	.community-grid { grid-template-columns: repeat(3, 1fr); }
	.about-teaser__grid, .corporate-housing-teaser__grid, .faq-section__grid, .contact-grid, .two-col-prose, .service-areas__columns, .contact-maps { grid-template-columns: 1fr; }
	.stats-band__grid { grid-template-columns: repeat(2, 1fr); }
	.masonry-grid { columns: 3 200px; }
	.gallery-grid { columns: 3 220px; }
}

@media (max-width: 880px) {
	.primary-nav { position: fixed; top: 0; right: -100%; width: min(360px, 86vw); height: 100vh; background: var(--c-ink); padding: 110px 28px 40px; overflow-y: auto; transition: right .4s var(--ease); }
	.primary-nav.is-open { right: 0; }
	.primary-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.menu-link { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
	.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.04); display: none; }
	.menu-item-has-children.is-expanded .sub-menu { display: block; }
	.sub-menu .menu-link { color: var(--c-cream); }
	.sub-menu .menu-link:hover { background: rgba(255,255,255,0.08); }
	.header-phone { display: none; }
	.nav-toggle { display: flex; }
	.sticky-call-btn { display: flex; }
	.site-header__inner { padding: 14px 20px; }
	.site-logo img { height: 42px; }
}

@media (max-width: 720px) {
	.section { padding: 64px 0; }
	.project-grid, .services-grid__list, .why-us__list, .process-list, .team-grid, .testimonial-grid, .related-services, .community-grid, .benefit-list { grid-template-columns: 1fr; }
	.masonry-grid { columns: 2 160px; }
	.gallery-grid { columns: 2 160px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.pre-footer-cta__inner { flex-direction: column; align-items: flex-start; }
	.hickok-form__row { grid-template-columns: 1fr; }
	.page-hero--image { align-items: center; min-height: 46vh; }
	.page-hero--image .page-hero__content { padding: 100px 0 40px; }
	.hero__content { padding-bottom: 70px; }
}

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