:root {
	--paper: #f7f6f2;
	--white: #fff;
	--ink: #111720;
	--muted: #4f5154;
	--teal: #1f6f73;
	--soft-teal: #e8efed;
	--line: #dededb;
	--gutter: clamp(24px, 4vw, 64px);
	--content: 1250px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
	body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Manrope, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.35;
}
a { color: inherit; }
.site-header {
	height: 60px;
	background: rgba(255,255,255,.96);
}
.header-inner {
	width: min(var(--content), calc(100% - 2 * var(--gutter)));
	height: 100%;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 31px;
}
.brand { text-decoration: none; line-height: 1; }
.brand > a { text-decoration: none; }
.brand strong { display: block; font-size: 24px; letter-spacing: .01em; }
nav { display: flex; gap: 27px; align-items: center; font-size: 13px; }
nav a, .text-link { text-decoration: none; }
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 5px;
	padding: 9px 17px;
	background: var(--teal);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}
.button-small { min-width: 97px; padding: 8px 15px; font-size: 13px; }
.hero {
	min-height: 360px;
	display: grid;
	grid-template-columns: minmax(0, 50%) minmax(0, 50%);
	background: var(--paper);
}
.hero-copy { padding: 24px 0 24px var(--gutter); display: flex; align-items: center; justify-content: flex-end; }
@media (min-width: 782px) {
	.hero-copy { justify-content: flex-start; }
}
.copy-measure { width: min(100%, 520px); }
.hero-media { min-width: 0; min-height: 360px; overflow: hidden; }
.hero-media img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: 70% 50%; }
.eyebrow { margin: 0 0 9px; font-size: 12px; font-weight: 700; letter-spacing: .07em; }
.service-phrase { white-space: nowrap; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 10px; font-size: clamp(2.3rem, 3.4vw, 2.7rem); line-height: 1.03; letter-spacing: -.02em; font-weight: 600; }
h1 strong { font-weight: 600; }
@media (min-width: 782px) {
	h1 { white-space: nowrap; }
}
h2 { margin-bottom: 3px; font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.05; letter-spacing: -.04em; }
h3 { margin-bottom: 8px; font-size: 15px; line-height: 1.08; }
.hero-copy p { max-width: 520px; margin-bottom: 14px; font-size: 18px; line-height: 1.35; color: var(--muted); }
.hero-copy .button { margin-top: 2px; }
.section { padding: 31px 0; }
.section-inner { width: min(var(--content), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.services { background: var(--white); padding-top: 25px; padding-bottom: 20px; }
.section-intro { margin-bottom: 15px; color: var(--muted); font-size: 18px; line-height: 1.35; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.service-card { min-height: 0; border: 1px solid var(--line); border-radius: 5px; padding: 12px 15px 10px; background: var(--paper); }
.card-icon { display: flex; justify-content: center; height: 29px; margin-bottom: 10px; color: var(--teal); font-size: 26px; line-height: 1; }
.service-card:nth-child(2) .card-icon { color: #b33a3a; }
.service-card:last-child .card-icon { display: grid; place-items: center; width: 26px; height: 26px; margin-left: auto; margin-right: auto; border: 2px solid currentColor; border-radius: 50%; font-size: 18px; font-weight: 700; }
.service-card h3 { color: var(--teal); font-size: 18px; }
.service-card p { margin-bottom: 8px; color: var(--ink); font-size: 16px; line-height: 1.35; }
.pricing-strip { display: grid; grid-template-columns: 50px 1fr; gap: 13px; align-items: center; margin-top: 7px; padding: 12px 17px; border-radius: 5px; background: var(--teal); }
.price-mark { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: rgba(255,255,255,.88); color: var(--teal); font-size: 30px; }
.pricing-strip h2 { margin-bottom: 5px; color: #fff; }
.pricing-strip p { margin: 0; color: #fff; font-size: 16px; line-height: 1.35; }
.about { background: var(--paper); }
.about-grid, .work-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.about-grid { align-items: stretch; }
.placeholder { display: grid; place-items: center; min-height: 260px; background: #d8d7d1; color: #60625f; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.about-media { align-self: stretch; min-height: 0; }
.about-placeholder { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: left center; }
.about-copy p, .contact p { margin-bottom: 12px; color: var(--muted); font-size: 16px; line-height: 1.35; }
.book-credential { margin: 6px 0 8px; }
.book-credential img { display: block; width: 72px; height: auto; }
.work { background: var(--white); padding-top: 28px; padding-bottom: 28px; }
.work-grid { grid-template-columns: 1fr 1fr; }
.portfolio-gateway { display: block; grid-column: 1 / -1; justify-self: center; width: 100%; }
.work-placeholder { display: block; width: 100%; height: 260px; min-height: 0; object-fit: cover; object-position: center 28%; background: #16252a; }
.text-link { display: inline-block; color: var(--teal); font-size: 12px; }
.work .text-link { font-size: 14px; font-weight: 700; }
.faq { background: var(--white); }
.faq-heading { position: relative; }
.faq-heading .text-link { position: absolute; right: 0; top: 19px; }
.faq-grid { display: grid; row-gap: 0; }
.faq-row { display: grid; grid-template-columns: 1fr 1fr; column-gap: 52px; }
details { display: flex; align-items: center; min-width: 0; border-bottom: 1px solid var(--line); }
details[open] { display: block; }
summary { display: flex; align-items: center; position: relative; align-self: stretch; width: 100%; padding: 12px 24px 12px 0; cursor: pointer; list-style: none; font-size: 16px; line-height: 1.4; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; top: 50%; right: 0; font-size: 16px; line-height: 1; transform: translateY(-50%); }
details[open] summary::after { content: '–'; }
details p { padding-right: 15px; color: var(--muted); font-size: 16px; line-height: 1.4; }
.contact { background: var(--paper); }
.contact { padding-top: 16px; }
.contact-grid { display: block; }
.contact h2 { margin-bottom: 14px; }
.contact-rows { display: grid; grid-template-columns: 1.45fr .75fr; column-gap: 26px; row-gap: 12px; align-items: center; }
.contact-rows p { margin-bottom: 0; }
.contact-detail { display: flex; align-items: center; gap: 8px; min-width: 0; color: var(--ink); font-size: 16px; }
.contact-detail a { color: inherit; text-decoration: none; }
.contact-detail a:hover, .contact-detail a:focus-visible { color: var(--teal); }
.phone-mobile { display: none; }
.contact-icon { flex: 0 0 18px; color: var(--teal); font-size: 18px; line-height: 1; text-align: center; }
.camera-lens svg { display: block; width: 29px; height: 29px; }
.camera-lens img { display: block; width: 29px; height: 29px; object-fit: contain; }
.site-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px var(--gutter); background: #fff; font-size: 10px; }
.site-footer strong { font-size: 11px; }
.site-footer span { margin-left: 18px; color: var(--muted); }
.site-footer small { color: var(--muted); }

@media (max-width: 781px) {
	:root { --gutter: 24px; }
	.site-header { height: auto; }
	.header-inner { width: calc(100% - 48px); grid-template-columns: 1fr auto; gap: 13px; padding: 11px 0; }
	nav { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; gap: 8px; font-size: 12px; }
	.header-inner > .button-small { display: none; }
	.hero { display: flex; flex-direction: column; }
	.hero-copy { padding: 34px 24px; }
	.copy-measure { width: 100%; }
	h1 { white-space: normal; }
	h1 { font-size: 2rem; }
	.eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .04em; }
	.service-phrase { white-space: normal; }
	.hero-media, .hero-media img { min-height: 260px; height: 260px; }
	.section-inner { width: calc(100% - 48px); }
	.service-grid, .faq-grid, .about-grid, .work-grid, .contact-grid, .faq-row { grid-template-columns: 1fr; }
	.portfolio-gateway { grid-column: 1; width: 100%; }
	.service-card { min-height: 0; min-width: 0; }
	.about-copy { display: contents; }
	.about-copy h2 { order: 1; }
	.about-media { order: 2; }
	.about-copy p { order: 3; }
	.about-grid { row-gap: 0; }
	.about-copy h2 { margin-bottom: 29px; }
	.about-media { margin-bottom: 26px; }
	.about-copy p { margin-bottom: 19px; }
	.about-copy p:last-of-type { margin-bottom: 6px; }
	.about { padding-bottom: 19px; }
	.about-placeholder { height: auto; object-fit: contain; object-position: center; }
	.work-placeholder { height: auto; object-fit: contain; object-position: center; }
	.work { padding-bottom: 14px; }
	.faq { padding-top: 16px; }
	.faq-grid { column-gap: 0; }
	.faq-heading .text-link { position: static; margin-bottom: 10px; }
	.contact-rows { display: flex; flex-direction: column; row-gap: 0; }
	.contact-rows > p:nth-child(1) { order: 1; }
	.contact-rows > p:nth-child(3) { order: 2; }
	.contact-rows > p:nth-child(5) { order: 3; }
	.contact-rows > p:nth-child(2) { order: 4; }
	.contact-rows > p:nth-child(4) { order: 5; }
	.contact-rows > p:not(.contact-detail) { margin-bottom: 12px; }
	.contact-rows > p:nth-child(5) { margin-bottom: 18px; }
	.contact-rows > .contact-detail { align-self: flex-start; }
	.phone-desktop { display: none; }
	.phone-mobile { display: inline; }
	.site-footer { display: block; padding: 14px 24px; }
	.site-footer span { display: block; margin: 3px 0 8px; }
}
