/* ==========================================================================
   Agency Child — Design Tokens
   ========================================================================== */
:root {
	--agency-ink: #14161c;
	--agency-ink-soft: #3a3d47;
	--agency-paper: #faf9f6;
	--agency-surface: #ffffff;
	--agency-line: #e6e3db;
	--agency-accent: #c8622a;
	--agency-accent-dark: #a94f1f;
	--agency-muted: #8a8d97;
	--agency-radius: 4px;
	--agency-max-width: 1200px;
	--agency-font-display: Georgia, 'Times New Roman', serif;
	--agency-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body.agency-body-base,
body {
	font-family: var(--agency-font-body);
	color: var(--agency-ink);
	background: var(--agency-paper);
}

.agency-container {
	max-width: var(--agency-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text { position: absolute !important; left: -9999px; }

/* ==========================================================================
   Header
   ========================================================================== */
.agency-site-header {
	background: var(--agency-surface);
	border-bottom: 1px solid var(--agency-line);
	position: sticky;
	top: 0;
	z-index: 100;
}

.agency-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}

.agency-site-title {
	font-family: var(--agency-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--agency-ink);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.agency-primary-nav { flex: 1; display: flex; justify-content: center; }

.agency-nav-list {
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
}

.agency-nav-list a {
	color: var(--agency-ink-soft);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: color 0.15s ease;
}

.agency-nav-list a:hover { color: var(--agency-accent); }

.agency-mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.agency-mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--agency-ink);
	margin: 5px 0;
}

.agency-mobile-nav { display: none; }

@media (max-width: 900px) {
	.agency-primary-nav, .agency-header-cta { display: none; }
	.agency-mobile-toggle { display: block; }
	.agency-mobile-nav.is-open {
		display: block;
		background: var(--agency-surface);
		border-top: 1px solid var(--agency-line);
		padding: 16px 24px 24px;
	}
	.agency-mobile-nav-list { list-style: none; margin: 0 0 16px; padding: 0; }
	.agency-mobile-nav-list li { margin-bottom: 12px; }
	.agency-mobile-nav-list a { color: var(--agency-ink); text-decoration: none; font-size: 16px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.agency-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: var(--agency-radius);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: background 0.15s ease, transform 0.1s ease;
	border: 1px solid transparent;
	cursor: pointer;
}

.agency-btn--primary {
	background: var(--agency-accent);
	color: #fff;
}
.agency-btn--primary:hover { background: var(--agency-accent-dark); }

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

.agency-btn--block { display: block; text-align: center; width: 100%; }

/* ==========================================================================
   Footer
   ========================================================================== */
.agency-site-footer {
	background: var(--agency-ink);
	color: #d7d6d2;
	margin-top: 80px;
}

.agency-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	padding: 64px 24px 40px;
}

.agency-footer-heading {
	font-family: var(--agency-font-display);
	color: #fff;
	font-size: 20px;
	margin: 0 0 12px;
}

.agency-footer-subheading {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 16px;
}

.agency-footer-nav-list,
.agency-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}
.agency-footer-nav-list li,
.agency-footer-contact li { margin-bottom: 10px; }
.agency-footer-nav-list a,
.agency-footer-contact a {
	color: #d7d6d2;
	text-decoration: none;
	font-size: 14px;
}
.agency-footer-nav-list a:hover,
.agency-footer-contact a:hover { color: var(--agency-accent); }

.agency-footer-bottom {
	border-top: 1px solid #2a2d36;
	padding: 20px 24px;
	font-size: 13px;
	color: var(--agency-muted);
}

@media (max-width: 700px) {
	.agency-footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.agency-contact-form-wrap { max-width: 640px; }

.agency-form-notice {
	padding: 14px 18px;
	border-radius: var(--agency-radius);
	margin-bottom: 20px;
	font-size: 14px;
}
.agency-form-notice--success { background: #e7f3ea; color: #1e5631; border: 1px solid #bfe0c7; }
.agency-form-notice--error { background: #fbeaea; color: #7a1f1f; border: 1px solid #f0c6c6; }

.agency-contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.agency-form-row--full { grid-column: 1 / -1; }
.agency-form-row label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--agency-ink-soft);
}
.agency-form-row input,
.agency-form-row select,
.agency-form-row textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--agency-line);
	border-radius: var(--agency-radius);
	font-size: 14px;
	font-family: inherit;
	background: var(--agency-surface);
}
.agency-form-row input:focus,
.agency-form-row select:focus,
.agency-form-row textarea:focus {
	outline: none;
	border-color: var(--agency-accent);
}

@media (max-width: 600px) {
	.agency-contact-form { grid-template-columns: 1fr; }
}
