/* ==========================================================================
   AP Sweepz — main stylesheet
   Dark "Back to Black" identity · lime-green accent · background-video hero
   ========================================================================== */

:root {
	--bg:        #060b23;
	--bg-2:      #0d1330;
	--bg-3:      #171d3d;
	--ink:       #f6f7fb;
	--muted:     #a2a7c4;
	--acid:      #c4ff47;
	--acid-deep: #a8e02a;
	--ink-on-acid: #060b23;
	--line:      rgba(255,255,255,.10);
	--line-2:    rgba(255,255,255,.16);

	--wrap:      1200px;
	--radius:    14px;
	--radius-sm: 10px;

	--font-body: 'Archivo', system-ui, -apple-system, sans-serif;
	--font-disp: 'Anton', 'Archivo', sans-serif;

	--ease:      cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

.section { padding: 96px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.acid { color: var(--acid); }

.eyebrow {
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .78rem;
	color: var(--acid);
	margin: 0 0 .75rem;
}

h1, h2, h3 { line-height: 1.05; margin: 0 0 .5em; }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head h2,
.why h2, .cta-band h2 {
	font-family: var(--font-disp);
	font-weight: 400;
	letter-spacing: .01em;
	text-transform: uppercase;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
}

/* Screen-reader helper */
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: var(--acid); color: #000; padding: 10px 16px; border-radius: 8px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .01em;
	padding: 13px 24px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
	white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn:hover { transform: translateY(-2px); }

.btn-acid { background: var(--acid); color: #060b23; }
.btn-acid:hover { background: #d4ff6e; }

.btn-ghost { background: rgba(255,255,255,.06); color: var(--ink); border-color: var(--line-2); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

.btn-outline { background: transparent; color: #060b23; border-color: rgba(0,0,0,.35); }
.btn-outline:hover { background: rgba(0,0,0,.12); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
	border-bottom: 1px solid transparent;
}
.site-header.is-solid {
	background: rgba(6,11,35,.82);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--line);
}
.header-inner {
	display: flex; align-items: center; gap: 32px;
	height: 76px;
}
.brand-text {
	font-family: var(--font-disp);
	font-size: 1.7rem;
	text-transform: uppercase;
	letter-spacing: .02em;
	line-height: 1;
}
.brand-ap { color: var(--acid); }
.brand-sweepz { color: var(--ink); }
.custom-logo { max-height: 48px; width: auto; }

.site-nav { margin-left: auto; }
.nav-menu {
	display: flex; align-items: center; gap: 30px;
	list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
	font-weight: 600; font-size: .96rem; color: var(--ink);
	padding: 6px 0; position: relative; opacity: .88;
	transition: opacity .2s var(--ease);
}
.nav-menu a::after {
	content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
	background: var(--acid); transition: width .25s var(--ease);
}
.nav-menu a:hover { opacity: 1; }
.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-link {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700; color: var(--ink);
}
.phone-link svg { color: var(--acid); }
.phone-link:hover { color: var(--acid); }

.nav-toggle {
	display: none; flex-direction: column; gap: 5px;
	background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex; align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
	width: 100%; height: 100%; object-fit: cover;
	filter: saturate(1.05) contrast(1.03);
}
.hero-scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(6,11,35,.55) 0%, rgba(6,11,35,.28) 30%, rgba(6,11,35,.55) 70%, rgba(6,11,35,.96) 100%),
		radial-gradient(120% 90% at 20% 40%, rgba(6,11,35,.35), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-kicker {
	display: inline-block;
	font-weight: 700; text-transform: uppercase; letter-spacing: .18em; font-size: .8rem;
	color: var(--acid);
	border: 1px solid rgba(196,255,71,.4);
	padding: 7px 14px; border-radius: 999px;
	margin: 0 0 24px;
	background: rgba(196,255,71,.08);
}
.hero-title {
	font-family: var(--font-disp);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .01em;
	font-size: clamp(2.6rem, 7vw, 5.4rem);
	line-height: .98;
	margin: 0 0 22px;
	text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero-sub {
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
	color: #e6e6e4;
	max-width: 44ch;
	margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust {
	display: flex; flex-wrap: wrap; gap: 26px;
	list-style: none; margin: 0; padding: 0;
}
.hero-trust li {
	position: relative; padding-left: 26px;
	font-weight: 600; font-size: .95rem; color: #dcdcda;
}
.hero-trust li::before {
	content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 16px; height: 16px; border-radius: 50%;
	background: var(--acid);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/12px no-repeat;
	        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/12px no-repeat;
}
.hero-scroll {
	position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
	width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 999px;
}
.hero-scroll span {
	position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
	background: var(--acid); transform: translateX(-50%);
	animation: scrolldot 1.6s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0);} 40% { opacity:1;} 80%,100% { opacity:0; transform: translate(-50%,14px);} }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services { background: var(--bg); }
.service-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.service-card {
	display: block;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px 32px;
	transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
	position: relative; overflow: hidden;
}
.service-card::before {
	content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--acid);
	transition: width .35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--bg-3); }
.service-card:hover::before { width: 100%; }
.service-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.35rem; margin: 0 0 10px; }
.service-card p { color: var(--muted); margin: 0 0 18px; }
.service-more { font-weight: 700; color: var(--acid); font-size: .95rem; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: var(--font-disp); font-size: clamp(2.2rem,4vw,3.2rem); color: var(--acid); line-height: 1; }
.stat-label { font-weight: 600; color: var(--muted); font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; }

/* --------------------------------------------------------------------------
   Why
   -------------------------------------------------------------------------- */
.why-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.why-copy p { color: var(--muted); }
.why-list { list-style: none; margin: 22px 0 30px; padding: 0; display: grid; gap: 12px; }
.why-list li { position: relative; padding-left: 30px; font-weight: 600; }
.why-list li::before {
	content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 5px;
	background: var(--acid);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/13px no-repeat;
	        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/13px no-repeat;
}
.why-media img { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--acid); color: #060b23; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #060b23; margin: 0 0 6px; }
.cta-band p { margin: 0; font-weight: 600; color: rgba(0,0,0,.7); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-acid { background: #060b23; color: var(--acid); }
.cta-band .btn-acid:hover { background: #000; }

/* --------------------------------------------------------------------------
   Page templates
   -------------------------------------------------------------------------- */
.page-hero {
	position: relative; padding: 160px 0 70px; background: var(--bg-2);
	background-size: cover; background-position: center;
}
.page-hero.has-thumb { padding: 200px 0 80px; }
.page-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,11,35,.7), rgba(6,11,35,.9)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-title { font-family: var(--font-disp); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem,5vw,3.6rem); margin: 0; }
.page-head-section { padding: 150px 0 40px; background: var(--bg-2); border-bottom: 1px solid var(--line); }

.page-content { max-width: 820px; }
.entry-content { color: #dedede; }
.entry-content h2 { font-weight: 800; font-size: 1.8rem; margin-top: 1.6em; }
.entry-content h3 { font-weight: 700; font-size: 1.35rem; margin-top: 1.4em; }
.entry-content a { color: var(--acid); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); margin: 1.5em 0; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }

.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.post-thumb img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-body { padding: 22px 24px; }
.post-body h2 { font-size: 1.25rem; font-weight: 800; }
.post-meta { color: var(--muted); font-size: .85rem; margin: 0 0 10px; }
.pagination { margin-top: 40px; }
.pagination a, .pagination .current { padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; margin-right: 6px; }
.pagination .current { background: var(--acid); color: #000; border-color: var(--acid); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #04081c; border-top: 1px solid var(--line); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand-text { font-size: 2rem; }
.footer-tag { color: var(--ink); font-weight: 600; margin: 16px 0 6px; }
.footer-area { color: var(--muted); font-size: .95rem; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #d0d0cf; }
.footer-col a:hover { color: var(--acid); }
.footer-contact .btn-acid { color: #060b23; }
.footer-contact .footer-phone { display: block; font-family: var(--font-disp); font-size: 1.5rem; color: var(--acid); margin-bottom: 6px; }
.footer-contact .footer-email { display: block; color: #d0d0cf; margin-bottom: 14px; }
.footer-contact .footer-email:hover { color: var(--acid); }
.footer-hours { color: var(--muted); font-size: .9rem; margin: 0 0 18px; }
.footer-bar { border-top: 1px solid var(--line); }
.footer-bar-inner { display: flex; justify-content: space-between; gap: 16px; padding: 22px 0; flex-wrap: wrap; }
.footer-bar p { margin: 0; color: var(--muted); font-size: .88rem; }
.footer-credit a { color: var(--acid); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.why-inner { grid-template-columns: 1fr; gap: 36px; }
	.post-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
	.header-cta { display: none; }
	.nav-toggle { display: flex; }
	.site-nav {
		position: fixed; inset: 76px 0 auto 0;
		background: rgba(6,11,35,.98); backdrop-filter: blur(12px);
		border-bottom: 1px solid var(--line);
		max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); margin: 0;
	}
	body.nav-open .site-nav { max-height: 80vh; }
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 24px 24px; }
	.nav-menu li { width: 100%; border-bottom: 1px solid var(--line); }
	.nav-menu a { display: block; padding: 16px 0; font-size: 1.1rem; }
	.site-header.is-solid, body.nav-open .site-header { background: rgba(6,11,35,.98); }
}
@media (max-width: 720px) {
	.service-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px 16px; }
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-brand { grid-column: 1 / -1; }
	.cta-inner { flex-direction: column; align-items: flex-start; }
	.post-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.footer-grid { grid-template-columns: 1fr; }
	.hero-actions .btn { flex: 1 1 100%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero-scroll span { animation: none; }
	.btn:hover, .service-card:hover { transform: none; }
}

/* ==========================================================================
   Area / Service pages
   ========================================================================== */
.area-hero { position: relative; padding: 160px 0 80px; background-size: cover; background-position: center; }
.area-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,11,35,.5) 0%, rgba(6,11,35,.72) 100%), linear-gradient(90deg, rgba(6,11,35,.55) 0%, rgba(6,11,35,0) 72%); }
.area-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.area-hero-tag { font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 1.05rem; margin: 0 0 20px; line-height: 1.4; }
.area-hero-intro { color: #d5d8ea; max-width: 60ch; margin: 0 0 30px; }

.area-intro { background: var(--bg); }
.area-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: start; }
.area-intro-copy p { color: var(--muted); }
.area-intro-copy h2 { font-family: var(--font-body); font-weight: 800; font-size: clamp(1.6rem,3vw,2.3rem); text-transform: none; }

.tick-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 30px; font-weight: 600; }
.tick-list li::before {
	content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 5px; background: var(--acid);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/13px no-repeat;
	        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* Quote form */
.quote-form { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; position: sticky; top: 96px; }
.quote-form-head h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.5rem; margin: 0 0 4px; }
.quote-form-head p { color: var(--muted); margin: 0 0 20px; font-size: .95rem; }
.qf-row { margin-bottom: 14px; }
.qf-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-field { display: block; }
.qf-field > span { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: #d7dae8; }
.qf-field .req { color: var(--acid); margin-left: 2px; }
.qf-field input, .qf-field textarea {
	width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
	color: var(--ink); font-family: inherit; font-size: 1rem; padding: 12px 14px; transition: border-color .2s var(--ease);
}
.qf-field input:focus, .qf-field textarea:focus { outline: none; border-color: var(--acid); }
.qf-field textarea { resize: vertical; }
.qf-submit { width: 100%; margin-top: 6px; }
.qf-status { margin: 12px 0 0; font-weight: 600; font-size: .92rem; }
.qf-status.is-ok { color: var(--acid); }
.qf-status.is-err { color: #ff9b8a; }
.qf-consent { color: var(--muted); font-size: .78rem; margin: 12px 0 0; }

/* About */
.area-about { background: var(--bg-2); }
.area-about-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.area-about-media img { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.area-about-copy h2 { font-family: var(--font-body); font-weight: 800; font-size: clamp(1.6rem,3vw,2.3rem); text-transform: none; }
.area-about-copy p { color: var(--muted); }

/* Reviews */
.reviews-section { background: var(--bg); }
.reviews-head { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.reviews-head h2 { font-family: var(--font-body); font-weight: 800; text-transform: none; font-size: clamp(1.5rem,2.6vw,2.1rem); }
.stars { display: flex; gap: 4px; justify-content: center; color: var(--acid); margin-top: 8px; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.review-card { margin: 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px; }
.review-stars { color: var(--acid); letter-spacing: 2px; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 14px; font-size: 1.02rem; line-height: 1.55; }
.review-card figcaption { color: var(--muted); font-weight: 700; font-size: .9rem; }

/* FAQ accordion */
.faq-section { background: var(--bg-2); }
.faq-section .section-head { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.faq-section .section-head p:last-child { color: var(--muted); }
.accordion { max-width: 840px; margin: 44px auto 0; display: grid; gap: 12px; }
.acc-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.acc-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
	background: none; border: 0; cursor: pointer; color: var(--ink); font-family: inherit; font-weight: 700; font-size: 1.05rem; text-align: left; padding: 20px 22px; }
.acc-q svg { color: var(--acid); flex: none; transition: transform .3s var(--ease); }
.acc-item.is-open .acc-q svg { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-item.is-open .acc-a { max-height: 400px; }
.acc-a p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

@media (max-width: 900px) {
	.area-intro-grid, .area-about-inner { grid-template-columns: 1fr; gap: 34px; }
	.area-about-media { order: 2; }
	.quote-form { position: static; }
	.review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
	.qf-two { grid-template-columns: 1fr; }
	.review-grid { grid-template-columns: 1fr; }
	.area-hero { padding: 130px 0 60px; }
}

/* ==========================================================================
   About / Contact / misc page bits
   ========================================================================== */
.service-card.static { cursor: default; }
.why-choose .service-grid { margin-bottom: 8px; }
.why-cta { text-align: center; max-width: 640px; margin: 40px auto 24px; font-size: 1.15rem; font-weight: 600; color: var(--ink); }

/* Form select — match inputs */
.qf-field select {
	width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
	color: var(--ink); font-family: inherit; font-size: 1rem; padding: 12px 14px; appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23c4ff47' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px;
}
.qf-field select:focus { outline: none; border-color: var(--acid); }
.qf-field option { background: var(--bg-2); color: var(--ink); }

/* Contact cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.contact-card { display: flex; flex-direction: column; gap: 4px; background: var(--bg-2); border: 1px solid var(--line);
	border-radius: var(--radius-sm); padding: 18px 20px; transition: border-color .2s var(--ease); }
a.contact-card:hover { border-color: var(--acid); }
.cc-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.cc-value { font-weight: 700; font-size: 1.05rem; color: var(--ink); }
@media (max-width: 520px) { .contact-cards { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { display: block; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.gallery-item .gallery-img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Jobs */
.job-item { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 36px; margin-bottom: 24px; }
.job-item h2 { font-weight: 800; font-size: 1.6rem; margin-bottom: 14px; }
.job-item .entry-content { margin-bottom: 22px; }

/* Logos */
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 46px; width: auto; }
.footer-logo { display: inline-block; }
.footer-logo img { max-height: 62px; width: auto; margin-bottom: 4px; }

/* Top scrim behind transparent header so white logo/nav stay legible over light hero */
.site-header::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: linear-gradient(180deg, rgba(6,11,35,.6) 0%, rgba(6,11,35,0) 100%);
	transition: opacity .3s var(--ease);
}
.site-header.is-solid::before { opacity: 0; }

/* ==========================================================================
   Hero with glass quote form (two-column)
   ========================================================================== */
.hero-grid {
	position: relative; z-index: 2;
	display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
	width: 100%;
}
.hero-copy { max-width: 620px; }

/* Glass form over the video */
.hero-form .quote-form {
	position: static;
	background: rgba(13, 19, 48, .38);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	backdrop-filter: blur(18px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, .18);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}
.hero-form .quote-form-head h3 { color: #fff; }
.hero-form .quote-form-head p { color: rgba(255, 255, 255, .8); }
.hero-form .qf-field > span { color: #eef1fb; }
.hero-form .qf-field input,
.hero-form .qf-field select,
.hero-form .qf-field textarea {
	background: rgba(255, 255, 255, .10);
	border-color: rgba(255, 255, 255, .28);
	color: #fff;
}
.hero-form .qf-field input::placeholder,
.hero-form .qf-field textarea::placeholder { color: rgba(255, 255, 255, .6); }
.hero-form .qf-field input:focus,
.hero-form .qf-field select:focus,
.hero-form .qf-field textarea:focus { border-color: var(--acid); background: rgba(255,255,255,.14); }
.hero-form .qf-field select option { background: #0d1330; color: #fff; }
.hero-form .qf-consent { color: rgba(255, 255, 255, .7); }

@media (max-width: 980px) {
	.hero { min-height: 0; padding-top: 110px; }
	.hero-grid { grid-template-columns: 1fr; gap: 32px; }
	.hero-copy { max-width: none; }
	.hero-scroll { display: none; }
}

/* ==========================================================================
   Services mega menu
   ========================================================================== */
.mega-trigger { display: inline-flex; align-items: center; gap: 5px; }
.mega-caret { color: var(--acid); transition: transform .25s var(--ease); }
.has-mega:hover .mega-caret, .has-mega:focus-within .mega-caret { transform: rotate(180deg); }

.mega-panel {
	position: absolute; top: 72px; left: 50%; transform: translateX(-50%) translateY(10px);
	width: min(1060px, 94vw); z-index: 200;
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.has-mega:hover .mega-panel, .has-mega:focus-within .mega-panel {
	opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-panel::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; } /* hover bridge */

.mega-inner {
	display: grid; grid-template-columns: 1fr 290px; gap: 18px;
	background: rgba(13, 19, 48, .94); -webkit-backdrop-filter: blur(20px) saturate(1.3); backdrop-filter: blur(20px) saturate(1.3);
	border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .55); padding: 20px;
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; align-content: start; }
.mega-card {
	display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px;
	border: 1px solid transparent; transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.mega-card:hover { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); transform: translateY(-1px); }
.mega-ic { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(196, 255, 71, .12); color: var(--acid); }
.mega-ic svg { width: 22px; height: 22px; }
.mega-txt { display: flex; flex-direction: column; line-height: 1.2; }
.mega-txt strong { font-weight: 700; font-size: .96rem; color: var(--ink); }
.mega-txt small { color: var(--muted); font-size: .78rem; margin-top: 2px; }

.mega-promo { position: relative; border-radius: 14px; overflow: hidden; display: flex; align-items: flex-end; min-height: 260px; }
.mega-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mega-promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 11, 35, .15), rgba(6, 11, 35, .94)); }
.mega-promo-body { position: relative; z-index: 2; padding: 22px; }
.mega-promo-body h4 { font-weight: 800; font-size: 1.3rem; margin: 0 0 16px; }
.mega-promo-body .btn { margin-bottom: 12px; }
.mega-all { display: block; color: var(--acid); font-weight: 700; font-size: .9rem; }

@media (max-width: 900px) {
	.mega-panel {
		position: static; width: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
		max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
	}
	.has-mega.mega-open .mega-panel { max-height: 1400px; }
	.mega-trigger { justify-content: space-between; width: 100%; }
	.mega-caret { margin-left: auto; }
	.has-mega.mega-open .mega-caret { transform: rotate(180deg); }
	.mega-inner { grid-template-columns: 1fr; background: transparent; border: 0; box-shadow: none; padding: 6px 0 14px; }
	.mega-grid { grid-template-columns: 1fr; gap: 2px; }
	.nav-menu .mega-card { padding: 12px 6px; }
	.nav-menu .mega-card small { display: none; }
	.mega-promo { display: none; }
}

/* ==========================================================================
   Homepage fleet section
   ========================================================================== */
.fleet-section { background: var(--bg); }
.fleet-feature { position: relative; margin: 0 0 16px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.fleet-feature img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.fleet-feature figcaption {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 28px; font-weight: 700; font-size: 1.05rem;
	background: linear-gradient(180deg, transparent, rgba(6, 11, 35, .88));
}
.fleet-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fleet-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); transition: transform .4s var(--ease); }
.fleet-strip img:hover { transform: scale(1.03); }
.fleet-cta { text-align: center; margin-top: 34px; }
@media (max-width: 720px) {
	.fleet-strip { grid-template-columns: 1fr 1fr; }
	.fleet-feature img { aspect-ratio: 4/3; }
	.fleet-feature figcaption { padding: 18px 20px; font-size: .95rem; }
}

/* Mega promo — override .nav-menu a colour cascade on the CTA */
.mega-panel .btn-acid { color: #060b23; }
.mega-panel .mega-all { color: var(--acid); }
.mega-panel .mega-all:hover { color: #d4ff6e; }
.mega-promo-body .eyebrow { color: var(--acid); }

/* ==========================================================================
   Mobile: full-screen pull-out menu (overrides earlier drop-down)
   ========================================================================== */
.mobile-nav-extra { display: none; } /* hidden on desktop */

@media (max-width: 900px) {
	body.nav-open { overflow: hidden; }

	.site-nav {
		position: fixed; inset: 0; z-index: 90;
		width: 100%; height: 100%; max-height: none;
		background: rgba(6, 11, 35, .985);
		-webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
		border: 0;
		transform: translateX(100%);
		transition: transform .42s var(--ease);
		overflow-y: auto; overscroll-behavior: contain;
		display: flex; flex-direction: column;
		padding: 100px 26px 40px;
	}
	body.nav-open .site-nav { transform: translateX(0); max-height: none; }

	/* seamless header while open */
	body.nav-open .site-header { background: transparent; border-color: transparent; }
	body.nav-open .site-header::before { opacity: 0; }

	.nav-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 0; width: 100%; }
	.nav-menu > li.nav-item { width: 100%; border-bottom: 1px solid var(--line); }
	.nav-menu > li.nav-item > a { display: flex; align-items: center; padding: 20px 2px; font-size: 1.4rem; font-weight: 700; opacity: 1; }
	.nav-menu > li.nav-item > a::after { display: none; }
	.nav-menu .current-menu-item > a { color: var(--acid); }

	.mobile-nav-extra { display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 34px; }
	.mobile-nav-extra .btn { width: 100%; }
	.mobile-nav-email { color: var(--acid); font-weight: 700; text-align: center; margin-top: 8px; }
	.mobile-nav-hours { color: var(--muted); text-align: center; font-size: .88rem; margin: 2px 0 0; }
}

/* Mobile fix: remove desktop hover-bridge that intercepted taps in the pull-out menu */
@media (max-width: 900px) {
	.mega-panel::before { display: none; }
}

/* Homepage intro media (keyword section) */
.area-intro-media img { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .area-intro-media { order: -1; } }

/* ==========================================================================
   Areas archive (directory)
   ========================================================================== */
.areas-intro { max-width: 720px; color: var(--muted); margin: 14px 0 0; }
.areas-intro strong { color: var(--ink); }
.areas-section { padding-top: 40px; }

.areas-search { position: relative; max-width: 520px; margin: 0 0 8px; }
.areas-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.areas-search input {
	width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 999px;
	color: var(--ink); font-family: inherit; font-size: 1.02rem; padding: 14px 18px 14px 46px;
	transition: border-color .2s var(--ease);
}
.areas-search input:focus { outline: none; border-color: var(--acid); }
.areas-search input::placeholder { color: var(--muted); }

.areas-noresults { color: var(--muted); margin: 8px 0 0; }

.areas-directory { margin-top: 34px; }
.areas-group { margin-bottom: 34px; }
.areas-group[hidden] { display: none; }
.areas-letter {
	font-family: var(--font-disp); font-weight: 400; color: var(--acid); font-size: 1.6rem;
	margin: 0 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.areas-list {
	list-style: none; margin: 0; padding: 0;
	columns: 4; column-gap: 28px;
}
.areas-item { break-inside: avoid; margin-bottom: 4px; }
.areas-item[hidden] { display: none; }
.areas-item a {
	display: block; padding: 7px 0; color: #d0d3e2; font-weight: 600; font-size: .98rem;
	transition: color .15s var(--ease), padding .15s var(--ease);
}
.areas-item a:hover { color: var(--acid); padding-left: 6px; }

@media (max-width: 1024px) { .areas-list { columns: 3; } }
@media (max-width: 720px)  { .areas-list { columns: 2; } }
@media (max-width: 460px)  { .areas-list { columns: 1; } }

/* ==========================================================================
   Quote form — animated attention border on hover (light travels the box)
   ========================================================================== */
@property --qf-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
.quote-form::before {
	content: "";
	position: absolute; inset: 0; z-index: 3;
	border-radius: inherit;
	padding: 2px; /* border thickness */
	background: conic-gradient(from var(--qf-angle),
		rgba(196,255,71,.22) 0deg,
		rgba(196,255,71,.22) 210deg,
		var(--acid) 300deg,
		#f0ffc0 330deg,
		var(--acid) 350deg,
		rgba(196,255,71,.22) 360deg);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	opacity: 0;
	transition: opacity .35s var(--ease);
	pointer-events: none;
}
.quote-form:hover::before,
.quote-form:focus-within::before {
	opacity: 1;
	animation: qf-border-spin 2.4s linear infinite;
}
.quote-form:hover,
.quote-form:focus-within {
	box-shadow: 0 0 40px rgba(196,255,71,.14);
}
@keyframes qf-border-spin { to { --qf-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) {
	.quote-form:hover::before, .quote-form:focus-within::before { animation: none; opacity: 1; }
}

/* Quote form border — make it bolder / glow to grab attention */
.quote-form::before { padding: 3px; filter: drop-shadow(0 0 6px rgba(196,255,71,.5)); }
.quote-form:hover, .quote-form:focus-within { box-shadow: 0 0 55px rgba(196,255,71,.18); }

/* ==========================================================================
   Mega menu — fix spacing (equal-height rows) + stray nav underline
   ========================================================================== */
.mega-grid { grid-auto-rows: 1fr; gap: 8px; } /* uniform row heights */
.mega-card { align-items: flex-start; }
.mega-ic { margin-top: 1px; }
.mega-txt { padding-top: 1px; }
.mega-txt small {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
/* the main nav's hover-underline (::after) must not leak onto mega cards / links */
.nav-menu .mega-card::after,
.nav-menu .mega-all::after { display: none; }

/* ==========================================================================
   Mega menu — DEFINITIVE compact uniform layout (fixed row height)
   ========================================================================== */
.mega-inner { align-items: start; }                    /* don't stretch grid to promo height */
.mega-grid  { grid-auto-rows: 76px; gap: 6px; align-content: start; }  /* every row exactly 76px */
.mega-card  { align-items: center; min-height: 0; height: 76px; padding: 8px 12px; gap: 11px; }
.mega-ic    { width: 40px; height: 40px; }
.mega-txt strong { font-size: .93rem; line-height: 1.18; }
.mega-txt small  { font-size: .76rem; line-height: 1.3; -webkit-line-clamp: 1; }
.nav-menu .mega-card::after, .nav-menu .mega-all::after { display: none; }

/* ==========================================================================
   Mobile menu scroll fix — auto-margin + overflow made the expanded Services
   submenu unscrollable / pushed content off-screen.
   ========================================================================== */
@media (max-width: 900px) {
	.site-nav { justify-content: flex-start; -webkit-overflow-scrolling: touch; }
	.mobile-nav-extra { margin-top: 28px; }        /* was auto — auto-margin broke scroll */
	.has-mega.mega-open .mega-panel { max-height: 2600px; } /* room for all services */
}

/* ==========================================================================
   Mobile mega menu — icons were ballooning (leftover .nav-menu a{display:block}
   forced the card to block + SVG had no intrinsic size). Force compact flex.
   ========================================================================== */
@media (max-width: 900px) {
	.nav-menu .mega-card {
		display: flex; flex-direction: row; align-items: center;
		height: auto; min-height: 56px; padding: 11px 4px; gap: 12px;
	}
	.nav-menu .mega-ic { flex: none; width: 40px; height: 40px; }
	.nav-menu .mega-ic svg { width: 22px; height: 22px; }
	.nav-menu .mega-card strong { font-size: 1rem; }
	.nav-menu .mega-card small { display: none; } /* keep the menu compact */
}

/* Hero eyebrow — plain text label (not the pill badge) */
.hero-eyebrow {
	display: block;
	font-weight: 700; text-transform: uppercase; letter-spacing: .16em;
	font-size: .82rem; color: var(--acid);
	margin: 0 0 18px;
	text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
@media (max-width: 720px) { .hero-eyebrow { font-size: .74rem; letter-spacing: .12em; } }

/* Mega card padding fix — `.nav-menu a{padding:6px 0}` (higher specificity than
   .mega-card) was zeroing horizontal padding, leaving icons flush with no gap. */
.nav-menu .mega-card { padding: 8px 16px; gap: 14px; }
@media (max-width: 900px) {
	.nav-menu .mega-card { padding: 11px 14px; gap: 14px; }
}

/* Mega promo button — .nav-menu a{padding:6px 0} was squishing it; restore btn padding */
.mega-panel .btn { padding: 12px 26px; }

/* ==========================================================================
   Google reviews (WP Social Ninja) — match the theme's card style
   ========================================================================== */
.wpsn-reviews-embed .wpsr-review-template {
	background: var(--bg-3);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color .2s var(--ease), transform .3s var(--ease);
}
.wpsn-reviews-embed .wpsr-review-template:hover {
	border-color: rgba(196,255,71,.35);
	transform: translateY(-3px);
}
.wpsn-reviews-embed .wpsr-review-date { color: var(--acid) !important; opacity: .85; }
.wpsn-reviews-embed .wpsr_read_more,
.wpsn-reviews-embed .wpsr_read_less { color: var(--acid) !important; font-weight: 600; }
/* slider pagination dots -> lime active pill */
.wpsn-reviews-embed .swiper-pagination-bullet { background: rgba(255,255,255,.28); opacity: 1; transition: all .25s var(--ease); }
.wpsn-reviews-embed .swiper-pagination-bullet-active { background: var(--acid); width: 22px; border-radius: 5px; }

/* ---------------------------------------------------------------------------
   Cookie consent banner (Cookie Notice plugin)
   The plugin inlines bar/text/button colours from its own settings, so a few
   declarations have to win outright to keep the banner on-brand.
--------------------------------------------------------------------------- */
#cookie-notice {
	font-family: var(--font-body);
	border-top: 1px solid var(--line-2);
	backdrop-filter: blur(8px);
}
#cookie-notice .cookie-notice-container {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 20px;
}
#cookie-notice #cn-notice-text {
	font-size: .95rem;
	line-height: 1.5;
	color: var(--ink);
	margin: 0;
	flex: 1 1 320px;
}
#cookie-notice .cn-buttons-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
/* Accept = the lime action, so it needs the dark label the rest of the site uses. */
#cookie-notice #cn-accept-cookie {
	background: var(--acid) !important;
	color: var(--ink-on-acid) !important;
	border: 1px solid var(--acid);
	font-weight: 700;
}
#cookie-notice #cn-accept-cookie:hover {
	background: var(--acid-deep) !important;
}
/* Reject carries equal weight, styled as the quieter of the two. */
#cookie-notice #cn-refuse-cookie {
	background: transparent !important;
	color: var(--ink) !important;
	border: 1px solid var(--line-2);
	font-weight: 600;
}
#cookie-notice #cn-refuse-cookie:hover {
	border-color: var(--ink);
	background: rgba(255,255,255,.06) !important;
}
#cookie-notice .cn-button {
	border-radius: 999px;
	padding: 11px 22px;
	font-family: var(--font-body);
	font-size: .9rem;
	text-decoration: none;
	cursor: pointer;
	transition: all .25s var(--ease);
}
/* The plugin paints the button colour onto this one too, which left lime
   text on a lime pill. It reads as a link, so style it as one. */
#cookie-notice #cn-more-info.cn-button,
#cookie-notice .cn-more-info.cn-button {
	background: transparent !important;
	border: 0;
	padding: 11px 6px;
	color: var(--acid) !important;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 600;
}
/* Consent should be an explicit choice, and Reject already covers "no",
   so the bare dismiss cross only muddies what the visitor agreed to. */
#cookie-notice #cn-close-notice,
#cookie-notice .cn-close-icon {
	display: none !important;
}
#cn-revoke-cookie.cn-button {
	background: var(--bg-2) !important;
	color: var(--ink) !important;
	border: 1px solid var(--line-2);
}
@media (max-width: 640px) {
	#cookie-notice .cookie-notice-container { padding: 16px 18px; }
	#cookie-notice #cn-notice-text { flex-basis: 100%; font-size: .9rem; }
	#cookie-notice .cn-buttons-container { width: 100%; }
	#cookie-notice .cn-button { flex: 1 1 auto; text-align: center; }
}
