article section {
	padding-block: var(--space-fluid-7);
	border-bottom: 1px solid var(--rule);
}

article section:first-child {
	border-top: 1px solid var(--rule);
}

article section:nth-of-type(3n + 1){
	background: var(--surface-1);
}

article section:nth-of-type(3n + 2){
	background: var(--surface-2);
}
article section:nth-of-type(3n + 3){
	background: var(--surface-3);
}

.stay-dark * {
	color: var(--color-bg-50);
}

::marker {
    color: var(--color-brand-bronze);
}

.cta {
    display: flex;
    justify-content: center;
    margin: var(--space-4) auto ;
}


/* =========================================
	PHILOSOPHY / STRUCTURE SECTION
========================================= */

/* Typography */
.philo-copy h2{
	margin-bottom: var(--space-3);
}

.philo-copy p{
	line-height: 1.7;
	color: var(--page-text);
	margin-bottom: var(--space-3);
}

.philo-emphasis{
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* Points */
.philo-points{
	margin-top: var(--space-4);
	display: grid;
	gap: var(--space-2);
}

.philo-point{
	display: grid;
	gap: 4px;
	padding: var(--space-3);
	border-radius: var(--radius-md);
	border: 1px solid rgba(31,31,31,0.10);
	background: var(--color-brand-blue);
}

.philo-point-title{
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.10em;
	color: var(--color-paper-70);
}

.philo-point-text{
	line-height: 1.6;
}

/* Media column */
.philo-media{
	display: grid;
	gap: var(--space-3);
}

.philo-figure{
	margin: 0;
}

.philo-figure figcaption{
	margin-top: 10px;
	font-size: var(--text-sm);
	color: var(--page-text-muted);
}

/* Divider */
.philo-rule{
	height: 1px;
	background: rgba(31,31,31,0.12);
	margin-block: var(--space-fluid-6);
}

/* Callout */
.philo-callout{
	padding: var(--space-4);
	border-radius: var(--radius-lg);
	border: 1px solid var(--page-text);
	background: var(--surface-2);
	font-weight: 600;
}

/* Side card */
.philo-sidecard{
	background: var(--color-brand-green);
	border: var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: var(--space-5);
}

.philo-sidecard h3{
	margin-top: 0;
	margin-bottom: var(--space-3);
}

.philo-sidecard ul{
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 10px;
	line-height: 1.55;
}

.philo-side-note{
	margin: 10px 0 0 0;
	font-size: var(--text-sm);
	color: var(--color-paper-70);
}

/* =========================================
	SHARED PLACEHOLDER IMAGE BASE
	(used by .philo-img, .process-hero-img, .step-img)
========================================= */

.philo-img,
.process-hero-img,
.step-img,
.media-ph{
	border-radius: var(--radius-lg);
	border: var(--border-subtle);
	box-shadow: var(--shadow-md);
	background:
		radial-gradient(900px 420px at 18% 20%, rgba(159,133,86,0.18), transparent 55%),
		radial-gradient(700px 420px at 80% 75%, rgba(46,70,86,0.16), transparent 60%),
		linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.55));
	position: relative;
	overflow: hidden;
}

/* subtle “grid” linework to feel architectural */
.philo-img::after,
.process-hero-img::after,
.step-img::after{
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(31,31,31,0.06) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(31,31,31,0.06) 1px, transparent 1px);
	background-size: 26px 26px;
	opacity: 0.45;
	pointer-events: none;
}

/* Aspect ratios (kept exactly as your HTML expects) */
.philo-img--primary,.media-ph--4x3{ aspect-ratio: 4 / 3; }
.philo-img--secondary{ aspect-ratio: 16 / 10; }
.philo-img--diagram{ aspect-ratio: 16 / 10; margin-top: var(--space-3); }

/* Step media ratio (kept) */
.step-img,.media-ph--16x10{ aspect-ratio: 16 / 10; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.step-img::after{ background-size: 24px 24px; }

/* =========================================
	TIERS SECTION
========================================= */

.tiers-head{
	margin-bottom: var(--space-fluid-6);
}

.tiers-head h2{
	margin-bottom: var(--space-3);
}

.tiers-head p{
	color: var(--page-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* Tier cards */
.tier-card{
	background: var(--color-brand-blue);
	border: var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: var(--space-5);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	position: relative;
	overflow: hidden;
}

article.tier-card.tier-reimagine {
    background: var(--color-brand-green);
}

article.tier-card.tier-remodel {
    background: var(--color-accent-bronze-deep);
}

/* subtle “bronze line” accent */
.tier-card::before{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(159,133,86,0.35), rgba(159,133,86,0.00) 55%);
	opacity: 0.22;
}

.tier-top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-3);
	position: relative;
}

.tier-title{
	display: grid;
	gap: 6px;
}

.tier-kicker{
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: 0.10em;
	color: var(--color-paper-70);
}

.tier-card h3{
	margin: 0;
	line-height: 1.1;
}

.tier-tag{
	display: inline-flex;
	align-items: center;
	padding: 8px 10px;
	border-radius: 999px;
	border: 1px solid rgba(31,31,31,0.12);
	background: var(--page-text);
	color: var(--page-text-inverse);
	font-size: var(--text-sm);
	white-space: nowrap;
}

.tier-summary{
	margin: 0;
	line-height: 1.6;
	position: relative;
}

.tier-includes{
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
	color: var(--page-text);
	line-height: 1.55;
	position: relative;
}

.tier-metrics{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-2);
	padding-top: var(--space-2);
	border-top: 1px solid rgba(31,31,31,0.10);
	position: relative;
}

.metric{
	display: grid;
	gap: 4px;
}

.metric-label{
	font-size: var(--text-sm);
	color: var(--color-paper-70);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.metric-value{
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tier-note{
	margin: 0;
	color: var(--color-paper-70);
	line-height: 1.6;
	position: relative;
}

@media screen and (max-width: 768px){
	.tier-top {flex-direction: column-reverse;}

	.tier-tag {align-self: end;}
}

@media (prefers-reduced-motion: no-preference){
	.tier-card{
		transition: transform 200ms ease, box-shadow 200ms ease;
	}
	.tier-card:hover{
		transform: translateY(-2px);
		box-shadow: var(--shadow-lg);
	}
}

/* =========================================
	PROCESS SECTION
========================================= */

.process-head{
	margin-bottom: var(--space-fluid-5);
}

.process-head p{
	margin: 0;
	color: var(--page-text-muted);
	line-height: 1.6;
}

/* Top visual */
.process-hero{
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-fluid-6);
}

@media (min-width: 992px){
  .process-hero{
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
  }
}

.process-hero-img{
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(900px 420px at 18% 25%, rgba(159,133,86,0.18), transparent 55%),
    radial-gradient(700px 420px at 82% 78%, rgba(46,70,86,0.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.55));
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.process-hero-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(31,31,31,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,31,31,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
  pointer-events:none;
}


.process-hero-note{
	background: var(--color-brand-blue);
	border: var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: var(--space-5);
	margin-bottom: var(--space-5);
}

.process-hero-note p{
	margin: 0;
	line-height: 1.6;
}

/* Step card layout uses grid system: make the inside align nicely */
.process-step{
	background: var(--color-brand-green);
	border: var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: var(--space-5);
	position: relative;
	overflow: hidden;
	margin-bottom: var(--space-4);
}

/* Alternating background (kept) */
article.process-step:nth-child(2n){
	background: var(--color-brand-blue);
}

/* Step number */
.step-num{
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--color-paper-70);
	font-size: 28px;
	line-height: 1;
}

/* Step text */
.step-body h3{
	margin-top: 0;
	margin-bottom: var(--space-2);
}

.step-body p{
	margin: 0 0 var(--space-2) 0;
	line-height: 1.7;
}

.step-emphasis{
	font-weight: 650;
}

.step-media{
	display: grid;
	gap: 10px;
}

.step-cap{
	font-size: var(--text-sm);
	color: var(--color-paper-70);
}

.section-head{
	margin-bottom: var(--space-4);
}

.section-head .lead{
	color: var(--page-text-muted);
	line-height: 1.7;
	margin-top: var(--space-2);
	margin-bottom: 0;
}

.stack > * + *{
	margin-top: var(--space-3);
}

.caption{
	margin-top: 10px;
	font-size: var(--text-sm);
	color: var(--page-text-muted);
}

.media-block{
	display: grid;
	gap: 10px;
}

.card-title{
	margin-top: 0;
	margin-bottom: var(--space-3);
}

.list-plain{
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 10px;
	line-height: 1.55;
}

.list-check{
	margin: 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	line-height: 1.55;
}

.list-check li{
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

ul.list-check + div {
    margin-top: var(--space-4);
}

.list-check li::before{
	content: "✓";
	font-weight: 800;
	color: var(--color-brand-bronze);
	line-height: 1.2;
}

.faq-accordion{
	display: grid;
	gap: var(--space-3);
}

.faq-item{
	border: var(--border-subtle);
	border-radius: var(--radius-lg);
	background: var(--color-brand-green);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.faq-item[open]{
	background: var(--color-brand-blue);
}

.faq-summary{
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	padding: var(--space-4) var(--space-5);
	cursor: pointer;
	font-weight: 700;
}

.faq-summary::-webkit-details-marker{
	display: none;
}

.faq-icon{
	width: 18px;
	height: 18px;
	position: relative;
	flex: 0 0 auto;
	opacity: 0.7;
}

.faq-icon::before,
.faq-icon::after{
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: var(--color-paper-70);
	border-radius: 2px;
	
}

.faq-icon::before{
	width: 18px;
	height: 2px;
}

.faq-icon::after{
	width: 2px;
	height: 18px;
	transition: transform 160ms ease, opacity 160ms ease;
}

.faq-item[open] .faq-icon::after{
	transform: scaleY(0);
	opacity: 0;
}

.faq-body{
	padding: 0 var(--space-5) var(--space-5) var(--space-5);
	color: var(--page-text);
}

#contact .row + .row {
    margin-top: var(--space-5);
}

.contact-actions{
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
}

.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	margin-top: 0;
}

.btn:hover {
	opacity: 1;
}

.btn--ghost{
	opacity: .65;
	transition: .5s opacity
}

.service-map img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.content-card {
	background: var(--color-brand-green);
	padding: var(--space-fluid-5);
	border-radius: var(--radius-lg);
	border: var(--border-subtle);
}

.city-grid {
	list-style: none;
	padding: 0;
	margin: var(--space-fluid-4) 0 0 0;

	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-2) var(--space-4);
}

.city-grid li {
	font-weight: 500;
	position: relative;
	padding-left: 14px;
}

.city-grid li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-brand-bronze);
}

.contact-mini{
	margin-top: var(--space-4);
}

.site-footer{
	background: var(--surface-2);
	border-top: var(--border-subtle);
}

.footer-title{
	font-weight: 800;
	margin: 0;
}

.footer-license{
	font-size: var(--text-sm);
	color: var(--page-text-muted);
	margin: 0;
}

.footer-nav{
	display: flex;
	justify-content: flex-start;
}

@media (min-width: 992px){
	.footer-nav{
		justify-content: flex-end;
	}
}

.footer-links{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
}

.footer-links a{
	text-decoration: none;
	font-size: var(--text-sm);
	color: var(--page-text);
	opacity: 0.8;
}

.footer-links a:hover{
	opacity: 1;
	text-decoration: underline;
}

section#footer-main {
    padding: var(--space-3) 0;
}

section#footer-bottom-bar {
    background: var(--surface-3);
    border-top: var(--border-subtle);
}

.footer-bottom{
	padding-top: var(--space-2);
	text-align: center;
	font-size: var(--text-sm);
	color: var(--page-text-muted);
}