/* ============================================================
   EKO GROUP DOOH — design system + componente. Mobile-first.
   Culoarea --accent e injectată per-site din functions.php.
   ============================================================ */

:root {
	--accent: #1F572C;            /* fallback; suprascris per-site (functions.php injectează --accent) */
	--accent-d: color-mix(in srgb, var(--accent) 78%, #000);  /* derivat din --accent → corect pe orice culoare de site */
	--accent-2: color-mix(in srgb, var(--accent) 70%, #fff);
	--ink: #14201a;
	--muted: #4f5f57;
	--bg: #FAFAF7;                /* crem EKO, nu alb */
	--surface: #ffffff;
	--surface-2: #f1f3ee;
	--line: #e4e7df;
	--ring: color-mix(in srgb, var(--accent) 45%, transparent);
	--radius: 14px;
	--radius-sm: 9px;
	--shadow: 0 1px 2px rgba(20,32,26,.05), 0 10px 30px -12px rgba(20,32,26,.18);
	--shadow-sm: 0 1px 2px rgba(20,32,26,.06), 0 4px 14px -8px rgba(20,32,26,.18);
	--wrap: 1140px;
	--gap: clamp(1rem, 3vw, 2rem);
	--sp-section: clamp(3.5rem, 8vw, 7rem);
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-head: var(--font-body);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-d); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3 { line-height: 1.12; letter-spacing: -.01em; margin: 0 0 .5em; font-weight: 800; font-family: var(--font-head); }
h1 { font-size: clamp(2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
p { margin: 0 0 1rem; }

/* ----- Layout ----- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: var(--sp-section); }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }
.section--center { text-align: center; }
.section__head { max-width: 46rem; margin: 0 auto clamp(2rem, 5vw, 3.25rem); text-align: center; }
.section__eyebrow {
	display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .16em;
	text-transform: uppercase; color: var(--accent); margin: 0 0 .9rem;
}
.section__lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); }

/* ----- Buttons ----- */
.btn {
	--btn-bg: var(--surface); --btn-fg: var(--ink); --btn-bd: var(--line);
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	min-height: 48px; padding: .8rem 1.5rem; border-radius: 999px;
	font-weight: 700; font-size: .98rem; line-height: 1; text-decoration: none; cursor: pointer;
	background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--primary { --btn-bg: var(--accent); --btn-fg: #fff; --btn-bd: var(--accent); }
.btn--primary:hover { --btn-bg: var(--accent-d); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--accent-d); --btn-bd: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.btn--sm { min-height: 40px; padding: .55rem 1.05rem; font-size: .9rem; }

/* ----- Header / nav ----- */
.skip-link {
	position: absolute; left: 8px; top: -60px; z-index: 1000; background: var(--accent); color: #fff;
	padding: .7rem 1rem; border-radius: 8px; transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: color-mix(in srgb, var(--bg) 86%, transparent);
	backdrop-filter: saturate(1.2) blur(10px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }
.site-header__brand .site-title { font-weight: 800; font-size: 1.15rem; color: var(--ink); text-decoration: none; letter-spacing: -.02em; }
.site-header__brand img, .site-header__brand .custom-logo { max-height: 46px; width: auto; }

.primary-nav__list { display: flex; align-items: center; gap: clamp(.5rem, 1.5vw, 1.4rem); list-style: none; margin: 0; padding: 0; }
.primary-nav a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .96rem; padding: .4rem 0; }
.primary-nav a:not(.btn):hover { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.nav-toggle__bar { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
	.nav-toggle { display: flex; }
	.primary-nav {
		position: absolute; inset: 70px 0 auto 0; background: var(--surface); border-bottom: 1px solid var(--line);
		max-height: 0; overflow: hidden; transition: max-height .28s ease; box-shadow: var(--shadow);
	}
	.primary-nav.is-open { max-height: 70vh; }
	.primary-nav__list { flex-direction: column; align-items: stretch; padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem; gap: .25rem; }
	.primary-nav__list li { border-bottom: 1px solid var(--line); }
	.primary-nav__list li:last-child { border: 0; padding-top: .75rem; }
	.primary-nav a:not(.btn) { display: block; padding: .85rem 0; }
}

/* ----- Hero ----- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4rem); }
.hero::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(1100px 480px at 78% -8%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%),
		radial-gradient(800px 420px at 0% 0%, color-mix(in srgb, var(--accent-2) 10%, transparent), transparent 55%);
}
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 800; letter-spacing: .14em;
	text-transform: uppercase; color: var(--accent-d); background: color-mix(in srgb, var(--accent) 12%, var(--surface));
	border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line)); border-radius: 999px; padding: .45rem 1rem; margin-bottom: 1.4rem;
}
.hero__title { max-width: 18ch; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 54ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: clamp(2rem, 5vw, 3rem); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.75rem, 2vw, 1.25rem); }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1rem, 3vw, 1.5rem); box-shadow: var(--shadow-sm); }
.stat__num { font-size: clamp(1.5rem, 4.5vw, 2.4rem); font-weight: 800; color: var(--accent-d); line-height: 1; letter-spacing: -.02em; }
.stat__label { display: block; margin-top: .4rem; color: var(--muted); font-size: .9rem; }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }

/* ----- Generic content blocks ----- */
.prose { max-width: 46rem; margin-inline: auto; }
.prose p { color: var(--muted); font-size: 1.06rem; }

/* Cards (formate) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 1.75rem); box-shadow: var(--shadow-sm); }
.card__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-content: center; background: color-mix(in srgb, var(--accent) 12%, var(--surface)); color: var(--accent-d); font-weight: 800; margin-bottom: 1rem; }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* Location chips (retea) */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.5rem; }
.chip { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.1rem; font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-sm); }

/* Steps (cum functioneaza) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gap); counter-reset: step; }
.step { position: relative; padding: 1.5rem 1.25rem 1.25rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num { display: inline-grid; place-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; margin-bottom: .8rem; }
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }

/* De ce EKO — highlight band */
.dece { background: linear-gradient(135deg, var(--accent-d), var(--accent)); color: #fff; }
.dece .section__eyebrow { color: color-mix(in srgb, #fff 80%, var(--accent)); }
.dece h2 { color: #fff; }
.dece p { color: color-mix(in srgb, #fff 86%, var(--accent)); }
.dece .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.dece .btn--ghost:hover { background: rgba(255,255,255,.12); }

/* CTA band */
.ctaband { text-align: center; }
.ctaband__box { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); padding: clamp(2rem, 5vw, 3.25rem); box-shadow: var(--shadow); }

/* Contact */
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 800px) { .contact__grid { grid-template-columns: 1fr; } }
.contact__info p { color: var(--muted); }
.contact__info a { color: var(--accent-d); font-weight: 600; }
.contact__info dl { margin: 1.25rem 0 0; }
.contact__info dt { font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 1rem; }
.contact__info dd { margin: .15rem 0 0; }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field input, .field textarea {
	width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
	font: inherit; color: var(--ink); background: var(--bg); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.field--consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.field--consent input { width: auto; margin-top: .2rem; }
.field--hp { position: absolute !important; left: -9999px !important; top: -9999px !important; }
.req { color: var(--accent); }

.form-notice { padding: .85rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1.1rem; font-size: .95rem; }
.form-notice--success { background: color-mix(in srgb, var(--accent) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); color: var(--accent-d); }
.form-notice--error { background: #fdecec; border: 1px solid #f3c2c2; color: #8a1f1f; }

/* ----- Footer (curat) ----- */
.site-footer { background: var(--ink); color: #d7ded8; padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; }
.site-footer__grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; }
.site-footer__name { font-weight: 800; color: #fff; font-size: 1.1rem; display: block; margin-bottom: .6rem; }
.site-footer__line { margin: .15rem 0; }
.site-footer a { color: #d7ded8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__col--links { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.site-footer__eko { font-size: 1rem; }
.site-footer__eko strong { color: #fff; }
.site-footer__bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); color: #9fb0a6; }

/* ----- A11y / motion ----- */
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.btn, .primary-nav, .nav-toggle__bar { transition: none; }
}

/* ----- Servicii EKO GROUP ----- */
.service-card { display: flex; flex-direction: column; gap: .55rem; }
.service-card__head { display: flex; align-items: center; gap: .75rem; }
.service-card__ico {
	flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; display: grid; place-content: center;
	background: color-mix(in srgb, var(--accent) 12%, var(--surface)); color: var(--accent-d);
}
.service-card__ico .ico { width: 22px; height: 22px; }
.service-card h3 { margin: 0; font-size: 1.05rem; }
.service-card p { color: var(--muted); font-size: .95rem; margin: 0; flex: 1 1 auto; }
.service-card__more { margin-top: .35rem; font-weight: 700; font-size: .86rem; color: var(--accent-d); text-decoration: none; }
.service-card__more:hover { text-decoration: underline; }

/* ----- Hero discount badge ----- */
.hero__discount {
	display: inline-block; font-weight: 700; color: var(--accent-d); font-size: .95rem;
	background: color-mix(in srgb, var(--accent) 14%, var(--surface));
	border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
	border-radius: 999px; padding: .5rem 1.1rem; margin: 0 0 1.6rem;
}

/* ----- Form: 2-col rows, checks, durata radio cards ----- */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.btn--block { width: 100%; }
.field--check { display: flex; gap: .6rem; align-items: flex-start; }
.field--check input { width: auto; margin-top: .25rem; flex: 0 0 auto; }
.field--check label { font-size: .92rem; color: var(--muted); margin: 0; font-weight: 500; }

.field--durata { border: 0; padding: 0; margin: 0 0 1rem; }
.field--durata legend { font-weight: 600; font-size: .92rem; margin-bottom: .45rem; padding: 0; }
.radio-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
@media (max-width: 560px) { .radio-cards { grid-template-columns: 1fr; } }
.radio-card {
	position: relative; display: flex; flex-direction: column; gap: .15rem; padding: .7rem .85rem;
	border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; background: var(--bg);
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.radio-card input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; margin: 0; }
.radio-card__label { font-weight: 600; font-size: .92rem; }
.radio-card__tag { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-d); }
.radio-card--reco { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.radio-card:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 3px var(--ring); background: color-mix(in srgb, var(--accent) 8%, var(--bg)); }
.radio-card:has(input:focus-visible) { box-shadow: 0 0 0 3px var(--ring); }

/* ----- Contact offer column ----- */
.contact__info .offer-badge { display: inline-block; font-weight: 800; color: #fff; background: var(--accent); border-radius: 10px; padding: .6rem 1.05rem; margin: 0 0 1.1rem; font-size: 1.02rem; line-height: 1.35; }
.offer-pitch { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin: 0 0 1.2rem; max-width: 40ch; }
.offer-list { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .7rem; }
.offer-list li { position: relative; padding-left: 1.7rem; color: var(--ink); font-size: .98rem; }
.offer-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }
.contact__nap dt { font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-top: .8rem; }
.contact__nap dd { margin: .1rem 0 0; }
.contact__nap a { color: var(--accent-d); font-weight: 600; }

/* ----- FAQ (AEO) ----- */
.faq { max-width: 46rem; margin-inline: auto; display: grid; gap: .7rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.15rem; box-shadow: var(--shadow-sm); }
.faq__q { cursor: pointer; font-weight: 700; padding: 1.05rem 1.8rem 1.05rem 0; list-style: none; position: relative; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; position: absolute; right: .1rem; top: .9rem; font-size: 1.35rem; font-weight: 400; color: var(--accent); }
.faq__item[open] .faq__q::after { content: "\2212"; }
.faq__a { padding: 0 0 1.1rem; color: var(--muted); }
.faq__a p { margin: 0; }

/* footer links as nav */
.site-footer__col--links a { display: block; margin: .15rem 0; }

/* ----- Logo per-site (mark ecran + wordmark) ----- */
.logo-link { display: inline-flex; text-decoration: none; }
.logo { display: inline-flex; align-items: center; gap: .55rem; }
.logo__mark { width: 34px; height: 34px; color: var(--accent); flex: 0 0 auto; }
.logo__text { font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink); line-height: 1.05; font-family: var(--font-head); }
@media (max-width: 480px) { .logo__text { font-size: .98rem; } .logo__mark { width: 30px; height: 30px; } }
/* variantă footer (fundal închis) */
.site-footer .logo__text { color: #fff; }
.site-footer .logo__mark { color: color-mix(in srgb, var(--accent) 55%, #ffffff); }
.logo-link--footer { display: inline-flex; margin-bottom: .7rem; }

/* ----- Rezultate & rapoarte QR ----- */
.rezultate { background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, var(--bg)), var(--bg)); }
.rezultate .service-card { background: var(--surface); }

/* ----- Fixuri din audit: focus pe fundal închis + întărire bandă „De ce noi" ----- */
.dece :focus-visible, .site-footer :focus-visible { outline-color: #fff; outline-offset: 2px; }
.dece .prose p, .dece p { color: color-mix(in srgb, #fff 86%, var(--accent)); }
.dece .section__lead { color: color-mix(in srgb, #fff 82%, var(--accent)); }

/* ----- Footer cu coloane (descriere · meniu · logo) ----- */
.site-footer__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__col { text-align: center; }
.site-footer__col--links { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.site-footer__col--logo { display: flex; justify-content: center; }
@media (max-width: 820px) { .site-footer__col { text-align: left; } .site-footer__col--links { align-items: flex-start; } .site-footer__col--logo { justify-content: flex-start; } }
.site-footer__col h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; margin: 0 0 .85rem; }
.site-footer__col a { display: block; margin: .32rem 0; color: #cdd6cf; font-size: .9rem; text-decoration: none; }
.site-footer__col a:hover { color: #fff; text-decoration: underline; }
.site-footer__col--brand .logo-link--footer { margin-bottom: .5rem; }
.site-footer__tag { color: #9fb0a6; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin: .3rem 0 .8rem; }
.site-footer__about { color: #b9c4bc; font-size: .9rem; line-height: 1.65; margin: 0 0 1.1rem; max-width: 36ch; }
.site-footer__nap p { margin: .15rem 0; font-size: .88rem; color: #cdd6cf; }
.site-footer__nap a { color: #cdd6cf; }

/* ----- Pagini legale ----- */
.legal { max-width: 48rem; }
.legal__updated { color: var(--muted); font-size: .85rem; margin: -.4rem 0 1.5rem; }
.legal__body h2 { font-size: 1.25rem; margin: 1.8rem 0 .5rem; }
.legal__body p, .legal__body li { color: var(--ink); }
.legal__body ul { padding-left: 1.2rem; display: grid; gap: .4rem; }
.legal__body a { color: var(--accent-d); }
.legal__faq { margin-top: 2.5rem; max-width: 48rem; }
.legal__faq h2 { font-size: 1.25rem; margin: 0 0 1rem; }
.legal__faq .faq__item { margin-bottom: .6rem; }
.legal__cta { margin-top: 2rem; padding: 1.1rem 1.3rem; background: color-mix(in srgb, var(--accent) 8%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line)); border-radius: var(--radius); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.legal__cta span { font-weight: 700; }

/* ----- Location cards (rețea) ----- */
.loc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .loc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .loc-cards { grid-template-columns: 1fr; } }
.loc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.loc-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.loc-card:hover .loc-card__img img { transform: scale(1.04); }
.loc-card__body { padding: .9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.loc-card__cat { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.loc-card__name { font-size: .95rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.3; }
.loc-card__addr { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.45; }
.loc-cards__cta { margin-top: 1.75rem; text-align: center; }

/* ===== Totem Preview Section ===== */
.totem-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Stage */
.totem-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
  padding: 3.5rem 0 2rem;
}

/* Individual totem */
.totem { display: flex; flex-direction: column; align-items: center; }
.totem--side {
  transform: perspective(900px) rotateY(var(--ry, 14deg)) scale(0.82);
  opacity: .65;
  transition: opacity .4s;
}
.totem--side:last-child { --ry: -14deg; }
.totem--center { z-index: 2; }

/* Totem body / shell */
.totem__body {
  background: linear-gradient(145deg, #22223A 0%, #13132A 100%);
  border-radius: 20px;
  padding: 10px 10px 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 0 70px rgba(var(--glow-rgb, 255,255,255), .18),
    0 50px 90px rgba(0,0,0,.75);
  transition: box-shadow .6s ease;
}

/* Camera dot */
.totem__cam {
  width: 7px; height: 7px;
  background: #11112A;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  margin: 0 auto 9px;
  position: relative;
}
.totem__cam::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #1A5C3A;
  border-radius: 50%;
  box-shadow: 0 0 5px #4ADE80;
}

/* Screen */
.totem__screen {
  width: 200px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

/* Glass sheen */
.totem__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.02) 35%, transparent 60%);
  z-index: 30;
  pointer-events: none;
  border-radius: 10px;
}

/* Progress dots */
.totem__dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-top: 11px;
}
.totem__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: background .35s, transform .35s;
}
.totem__dot--on {
  background: rgba(255,255,255,.85);
  transform: scale(1.35);
}

/* Stand */
.totem__neck {
  width: 50px; height: 22px;
  background: linear-gradient(145deg, #1E1E36, #111126);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.55);
}
.totem__base {
  width: 88px; height: 8px;
  background: linear-gradient(145deg, #1A1A30, #0E0E22);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 5px 14px rgba(0,0,0,.5);
}

/* Slides */
.t-slide {
  position: absolute;
  inset: 0;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px 22px;
  opacity: 0;
  transition: opacity .55s ease;
}
.t-slide--active { opacity: 1; }

/* Real photo */
.t-slide__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
/* Dark gradient overlay over photo */
.t-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.82) 100%);
  z-index: 1;
}

/* Totem section CTA button */
.totem-cta { margin-top: 1.5rem; }

/* Slide content */
.t-slide__content { position: relative; z-index: 2; }
.t-slide__brand {
  display: inline-block;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  padding: 2px 7px;
  margin-bottom: 10px;
}
.t-slide__brand--gold { color: #F5C842; border-color: rgba(245,200,66,.35); }
.t-slide__headline {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 8px;
}
.t-slide__sub {
  font-size: .63rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  margin: 0;
}

/* Scanline overlay (subtle CRT feel) */
.totem__screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0,0,0,.06) 3px, rgba(0,0,0,.06) 4px);
  z-index: 25;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 680px) {
  .totem--side { display: none; }
  .totem-stage { padding: 2rem 0 1.5rem; }
}
@media (max-width: 360px) {
  .totem__screen { width: 168px; height: 296px; }
}
