:root {
  --gold: #f4d957;
  --gold-soft: rgba(244, 217, 87, .14);
  --gold-line: rgba(244, 217, 87, .28);
  --black: #000;
  --ink: #0c0c0e;
  --ink-2: #141417;
  --ink-3: #1c1c21;
  --line: rgba(255, 255, 255, .09);
  --text: #f2f2f3;
  --muted: #a2a2ad;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .45);
  --light: #f4f3ef;
  --light-2: #e9e7e0;
  --ink-on-light: #0c0c0f;
  --muted-on-light: #5a5a67;
  --max: 1560px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Barlow Condensed", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

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

.ic { width: 24px; height: 24px; flex: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(18px, 3.4vw, 56px); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; letter-spacing: -.01em; line-height: 1.08; margin: 0 0 .5em; text-transform: uppercase; }
h1 { font-size: clamp(2.2rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.gold { color: var(--gold); }
.muted { color: var(--muted); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-soft); border: 1px solid var(--gold-line);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow .ic { width: 15px; height: 15px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .93rem;
  letter-spacing: .02em; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center;
}
.btn .ic { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #16130a; }
.btn-gold:hover { background: #ffe873; }
.btn-ghost { border-color: rgba(255, 255, 255, .22); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-wa { background: #25d366; color: #04240f; }
.btn-wa:hover { background: #3ce87b; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.topbar {
  background: var(--black); border-bottom: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--gold); }
.topbar .ic { width: 15px; height: 15px; color: var(--gold); }
.topbar-right { display: flex; gap: 20px; align-items: center; }

.site-header { position: sticky; top: 0; z-index: 60; background: var(--black); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 22px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--display); font-size: 1.15rem; line-height: 1.05; text-transform: uppercase; }
.brand-text small { display: block; font-family: var(--font); font-size: .6rem; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; font-weight: 600; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .dd > button {
  padding: 10px 14px; border-radius: 10px; font-size: .88rem; font-weight: 600;
  color: #dcdce2; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav > a:hover, .nav .dd > button:hover, .nav > a.on { color: var(--gold); background: rgba(255, 255, 255, .05); }
.nav .dd { position: relative; }
.nav .dd > button .ic { width: 15px; height: 15px; transform: rotate(90deg); }
.dd-menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 290px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 8px; box-shadow: var(--shadow); display: none; z-index: 70;
}
.nav .dd::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; display: none;
}
.nav .dd.open::after { display: block; }
.nav .dd.open .dd-menu { display: block; }
@media (hover: hover) and (pointer: fine) {
  .nav .dd:hover::after { display: block; }
  .nav .dd:hover .dd-menu { display: block; }
}
.nav .dd > button[aria-expanded="true"] { color: var(--gold); background: rgba(255, 255, 255, .05); }
.nav .dd > button[aria-expanded="true"] .ic { transform: rotate(-90deg); }
.dd-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: .87rem; color: #d7d7de; }
.dd-menu a:hover { background: rgba(244, 217, 87, .1); color: var(--gold); }
.dd-menu a .ic { width: 18px; height: 18px; color: var(--gold); }

.header-cta { display: flex; gap: 10px; align-items: center; flex: none; }
.burger { display: none; background: none; border: 1px solid var(--line); color: #fff; border-radius: 10px; padding: 8px; cursor: pointer; }

/* ---------- area picker ---------- */
.areabar {
  position: relative; background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.areabar .wrap { display: flex; align-items: center; gap: 14px; padding-top: 13px; padding-bottom: 13px; flex-wrap: wrap; }
.areabar .lbl { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; color: #8b8b96; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.areabar .lbl .ic { width: 17px; height: 17px; color: var(--gold); }
.areabar .lbl strong { color: #fff; font-weight: 800; letter-spacing: 0; text-transform: none; font-size: .95rem; margin-left: 6px; }
.areabar-note { font-size: .76rem; color: #6f6f7a; margin-left: auto; }
.area-trigger {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  background: var(--gold); color: #16130a; border: 1px solid var(--gold);
  border-radius: 999px; padding: 10px 18px; font-size: .86rem; font-weight: 800;
  box-shadow: 0 8px 22px rgba(244, 217, 87, .22); transition: transform .16s ease, background .16s ease;
}
.area-trigger .ic { width: 17px; height: 17px; color: #16130a; }
.area-trigger .ic:last-child { transform: rotate(90deg); width: 14px; height: 14px; }
.area-trigger:hover { transform: translateY(-1px); background: #ffe873; }
.areabar .clear { font-size: .78rem; color: #9c9ca7; text-decoration: underline; }
.areabar .clear:hover { color: var(--gold); }
.drawer .area-trigger { justify-content: center; width: 100%; }

.area-modal {
  position: fixed; inset: 0; z-index: 130; display: none;
  background: rgba(0, 0, 0, .72); backdrop-filter: blur(6px);
  padding: 5vh 20px; overflow-y: auto;
}
.area-modal.open { display: block; }
.am-panel {
  width: 100%; max-width: 1000px; margin: 0 auto;
  background: var(--ink-2); border: 1px solid var(--gold-line); border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6); overflow: hidden;
  animation: am-in .28s cubic-bezier(.2, .9, .3, 1);
}
@keyframes am-in { from { opacity: 0; transform: translateY(22px) scale(.985); } }
.am-head { display: flex; align-items: flex-start; gap: 18px; padding: 26px 28px 18px; border-bottom: 1px solid var(--line); }
.am-head h3 { margin: 0 0 6px; font-size: 1.55rem; }
.am-head p { margin: 0; color: var(--muted); font-size: .88rem; }
.am-x { margin-left: auto; background: var(--ink-3); border: 1px solid var(--line); color: #fff; border-radius: 12px; padding: 9px; cursor: pointer; flex: none; }
.am-x:hover { border-color: var(--gold); color: var(--gold); }
.am-search { display: flex; align-items: center; gap: 12px; padding: 18px 28px; border-bottom: 1px solid var(--line); background: var(--ink-3); }
.am-search > .ic { color: var(--gold); flex: none; }
.am-search input {
  flex: 1; background: var(--ink); border: 1px solid var(--line); color: #fff;
  border-radius: 12px; padding: 13px 16px; font: inherit; font-size: .93rem;
}
.am-search input:focus { outline: none; border-color: var(--gold); }
.am-all { font-size: .8rem; font-weight: 700; color: var(--gold); border: 1px solid var(--gold-line); border-radius: 999px; padding: 9px 15px; white-space: nowrap; }
.am-all:hover { background: var(--gold); color: #16130a; }
.am-body { padding: 22px 28px 30px; max-height: 58vh; overflow-y: auto; }
.am-group { margin-bottom: 26px; }
.am-group.hide { display: none; }
.am-group h4 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em;
  font-size: 1rem; color: var(--gold); margin: 0 0 12px; display: flex; align-items: center; gap: 10px;
}
.am-group h4 span { font-family: var(--font); font-size: .7rem; color: var(--muted); background: var(--ink-3); border-radius: 999px; padding: 3px 9px; }
.am-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 8px; }
.am-item {
  display: block; padding: 11px 14px; border-radius: 11px; font-size: .87rem; font-weight: 600;
  background: var(--ink-3); border: 1px solid var(--line); color: #d5d5dd;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.am-item:hover { border-color: var(--gold); color: var(--gold); }
.am-item.on { background: var(--gold); border-color: var(--gold); color: #16130a; }
.am-item.hide { display: none; }
.am-empty { display: none; color: var(--muted); font-size: .92rem; }
.am-empty.on { display: block; }
@media (max-width: 640px) {
  .area-modal { padding: 0; }
  .am-panel { border-radius: 0; min-height: 100vh; max-width: none; }
  .am-head, .am-search, .am-body { padding-left: 18px; padding-right: 18px; }
  .am-body { max-height: none; }
  .am-grid { grid-template-columns: repeat(2, 1fr); }
  .am-search { flex-wrap: wrap; }
  .am-search input { min-width: 100%; order: 2; }
}

/* ---------- animated hero pill ---------- */
.pill-live {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center;
  padding: 11px 26px; border-radius: 999px; margin-bottom: 22px;
  font-size: .74rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); background: #0b0b0e;
  border: 1px solid rgba(244, 217, 87, .45);
  box-shadow: 0 10px 26px rgba(12, 12, 15, .18);
}
.pill-live .dot { display: none; }
.pill-live::before {
  content: ""; position: absolute; top: -60%; bottom: -60%; width: 42%; left: -60%;
  background: linear-gradient(90deg, transparent, rgba(244, 217, 87, .32), rgba(255, 250, 214, .55), rgba(244, 217, 87, .32), transparent);
  transform: skewX(-22deg);
  animation: pill-sweep 3.6s cubic-bezier(.45, 0, .2, 1) infinite;
}
@keyframes pill-sweep { 0% { left: -60%; } 55%, 100% { left: 130%; } }
.pill-live .shine { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .pill-live::before { animation: none; opacity: 0; } }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--ink-on-light);
  padding: clamp(34px, 5vw, 64px) 0 0;
  background:
    radial-gradient(1150px 520px at 6% -14%, rgba(244, 217, 87, .5), rgba(244, 217, 87, 0) 58%),
    radial-gradient(820px 560px at 104% 24%, rgba(244, 217, 87, .18), transparent 60%),
    linear-gradient(168deg, #eeece5 0%, #f8f7f3 42%, #e9e7df 100%);
}
.hero::before {
  content: ""; position: absolute; top: -14%; right: -22%; width: 78%; height: 128%;
  background: linear-gradient(200deg, rgba(12, 12, 15, .055), rgba(12, 12, 15, 0) 58%);
  transform: skewX(-11deg); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: repeating-linear-gradient(126deg, rgba(12, 12, 15, .035) 0 1px, transparent 1px 9px);
  mask-image: linear-gradient(200deg, #000 0%, transparent 52%);
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px, 4vw, 62px); align-items: center; }

.hero .wrap > * { min-width: 0; }
.hero-copy { min-width: 0; padding-bottom: clamp(30px, 4vw, 56px); }
.hero h1 {
  color: var(--ink-on-light); margin: 0 0 18px;
  font-size: clamp(2.35rem, 5.6vw, 4.3rem); line-height: .96; letter-spacing: -.015em;
}
.hero h1 em {
  font-style: normal; display: block; position: relative; width: fit-content;
  color: #17150c;
}
.hero h1 em {
  background-image: linear-gradient(90deg, var(--gold), rgba(244, 217, 87, .38));
  background-repeat: no-repeat;
  background-position: 0 .80em;
  background-size: 0 .28em;
  animation: swash 1.1s cubic-bezier(.2, .8, .25, 1) .5s forwards;
}
@keyframes swash { to { background-size: 100% .28em; } }

.hero p.lead { color: #4c4c58; font-size: clamp(1rem, 1.2vw, 1.08rem); max-width: 54ch; margin-bottom: 26px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.hero .hero-actions { flex-wrap: nowrap; }
.hero .hero-actions .btn {
  flex: 1 1 0; min-width: 0; flex-direction: column; gap: 7px;
  padding: 15px 12px; border-radius: 18px; line-height: 1.25;
}
.hero .hero-actions .btn .ic { width: 22px; height: 22px; }
.hero .hero-actions .btn .btn-lbl { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; font-size: .88rem; }
.hero .btn-dark { background: #0b0b0e; color: var(--gold); border-color: #0b0b0e; box-shadow: 0 12px 30px rgba(12, 12, 15, .22); }
.hero .btn-dark:hover { background: #000; color: #fff; }
.hero .btn-ghost { border-color: rgba(12, 12, 15, .2); color: #16161b; background: rgba(255, 255, 255, .7); }
.hero .btn-ghost:hover { border-color: #0b0b0e; background: #0b0b0e; color: var(--gold); }

.trust-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust-stars { display: flex; gap: 2px; color: #e0aa14; }
.trust-stars svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.trust-row .txt { font-size: .85rem; color: #4c4c58; }
.trust-row .txt b { color: #0c0c0f; }
.trust-sep { width: 1px; height: 22px; background: rgba(12, 12, 15, .14); }
.trust-badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 700;
  background: #fff; border: 1px solid rgba(12, 12, 15, .1); border-radius: 999px;
  padding: 7px 14px; box-shadow: 0 4px 14px rgba(12, 12, 15, .06);
}
.trust-badge .ic { width: 15px; height: 15px; color: #16a34a; }

.hero-visual { min-width: 0; position: relative; align-self: stretch; display: flex; align-items: center; padding: 20px 0 clamp(30px, 4vw, 56px); }
.hero-frame { position: relative; width: 100%; max-width: 100%; }
.hero-frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: 26px;
  background: linear-gradient(140deg, var(--gold), rgba(244, 217, 87, .25));
  z-index: 0;
}
.hero-shot {
  position: relative; z-index: 1; border-radius: 24px; overflow: hidden;
  background: #fff; border: 1px solid rgba(12, 12, 15, .08);
  box-shadow: 0 30px 70px rgba(12, 12, 15, .2);
}
.hero-shot img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; }
.hero-slider { position: relative; aspect-ratio: 4 / 3.1; }
.hs-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity 1s ease, transform 6s linear; }
.hs-slide.on { opacity: 1; transform: scale(1); }
.hs-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 7px; z-index: 3; }
.hs-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer; padding: 0; background: rgba(255, 255, 255, .5); box-shadow: 0 1px 4px rgba(0, 0, 0, .35); transition: .2s; }
.hs-dots button.on { background: var(--gold); width: 24px; border-radius: 999px; }
.hero-shot .ph {
  aspect-ratio: 4 / 3.1; display: grid; place-items: center; color: #b9bcc4;
  background: repeating-linear-gradient(135deg, #f0f1f3 0 16px, #e8e9ed 16px 32px);
}
.hero-shot .ph .ic { width: 78px; height: 78px; }

.chip-float {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  background: rgba(11, 11, 14, .95); color: #fff; border-radius: 15px; padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(12, 12, 15, .3); font-size: .82rem; font-weight: 700;
  backdrop-filter: blur(6px);
}
.chip-float .ic { width: 19px; height: 19px; color: var(--gold); }
.chip-float small { display: block; font-size: .68rem; font-weight: 500; color: #9c9ca7; letter-spacing: .06em; text-transform: uppercase; }
.chip-24 { left: 16px; top: -22px; animation: float-a 5.5s ease-in-out infinite; }
.chip-rate { right: 6px; bottom: 12px; background: #fff; color: #0c0c0f; animation: float-b 6.5s ease-in-out infinite; }
.chip-rate .ic { color: #16a34a; }
.chip-rate small { color: #6a6a76; }
@keyframes float-a { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) { .chip-24, .chip-rate { animation: none; } .hero h1 em { animation: none; background-size: 100% .28em; } }

.hero-strip {
  position: relative; z-index: 2; margin-top: 0;
  border-top: 1px solid rgba(12, 12, 15, .1);
  background: linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .3));
  backdrop-filter: blur(2px);
}
.hero-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: stretch; }
.hs-item { padding: 20px 22px; display: flex; align-items: center; gap: 13px; border-left: 1px solid rgba(12, 12, 15, .08); }
.hs-item:first-child { border-left: 0; padding-left: 0; }
.hs-item .ic { width: 24px; height: 24px; color: #a6821b; flex: none; }
.hs-item b { display: block; font-family: var(--display); font-size: 1.5rem; line-height: 1; color: #0c0c0f; }
.hs-item span { font-size: .78rem; color: #5f5f6b; }

.hero-tags {
  display: flex; flex-wrap: nowrap; gap: 6px; margin-top: 20px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 2px;
  mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
}
.hero-tags::-webkit-scrollbar { display: none; }
.hero-tags span {
  font-size: .655rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid rgba(12, 12, 15, .12); background: rgba(255, 255, 255, .72);
  border-radius: 999px; padding: 4px 9px; color: #4c4c58; white-space: nowrap; line-height: 1.5;
}

.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2, .8, .25, 1) forwards; }
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .15s; }
.reveal-3 { animation-delay: .25s; }
.reveal-4 { animation-delay: .35s; }
.reveal-5 { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: 2; padding-top: 4px; }
  .hero-copy { order: 1; padding-bottom: 22px; }
  .hero-frame::before { inset: 14px -10px -14px 14px; }
  .hero-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .hs-item:nth-child(3) { border-left: 0; padding-left: 0; }
  .hs-item { padding: 16px 14px; }
}
@media (max-width: 560px) {
  .hero-strip .wrap { grid-template-columns: 1fr; }
  .hs-item { border-left: 0; padding: 13px 0; border-top: 1px solid rgba(12, 12, 15, .08); }
  .hs-item:first-child { border-top: 0; }
  .chip-24 { left: 10px; top: -18px; padding: 8px 12px; font-size: .7rem; max-width: calc(100% - 20px); }
  .chip-rate { right: 6px; bottom: 10px; padding: 8px 12px; font-size: .7rem; max-width: calc(100% - 20px); }
  .chip-float small { font-size: .6rem; }
  .chip-float .ic { width: 16px; height: 16px; }
  .hero .hero-actions { gap: 7px; }
  .hero .hero-actions .btn { padding: 12px 6px; gap: 5px; border-radius: 16px; }
  .hero .hero-actions .btn .ic { width: 20px; height: 20px; }
  .hero .hero-actions .btn .btn-lbl { font-size: .78rem; }
  .hero .hero-actions .btn .lbl-x { display: none; }
  .hero-tags span { font-size: .615rem; padding: 4px 8px; }
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.stat { background: rgba(255, 255, 255, .04); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.stat b { display: block; font-family: var(--display); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.stat span { font-size: .76rem; color: var(--muted); }

/* ---------- sections ---------- */
.sec { padding: clamp(58px, 7vw, 96px) 0; }
.sec.alt { background: var(--ink-2); }
.sec.dark { background: var(--black); }
.sec-head { max-width: 720px; margin-bottom: 42px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { color: var(--muted); margin: 0; }

.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color .2s ease, transform .2s ease, background .2s ease;
  position: relative; overflow: hidden; display: block;
}
.sec.alt .card { background: var(--ink-3); }
.card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; font-size: 1.22rem; }
.card p { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.card .more { color: var(--gold); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.card .more .ic { width: 15px; height: 15px; }

.card-img { padding: 0; }
.card-img .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-3); }
.card-img .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-img:hover .thumb img { transform: scale(1.06); }
.card-img .thumb.ph { display: grid; place-items: center; color: #3d3d46; }
.card-img .body { padding: 22px 24px 26px; }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: #d6d6de; }
.check-list li .ic { width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-frame.ph { aspect-ratio: 4 / 3; display: grid; place-items: center; background: repeating-linear-gradient(135deg, #131316 0 14px, #17171b 14px 28px); color: #3f3f49; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid a { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }

.area-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.area-cloud a {
  font-size: .82rem; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; color: #cbcbd4; background: rgba(255, 255, 255, .03);
}
.area-cloud a:hover { border-color: var(--gold); color: var(--gold); }

.region-block { margin-bottom: 34px; }
.region-block h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 14px; }

.cta-band {
  background: var(--gold); color: #16130a; border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 54px); display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { color: #14110a; margin: 0 0 8px; }
.cta-band p { margin: 0; color: rgba(20, 17, 10, .78); font-weight: 500; }
.cta-band .btn-gold { background: #101014; color: var(--gold); }
.cta-band .btn-gold:hover { background: #000; }
.cta-band .btn-ghost { border-color: rgba(20, 17, 10, .35); color: #14110a; }
.cta-band .btn-ghost:hover { background: rgba(0, 0, 0, .08); border-color: #14110a; color: #14110a; }

/* ---------- content typography ---------- */
.prose { font-size: 1rem; color: #d3d3db; }
.prose h2, .prose h3 { color: #fff; margin-top: 1.7em; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 0 0 1.3em; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px;
  border-radius: 3px; background: var(--gold);
}
.prose a { color: var(--gold); text-decoration: underline; }
.prose img { border-radius: var(--radius); margin: 1.2em 0; }

.breadcrumb { font-size: .8rem; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: .5; }

.page-head {
  background: linear-gradient(180deg, var(--light) 0%, #fafbfc 55%, var(--light-2) 100%);
  color: var(--ink-on-light);
  padding: clamp(28px, 4.5vw, 56px) 0 clamp(38px, 5vw, 64px);
  border-bottom: 1px solid rgba(0, 0, 0, .08); position: relative;
}
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(760px 320px at 8% -20%, rgba(244, 217, 87, .5), transparent 62%); }
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1, .page-head h2 { color: var(--ink-on-light); }
.page-head h1 .gold { color: #a6821b; }
.page-head p { color: var(--muted-on-light); max-width: 66ch; margin: 0; }
.page-head .breadcrumb { color: #71717e; }
.page-head .breadcrumb a { color: #3d3d48; }
.page-head .breadcrumb a:hover { color: #a6821b; }
.page-head .eyebrow { background: rgba(12, 12, 15, .06); border-color: rgba(12, 12, 15, .14); color: #55452a; }
.page-head .eyebrow .ic { color: #8b6d12; }
.page-head .btn-ghost { border-color: rgba(12, 12, 15, .25); color: #101014; }
.page-head .btn-ghost:hover { border-color: #101014; background: #101014; color: var(--gold); }
.page-head { padding-bottom: clamp(74px, 7vw, 104px); overflow: visible; }
.scroll-cue {
  position: absolute; left: 50%; bottom: -27px; z-index: 6;
  width: 54px; height: 54px; border-radius: 50%; padding: 0; cursor: pointer;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 217, 87, .45);
  background: var(--ink);
  box-shadow: 0 0 0 7px var(--ink), 0 14px 30px rgba(12, 12, 15, .3);
  display: grid; place-items: center;
  transition: transform .2s ease, border-color .2s ease;
}
.scroll-cue:hover { border-color: var(--gold); transform: translateX(-50%) translateY(2px); }
.scroll-cue::before, .scroll-cue::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  border: 1.5px solid var(--gold); opacity: 0;
  animation: cue-ripple 2.6s cubic-bezier(.2, .6, .3, 1) infinite;
  pointer-events: none;
}
.scroll-cue::after { animation-delay: 1.3s; }
@keyframes cue-ripple {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
.scroll-cue svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.scroll-cue .wheel { fill: var(--gold); stroke: none; animation: cue-wheel 2.1s cubic-bezier(.4, 0, .2, 1) infinite; }
@keyframes cue-wheel {
  0% { transform: translateY(0); opacity: .5; }
  35% { transform: translateY(4.4px); opacity: 1; }
  70%, 100% { transform: translateY(0); opacity: .5; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue::before, .scroll-cue::after, .scroll-cue .wheel { animation: none; }
}
@media (max-width: 640px) {
  .scroll-cue { width: 48px; height: 48px; bottom: -24px; box-shadow: 0 0 0 6px var(--ink), 0 10px 22px rgba(12, 12, 15, .3); }
  .scroll-cue svg { width: 26px; height: 26px; }
}
.sidebar-layout { display: grid; grid-template-columns: 1fr 340px; gap: 42px; align-items: start; }
.side-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 18px; }
.side-card h4 { font-family: var(--display); font-size: 1.1rem; text-transform: uppercase; margin: 0 0 14px; }
.side-links { display: grid; gap: 4px; }
.side-links a { padding: 10px 12px; border-radius: 10px; font-size: .88rem; color: #cfcfd8; display: flex; align-items: center; gap: 10px; }
.side-links a .ic { width: 18px; height: 18px; color: var(--gold); }
.side-links a:hover, .side-links a.on { background: var(--gold-soft); color: var(--gold); }

/* ---------- forms ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--ink-3); border: 1px solid var(--line); color: #fff;
  border-radius: 12px; padding: 13px 15px; font: inherit; font-size: .93rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert { border-radius: 12px; padding: 14px 18px; font-size: .92rem; margin-bottom: 20px; border: 1px solid; }
.alert-ok { background: rgba(37, 211, 102, .1); border-color: rgba(37, 211, 102, .35); color: #7ef0a8; }
.alert-err { background: rgba(255, 92, 92, .1); border-color: rgba(255, 92, 92, .35); color: #ff9d9d; }

.info-list { display: grid; gap: 14px; list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); flex: none; }
.info-list b { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.info-list span { font-size: .96rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding: 62px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-grid h4 { font-family: var(--display); font-size: 1.05rem; text-transform: uppercase; margin: 0 0 16px; color: #fff; }
.footer-grid a { color: var(--muted); font-size: .9rem; display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand img { height: 62px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .9rem; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: #fff; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 46px; padding: 20px 0 24px; font-size: .82rem; color: #6f6f7a; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom a { color: #8b8b96; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- desktop floating actions ---------- */
.float-actions { position: fixed; right: 22px; bottom: 26px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.float-actions a {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45); transition: transform .18s ease;
}
.float-actions a:hover { transform: scale(1.08); }
.float-actions .fa-call { background: var(--gold); color: #16130a; }
.float-actions .fa-wa { background: #25d366; color: #04240f; }
.float-actions .fa-sos { background: #ff4d4d; color: #fff; }
.float-actions .ic { width: 26px; height: 26px; }

/* ---------- mobile app bar ---------- */
.appbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(0, 0, 0, .94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.appbar-inner { display: grid; grid-template-columns: 1fr 1fr 86px 1fr 1fr; align-items: end; height: 66px; }
.appbar a, .appbar button {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  background: none; border: 0; color: #b9b9c4; font-size: .64rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; height: 66px; cursor: pointer;
}
.appbar .ic { width: 22px; height: 22px; }
.appbar .ab-call { color: var(--gold); }
.appbar .ab-wa { color: #25d366; }
.appbar .ab-menu { position: relative; }
.appbar .ab-menu span.fab {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 62px; height: 62px; border-radius: 50%; background: var(--gold); color: #16130a;
  display: grid; place-items: center; border: 5px solid var(--ink);
  box-shadow: 0 10px 26px rgba(244, 217, 87, .32);
}
.appbar .ab-menu span.fab .ic { width: 26px; height: 26px; }
.appbar .ab-menu i { font-style: normal; margin-top: 42px; font-size: .64rem; }

/* ---------- mobile drawer ---------- */
.drawer-back { position: fixed; inset: 0; background: rgba(0, 0, 0, .68); backdrop-filter: blur(3px); z-index: 95; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.drawer-back.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
  background: var(--ink-2); border-top: 1px solid var(--gold-line);
  border-radius: 24px 24px 0 0; padding: 12px 18px calc(90px + env(safe-area-inset-bottom));
  transform: translateY(102%); transition: transform .3s cubic-bezier(.3, .9, .3, 1);
  max-height: 88vh; overflow-y: auto;
}
.drawer.open { transform: translateY(0); }
.drawer .handle { width: 46px; height: 4px; border-radius: 4px; background: #3a3a44; margin: 6px auto 16px; }
.drawer h5 { font-family: var(--display); text-transform: uppercase; font-size: .95rem; color: var(--gold); margin: 18px 0 8px; letter-spacing: .06em; }
.drawer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.drawer-links a {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: 12px;
  background: var(--ink-3); border: 1px solid var(--line); font-size: .87rem; font-weight: 600;
}
.drawer-links a .ic { width: 19px; height: 19px; color: var(--gold); }
.drawer-links a.full { grid-column: 1 / -1; }

.lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, .93); z-index: 120; display: none; place-items: center; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 94vw; max-height: 88vh; width: auto; border-radius: 12px; }
.lightbox .x { position: absolute; top: 20px; right: 22px; background: none; border: 0; color: #fff; cursor: pointer; }

.geo-btn {
  background: #000; color: #fff; border: 1px solid rgba(255, 255, 255, .16);
}
.geo-btn:hover { border-color: var(--gold); color: var(--gold); }
.geo-btn.on { background: #16a34a; border-color: #16a34a; color: #fff; }
.geo-btn.on:hover { background: #15913f; color: #fff; }
.geo-btn.loading { opacity: .75; }

.geo-map { display: block; margin: 0 0 18px; }
.geo-map.on { display: block; }
.geo-map .frame { border-radius: 14px; overflow: hidden; border: 1px solid var(--gold-line); }
.geo-map iframe, .geo-map #geoLeaflet { width: 100%; height: 300px; border: 0; display: block; }
.geo-map .meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: .82rem; color: var(--muted); padding: 10px 4px 0;
}
.geo-map .meta a { color: var(--gold); text-decoration: underline; }

.intro-copy { max-width: 900px; margin: 0 0 38px; }
.intro-copy p { color: #bfbfc9; font-size: 1.01rem; }
.intro-copy p:last-child { margin-bottom: 0; }
.intro-copy strong { color: var(--gold); font-weight: 700; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; filter: invert(.92) hue-rotate(180deg) saturate(.35); }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.tabs a { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: .84rem; font-weight: 600; color: #c9c9d2; }
.tabs a.on, .tabs a:hover { background: var(--gold); border-color: var(--gold); color: #16130a; }

@media (max-width: 1080px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav, .header-cta .btn, .topbar { display: none; }
  .burger { display: inline-flex; margin-left: auto; }
  .site-header .wrap { height: 66px; }
  .brand img { height: 42px; }
  .g3, .g2, .split { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .appbar { display: block; }
  .float-actions { display: none; }
  body { padding-bottom: 78px; }
  .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .area-select { min-width: 0; flex: 1; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .g4 { grid-template-columns: 1fr; }
  .drawer-links { grid-template-columns: 1fr; }
}

.am-logo { height: 46px; width: auto; flex: none; filter: brightness(0) invert(1); opacity: .95; margin-top: 2px; }
@media (max-width: 760px) { .am-logo { display: none; } }
.tiny-link { text-decoration: underline; }
.tiny-link:hover { color: var(--gold); }

.cov-map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
#coverageMap { height: clamp(380px, 62vh, 640px); width: 100%; background: #10101a; }
.cov-legend { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; font-size: .84rem; color: var(--muted); }
.cov-legend .dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; vertical-align: -1px; }
.cov-legend .dot.base { background: #111; border: 2px solid #fff; }
.cov-legend .dot.area { background: rgba(244, 217, 87, .5); border: 1.5px solid #c9a92b; }
.leaflet-popup-content a { color: #9a7a0d; font-weight: 700; }

.sos-geo {
  display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap;
  background: var(--ink-2); border: 1px solid var(--gold-line); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 20px;
}
.sos-geo .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); flex: none; }
.sos-geo .g { flex: 1; min-width: 220px; }
.sos-geo b { display: block; font-size: .96rem; margin-bottom: 3px; }
.sos-geo p { margin: 0; font-size: .87rem; color: var(--muted); }
.sos-geo .dist { font-family: var(--display); font-size: 2rem; color: var(--gold); line-height: 1; }
.sos-geo .acts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
