/* Nian font aliases - files already exist in /assets/fonts and are not bundled here */
@font-face {
    font-family: "Nian";
    src: url("../fonts/Nian.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NianSemiBold";
    src: url("../fonts/Nian SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NianBold";
    src: url("../fonts/Nian Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NianExtraBold";
    src: url("../fonts/Nian ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "NianBlack";
    src: url("../fonts/Nian Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*
 * Aurora Civic V3 — پوسته حرفه‌ای شهرداری راور
 * این فایل پس از style.css بارگذاری می‌شود و ساختار فعلی سامانه را بدون دست‌زدن به داده‌ها بازطراحی می‌کند
 */
:root {
    --primary: #0f766e;
    --primary-dark: #063f3b;
    --primary-deep: #022c2a;
    --primary-light: #19a596;
    --accent: #c89b3c;
    --accent-light: #f1cf86;
    --ink: #102a27;
    --muted: #667a76;
    --paper: #f4f7f4;
    --surface: #ffffff;
    --line: rgba(15, 118, 110, .13);
    --shadow-sm: 0 12px 32px rgba(3, 48, 44, .08);
    --shadow-md: 0 24px 70px rgba(3, 48, 44, .14);
    --shadow-xl: 0 40px 120px rgba(1, 31, 29, .24);
    --radius-sm: 16px;
    --radius-md: 26px;
    --radius-lg: 38px;
    --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: Nian, Tahoma, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 5% 16%, rgba(200, 155, 60, .07), transparent 24rem),
        radial-gradient(circle at 95% 52%, rgba(15, 118, 110, .07), transparent 30rem),
        #f5f8f5;
    line-height: 1.85;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
::selection { color: #fff; background: var(--primary); }
a, button { -webkit-tap-highlight-color: transparent; }
img { display: block; }
.ui-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ui-icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.container { width: min(1280px, calc(100% - 48px)); }

/* Header */
.site-header {
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    border: 0;
    box-shadow: none;
    backdrop-filter: saturate(150%) blur(22px);
    transition: box-shadow .35s ease, background .35s ease, transform .35s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 16px 50px rgba(3,48,44,.12); }
.topbar { background: linear-gradient(100deg, #022e2c 0%, #07554f 56%, #063f3b 100%); position: relative; overflow: hidden; }
.topbar::after { content:""; position:absolute; inset:0; opacity:.08; background-image:linear-gradient(90deg, transparent 49%, rgba(255,255,255,.9) 50%, transparent 51%); background-size:70px 100%; }
.topbar-inner { min-height: 42px; position: relative; z-index: 1; font-size: 12.5px; letter-spacing: -.1px; }
.topbar-inner > * { display: inline-flex; align-items: center; gap: 8px; }
.topbar .ui-icon { color: var(--accent-light); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #54e7d5; box-shadow: 0 0 0 0 rgba(84,231,213,.55); animation: pulseDot 2.2s infinite; }
@keyframes pulseDot { 70% { box-shadow: 0 0 0 9px rgba(84,231,213,0); } 100% { box-shadow: 0 0 0 0 rgba(84,231,213,0); } }
.brand-row { min-height: 92px; }
.brand { min-width: 250px; gap: 15px; }
.brand-mark { position: relative; width: 66px; height: 66px; display: grid; place-items: center; border-radius: 22px; background: linear-gradient(145deg, #0b655e, #043c38); box-shadow: 0 13px 30px rgba(6,63,59,.2); }
.brand-mark::before { content:""; position:absolute; inset:-4px; border:1px solid rgba(200,155,60,.5); border-radius:25px; transform:rotate(5deg); }
.brand img { width: 58px; height: 58px; padding: 5px; border: 0; border-radius: 18px; background: transparent; box-shadow: none; }
.brand-copy strong { font-family: NianExtraBold, Nian, Tahoma, sans-serif; color: var(--primary-dark); font-size: 23px; line-height: 1.4; }
.brand-copy small { color: #74837f; font-size: 12px; letter-spacing: .2px; }
.header-utility { display: flex; align-items: center; gap: 10px; }
.utility-chip { min-height: 44px; display:inline-flex; align-items:center; gap:9px; padding:8px 14px; border:1px solid var(--line); border-radius:14px; color:var(--primary-dark); background:#f7faf8; font-size:13px; font-weight:800; transition:.25s var(--ease); }
.utility-chip:hover { transform:translateY(-2px); border-color:rgba(15,118,110,.3); background:#fff; box-shadow:var(--shadow-sm); }
.utility-chip-gold { color:#573c08; border-color:rgba(200,155,60,.25); background:#fff8e9; }
.menu-button { width:46px; height:46px; display:none; place-items:center; padding:0; border-radius:15px; background:var(--primary-dark); }
.menu-button .ui-icon { width:24px; height:24px; }
.menu-close-icon { display:none; }
.menu-button[aria-expanded="true"] .menu-open-icon { display:none; }
.menu-button[aria-expanded="true"] .menu-close-icon { display:grid; }
.nav-layer { border-top: 1px solid rgba(15,118,110,.08); border-bottom: 1px solid rgba(15,118,110,.1); background: rgba(248,251,249,.87); }
.nav-shell { min-height: 58px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.main-nav { gap:4px; flex-wrap:nowrap; }
.main-nav a { position:relative; padding:10px 15px; border-radius:12px; color:#37534e; font-size:13.5px; font-weight:800; transition:.25s var(--ease); }
.main-nav a::after { content:""; position:absolute; right:16px; left:16px; bottom:5px; height:2px; border-radius:99px; background:var(--accent); transform:scaleX(0); transition:transform .3s var(--ease); }
.main-nav a:hover, .main-nav a.active { color:var(--primary-dark); background:rgba(15,118,110,.075); }
.main-nav a:hover::after, .main-nav a.active::after { transform:scaleX(1); }
.nav-contact { display:inline-flex; align-items:center; gap:10px; min-height:40px; padding:8px 14px; border-radius:12px; color:#fff; background:linear-gradient(135deg, var(--primary), var(--primary-dark)); font-size:13px; font-weight:900; box-shadow:0 10px 26px rgba(15,118,110,.2); }
.nav-contact .ui-icon { transition: transform .25s; }
.nav-contact:hover .ui-icon { transform:translateX(-4px); }
.nav-backdrop { position:fixed; inset:0; z-index:89; visibility:hidden; opacity:0; background:rgba(1,24,22,.55); backdrop-filter:blur(6px); transition:.3s; }
.nav-backdrop.is-visible { visibility:visible; opacity:1; }

/* floating local tools */
.local-tools { z-index: 86; }
.local-tools-tabs { border:1px solid rgba(15,118,110,.15) !important; border-radius:18px !important; overflow:hidden; box-shadow:var(--shadow-md) !important; backdrop-filter:blur(16px); }
.local-tool-tab { min-width:118px; background:rgba(255,255,255,.94) !important; }

/* General */
.section { position:relative; padding:112px 0; }
.section-muted { background:transparent; }
.eyebrow { margin:0 0 12px; color:var(--accent); font-family:NianBold,Nian,Tahoma,sans-serif; font-size:13px; letter-spacing:.4px; }
.eyebrow::before { content:""; display:inline-block; width:28px; height:2px; margin-left:10px; vertical-align:middle; background:currentColor; }
.section-heading { margin-bottom:44px; }
.section-heading-inline { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; }
.section-heading h2, .intro-copy h2, .mayor-copy h2, .city-facts-heading h2 { margin:0; font-family:NianExtraBold,Nian,Tahoma,sans-serif; font-size:clamp(32px,4.2vw,58px); line-height:1.35; letter-spacing:-1px; }
.section-heading p { margin:8px 0 0; color:var(--muted); }
.section-index { color:rgba(15,118,110,.14); font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:clamp(54px,8vw,108px); line-height:.72; user-select:none; }
.section-kicker { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.section-kicker .section-index { font-size:70px; }
.button { min-height:50px; gap:10px; padding:11px 20px; border-radius:15px; font-family:NianSemiBold,Nian,Tahoma,sans-serif; font-weight:800; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s; }
.button:hover { transform:translateY(-3px); box-shadow:0 14px 30px rgba(15,118,110,.19); }
.button-xl { min-height:58px; padding-inline:24px; border-radius:18px; }
.button-gold { color:#241803; background:linear-gradient(135deg,#f2d58f,#c89b3c); border-color:transparent; box-shadow:0 16px 35px rgba(200,155,60,.24); }
.button-dark { color:#fff; background:linear-gradient(135deg,#0f766e,#063f3b); }
.button-ghost { color:var(--primary-dark); border-color:rgba(15,118,110,.18); background:#fff; }
.button-light { color:var(--primary-dark); background:#fff; }
.button-outline-light { color:#fff; border:1px solid rgba(255,255,255,.3); background:rgba(255,255,255,.08); backdrop-filter:blur(10px); }
.button-glass { color:#fff; border:1px solid rgba(255,255,255,.28); background:rgba(5,58,53,.45); backdrop-filter:blur(16px); }
.button-glass:hover { background:rgba(5,58,53,.7); }
.text-link { display:inline-flex; align-items:center; gap:8px; color:var(--primary); font-weight:900; }
.text-link .ui-icon { width:18px; transition:transform .25s; }
.text-link:hover { text-decoration:none; }
.text-link:hover .ui-icon { transform:translateX(-5px); }

/* Hero */
.cinematic-hero { position:relative; min-height:clamp(680px,80vh,900px); padding:0 0 60px; overflow:hidden; background:var(--primary-deep); isolation:isolate; }
.home-slider-shell { background:var(--primary-deep); }
.home-slider { position:absolute; inset:0; width:100%; max-width:none; height:100%; min-height:0; max-height:none; margin:0; aspect-ratio:auto; background:#063f3b; }
.home-slide img { width:100%; height:100%; object-fit:cover; transform:scale(1.02); transition:transform 8s linear, opacity .85s ease; }
.home-slide.is-active img { transform:scale(1.095); }
.home-slide::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(1,26,24,.16),rgba(1,32,29,.74) 58%,rgba(1,28,26,.94)),linear-gradient(0deg,rgba(1,25,23,.95),transparent 47%); }
.hero-overlay { position:absolute; inset:0; z-index:2; pointer-events:none; background:linear-gradient(115deg,transparent 0 42%,rgba(200,155,60,.1) 42% 42.2%,transparent 42.2%); }
.hero-overlay::before { content:""; position:absolute; inset:0; opacity:.13; background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size:90px 90px; mask-image:linear-gradient(to left,#000,transparent 75%); }
.hero-stage { position:relative; z-index:5; min-height:clamp(610px,72vh,790px); display:grid; grid-template-columns:minmax(0,1.15fr) minmax(270px,.42fr); align-items:center; gap:clamp(30px,7vw,100px); padding-top:64px; }
.home-slider-summary { position:relative; width:auto; min-height:0; display:block; margin:0; padding:0; border:0; border-radius:0; color:#fff; background:transparent; box-shadow:none; backdrop-filter:none; }
.hero-kicker { display:inline-flex; align-items:center; gap:10px; padding:8px 12px; border:1px solid rgba(255,255,255,.2); border-radius:999px; color:rgba(255,255,255,.86); background:rgba(255,255,255,.07); font-size:13px; font-weight:700; backdrop-filter:blur(12px); }
.hero-kicker span { width:7px; height:7px; border-radius:50%; background:var(--accent-light); box-shadow:0 0 18px var(--accent-light); }
.home-slider-summary h1 { margin:22px 0 8px; color:#fff; font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:clamp(62px,8.5vw,126px); line-height:1.04; letter-spacing:-3px; text-shadow:0 20px 60px rgba(0,0,0,.22); }
.home-slider-summary h1 span { display:block; color:rgba(255,255,255,.55); font-size:.47em; letter-spacing:0; }
.home-slider-summary p { margin:0; color:var(--accent-light); font-family:NianBold,Nian,Tahoma,sans-serif; font-size:clamp(18px,2vw,28px); }
.hero-description { max-width:720px; margin-top:12px; color:rgba(255,255,255,.78); font-size:clamp(14px,1.25vw,18px); line-height:1.9; }
.home-slider-summary .hero-actions { margin-top:34px; }
.hero-live-card { align-self:end; margin-bottom:84px; padding:20px; border:1px solid rgba(255,255,255,.18); border-radius:26px; color:#fff; background:rgba(3,46,43,.52); box-shadow:var(--shadow-xl); backdrop-filter:blur(24px) saturate(140%); }
.hero-live-label { display:flex; align-items:center; gap:8px; margin-bottom:12px; color:var(--accent-light); font-size:12px; font-weight:900; }
.hero-live-label i { width:8px; height:8px; border-radius:50%; background:#58e3d2; box-shadow:0 0 12px #58e3d2; }
.hero-live-card > a, .hero-live-card > div { display:flex; align-items:center; gap:12px; padding:13px 0; border-top:1px solid rgba(255,255,255,.12); }
.hero-live-card .ui-icon { width:24px; height:24px; color:var(--accent-light); }
.hero-live-card span span, .hero-live-card > div span { color:rgba(255,255,255,.68); font-size:12px; }
.hero-live-card strong { display:block; margin-top:2px; color:#fff; font-size:16px; }
.hero-service-rail { position:relative; z-index:7; display:grid; grid-template-columns:repeat(3,1fr); margin-top:-84px; border:1px solid rgba(255,255,255,.2); border-radius:26px; overflow:hidden; background:rgba(255,255,255,.92); box-shadow:var(--shadow-xl); backdrop-filter:blur(24px); }
.hero-service-rail > a { min-height:116px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:15px; padding:22px 24px; border-left:1px solid rgba(15,118,110,.12); transition:.3s var(--ease); }
.hero-service-rail > a:last-child { border-left:0; }
.hero-service-rail > a > .ui-icon:first-child { width:34px; height:34px; padding:7px; border-radius:12px; color:var(--primary); background:rgba(15,118,110,.1); }
.hero-service-rail > a > .ui-icon:last-child { color:var(--accent); }
.hero-service-rail strong, .hero-service-rail small { display:block; }
.hero-service-rail strong { color:var(--primary-dark); font-size:16px; }
.hero-service-rail small { color:var(--muted); font-size:12px; }
.hero-service-rail > a:hover { background:#fff; transform:translateY(-4px); }
.home-slide-caption { z-index:6; right:auto; left:clamp(24px,5vw,80px); bottom:150px; width:min(420px,calc(100% - 48px)); background:rgba(2,42,39,.62); }
.home-slider-arrow { z-index:8; top:auto; bottom:126px; width:48px; height:48px; display:grid; place-items:center; font-size:inherit; background:rgba(255,255,255,.12); backdrop-filter:blur(12px); }
.home-slider-arrow .ui-icon { width:22px; height:22px; }
.home-slider-next { left:24px; }
.home-slider-prev { right:auto; left:82px; transform:translateY(0) rotate(180deg); }
.home-slider-arrow:hover,.home-slider-arrow:focus-visible { transform:translateY(-3px); }
.home-slider-prev:hover,.home-slider-prev:focus-visible { transform:translateY(-3px) rotate(180deg); }
.home-slider-dots { z-index:8; right:auto; left:24px; bottom:76px; transform:none; }
.hero-orbit { position:absolute; z-index:4; border:1px solid rgba(255,255,255,.1); border-radius:50%; pointer-events:none; }
.hero-orbit-one { width:520px; height:520px; left:-260px; top:80px; }
.hero-orbit-two { width:280px; height:280px; left:-50px; top:200px; border-color:rgba(200,155,60,.22); }

/* Service launchpad */
.service-launchpad { padding-top:128px; }
.service-bento { display:grid; grid-template-columns:1.18fr .92fr .9fr; gap:20px; }
.service-supercard, .service-command-card { position:relative; min-height:290px; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-lg); }
.service-supercard { display:flex; flex-direction:column; justify-content:flex-end; padding:30px; background:#fff; box-shadow:var(--shadow-sm); transition:.4s var(--ease); }
.service-supercard::before { content:""; position:absolute; width:220px; height:220px; top:-105px; left:-70px; border-radius:50%; background:rgba(15,118,110,.06); transition:.5s; }
.service-supercard:hover { transform:translateY(-8px); box-shadow:var(--shadow-md); }
.service-supercard:hover::before { transform:scale(1.35); }
.service-supercard-primary { color:#fff; border-color:transparent; background:linear-gradient(145deg,#0f766e,#053f3b 70%,#022e2b); box-shadow:0 28px 70px rgba(6,63,59,.25); }
.service-supercard-number { position:absolute; top:22px; left:26px; color:rgba(15,118,110,.12); font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:64px; line-height:1; }
.service-supercard-primary .service-supercard-number { color:rgba(255,255,255,.12); }
.service-supercard-icon { width:70px; height:70px; display:grid; place-items:center; margin-bottom:auto; border-radius:22px; color:var(--primary); background:rgba(15,118,110,.1); }
.service-supercard-icon .ui-icon { width:34px; height:34px; }
.service-supercard-primary .service-supercard-icon { color:var(--accent-light); background:rgba(255,255,255,.1); }
.service-supercard-copy strong, .service-supercard-copy small { display:block; }
.service-supercard-copy strong { color:var(--primary-dark); font-family:NianExtraBold,Nian,Tahoma,sans-serif; font-size:27px; }
.service-supercard-copy small { max-width:380px; margin-top:8px; color:var(--muted); font-size:13px; }
.service-supercard-primary .service-supercard-copy strong { color:#fff; }
.service-supercard-primary .service-supercard-copy small { color:rgba(255,255,255,.72); }
.service-supercard-arrow { position:absolute; left:24px; bottom:28px; color:var(--accent); }
.service-command-card { display:flex; flex-direction:column; justify-content:center; align-items:center; padding:28px; text-align:center; color:#fff; background:#0a2826; box-shadow:var(--shadow-md); }
.service-command-card::before { content:""; position:absolute; inset:0; opacity:.18; background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px); background-size:32px 32px; }
.command-glow { position:absolute; width:220px; height:220px; border-radius:50%; background:rgba(15,165,150,.35); filter:blur(45px); }
.command-symbol { position:relative; width:74px; height:74px; display:grid; place-items:center; margin-bottom:18px; border:1px solid rgba(255,255,255,.2); border-radius:25px; color:var(--accent-light); background:rgba(255,255,255,.08); backdrop-filter:blur(10px); }
.command-symbol .ui-icon { width:36px; height:36px; }
.service-command-card strong,.service-command-card p,.service-command-card a { position:relative; }
.service-command-card strong { font-family:NianExtraBold,Nian,Tahoma,sans-serif; font-size:21px; }
.service-command-card p { margin:8px 0 15px; color:rgba(255,255,255,.67); font-size:13px; }
.service-command-card a { display:inline-flex; align-items:center; gap:8px; color:var(--accent-light); font-weight:900; }

/* Story */
.visual-story { overflow:hidden; }
.visual-story::before { content:""; position:absolute; width:540px; height:540px; right:-320px; top:15%; border:1px solid rgba(15,118,110,.12); border-radius:50%; box-shadow:0 0 0 80px rgba(15,118,110,.025),0 0 0 160px rgba(15,118,110,.018); }
.intro-layout { grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(50px,8vw,110px); }
.intro-copy h2 { margin-bottom:24px; color:var(--primary-dark); }
.intro-copy p { margin:0 0 15px; color:#526863; font-size:15px; }
.intro-copy .button { margin-top:18px; }
.intro-visual { position:relative; min-height:560px; perspective:1000px; }
.intro-image-frame { position:absolute; inset:24px 0 0 44px; overflow:hidden; border-radius:44px 12px 44px 44px; box-shadow:var(--shadow-xl); transform:rotate(-1.6deg); }
.intro-image-frame::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(2,44,41,.35),transparent 55%); }
.intro-image { width:100%; height:100%; aspect-ratio:auto; object-fit:cover; }
.intro-float-card { position:absolute; right:-26px; bottom:26px; z-index:3; min-width:250px; display:flex; align-items:center; gap:13px; padding:18px; border:1px solid rgba(255,255,255,.7); border-radius:22px; color:#fff; background:rgba(5,64,59,.82); box-shadow:var(--shadow-md); backdrop-filter:blur(16px); }
.intro-float-card .ui-icon { width:34px; height:34px; color:var(--accent-light); }
.intro-float-card strong,.intro-float-card small { display:block; }
.intro-float-card small { color:rgba(255,255,255,.66); }
.intro-watermark { position:absolute; left:-50px; top:-8px; z-index:4; width:130px; height:130px; object-fit:contain; padding:12px; border:1px solid rgba(200,155,60,.25); border-radius:36px; background:#fff; box-shadow:var(--shadow-md); }

/* Mayor */
.immersive-panel { overflow:hidden; color:#fff; background:linear-gradient(120deg,#021f1e,#063f3b 52%,#0f766e); }
.immersive-panel::before { content:""; position:absolute; inset:0; opacity:.14; background-image:linear-gradient(120deg,transparent 47%,rgba(255,255,255,.3) 47.2%,transparent 47.4%),radial-gradient(circle at 85% 25%,rgba(200,155,60,.55),transparent 18rem); }
.panel-noise { position:absolute; inset:0; opacity:.1; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E"); }
.mayor-layout { position:relative; grid-template-columns:minmax(320px,.78fr) minmax(0,1.22fr); gap:clamp(55px,9vw,130px); }
.mayor-portrait-wrap { position:relative; min-height:570px; display:grid; place-items:end center; }
.mayor-ring { position:absolute; width:480px; height:480px; border:1px solid rgba(255,255,255,.16); border-radius:50%; box-shadow:0 0 0 60px rgba(255,255,255,.025),0 0 0 120px rgba(255,255,255,.015); }
.mayor-image { position:relative; z-index:2; width:min(450px,100%); height:530px; object-fit:cover; object-position:center top; border-radius:220px 220px 34px 34px; border:1px solid rgba(255,255,255,.24); box-shadow:0 40px 90px rgba(0,0,0,.35); }
.mayor-stamp { position:absolute; z-index:3; left:-12px; bottom:36px; padding:10px 16px; border-radius:999px; color:#2a1c02; background:linear-gradient(135deg,#f3d992,#c89b3c); font-weight:900; box-shadow:0 18px 36px rgba(0,0,0,.25); }
.section-kicker-light .section-index { color:rgba(255,255,255,.12); }
.mayor-copy h2 { color:#fff; font-size:clamp(42px,6vw,76px); }
.mayor-copy blockquote { position:relative; margin:24px 0 30px; padding:0 28px 0 0; border-right:3px solid var(--accent); color:rgba(255,255,255,.78); font-size:clamp(17px,2vw,23px); line-height:2; }

/* News */
.news-showcase { background:#fff; }
.news-editorial-grid { display:grid; grid-template-columns:1.35fr .85fr; grid-template-rows:repeat(2,minmax(230px,1fr)); gap:20px; }
.news-editorial-card { min-width:0; display:grid; grid-template-columns:220px 1fr; overflow:hidden; border:1px solid var(--line); border-radius:30px; background:#fff; box-shadow:0 16px 50px rgba(3,48,44,.07); transition:.35s var(--ease); }
.news-editorial-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-md); }
.news-editorial-featured { grid-row:1 / 3; grid-template-columns:1fr; }
.news-editorial-media { position:relative; min-height:100%; overflow:hidden; }
.news-editorial-card .news-thumb, .news-editorial-card .placeholder-media { width:100%; height:100%; min-height:230px; margin:0; border-radius:0; object-fit:cover; transition:transform .7s var(--ease); }
.news-editorial-featured .news-thumb, .news-editorial-featured .placeholder-media { min-height:390px; }
.news-editorial-card:hover .news-thumb { transform:scale(1.055); }
.news-editorial-media::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(3,45,42,.45),transparent 55%); pointer-events:none; }
.news-editorial-media .badge { position:absolute; z-index:2; right:18px; top:18px; color:#fff; background:rgba(6,63,59,.75); backdrop-filter:blur(10px); }
.news-editorial-copy { padding:25px; }
.news-editorial-copy h3 { margin:8px 0; color:var(--primary-dark); font-family:NianExtraBold,Nian,Tahoma,sans-serif; font-size:clamp(19px,2vw,28px); line-height:1.55; }
.news-editorial-copy p { margin:0; color:var(--muted); font-size:13.5px; }
.news-editorial-featured .news-editorial-copy { padding:30px; }
.news-editorial-featured .news-editorial-copy h3 { font-size:clamp(26px,3vw,38px); }

/* Projects */
.projects-showcase { overflow:hidden; color:#fff; background:#082f2c; }
.projects-showcase::before { content:""; position:absolute; inset:0; opacity:.12; background-image:linear-gradient(rgba(255,255,255,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.16) 1px,transparent 1px); background-size:64px 64px; }
.projects-orb { position:absolute; width:620px; height:620px; left:-260px; top:-280px; border-radius:50%; background:rgba(15,165,150,.2); filter:blur(10px); box-shadow:0 0 120px rgba(15,165,150,.28); }
.projects-showcase .section-heading { position:relative; }
.projects-showcase .section-heading h2 { color:#fff; }
.projects-showcase .section-heading p { color:rgba(255,255,255,.62); }
.project-cinema-grid { position:relative; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.project-cinema-card { min-width:0; overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:34px; background:rgba(255,255,255,.08); box-shadow:0 30px 80px rgba(0,0,0,.22); backdrop-filter:blur(15px); transform-style:preserve-3d; }
.project-cinema-media { position:relative; height:260px; overflow:hidden; }
.project-cinema-media .project-image, .project-cinema-media .placeholder-media { width:100%; height:100%; margin:0; border-radius:0; object-fit:cover; }
.project-cinema-media::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(4,44,41,.85),transparent 55%); }
.project-cinema-media .badge { position:absolute; z-index:2; right:18px; bottom:18px; }
.project-order { position:absolute; z-index:2; left:18px; top:12px; color:rgba(255,255,255,.72); font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:46px; }
.project-cinema-copy { position:relative; padding:26px; }
.project-cinema-copy h3 { margin:0 0 10px; padding-left:78px; color:#fff; font-family:NianExtraBold,Nian,Tahoma,sans-serif; font-size:22px; }
.project-cinema-copy p { color:rgba(255,255,255,.66); font-size:13px; }
.project-cinema-copy .meta { color:rgba(255,255,255,.55); }
.project-cinema-copy .text-link { color:var(--accent-light); }
.project-progress-ring { position:absolute; left:24px; top:22px; width:64px; height:64px; display:grid; place-items:center; border-radius:50%; background:conic-gradient(var(--accent) calc(var(--progress) * 1%),rgba(255,255,255,.12) 0); }
.project-progress-ring::before { content:""; position:absolute; inset:6px; border-radius:50%; background:#0b3935; }
.project-progress-ring span { position:relative; font-size:12px; font-weight:900; }
.project-cinema-card .progress { height:7px; background:rgba(255,255,255,.12); }
.project-cinema-card .progress span { background:linear-gradient(90deg,var(--accent),var(--accent-light)); }

/* Facts */
.city-facts-section { min-height:650px; display:flex; align-items:center; overflow:hidden; color:#fff; background:#073e3a; }
.city-facts-image { position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,43,40,.98) 0%,rgba(3,43,40,.89) 45%,rgba(3,43,40,.45)),url('../images/ravar-municipality-final.jpg') center/cover no-repeat; }
.city-facts-image::after { content:""; position:absolute; inset:0; background:linear-gradient(135deg,transparent 60%,rgba(200,155,60,.22)); }
.city-facts-inner { position:relative; z-index:2; display:grid; grid-template-columns:.8fr 1.2fr; align-items:center; gap:70px; }
.city-facts-heading h2 { color:#fff; }
.city-facts-heading p { color:rgba(255,255,255,.65); }
.city-facts-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.city-fact-card { min-height:300px; display:flex; flex-direction:column; justify-content:space-between; padding:30px; border:1px solid rgba(255,255,255,.17); border-radius:34px; color:#fff; background:rgba(255,255,255,.09); box-shadow:0 28px 70px rgba(0,0,0,.2); backdrop-filter:blur(18px); }
.city-fact-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:20px; color:var(--accent-light); background:rgba(255,255,255,.09); }
.city-fact-icon .ui-icon { width:30px; height:30px; }
.city-fact-label { color:rgba(255,255,255,.65); }
.city-fact-number { display:flex; align-items:flex-end; gap:10px; margin-top:16px; }
.city-fact-number strong { color:#fff; font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:clamp(54px,6vw,82px); line-height:.9; }
.city-fact-number span { color:var(--accent-light); font-size:13px; }
.city-fact-line { margin-top:28px; background:rgba(255,255,255,.12); }
.city-fact-line span { background:linear-gradient(90deg,var(--accent),var(--accent-light)); }

/* Quick access */
.quick-access-section { background:#f3f7f4; }
.quick-access-grid { display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:170px; gap:18px; }
.quick-access { position:relative; min-height:0; display:flex; flex-direction:column; justify-content:space-between; padding:25px; overflow:hidden; border:1px solid var(--line); border-radius:30px; text-align:right; background:#fff; box-shadow:var(--shadow-sm); transition:.35s var(--ease); }
.quick-access::after { content:""; position:absolute; width:160px; height:160px; left:-90px; bottom:-90px; border-radius:50%; background:rgba(15,118,110,.07); transition:.45s; }
.quick-access:hover { transform:translateY(-7px); box-shadow:var(--shadow-md); }
.quick-access:hover::after { transform:scale(1.45); }
.quick-access-1 { grid-column:span 5; grid-row:span 2; color:#fff; border-color:transparent; background:linear-gradient(145deg,#0e756d,#043d39); }
.quick-access-2 { grid-column:span 4; }
.quick-access-3 { grid-column:span 3; }
.quick-access-4 { grid-column:span 3; }
.quick-access-5 { grid-column:span 4; background:#fff8e9; border-color:rgba(200,155,60,.22); }
.quick-access-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:19px; color:var(--primary); background:rgba(15,118,110,.09); }
.quick-access-icon .ui-icon { width:29px; height:29px; }
.quick-access-1 .quick-access-icon { color:var(--accent-light); background:rgba(255,255,255,.1); }
.quick-access-copy strong,.quick-access-copy span { display:block; }
.quick-access-copy strong { color:var(--primary-dark); font-family:NianExtraBold,Nian,Tahoma,sans-serif; font-size:21px; }
.quick-access-copy span { margin-top:3px; color:var(--muted); font-size:12.5px; }
.quick-access-1 .quick-access-copy strong { color:#fff; font-size:31px; }
.quick-access-1 .quick-access-copy span { color:rgba(255,255,255,.65); }
.quick-access-arrow { position:absolute; left:22px; top:22px; color:var(--accent); }

/* KPI */
.kpi-section { padding:64px 0 110px; background:#f3f7f4; }
.kpi-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.quick-stat { position:relative; min-height:210px; display:flex; flex-direction:column; justify-content:flex-end; padding:25px; overflow:hidden; border:1px solid var(--line); border-radius:28px; text-align:right; background:#fff; box-shadow:var(--shadow-sm); }
.quick-stat::before { content:""; position:absolute; width:150px; height:150px; left:-55px; top:-55px; border-radius:50%; background:rgba(15,118,110,.06); }
.quick-stat > span { position:absolute; top:20px; left:22px; color:rgba(15,118,110,.13); font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:45px; }
.quick-stat strong { color:var(--primary); font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:52px; line-height:1; }
.quick-stat small { margin-top:10px; color:var(--muted); font-size:13px; }

/* Footer */
.site-footer { position:relative; overflow:hidden; padding-top:0; color:rgba(255,255,255,.76); background:#021f1e; }
.footer-aura { position:absolute; width:700px; height:700px; right:-350px; top:-350px; border-radius:50%; background:rgba(15,118,110,.35); filter:blur(30px); }
.footer-lead { position:relative; z-index:2; min-height:210px; display:flex; align-items:center; justify-content:space-between; gap:30px; padding:42px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-lead span { color:var(--accent-light); font-size:13px; }
.footer-lead h2 { margin:4px 0 0; color:#fff; font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:clamp(40px,5vw,70px); line-height:1; }
.footer-lead p { margin:10px 0 0; }
.footer-grid { position:relative; z-index:2; grid-template-columns:1.6fr 1fr 1fr 1.25fr; gap:42px; padding-top:65px; padding-bottom:50px; }
.footer-grid h3 { margin:0 0 20px; font-family:NianExtraBold,Nian,Tahoma,sans-serif; font-size:18px; }
.footer-grid section > a { position:relative; width:max-content; max-width:100%; color:rgba(255,255,255,.65); transition:.25s; }
.footer-grid section > a:hover { color:#fff; transform:translateX(-4px); }
.footer-brand-lockup { display:flex; align-items:center; gap:15px; margin-bottom:22px; }
.footer-brand-lockup img { width:78px; height:78px; padding:8px; border:1px solid rgba(255,255,255,.18); border-radius:24px; background:rgba(255,255,255,.07); }
.footer-brand-lockup h3,.footer-brand-lockup p { margin:0; }
.footer-brand-lockup h3 { font-size:23px; }
.footer-contact { display:flex; align-items:flex-start; gap:9px; color:rgba(255,255,255,.6); }
.footer-contact .ui-icon { margin-top:5px; color:var(--accent-light); }
.footer-contact-section > a,.footer-contact-section > span { display:flex !important; align-items:center; gap:10px; margin-bottom:12px; }
.footer-contact-section .ui-icon { color:var(--accent-light); }
.footer-social { display:flex; gap:9px; margin-top:18px; }
.footer-social a { display:inline-flex; align-items:center; gap:7px; padding:8px 13px; border:1px solid rgba(255,255,255,.14); border-radius:12px; color:#fff; background:rgba(255,255,255,.06); }
.footer-bottom { position:relative; z-index:2; min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:18px; border-top:1px solid rgba(255,255,255,.1); font-size:12px; }
.copyright { display:none; }
.back-to-top,.install-app-button { min-height:42px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border:1px solid rgba(255,255,255,.14); border-radius:13px; color:#fff; background:rgba(255,255,255,.06); font:inherit; cursor:pointer; }
.back-to-top { width:42px; transform:rotate(90deg); }
.install-app-button { padding:8px 14px; }
.mobile-dock { display:none; }

/* Internal pages */
.page-hero { position:relative; overflow:hidden; padding:88px 0; background:linear-gradient(120deg,#022d2a,#0f766e); }
.page-hero::before { content:""; position:absolute; inset:0; opacity:.14; background-image:linear-gradient(rgba(255,255,255,.2) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.2) 1px,transparent 1px); background-size:64px 64px; }
.page-hero .container { position:relative; }
.page-hero h1 { font-family:NianBlack,Nian,Tahoma,sans-serif; font-size:clamp(40px,6vw,72px); }
.content-wrap { padding:80px 0 110px; }
.card,.list-item,.filters-card,.mayor-profile-card,.map-card { border:1px solid var(--line); border-radius:26px; background:#fff; box-shadow:var(--shadow-sm); }
.card { padding:25px; }
.card:hover { box-shadow:var(--shadow-md); }
.card h3 { font-family:NianExtraBold,Nian,Tahoma,sans-serif; }
.news-thumb,.project-image,.item-image { border-radius:20px; }
input,select,textarea { min-height:52px; border:1px solid rgba(15,118,110,.17); border-radius:14px; background:#fbfdfc; transition:.2s; }
input:focus,select:focus,textarea:focus { outline:none; border-color:var(--primary); box-shadow:0 0 0 4px rgba(15,118,110,.1); background:#fff; }
.notice { border-radius:16px; }
.empty-state { border-radius:24px; background:rgba(255,255,255,.86); }
.empty-state-dark { color:rgba(255,255,255,.68); border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.07); }
.empty-state-dark strong { color:#fff; }

/* Reveal */
[data-reveal] { opacity:0; transform:translateY(30px); transition:opacity .85s var(--ease),transform .85s var(--ease); }
[data-reveal="right"] { transform:translateX(45px); }
[data-reveal="left"] { transform:translateX(-45px); }
[data-reveal].is-visible { opacity:1; transform:none; }
[data-tilt] { transition:transform .25s var(--ease); }

@media (max-width: 1100px) {
    .container { width:min(100% - 36px, 1120px); }
    .utility-chip span { display:none; }
    .service-bento { grid-template-columns:1fr 1fr; }
    .service-command-card { grid-column:1 / -1; min-height:230px; }
    .intro-layout { gap:55px; }
    .intro-visual { min-height:480px; }
    .mayor-layout { gap:60px; }
    .news-editorial-card { grid-template-columns:180px 1fr; }
    .project-cinema-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .city-facts-inner { grid-template-columns:1fr; gap:40px; }
    .quick-access-grid { grid-template-columns:repeat(6,1fr); }
    .quick-access-1 { grid-column:span 3; }
    .quick-access-2,.quick-access-3,.quick-access-4,.quick-access-5 { grid-column:span 3; }
}

@media (max-width: 900px) {
    html { scroll-padding-top:90px; }
    .topbar-date { display:none; }
    .brand-row { min-height:80px; }
    .brand-mark { width:56px; height:56px; border-radius:18px; }
    .brand img { width:51px; height:51px; }
    .brand-copy strong { font-size:19px; }
    .header-utility .utility-chip { display:none; }
    .menu-button { display:grid; }
    .nav-layer { position:fixed; top:0; right:0; bottom:0; z-index:91; width:min(390px,88vw); padding:110px 22px 24px; border:0; background:#fff; transform:translateX(110%); transition:transform .4s var(--ease); box-shadow:-30px 0 80px rgba(0,0,0,.2); }
    .nav-layer.is-open { transform:none; }
    .nav-shell { min-height:auto; display:block; width:100%; }
    .main-nav { display:flex; position:static; flex-direction:column; align-items:stretch; gap:4px; padding:0; border:0; box-shadow:none; }
    .main-nav a { display:flex; min-height:50px; align-items:center; padding:10px 14px; font-size:15px; }
    .main-nav a::after { right:auto; left:14px; top:50%; bottom:auto; width:6px; height:6px; border-radius:50%; transform:translateY(-50%) scale(0); }
    .main-nav a.active::after { transform:translateY(-50%) scale(1); }
    .nav-contact { width:100%; margin-top:18px; justify-content:space-between; min-height:52px; }
    .cinematic-hero { min-height:820px; }
    .hero-stage { min-height:670px; grid-template-columns:1fr; align-content:center; padding-top:30px; }
    .home-slider-summary { max-width:720px; }
    .home-slider-summary h1 { font-size:clamp(64px,13vw,100px); }
    .hero-live-card { display:none; }
    .hero-service-rail { margin-top:-95px; }
    .intro-layout,.mayor-layout { grid-template-columns:1fr; }
    .intro-copy { order:2; }
    .intro-visual { order:1; }
    .mayor-copy { text-align:center; }
    .section-kicker-light { justify-content:center; }
    .mayor-copy blockquote { text-align:right; }
    .mayor-copy .hero-actions { justify-content:center; }
    .news-editorial-grid { grid-template-columns:1fr; grid-template-rows:auto; }
    .news-editorial-featured { grid-row:auto; }
    .news-editorial-card,.news-editorial-featured { grid-template-columns:260px 1fr; }
    .news-editorial-featured .news-thumb,.news-editorial-featured .placeholder-media { min-height:250px; }
    .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 680px) {
    body { padding-bottom:76px; }
    .container { width:calc(100% - 28px); }
    .topbar-inner { justify-content:center; min-height:38px; }
    .topbar-slogan { display:none !important; }
    .topbar-phone { font-size:11.5px; }
    .brand { min-width:0; }
    .brand-copy small { display:none; }
    .section { padding:76px 0; }
    .section-heading-inline { align-items:flex-start; flex-direction:column; }
    .section-index { display:none; }
    .section-heading h2,.intro-copy h2,.mayor-copy h2,.city-facts-heading h2 { font-size:clamp(31px,10vw,44px); }
    .cinematic-hero { min-height:780px; padding-bottom:35px; }
    .home-slider { height:100%; aspect-ratio:auto; }
    .home-slide img { object-position:center; }
    .home-slide::after { background:linear-gradient(0deg,rgba(1,25,23,.98) 0%,rgba(1,30,27,.72) 62%,rgba(1,20,19,.25)); }
    .hero-overlay::before { background-size:48px 48px; }
    .hero-stage { min-height:620px; display:flex; align-items:flex-end; padding-bottom:92px; }
    .home-slider-summary { text-align:center; width:100%; }
    .hero-kicker { font-size:11px; }
    .home-slider-summary h1 { margin-top:16px; font-size:clamp(58px,20vw,82px); letter-spacing:-2px; }
    .home-slider-summary p { font-size:18px; }
    .home-slider-summary .hero-actions { display:grid; grid-template-columns:1fr; gap:10px; margin-top:24px; }
    .button-xl { width:100%; }
    .home-slide-caption,.home-slider-arrow,.home-slider-dots { display:none; }
    .hero-service-rail { grid-template-columns:repeat(3,1fr); margin-top:-90px; border-radius:22px; }
    .hero-service-rail > a { min-height:98px; display:flex; justify-content:center; flex-direction:column; gap:6px; padding:14px 8px; border-left:1px solid rgba(15,118,110,.1); text-align:center; }
    .hero-service-rail > a > .ui-icon:first-child { width:38px; height:38px; }
    .hero-service-rail > a > .ui-icon:last-child,.hero-service-rail small { display:none; }
    .hero-service-rail strong { font-size:11px; }
    .service-launchpad { padding-top:100px; }
    .service-bento { grid-template-columns:1fr; }
    .service-supercard,.service-command-card { min-height:240px; border-radius:28px; }
    .intro-visual { min-height:390px; }
    .intro-image-frame { inset:18px 0 0 18px; border-radius:30px 10px 30px 30px; }
    .intro-float-card { right:-8px; bottom:10px; min-width:210px; padding:14px; }
    .intro-watermark { width:86px; height:86px; left:-8px; top:-2px; border-radius:26px; }
    .mayor-portrait-wrap { min-height:440px; }
    .mayor-ring { width:350px; height:350px; }
    .mayor-image { height:420px; border-radius:190px 190px 28px 28px; }
    .mayor-stamp { left:0; }
    .mayor-copy blockquote { padding-right:18px; font-size:16px; }
    .news-editorial-card,.news-editorial-featured { grid-template-columns:1fr; }
    .news-editorial-card .news-thumb,.news-editorial-card .placeholder-media,.news-editorial-featured .news-thumb,.news-editorial-featured .placeholder-media { min-height:220px; }
    .project-cinema-grid { grid-template-columns:1fr; }
    .city-facts-section { min-height:auto; }
    .city-facts-grid { grid-template-columns:1fr; }
    .city-fact-card { min-height:240px; }
    .quick-access-grid { grid-template-columns:1fr 1fr; grid-auto-rows:180px; }
    .quick-access-1,.quick-access-2,.quick-access-3,.quick-access-4,.quick-access-5 { grid-column:span 1; grid-row:auto; }
    .quick-access-1 { grid-column:1 / -1; }
    .quick-access-1 .quick-access-copy strong { font-size:25px; }
    .kpi-grid { grid-template-columns:1fr 1fr; }
    .quick-stat { min-height:170px; padding:20px; }
    .quick-stat strong { font-size:40px; }
    .footer-lead { align-items:flex-start; flex-direction:column; }
    .footer-grid { grid-template-columns:1fr; gap:30px; }
    .footer-bottom { padding:16px 0; flex-wrap:wrap; }
    .mobile-dock { position:fixed; right:10px; left:10px; bottom:max(8px,env(safe-area-inset-bottom)); z-index:88; height:68px; display:grid; grid-template-columns:repeat(5,1fr); align-items:center; padding:6px; border:1px solid rgba(255,255,255,.7); border-radius:23px; background:rgba(255,255,255,.93); box-shadow:0 18px 55px rgba(2,44,41,.24); backdrop-filter:blur(20px); }
    .mobile-dock a { position:relative; min-width:0; height:54px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:3px; border-radius:17px; color:#74837f; font-size:10px; font-weight:800; }
    .mobile-dock a .ui-icon { width:20px; height:20px; }
    .mobile-dock a.active { color:var(--primary); background:rgba(15,118,110,.08); }
    .mobile-dock-main { margin-top:-24px; height:64px !important; color:#fff !important; background:linear-gradient(135deg,var(--primary),var(--primary-dark)) !important; box-shadow:0 14px 28px rgba(15,118,110,.28); }
    .mobile-dock-main .ui-icon { width:24px !important; height:24px !important; }
    .local-tools { bottom:88px !important; }
}

@media (max-width: 420px) {
    .brand-copy strong { font-size:17px; }
    .quick-access-grid,.kpi-grid { grid-template-columns:1fr; }
    .quick-access-1 { grid-column:auto; }
}

@media (prefers-reduced-motion: reduce) {
    *,*::before,*::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
    [data-reveal] { opacity:1; transform:none; }
}

@media (max-width: 680px) {
    .local-tools {
        inset-inline: auto 12px !important;
        top: auto !important;
        bottom: 88px !important;
        display: block !important;
    }
    .local-tools-tabs {
        width: 54px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 5px;
        border-radius: 19px !important;
        background: rgba(255,255,255,.92);
    }
    .local-tool-tab {
        width: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
        place-items: center;
        padding: 5px !important;
        border: 0 !important;
        border-radius: 14px !important;
        box-shadow: none !important;
    }
    .local-tool-icon {
        grid-row: auto;
        width: 34px;
        height: 34px;
    }
    .local-tool-label,
    .local-tool-value {
        display: none !important;
    }
    .local-tools-panel {
        inset-inline: auto 0 !important;
        top: auto !important;
        bottom: 112px !important;
        width: min(340px, calc(100vw - 28px)) !important;
        max-height: calc(100vh - 190px) !important;
        border-radius: 24px !important;
    }
}
.service-supercard-tag {
    position: absolute;
    top: 25px;
    right: 26px;
    min-width: 48px;
    padding: 5px 10px;
    border: 1px solid rgba(15,118,110,.14);
    border-radius: 999px;
    color: var(--primary);
    background: rgba(15,118,110,.07);
    font-size: 11px;
    font-weight: 900;
    text-align: center;
}
.service-supercard-primary .service-supercard-tag {
    color: var(--accent-light);
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
}


/* User-approved final refinements — 2026-08-02 */

/* The hero carries only one compact glass badge in the upper-right corner */
.hero-stage {
    display: block;
    padding-top: 0;
}
.home-slider-badge {
    position: absolute;
    top: 34px;
    right: 0;
    left: auto;
    z-index: 7;
    width: auto;
    text-align: right;
}
.home-slider-badge .hero-kicker {
    padding: 9px 14px;
    border-color: rgba(255,255,255,.24);
    color: #fff;
    background: rgba(2,45,42,.42);
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
    backdrop-filter: blur(16px) saturate(130%);
}
.hero-live-card {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 84px;
    width: min(270px, 100%);
    margin: 0;
}

/* All faded decorative numbers are intentionally removed site-wide */
.section-index,
.service-supercard-number,
.project-order,
.quick-stat > span {
    display: none !important;
}

/* Mayor label: lighter, slimmer and less visually dominant */
.mayor-stamp {
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.34);
    color: #3e2b06;
    background: rgba(241,207,134,.94);
    font-family: NianSemiBold, Nian, Tahoma, sans-serif;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* Position the municipality sign near the vertical center of the statistics frame */
.city-facts-image {
    background-position: center top;
}

/* Compact right-edge tools that unfold toward the left on hover/focus */
.local-tools {
    position: fixed !important;
    top: 50% !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%);
    z-index: 86;
}
.local-tools-tabs {
    width: 54px;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px;
    padding: 5px;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 20px 0 0 20px !important;
    background: rgba(255,255,255,.94) !important;
    box-shadow: 0 16px 42px rgba(3,48,44,.17) !important;
    backdrop-filter: blur(18px) saturate(140%);
}
.local-tool-tab {
    width: 44px !important;
    min-width: 44px !important;
    min-height: 46px !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0,1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: center;
    column-gap: 10px;
    padding: 6px 5px !important;
    overflow: hidden;
    border: 1px solid rgba(15,118,110,.10) !important;
    border-radius: 15px 0 0 15px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: none !important;
    white-space: nowrap;
    transition: width .34s var(--ease), box-shadow .28s ease, background .28s ease;
}
.local-tool-tab:hover,
.local-tool-tab:focus-visible,
.local-tool-tab[aria-expanded="true"] {
    width: 210px !important;
    background: #fff !important;
    box-shadow: 0 14px 34px rgba(3,48,44,.15) !important;
}
.local-tool-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 34px !important;
    height: 34px !important;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--primary-dark);
    background: rgba(15,118,110,.09);
}
.local-tool-label,
.local-tool-value {
    grid-column: 2;
    display: block !important;
    min-width: 135px;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    text-align: right;
    transition: opacity .22s ease .08s, transform .28s var(--ease) .04s;
}
.local-tool-label {
    grid-row: 1;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}
.local-tool-value {
    grid-row: 2;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
}
.local-tool-tab:hover .local-tool-label,
.local-tool-tab:hover .local-tool-value,
.local-tool-tab:focus-visible .local-tool-label,
.local-tool-tab:focus-visible .local-tool-value,
.local-tool-tab[aria-expanded="true"] .local-tool-label,
.local-tool-tab[aria-expanded="true"] .local-tool-value {
    opacity: 1;
    transform: none;
}
.local-tools-panel {
    right: 62px !important;
    left: auto !important;
}

@media (max-width: 900px) {
    .home-slider-badge {
        top: 24px;
        right: 0;
    }
}

@media (max-width: 680px) {
    .home-slider-badge {
        top: 18px;
        right: 0;
        max-width: calc(100% - 12px);
    }
    .home-slider-badge .hero-kicker {
        max-width: 100%;
        padding: 7px 10px;
        font-size: 10.5px;
        white-space: normal;
    }
    .hero-stage {
        min-height: 620px;
        padding-bottom: 0;
    }
    .local-tools {
        top: auto !important;
        right: 10px !important;
        bottom: 88px !important;
        transform: none;
    }
    .local-tools-tabs {
        width: 54px;
        border-radius: 19px !important;
    }
    .local-tool-tab,
    .local-tool-tab:hover,
    .local-tool-tab:focus-visible,
    .local-tool-tab[aria-expanded="true"] {
        width: 44px !important;
        grid-template-columns: 34px !important;
        border-radius: 14px !important;
    }
    .local-tool-label,
    .local-tool-value {
        display: none !important;
    }
    .local-tools-panel {
        right: 0 !important;
        bottom: 112px !important;
    }
    .city-facts-image {
        background-position: 54% top;
    }
}

/* Final compact mayor heading: guaranteed single line */
.mayor-copy h2#mayor-title {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(26px, 2.05vw, 34px) !important;
    line-height: 1.55;
    letter-spacing: 0;
    white-space: nowrap !important;
}

/* The glass municipal service card has been removed from the slider */
.hero-live-card {
    display: none !important;
}

@media (max-width: 680px) {
    .mayor-copy h2#mayor-title {
        width: 100%;
        margin-inline: auto;
        font-size: clamp(19px, 5.8vw, 24px) !important;
        white-space: nowrap !important;
    }
}
