/* ==========================================================================
   Pipesmith Plumbing
   Brand: teal from the existing site, Mohave display type (brand), Barlow body type.
   Radii by role: buttons 6px, cards 14px, photos 4px, pills 999px.
   ========================================================================== */

:root {
	--ink: #14181b;
	--ink-2: #242b30;
	--slate: #1c2226;
	--muted: #5a646b;
	--line: #ddd6c8;
	--paper: #ffffff;
	--cream: #f4efe4;
	--cream-2: #ebe3d2;
	--teal: #40e0d0;
	--teal-deep: #0a7a70;
	--teal-dark: #06413b;
	--brass: #e8a92a;

	--f-display: "Mohave", "Arial Narrow", Impact, sans-serif;
	--f-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--r-btn: 6px;
	--r-card: 14px;
	--r-img: 4px;
	--r-pill: 999px;

	--wrap: 1200px;
	--gutter: 16px;
	--sec-y: clamp(56px, 8vw, 104px);
	--shadow-lift: 0 1px 0 rgba(20, 24, 27, .05), 0 18px 40px -22px rgba(20, 24, 27, .45);
}

@media (min-width: 600px) { :root { --gutter: 24px; } }
@media (min-width: 1100px) { :root { --gutter: 32px; } }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
	margin: 0;
	font-family: var(--f-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-deep); text-underline-offset: 3px; }
a:hover { color: var(--teal-dark); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--f-display); font-weight: 600; line-height: 1.05; letter-spacing: .005em; }
figure { margin: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: var(--r-btn); }
.skip-link:focus { left: 8px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 820px; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- rich text ---------- */
.rich > :last-child { margin-bottom: 0; }
.rich a { font-weight: 700; }
.rich .hl, .hl { color: var(--teal-deep); }
.section--dark .hl, .hero .hl { color: var(--teal); }

.prose { font-size: 18px; }
.prose h2 { font-size: clamp(28px, 3.4vw, 38px); margin: 1.6em 0 .5em; }
.prose h3 { font-size: 26px; margin: 1.4em 0 .4em; }
.prose h4 { font-size: 21px; margin: 1.2em 0 .3em; }
.prose li { margin-bottom: .35em; }
.prose img { border-radius: var(--r-img); }
.prose blockquote { margin: 1.5em 0; padding: 4px 0 4px 20px; border-left: 4px solid var(--teal); font-size: 20px; }

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 48px; padding: 12px 22px;
	border: 2px solid transparent; border-radius: var(--r-btn);
	font-family: var(--f-display); font-size: 20px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; line-height: 1;
	text-decoration: none; cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn--lg { min-height: 56px; padding: 14px 28px; font-size: 22px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--teal); color: var(--ink); }
.btn--primary:hover { background: #2fcbbc; color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--teal-dark); color: #fff; }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, .7); color: #fff; background: rgba(0, 0, 0, .15); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- header ---------- */
.site-top { position: sticky; top: 0; z-index: 50; }
.topbar { background: var(--ink); color: #cfd6da; font-size: 14px; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 36px; }
.topbar__note { display: none; letter-spacing: .02em; }
.topbar__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-weight: 700; text-decoration: none; margin-left: auto; }
.topbar__phone:hover { color: #fff; }
@media (min-width: 700px) { .topbar__note { display: block; } }

.site-header { background: var(--paper); border-bottom: 1px solid var(--line); }
.site-header__in { display: flex; align-items: center; gap: 16px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__logo { width: 56px; height: 56px; }
.brand__name { font-family: var(--f-display); font-size: 26px; font-weight: 700; line-height: .9; text-transform: uppercase; letter-spacing: .02em; }
.brand__name span { display: block; font-size: 15px; letter-spacing: .28em; color: var(--teal-deep); }

.site-header__cta { display: none; margin-left: 8px; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { margin-left: auto; width: 48px; height: 48px; display: grid; place-content: center; gap: 5px; cursor: pointer; border-radius: var(--r-btn); }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle:checked + .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked + .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); max-height: calc(100vh - 112px); overflow-y: auto; padding: 8px var(--gutter) 20px; box-shadow: 0 20px 30px -20px rgba(0, 0, 0, .3); }
.nav-toggle:checked ~ .site-nav { display: block; }
.site-nav .menu, .site-nav .sub-menu { list-style: none; margin: 0; padding: 0; }
.site-nav .menu > li { border-bottom: 1px solid var(--cream-2); }
.site-nav li { position: relative; }
.site-nav a { display: block; padding: 12px 48px 12px 0; color: var(--ink); text-decoration: none; font-family: var(--f-display); font-size: 21px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.site-nav .sub-menu { padding-left: 14px; border-left: 2px solid var(--cream-2); margin-bottom: 8px; }
.site-nav .sub-menu a { font-family: var(--f-body); font-size: 16px; font-weight: 400; text-transform: none; letter-spacing: 0; padding: 8px 48px 8px 0; }
.site-nav .sub-menu .sub-menu a { font-size: 15px; color: var(--muted); padding: 6px 0; }
.site-nav .current-menu-item > a { color: var(--teal-deep); }
.site-nav a.site-nav__call { display: flex; margin-top: 16px; width: 100%; padding: 12px 20px; color: #fff; font-size: 20px; }
.js-collapsible > .sub-menu { display: none; }
.js-collapsible.is-open > .sub-menu { display: block; }
.submenu-toggle { position: absolute; right: 0; top: 4px; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.submenu-toggle span { display: block; width: 10px; height: 10px; margin: auto; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); transition: transform .2s ease; }
.submenu-toggle[aria-expanded="true"] span { transform: rotate(-135deg); }

@media (min-width: 1100px) {
	.nav-burger { display: none; }
	.site-header__cta { display: inline-flex; }
	.site-nav { display: flex; align-items: center; position: static; margin-left: auto; padding: 0; background: none; border: 0; box-shadow: none; max-height: none; overflow: visible; }
	.site-nav a.site-nav__call { display: none; }
	.submenu-toggle { display: none; }
	.site-nav .menu { display: flex; align-items: center; gap: 2px; }
	.site-nav .menu > li { border: 0; }
	.site-nav .menu > li > a { padding: 26px 10px; font-size: 18px; white-space: nowrap; }
	.site-nav .menu > li > a:hover, .site-nav .menu > li:focus-within > a { color: var(--teal-deep); }
	.site-nav .menu > .menu-item-has-children > a::after { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 0 4px 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
	.js-collapsible > .sub-menu { display: block; }
	.site-nav .sub-menu {
		position: absolute; top: 100%; left: 0; min-width: 240px; padding: 8px; margin: 0;
		background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--teal); border-radius: 0 0 var(--r-card) var(--r-card);
		box-shadow: var(--shadow-lift); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
	}
	.site-nav li:hover > .sub-menu, .site-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
	.site-nav .sub-menu a { padding: 9px 12px; border-radius: var(--r-btn); font-size: 16px; }
	.site-nav .sub-menu a:hover { background: var(--cream); color: var(--ink); }
	.site-nav .sub-menu .sub-menu { top: -9px; left: 100%; border-top-width: 1px; border-radius: var(--r-card); }
	.site-nav .sub-menu .sub-menu a { color: var(--ink); font-size: 15px; padding: 8px 12px; }
	.site-nav .sub-menu .menu-item-has-children > a::after { content: ""; float: right; width: 6px; height: 6px; margin-top: 8px; border-right: 2px solid currentColor; border-top: 2px solid currentColor; transform: rotate(45deg); }
}

/* ---------- sections ---------- */
.section { padding: var(--sec-y) 0; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--slate); color: #e7ecee; }
.section--dark a:not(.btn) { color: var(--teal); }
.section--intro { padding-top: clamp(40px, 6vw, 72px); }

.sec-head { margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head--center { text-align: center; max-width: 860px; margin-left: auto; margin-right: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; font-family: var(--f-display); font-size: 19px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); }
.eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; border-radius: 2px; }
.sec-head--center .eyebrow::after { content: ""; width: 28px; height: 3px; background: currentColor; border-radius: 2px; }
.section--dark .eyebrow { color: var(--teal); }
.sec-title { font-size: clamp(36px, 5.2vw, 60px); text-transform: uppercase; letter-spacing: .01em; }
.sec-title--left { margin-bottom: 28px; }
.section--dark .sec-title { color: #fff; }
.sec-foot { margin-top: clamp(28px, 4vw, 44px); text-align: center; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--ink); color: #fff; padding: clamp(40px, 7vw, 84px) 0 clamp(48px, 7vw, 92px); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(64, 224, 208, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(64, 224, 208, .07) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(90deg, #000 30%, transparent 85%); }
.page-hero__in { position: relative; }
.crumb { margin-bottom: 14px; font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.crumb a { color: inherit; text-decoration: none; }
.crumb a:hover { color: #fff; }
.page-hero__title { max-width: 980px; font-size: clamp(42px, 7vw, 84px); text-transform: uppercase; line-height: .95; }
.page-hero__title--post { font-size: clamp(34px, 5vw, 58px); text-transform: none; line-height: 1.05; }
.page-hero__pipe { position: absolute; left: 0; right: 0; bottom: 10px; width: 100%; height: 40px; fill: none; stroke: var(--teal); stroke-width: 3; opacity: .55; }
.post__date { display: block; margin-top: 16px; color: #aeb8bd; }

/* ---------- intro + sidebar ---------- */
.inner-layout { display: grid; gap: 40px; }
.inner-layout > .intro { order: -1; }
@media (min-width: 900px) {
	.inner-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; align-items: start; }
	.inner-layout > .intro { grid-column: 1; grid-row: 1; }
	.inner-layout > .loc-card { grid-column: 2; grid-row: 1; }
}
.intro__title { font-size: clamp(32px, 4.4vw, 50px); text-transform: uppercase; margin-bottom: 20px; }
.intro .rich { font-size: 18px; max-width: 70ch; }
.intro .btn { margin-top: 28px; }

.badges { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 28px 0 0; padding: 0; max-width: 520px; }
.badge { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--paper); }
.badge__img { width: 52px; height: 52px; object-fit: contain; }
.badge__text { font-family: var(--f-display); font-size: 19px; font-weight: 600; line-height: 1.05; text-transform: uppercase; }

.loc-card { background: var(--cream); border-radius: var(--r-card); padding: 22px; border: 1px solid var(--cream-2); }
@media (min-width: 900px) { .loc-card { position: sticky; top: 132px; } }
.loc-card__title { font-family: var(--f-display); font-size: 24px; font-weight: 700; text-transform: uppercase; margin: 0 0 10px; }
.loc-card__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 12px; }
@media (min-width: 900px) { .loc-card__list { grid-template-columns: 1fr; } }
/* 5 service links: a 2-column grid would orphan the last one */
.loc-card--services .loc-card__list { grid-template-columns: 1fr; }
.loc-card__list a { display: flex; align-items: center; gap: 10px; padding: 9px 8px; border-radius: var(--r-btn); color: var(--ink); text-decoration: none; font-weight: 700; }
.loc-card__list a .icon { color: var(--teal-deep); width: 18px; height: 18px; }
.loc-card__list a:hover, .loc-card__list a[aria-current="page"] { background: var(--paper); color: var(--teal-dark); }
.loc-card__item { font-family: var(--f-body); font-size: 17px; font-weight: 700; line-height: 1.3; }

/* ---------- cards ---------- */
.cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .cards--4, .cards--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .cards--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card { position: relative; display: flex; flex-direction: column; padding: 26px 24px 28px; background: var(--ink-2); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--r-card); transition: border-color .2s ease, transform .2s ease; }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px; border-radius: 12px; background: rgba(64, 224, 208, .12); color: var(--teal); }
.card__icon .icon { width: 26px; height: 26px; }
.card__title { font-size: 28px; color: #fff; margin-bottom: 10px; text-transform: uppercase; }
.card__title a { color: inherit; text-decoration: none; }
.card__body { font-size: 16px; color: #c9d1d5; }
.card--link .card__title a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card--link:hover { border-color: var(--teal); transform: translateY(-3px); }
.card__more { margin-top: auto; padding-top: 18px; color: var(--teal); }

/* ---------- reviews ---------- */
.reviews__top { display: grid; gap: 28px; margin-bottom: 36px; }
@media (min-width: 900px) { .reviews__top { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: end; gap: 56px; } }
.reviews__copy .sec-head { margin-bottom: 16px; }
.reviews__copy .rich { max-width: 62ch; }
.reviews__more { padding: 22px; border-radius: var(--r-card); background: var(--cream); }
.reviews__more-title { margin-bottom: 14px; font-family: var(--f-display); font-size: 22px; font-weight: 700; text-transform: uppercase; }
.reviews__widget { min-height: 280px; }

/* ---------- faq ---------- */
.faq-layout { display: grid; gap: 32px; }
@media (min-width: 900px) { .faq-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 64px; align-items: start; } .faq-layout__head { position: sticky; top: 132px; } }
.faq-layout__head .btn { margin-top: 4px; }
.faq-list { display: grid; gap: 10px; }
.faq { background: var(--paper); border: 1px solid var(--cream-2); border-radius: var(--r-card); }
.faq[open] { border-color: var(--teal-deep); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; cursor: pointer; list-style: none; font-weight: 700; font-size: 18px; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq__toggle { position: relative; flex: none; width: 28px; height: 28px; border-radius: var(--r-pill); background: var(--cream); }
.faq__toggle::before, .faq__toggle::after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.faq__toggle::after { transform: rotate(90deg); }
.faq[open] .faq__toggle { background: var(--teal); }
.faq[open] .faq__toggle::after { transform: rotate(0deg); }
.faq__a { padding: 0 20px 20px; color: var(--ink-2); }

/* ---------- quote ---------- */
.quote-sec { background: var(--teal); }
.quote { display: grid; gap: 32px; }
.quote > .quote__info { order: -1; }
@media (min-width: 900px) {
	.quote { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 64px; align-items: center; }
	.quote > .quote__info { grid-column: 1; grid-row: 1; }
	.quote > .quote__form { grid-column: 2; grid-row: 1; }
}
.quote__kicker { display: inline-block; margin-bottom: 14px; padding: 6px 12px; border-radius: var(--r-pill); background: var(--ink); color: var(--teal); font-family: var(--f-display); font-size: 17px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.quote__title { font-family: var(--f-display); font-size: clamp(40px, 5.6vw, 66px); font-weight: 700; line-height: .95; text-transform: uppercase; margin-bottom: 18px; color: var(--ink); }
.quote__text { font-size: 18px; max-width: 46ch; }
.quote__phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--ink); text-decoration: none; font-family: var(--f-display); font-size: clamp(34px, 4.4vw, 48px); font-weight: 700; line-height: 1; }
.quote__phone .icon { width: 34px; height: 34px; padding: 7px; border-radius: var(--r-pill); background: var(--ink); color: var(--teal); }
.quote__phone:hover { color: var(--teal-dark); }

.quote-form { background: var(--paper); border-radius: var(--r-card); padding: clamp(22px, 3vw, 34px); box-shadow: 0 30px 60px -30px rgba(6, 65, 59, .6); }
.quote-form__title { margin: 0 0 16px; font-family: var(--f-display); font-size: 30px; font-weight: 700; text-transform: uppercase; line-height: 1; }
.quote-form__grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 16px; }
@media (min-width: 600px) { .quote-form__grid { grid-template-columns: 1fr 1fr; } .field { grid-column: 1 / -1; } .field--half { grid-column: auto; } }
.field { display: grid; gap: 4px; }
.field span { font-size: 14px; font-weight: 700; color: var(--ink-2); }
.field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid #cfc6b5; border-radius: var(--r-btn); background: #fbf9f4; font-size: 16px; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--teal-deep); outline-offset: 0; border-color: var(--teal-deep); background: #fff; }
.field--hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.quote-form__status { margin: 0 0 14px; padding: 10px 14px; border-radius: var(--r-btn); font-weight: 700; }
.quote-form__status--ok { background: #dff7f3; color: var(--teal-dark); }
.quote-form__status--bad { background: #fde8e6; color: #8a1f14; }

/* ---------- home: hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20, 24, 27, .96) 0%, rgba(20, 24, 27, .78) 48%, rgba(20, 24, 27, .35) 100%); }
.hero__grid { position: relative; z-index: 1; display: grid; gap: 40px; padding-top: clamp(48px, 8vw, 110px); padding-bottom: clamp(56px, 8vw, 120px); }
@media (min-width: 900px) { .hero__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); align-items: center; gap: 64px; } }
.hero__eyebrow { margin-bottom: 18px; font-family: var(--f-display); font-size: clamp(18px, 2vw, 22px); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); }
.hero__title { font-size: clamp(46px, 7.4vw, 96px); line-height: .92; text-transform: uppercase; margin-bottom: 22px; }
.hero__sub { max-width: 58ch; margin-bottom: 30px; font-size: 18px; color: #d3dade; }
.hero__media { position: relative; justify-self: center; max-width: 420px; }
.hero__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 3px solid var(--teal); border-radius: var(--r-img); }
.hero__photo { position: relative; border-radius: var(--r-img); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }

/* ---------- home: why ---------- */
.why__grid { display: grid; gap: 44px; }
@media (min-width: 900px) { .why__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; } }
.why__copy .rich { font-size: 18px; }
.checklist ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
@media (min-width: 600px) { .checklist ul { grid-template-columns: 1fr 1fr; } }
.checklist li { position: relative; padding: 10px 12px 10px 44px; border-radius: var(--r-btn); background: var(--cream); font-weight: 700; line-height: 1.3; }
.checklist li::first-letter { text-transform: uppercase; }
.checklist li::before { content: ""; position: absolute; left: 12px; top: 50%; width: 20px; height: 20px; margin-top: -10px; border-radius: var(--r-pill); background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314181b' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.why__photos { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.why__photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-img); }
.why__photo--1 { grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.why__photo--2, .why__photo--3 { aspect-ratio: 4 / 3; }

/* ---------- home: explainer ---------- */
.explainer__lede { max-width: 760px; margin: 0 auto 48px; font-size: 19px; text-align: center; }
.explainer__cols { display: grid; gap: 16px; }
@media (min-width: 900px) { .explainer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.explainer__col { padding: 28px 26px; background: var(--paper); border-radius: var(--r-card); border-top: 4px solid var(--teal-deep); }
.explainer__num { display: block; margin-bottom: 10px; font-family: var(--f-display); font-size: 44px; font-weight: 700; line-height: 1; color: var(--cream-2); }
.explainer__title { font-size: 30px; text-transform: uppercase; margin-bottom: 12px; }

/* ---------- galleries ---------- */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .gallery--8 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.gallery--3 { grid-template-columns: 1fr; }
@media (min-width: 900px) { .gallery--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.gallery__item { overflow: hidden; border-radius: var(--r-img); background: var(--cream); }
.gallery__item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__item--captioned img { aspect-ratio: 4 / 3; }
.gallery__item--captioned figcaption { padding: 14px 16px 16px; background: var(--paper); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--r-img) var(--r-img); }
.gallery__caption { font-size: 22px; text-transform: uppercase; }
.gallery-sec + .gallery-sec { padding-top: 0; }

/* ---------- home: areas ---------- */
.areas__grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .areas__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 72px; align-items: center; } }
.areas__copy .rich { color: #c9d1d5; }
.area-links { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.area-link { display: flex; align-items: center; gap: 10px; min-height: 56px; padding: 12px 16px; border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--r-btn); color: #fff !important; text-decoration: none; font-family: var(--f-display); font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; transition: background-color .15s ease, border-color .15s ease; }
.area-link .icon { color: var(--teal); }
.area-link:hover { background: var(--teal); border-color: var(--teal); color: var(--ink) !important; }
.area-link:hover .icon { color: var(--ink); }

/* ---------- about ---------- */
.pullquote__fig { text-align: center; }
.pullquote blockquote { margin: 0; }
.pullquote__text { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08; color: #fff; }
.pullquote__text::before { content: "\201C"; display: block; font-size: 110px; line-height: .6; color: var(--teal); }
.pullquote__cite { margin-top: 24px; font-family: var(--f-body); font-size: 18px; font-weight: 700; color: var(--teal); letter-spacing: .02em; }

/* ---------- contact ---------- */
.contact-cards { display: grid; gap: 14px; }
@media (min-width: 900px) { .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.contact-card { display: grid; justify-items: start; gap: 8px; padding: 26px; border: 1px solid var(--line); border-radius: var(--r-card); color: var(--ink); text-decoration: none; transition: border-color .15s ease, box-shadow .15s ease; }
.contact-card:hover { border-color: var(--teal-deep); box-shadow: var(--shadow-lift); color: var(--ink); }
.contact-card__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--teal); }
.contact-card__title { font-size: 26px; text-transform: uppercase; }
.contact-card__text { font-weight: 700; overflow-wrap: anywhere; }

/* ---------- services index ---------- */
.svc-rows { display: grid; gap: 12px; }
.svc-row { display: grid; grid-template-columns: auto 1fr; gap: 16px 20px; align-items: start; padding: 24px; background: var(--ink-2); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--r-card); }
.svc-row__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; background: rgba(64, 224, 208, .12); color: var(--teal); }
.svc-row__title { font-size: 30px; color: #fff; text-transform: uppercase; margin-bottom: 6px; }
.svc-row__body .rich { color: #c9d1d5; }
.svc-row__btn { grid-column: 1 / -1; justify-self: start; }
@media (min-width: 900px) { .svc-row { grid-template-columns: auto 1fr auto; align-items: center; } .svc-row__btn { grid-column: auto; } }

/* ---------- blog ---------- */
.post-list { display: grid; gap: 18px; max-width: 980px; }
.post-card { display: grid; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--paper); }
@media (min-width: 700px) { .post-card:has(.post-card__media) { grid-template-columns: 280px 1fr; } }
.post-card__media img { width: 100%; height: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card__body { padding: 22px 24px 24px; }
.post-card__date { display: block; margin-bottom: 6px; font-size: 14px; color: var(--muted); }
.post-card__title { font-size: clamp(24px, 3vw, 30px); line-height: 1.08; margin-bottom: 10px; }
.post-card__title a { color: var(--ink); text-decoration: none; }
.post-card__title a:hover { color: var(--teal-deep); }
.post-card__excerpt { color: var(--ink-2); }
.post-card__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; }
.pagination ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 12px 0 0; }
.pagination a, .pagination span { display: inline-grid; place-items: center; min-width: 44px; min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--r-btn); text-decoration: none; }
.pagination .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--post { padding-top: clamp(32px, 5vw, 56px); }
.post__media { margin-bottom: 32px; }
.post__media img { border-radius: var(--r-img); width: 100%; }
.post-nav { display: grid; gap: 12px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
@media (min-width: 700px) { .post-nav { grid-template-columns: 1fr 1fr; } .post-nav__next { text-align: right; } }
.post-nav a { display: block; font-weight: 700; text-decoration: none; }
.post-nav a span { display: block; font-size: 13px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.page-title { font-size: clamp(38px, 5vw, 56px); margin-bottom: 24px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #b9c3c8; font-size: 16px; }
.footer__grid { display: grid; gap: 36px; padding-top: 64px; padding-bottom: 48px; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1.1fr; gap: 64px; } }
@media (min-width: 700px) and (max-width: 1099px) { .footer__brand { grid-column: 1 / -1; } }
.brand--footer .brand__logo { width: 88px; height: 88px; }
.footer__lede { margin: 18px 0 16px; max-width: 34ch; }
.footer__social { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--r-pill); color: #fff; }
.footer__social:hover { background: var(--teal); border-color: var(--teal); color: var(--ink); }
.footer__title { margin-bottom: 16px; font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.footer__menu { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 16px; }
.footer__menu a, .footer__contact a { color: #b9c3c8; text-decoration: none; }
.footer__menu a:hover, .footer__contact a:hover { color: var(--teal); }
.footer__contact { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact .icon { color: var(--teal); }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, .1); font-size: 14px; }
.footer__bar-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 18px; padding-bottom: 18px; }

/* post share row */
.post-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 24px; font-weight: 700; }
.post-share__label { color: var(--muted); font-weight: 400; }
.post__date { color: #aeb8bd; text-decoration: none; }
.post__date:hover { color: var(--teal); }
