/* ==========================================================================
   Alcozi Landscaping — main stylesheet
   One file, no framework. Mobile-first, brand colors pulled from the
   Alcozi logo (black / lime / grey).
   ========================================================================== */

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link { position: fixed; top: -100px; left: 12px; z-index: 9999; background: #fff; color: #000; padding: 10px 16px; border-radius: 6px; }
.skip-link:focus { top: 12px; }

/* ---- Tokens -------------------------------------------------------------- */
:root {
	--ink: #0e0f0c;
	--ink-soft: #1c1f18;
	--lime: #cdec2e;
	--lime-deep: #a6c119;
	--paper: #faf9f4;
	--white: #ffffff;
	--grey-900: #23261f;
	--grey-700: #4c5045;
	--grey-500: #767a70;
	--grey-300: #d3d6cd;
	--grey-150: #e9ebe4;
	--grey-100: #f2f3ee;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow-soft: 0 20px 45px -25px rgba(14,15,12,0.35);
	--shadow-hard: 0 10px 25px -12px rgba(14,15,12,0.5);
	--max: 1260px;
	--font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---- Base ---------------------------------------------------------------- */
body {
	font-family: var(--font-body);
	color: var(--grey-900);
	background: var(--paper);
	line-height: 1.6;
	font-size: 16.5px;
}
h1, h2, h3, h4 {
	font-family: var(--font-display);
	letter-spacing: 0.01em;
	line-height: 1.05;
	color: var(--ink);
	text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; letter-spacing: 0.02em; }
p { max-width: 62ch; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 640px) { .wrap { padding-inline: 32px; } }

.eyebrow {
	display: inline-block;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--grey-700);
	margin-bottom: 10px;
}
.section { padding-block: clamp(48px, 7vw, 96px); }
.section--dark { background: var(--ink); color: var(--grey-150); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--lime); }
.section--dark p { color: var(--grey-300); }

.section-head { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.section-head--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }

.link-arrow { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--lime); padding-bottom: 2px; white-space: nowrap; }
.section--dark .link-arrow { color: var(--white); }

/* ---- Buttons --------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
	letter-spacing: 0.02em; transition: transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
	white-space: nowrap;
}
.btn--primary { background: var(--lime); color: var(--ink); box-shadow: var(--shadow-hard); }
.btn--primary:hover { background: var(--lime-deep); transform: translateY(-2px); }
.btn--outline { border: 2px solid var(--grey-900); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
/* Any dark-background hero/section context: outline button must stay white, never dark-on-dark. */
.section--dark .btn--outline,
.hero .btn--outline,
.service-hero .btn--outline,
.page-hero .btn--outline {
	border-color: var(--white);
	color: var(--white);
}
.section--dark .btn--outline:hover,
.hero .btn--outline:hover,
.service-hero .btn--outline:hover,
.page-hero .btn--outline:hover {
	background: var(--white);
	color: var(--ink);
}
.btn--ghost { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; padding-inline: 10px; }
.btn--small { padding: 10px 18px; font-size: 0.85rem; }
.btn--large { padding: 17px 32px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; margin-top: 10px; }

/* ---- Top bar / Header ------------------------------------------------------ */
.top-bar { background: var(--ink); color: var(--grey-300); font-size: 0.78rem; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; padding-block: 8px; gap: 12px; }
.top-bar__areas { display: none; }
@media (min-width: 900px) { .top-bar__areas { display: block; letter-spacing: 0.02em; } }
.top-bar__phone { display: flex; align-items: center; gap: 6px; color: var(--lime); font-weight: 700; margin-left: auto; }
.top-bar__phone .icon { width: 14px; height: 14px; fill: currentColor; }

.site-header { background: var(--paper); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--grey-150); }
.site-header__inner { display: flex; align-items: center; gap: 24px; padding-block: 14px; }
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo img { height: 60px; width: auto; }

.primary-nav { display: none; margin-left: auto; }
.primary-nav > ul { display: flex; gap: 6px; }
.primary-nav > ul > li > a { display: flex; align-items: center; gap: 4px; padding: 10px 14px; font-weight: 600; border-radius: 999px; }
.primary-nav > ul > li > a:hover { background: var(--grey-100); }
.primary-nav .chevron { width: 16px; height: 16px; fill: currentColor; }
.primary-nav .has-dropdown { position: relative; }
.primary-nav .dropdown {
	position: absolute; top: 100%; left: 0; background: var(--white); border-radius: var(--radius-sm);
	box-shadow: var(--shadow-soft); padding: 10px; min-width: 240px; display: grid; gap: 2px;
	opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease; z-index: 20;
}
.primary-nav .has-dropdown:hover .dropdown,
.primary-nav .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .dropdown a { display: block; padding: 9px 12px; border-radius: 6px; font-size: 0.92rem; font-weight: 500; }
.primary-nav .dropdown a:hover { background: var(--grey-100); color: var(--lime-deep); }

.site-header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
@media (min-width: 1080px) { .site-header__actions { margin-left: 0; } }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: var(--paper); border-top: 1px solid transparent; }
.mobile-nav.is-open { max-height: 90vh; overflow-y: auto; border-top-color: var(--grey-150); }
.mobile-nav > ul { padding: 10px 20px 24px; display: grid; gap: 4px; }
.mobile-nav > ul > li > a { display: block; padding: 12px 4px; font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--grey-150); }
.mobile-nav__group > span { display: block; padding: 12px 4px 4px; font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--grey-500); }
.mobile-nav__group ul { padding-left: 8px; display: grid; }
.mobile-nav__group ul a { padding: 9px 4px; font-weight: 500; font-size: 0.98rem; border-bottom: 1px dashed var(--grey-150); }
.mobile-nav .btn { margin-top: 10px; }

@media (min-width: 1080px) {
	.primary-nav { display: block; }
	.nav-toggle { display: none; }
	.mobile-nav { display: none; }
}

/* ---- Hero ------------------------------------------------------------------ */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,11,8,0.78) 0%, rgba(10,11,8,0.55) 45%, rgba(10,11,8,0.92) 100%);
}
.hero__inner { position: relative; padding-block: clamp(80px, 16vw, 170px) clamp(56px, 10vw, 96px); max-width: 820px; }
.hero .eyebrow { color: var(--lime); }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero__sub { color: var(--grey-150); font-size: 1.1rem; max-width: 54ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 28px 40px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--lime); letter-spacing: 0.02em; }
.hero__stats span { font-size: 0.82rem; color: var(--grey-300); }

/* ---- Page hero (interior pages) -------------------------------------------- */
.page-hero { padding-block: clamp(56px, 10vw, 96px) clamp(28px, 5vw, 48px); background: var(--ink); color: var(--white); }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .eyebrow { color: var(--lime); }
.page-hero__sub { color: var(--grey-300); max-width: 62ch; margin-top: 14px; font-size: 1.05rem; }
.page-hero a.link-arrow { display: inline-block; margin-top: 16px; color: var(--white); }

/* ---- Service grid / cards --------------------------------------------------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.service-card {
	display: flex; flex-direction: column; gap: 10px; padding: 26px; background: var(--white);
	border-radius: var(--radius); border: 1px solid var(--grey-150); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--lime); }
.service-card__media { margin: -26px -26px 4px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 4/3; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; color: var(--grey-700); flex-grow: 1; }
.service-card .link-arrow { font-size: 0.85rem; margin-top: 4px; }

/* ---- Why-us section ---------------------------------------------------------- */
.why-us__grid { display: grid; gap: 40px; align-items: center; }
.why-us__media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }
.checklist { display: grid; gap: 14px; margin: 24px 0 30px; }
.checklist li { position: relative; padding-left: 30px; color: var(--grey-300); }
.checklist li::before {
	content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%;
	background: var(--lime);
}
.checklist li::after {
	content: ""; position: absolute; left: 5px; top: 13px; width: 8px; height: 4px;
	border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-45deg);
}
.checklist-inline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 20px; }
.checklist-inline div { padding: 10px 16px; background: var(--grey-100); border-radius: 999px; font-size: 0.88rem; }

@media (min-width: 900px) {
	.why-us__grid { grid-template-columns: 1fr 1fr; }
	.why-us__media { order: 2; }
}

/* ---- Project grid / cards ----------------------------------------------------- */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.project-grid--home { grid-template-columns: repeat(6, 1fr); }
.project-card {
	position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
	box-shadow: var(--shadow-hard); grid-column: span 3;
}
.project-grid--home .project-card--wide { grid-column: span 6; aspect-ratio: 16/8; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.project-card:hover img { transform: scale(1.06); }
.project-card__caption {
	position: absolute; inset: auto 0 0 0; padding: 20px; color: var(--white);
	background: linear-gradient(0deg, rgba(9,10,7,0.88) 0%, rgba(9,10,7,0.15) 80%, transparent 100%);
}
.project-card__caption h3, .project-card__caption h4 { color: var(--white); font-size: 1.1rem; margin-top: 4px; }
.project-card__region { font-size: 0.8rem; color: var(--grey-300); }
.tag {
	display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
	background: var(--lime); color: var(--ink); padding: 4px 10px; border-radius: 999px;
}
.tag--outline { background: transparent; border: 1px solid var(--grey-300); color: var(--grey-300); }

@media (max-width: 720px) {
	.project-grid--home { grid-template-columns: repeat(2, 1fr); }
	.project-grid--home .project-card { grid-column: span 2; aspect-ratio: 16/10; }
	.project-grid--home .project-card--wide { grid-column: span 2; }
}

.project-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.project-filter {
	padding: 10px 18px; border-radius: 999px; border: 1px solid var(--grey-300); font-weight: 600; font-size: 0.88rem;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.project-filter:hover { border-color: var(--ink); }
.project-filter.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.project-grid--gallery .project-card.is-hidden { display: none; }
.project-empty-state { text-align: center; color: var(--grey-500); padding-block: 40px; }

/* ---- Single project ------------------------------------------------------------ */
.project-single { padding-block: 44px 20px; }
.project-single__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.project-single__meta { display: flex; gap: 8px; }
.project-single__desc { max-width: 72ch; color: var(--grey-700); margin-bottom: 28px; }
.project-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.project-gallery__item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.project-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.project-gallery__item:hover img { transform: scale(1.05); }
.project-gallery__item--main { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.lightbox {
	position: fixed; inset: 0; background: rgba(6,7,5,0.94); z-index: 1000; display: flex; align-items: center; justify-content: center;
}
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 6px; }
.lightbox__close, .lightbox__prev, .lightbox__next {
	position: absolute; color: var(--white); font-size: 2rem; padding: 12px; line-height: 1;
}
.lightbox__close { top: 16px; right: 20px; }
.lightbox__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 10px; top: 50%; transform: translateY(-50%); }

.related-projects { margin-top: 56px; }
.related-projects h3 { margin-bottom: 20px; }

/* ---- Testimonials --------------------------------------------------------------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.testimonial-grid--home { grid-template-columns: repeat(auto-fit, minmax(280px, 340px)); justify-content: center; }
.testimonial-card {
	background: var(--white); border: 1px solid var(--grey-150); border-radius: var(--radius); padding: 26px;
	display: flex; flex-direction: column; gap: 14px;
}
.stars { display: flex; gap: 3px; }
.star { width: 17px; height: 17px; }
.star--full { fill: var(--lime-deep); }
.star--empty { fill: var(--grey-300); }
.testimonial-card blockquote { font-size: 1.02rem; color: var(--grey-900); flex-grow: 1; }
.testimonial-card figcaption { display: flex; flex-direction: column; font-size: 0.85rem; }
.testimonial-card figcaption strong { font-size: 0.95rem; }
.testimonial-card figcaption span { color: var(--grey-500); }
.testimonials-strip__more { text-align: center; margin-top: 32px; }

/* ---- CTA banner ------------------------------------------------------------------ */
.cta-banner { background: var(--white); color: var(--ink); position: relative; overflow: hidden; border-top: 1px solid var(--grey-150); border-bottom: 1px solid var(--grey-150); }
.cta-banner::before {
	content: ""; position: absolute; right: -10%; top: -60%; width: 480px; height: 480px; border-radius: 50%;
	background: radial-gradient(circle, rgba(205,236,46,0.28), transparent 70%);
}
.cta-banner__inner { position: relative; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding-block: 44px; }
.cta-banner h2 { color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-banner p { color: var(--grey-700); margin-top: 6px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-banner__actions a.btn--ghost { color: var(--ink); }

/* ---- Areas section ---------------------------------------------------------------- */
.areas-section__inner { text-align: center; }
.areas-section__inner > div { max-width: 720px; margin-inline: auto; }
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.area-pills li { padding: 10px 20px; border: 1px solid var(--grey-300); border-radius: 999px; font-weight: 600; font-size: 0.9rem; }
.section--dark .area-pills li { border-color: rgba(255,255,255,0.25); color: var(--white); }

/* ---- Footer ----------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--grey-300); padding-block: 56px 0; }
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand p { color: var(--grey-500); margin-top: 12px; font-size: 0.88rem; }
.footer__socials { display: flex; gap: 12px; margin-top: 16px; }
.footer__socials a { font-size: 0.78rem; font-weight: 700; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; }
.footer__col h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 9px; font-size: 0.92rem; }
.footer__contact a { color: var(--lime); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-block: 22px; font-size: 0.8rem; color: var(--grey-500); }

@media (min-width: 720px) {
	.footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ---- About page -------------------------------------------------------------------- */
.about-content__grid { display: grid; gap: 40px; }
.about-content__media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }
.about-content__body p { color: var(--grey-700); margin-bottom: 16px; }
@media (min-width: 900px) {
	.about-content__grid { grid-template-columns: 1fr 1.1fr; align-items: center; }
}

/* ---- Single service ------------------------------------------------------------------ */
.service-hero { position: relative; color: var(--white); background: var(--ink); }
.service-hero__media { position: absolute; inset: 0; }
.service-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.service-hero__inner { position: relative; padding-block: clamp(56px, 10vw, 100px) 60px; max-width: 760px; }
.service-hero .eyebrow { color: var(--lime); }
.service-hero h1 { color: var(--white); margin-bottom: 12px; }
.service-hero__sub { color: var(--grey-300); font-size: 1.08rem; margin-bottom: 26px; }
.service-content__grid { display: grid; gap: 40px; align-items: start; }
.service-content__body :where(p, ul, ol) { color: var(--grey-700); margin-bottom: 16px; max-width: 68ch; }
.service-areas-note { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--grey-150); }
.service-areas-note h3 { font-size: 1rem; margin-bottom: 12px; }
.quote-teaser-card {
	background: var(--grey-100); border-radius: var(--radius); padding: 26px; position: sticky; top: 100px;
}
.quote-teaser-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.quote-teaser-card p { font-size: 0.9rem; color: var(--grey-700); margin-bottom: 16px; }
.aside-testimonials { display: grid; gap: 16px; margin-top: 20px; }

@media (min-width: 960px) {
	.service-content__grid { grid-template-columns: 2fr 1fr; }
}

/* ---- Blog ------------------------------------------------------------------------------ */
.article-meta { color: var(--grey-500); font-size: 0.9rem; margin-top: 10px; }
.page-hero .tag { margin-bottom: 14px; display: inline-block; }
.article-body h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.article-body h3 { font-size: 1.2rem; margin: 28px 0 12px; text-transform: none; letter-spacing: 0; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; max-width: 68ch; }
.article-body li { color: var(--grey-700); margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body blockquote {
	border-left: 3px solid var(--lime); margin: 26px 0; padding: 4px 0 4px 20px;
	font-size: 1.15rem; font-style: italic; color: var(--grey-900); max-width: 62ch;
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.blog-grid--compact { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.blog-card {
	display: block; background: var(--white); border: 1px solid var(--grey-150); border-radius: var(--radius);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--lime); }
.blog-card__body { display: flex; flex-direction: column; gap: 8px; padding: 26px; }
.blog-card__body h3 { font-size: 1.15rem; text-transform: none; letter-spacing: 0; }
.blog-card__body p { font-size: 0.92rem; color: var(--grey-700); }
.blog-card__meta { font-size: 0.8rem; color: var(--grey-500); margin-top: 4px; }
.blog-pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.blog-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding-inline: 10px;
	border-radius: 999px; border: 1px solid var(--grey-300); font-weight: 700; font-size: 0.9rem;
}
.blog-pagination .page-numbers.current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---- Quality section (Projects) --------------------------------------------------------- */
.quality-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 36px; }
.quality-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 26px; }
.quality-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.quality-card p { color: var(--grey-300); font-size: 0.92rem; }

/* ---- Process steps (Contact) ------------------------------------------------------------ */
.process-steps { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); list-style: none; padding: 0; counter-reset: none; }
.process-steps__number {
	display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%;
	background: var(--lime); color: var(--ink); font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 14px;
}
.process-steps h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.process-steps p { color: var(--grey-300); font-size: 0.92rem; }

/* ---- Contact / quote form -------------------------------------------------------------- */
.page-hero--contact { background: var(--ink); }
.contact-grid { display: grid; gap: 32px; }
.contact-form-wrap {
	background: var(--white); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-soft);
}
.hp-field { position: absolute; left: -9999px; }

.quote-form__progress { margin-bottom: 30px; }
.quote-form__progress-bar { height: 6px; background: var(--grey-150); border-radius: 999px; overflow: hidden; margin-bottom: 14px; }
.quote-form__progress-bar span { display: block; height: 100%; width: 33.33%; background: var(--lime); transition: width .3s ease; }
.quote-form__progress ol { display: flex; justify-content: space-between; font-size: 0.82rem; font-weight: 700; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.04em; }
.quote-form__progress li.is-active,
.quote-form__progress li.is-done { color: var(--ink); }

.quote-form__step { display: none; border: 0; padding: 0; }
.quote-form__step.is-active { display: block; }
.quote-form__step legend { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 20px; padding: 0; }

.service-choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.service-choice { position: relative; }
.service-choice input { position: absolute; opacity: 0; }
.service-choice span {
	display: block; padding: 14px 12px; text-align: center; border: 2px solid var(--grey-150); border-radius: var(--radius-sm);
	font-weight: 600; font-size: 0.9rem; transition: border-color .15s ease, background-color .15s ease;
}
.service-choice input:checked + span { border-color: var(--lime-deep); background: var(--grey-100); }
.service-choice input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 2px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
	width: 100%; padding: 13px 14px; border: 1px solid var(--grey-300); border-radius: var(--radius-sm); background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--lime-deep); }
.field-row { display: grid; gap: 20px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.pill-choice { display: flex; gap: 10px; }
.pill-choice label { position: relative; flex: 1; }
.pill-choice input { position: absolute; opacity: 0; }
.pill-choice span { display: block; text-align: center; padding: 12px; border: 2px solid var(--grey-150); border-radius: var(--radius-sm); font-weight: 600; }
.pill-choice input:checked + span { border-color: var(--lime-deep); background: var(--grey-100); }

.field-error { color: #b3261e; font-size: 0.85rem; margin-top: 8px; min-height: 1em; }
.quote-form__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.form-fineprint { font-size: 0.78rem; color: var(--grey-500); margin-top: 14px; }

.quote-form__success, .quote-form__error { text-align: center; padding-block: 30px; }
.success-icon { width: 56px; height: 56px; fill: var(--lime-deep); margin-inline: auto 12px; margin-bottom: 14px; }
.quote-form__success h3 { margin-bottom: 8px; }
.quote-form__error { color: #b3261e; }

.contact-sidebar { display: grid; gap: 20px; align-content: start; }
.contact-sidebar__card { background: var(--grey-100); border-radius: var(--radius); padding: 26px; }
.contact-sidebar__card h3 { font-size: 1rem; margin-bottom: 14px; }
.contact-sidebar__phone { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); margin-bottom: 6px; }
.contact-sidebar__card a { display: block; margin-bottom: 6px; }
.contact-sidebar__card .area-pills { justify-content: flex-start; }
.contact-sidebar__card .area-pills li { font-size: 0.82rem; padding: 7px 14px; border-color: var(--grey-300); }

@media (min-width: 960px) {
	.contact-grid { grid-template-columns: 1.6fr 1fr; align-items: start; }
}

/* ---- Utility --------------------------------------------------------------------------- */

