/* Skyline Brand Lab: skylinebrandlab.com */
@font-face {
  font-family: "Hubot Sans";
  src: url("/assets/fonts/hubot-sans.woff2") format("woff2");
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  src: url("/assets/fonts/josefin-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --midnight: #0B0C2A;
  --night-2: #14163D;
  --night-3: #20224F;
  --line-dark: rgba(189, 184, 214, .16);
  --gold: #E2B274;
  --gold-hi: #F6DDB0;
  --gold-lo: #B98548;
  --gold-grad: linear-gradient(135deg, #F6DDB0 0%, #E2B274 50%, #B98548 100%);
  --bronze: #7E5424;
  --coral: #FF8A5B;
  --magenta: #E5467E;
  --violet: #6B3BE0;
  --violet-soft: #A98CFF;
  --dim-violet: #2A1F5C;
  --cream: #F5E9E3;
  --cream-2: #EFE4DB;
  --mist: #BDB8D6;
  --slate: #4A4868;
  --line-light: rgba(11, 12, 42, .14);

  --display: "Hubot Sans", "Segoe UI", system-ui, sans-serif;
  --text: "Onest", "Segoe UI", system-ui, sans-serif;
  --label: "Josefin Sans", "Onest", "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(16px, 4.2vw, 56px);
  --section: clamp(72px, 8.5vw, 124px);
  --radius: 14px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--midnight);
  color: var(--cream);
  font: 400 1.0625rem/1.6 var(--text);
  font-feature-settings: "tnum" 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-underline-offset: .22em; text-decoration-thickness: 1px; }
::selection { background: var(--gold); color: var(--midnight); }
.cream ::selection { background: var(--bronze); color: var(--cream); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.cream :focus-visible { outline-color: var(--bronze); }
html { scrollbar-color: var(--night-3) var(--midnight); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--midnight); }
::-webkit-scrollbar-thumb { background: var(--night-3); border-radius: 12px; border: 3px solid var(--midnight); }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--gold); color: var(--midnight); padding: 10px 14px; border-radius: 8px; font-weight: 600; }
.skip:focus { top: 12px; }

h1, h2, h3 { font-family: var(--display); font-stretch: 112%; margin: 0; text-wrap: balance; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 1.45rem + 1.9vw, 3.3rem); line-height: 1.06; font-weight: 580; }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.6vw, 2.85rem); line-height: 1.08; font-weight: 580; }
h3 { font-size: clamp(1.14rem, 1.05rem + .35vw, 1.34rem); line-height: 1.2; font-weight: 620; letter-spacing: -.01em; }
p { margin: 0; text-wrap: pretty; }
.num, .tab { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* ---------- buttons ---------- */
.btn {
  --b-bg: var(--gold-grad); --b-fg: var(--midnight);
  display: inline-flex; align-items: center; gap: .6em;
  min-height: 52px; padding: 0 1.35em;
  border-radius: 999px; border: 0;
  background: var(--b-bg); color: var(--b-fg);
  font: 600 1rem/1 var(--text); text-decoration: none; white-space: nowrap;
  box-shadow: 0 10px 24px -12px rgba(2, 3, 16, .8), inset 0 -2px 0 rgba(11, 12, 42, .18);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background-color .3s;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(2, 3, 16, .9), inset 0 -2px 0 rgba(11, 12, 42, .18); }
.btn:active { transform: translateY(0); }
.btn-sm { min-height: 40px; padding: 0 1em; font-size: .9rem; }
.btn-ghost { --b-bg: transparent; --b-fg: var(--cream); box-shadow: inset 0 0 0 1px rgba(246, 237, 230, .32); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--cream); }
.cream .btn { --b-bg: var(--midnight); --b-fg: var(--cream); box-shadow: 0 10px 26px -14px rgba(11, 12, 42, .6); }
.cream .btn-ghost { --b-bg: transparent; --b-fg: var(--midnight); box-shadow: inset 0 0 0 1px rgba(11, 12, 42, .35); }
.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; text-decoration: none; color: var(--cream); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .5s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow span { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; padding-bottom: 2px; }

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 30;
  transition: background-color .4s, box-shadow .4s, backdrop-filter .4s;
}
.top.scrolled { background: rgba(11, 12, 42, .82); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); box-shadow: 0 1px 0 var(--line-dark); }
.top-in { display: flex; align-items: center; gap: clamp(12px, 2vw, 32px); height: 72px; }
.brand { display: block; flex: none; margin-right: auto; }
.brand img { height: 56px; width: auto; }
.nav { display: flex; gap: clamp(16px, 2vw, 30px); }
.nav a { text-decoration: none; font: 600 .76rem/1 var(--label); letter-spacing: .16em; text-transform: uppercase; color: var(--mist); padding-top: 2px; transition: color .25s; }
.nav a:hover { color: var(--gold-hi); }
.nav a:hover { color: var(--cream); }
.lang { font: 600 .76rem/1 var(--label); letter-spacing: .16em; padding-top: 10px !important; text-decoration: none; color: var(--mist); padding: 8px 10px; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--line-dark); }
.lang:hover { color: var(--cream); box-shadow: inset 0 0 0 1px rgba(246, 237, 230, .4); }
.top-tel, .top-wa { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--cream); font: 600 .92rem/1 var(--text); font-variant-numeric: tabular-nums; }
.top-tel .icon, .top-wa .icon { width: 19px; height: 19px; color: var(--gold); }
.top-wa { width: 40px; height: 40px; justify-content: center; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-dark); }
.top-wa:hover { box-shadow: inset 0 0 0 1px var(--gold); }
.top-tel:hover span { text-decoration: underline; }
@media (max-width: 1180px) { .nav { gap: 18px; } .top-tel span { display: none; } .top-tel { width: 40px; height: 40px; justify-content: center; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-dark); } }
@media (max-width: 900px) { .nav { display: none; } }
@media (max-width: 560px) { .top .btn-sm.has-contact { display: none; } }
@media (max-width: 420px) {
  .brand img { height: 42px; }
  .top .btn-sm { padding: 0 .85em; font-size: .84rem; }
  .top-in { gap: 10px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate;
  margin-top: -72px; padding-top: calc(72px + clamp(28px, 5vw, 72px));
  background:
    radial-gradient(110% 55% at 70% 104%, rgba(229, 70, 126, .24), transparent 60%),
    radial-gradient(70% 40% at 26% 106%, rgba(255, 138, 91, .16), transparent 70%),
    radial-gradient(90% 60% at 50% 110%, rgba(107, 59, 224, .22), transparent 70%),
    linear-gradient(180deg, #0B0C2A 0%, #100F33 55%, #221645 100%);
  overflow: hidden;
}
.hero::before { /* breeze-block perforation, very faint */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(246, 237, 230, .05) 1.5px, transparent 2px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 88px); align-items: center;
  padding-bottom: clamp(130px, 13vw, 250px);
  min-height: min(calc(100svh - 72px - clamp(28px, 5vw, 72px)), 1040px);
  position: relative; z-index: 2;
}
.hero h1 { max-width: 21ch; }
.lede { margin-top: 24px; max-width: 54ch; color: var(--mist); font-size: clamp(1.05rem, 1rem + .25vw, 1.2rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 34px; }
.services { list-style: none; padding: 22px 0 0; margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 8px 22px; border-top: 1px solid var(--line-dark); max-width: 580px; }
.services li { font-size: .9rem; color: var(--mist); display: inline-flex; align-items: center; gap: 9px; }
.services li::before { content: ""; width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold); flex: none; }

/* map panel */
.map {
  margin: 0 0 0 auto; position: relative; width: 100%; max-width: 500px;
  background: linear-gradient(180deg, rgba(18, 22, 65, .92), rgba(13, 16, 50, .92));
  border-radius: 22px; padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 1px 0 rgba(246, 237, 230, .08) inset, 0 40px 80px -40px rgba(3, 4, 20, .9), 0 0 0 1px var(--line-dark);
}
.map-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.map-title { font: 600 .8rem/1.3 var(--label); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); padding-top: 2px; }
.map-sub { font-size: .86rem; color: var(--mist); margin-top: 2px; }
.seg { display: inline-flex; padding: 3px; border-radius: 999px; background: var(--midnight); box-shadow: inset 0 0 0 1px var(--line-dark); }
.seg button {
  font: 600 .8rem/1 var(--text); color: var(--mist); background: transparent; border: 0; cursor: pointer;
  padding: 9px 12px; border-radius: 999px; transition: background-color .35s var(--ease-out), color .35s;
}
.seg button[aria-pressed="true"] { background: var(--cream); color: var(--midnight); }
.seg button:hover:not([aria-pressed="true"]) { color: var(--cream); }
.grid-svg { width: 100%; height: auto; margin-top: 16px; border-radius: 14px; background: #090A24; }
.grid-svg .road { stroke: rgba(189, 184, 214, .13); stroke-width: 2; fill: none; }
.grid-svg .road.hw { stroke: rgba(189, 184, 214, .2); stroke-width: 3.2; }
.dot circle { transition: fill .6s var(--ease-out), stroke .6s var(--ease-out), transform .6s var(--ease-out); transform-box: fill-box; transform-origin: center; }
.dot text { font: 700 13px/1 var(--text); text-anchor: middle; dominant-baseline: central; font-variant-numeric: tabular-nums; transition: fill .4s; }
.dot.r-top circle { fill: var(--gold); }
.dot.r-top text { fill: var(--midnight); }
.dot.r-mid circle { fill: var(--coral); }
.dot.r-mid text { fill: var(--midnight); }
.dot.r-low circle { fill: var(--dim-violet); stroke: rgba(169, 140, 255, .35); stroke-width: 1; }
.dot.r-low text { fill: var(--mist); font-size: 11.5px; }
.dot.pop circle { animation: pop .7s var(--ease-out); }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(1.22); } 100% { transform: scale(1); } }
.home-ring { fill: none; stroke: var(--cream); stroke-width: 1.5; opacity: .9; }
.beacon { fill: none; stroke: var(--gold); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: beacon 2.8s var(--ease-out) infinite; }
@keyframes beacon { 0% { transform: scale(.7); opacity: .9; } 100% { transform: scale(2.2); opacity: 0; } }
.map-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 16px 0 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.map-stats div { padding: 12px 4px; }
.map-stats div + div { border-left: 1px solid var(--line-dark); padding-left: 16px; }
.map-stats dt { font-size: .8rem; color: var(--mist); }
.map-stats dd { margin: 4px 0 0; font: 650 1.5rem/1.1 var(--text); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.map-stats dd small { font: 500 .78rem var(--text); color: var(--mist); margin-left: 6px; letter-spacing: 0; }
.legend { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 12px 0 0; padding: 0; list-style: none; font-size: .78rem; color: var(--mist); }
.legend li { display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.legend .l-top { background: var(--gold); } .legend .l-mid { background: var(--coral); } .legend .l-low { background: var(--dim-violet); box-shadow: inset 0 0 0 1px rgba(189, 184, 214, .45); }
.ticket { margin-top: 12px; font-size: .76rem; color: var(--mist); opacity: .9; }

/* horizon */
.horizon { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 1; pointer-events: none; height: clamp(150px, 17vw, 300px); }
.horizon svg { width: 100%; height: 100%; display: block; }
.horizon .h-back { fill: #2A1C55; }
.horizon .h-front { fill: #16163F; }
.horizon .h-palm, .horizon .h-ground { fill: var(--midnight); }
.horizon .h-back, .horizon .h-front { will-change: transform; }

/* ---------- sections ---------- */
.section { padding: var(--section) 0; position: relative; }
.head { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; margin-bottom: clamp(40px, 5vw, 64px); }
.head p { color: var(--mist); max-width: 60ch; font-size: 1.08rem; }
.canopy { display: flex; align-items: center; gap: 22px; }
.canopy::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-dark), transparent); min-width: 40px; }
.cream .canopy::after { background: linear-gradient(90deg, var(--line-light), transparent); }
.cream { background: var(--cream); color: var(--midnight); color-scheme: light; }
.cream .head p, .cream .muted { color: var(--slate); }
.muted { color: var(--mist); }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* how it works */
.how { background: var(--midnight); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); position: relative; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 27px; height: 1px; background: linear-gradient(90deg, var(--gold), var(--coral) 55%, rgba(255, 138, 91, 0)); opacity: .55; }
.steps li { position: relative; padding: 0 clamp(18px, 3vw, 44px) 0 0; }
.step-ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--midnight); box-shadow: inset 0 0 0 1px rgba(226, 178, 116, .6); color: var(--gold); position: relative; }
.steps li:nth-child(2) .step-ic { box-shadow: inset 0 0 0 1px rgba(255, 138, 91, .6); color: var(--coral); }
.steps li:nth-child(3) .step-ic { box-shadow: inset 0 0 0 1px rgba(246, 237, 230, .4); color: var(--cream); }
.steps h3 { margin-top: 26px; }
.steps p { margin-top: 12px; color: var(--mist); max-width: 36ch; }
.then { margin-top: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 2fr); gap: 24px 48px; padding-top: 32px; border-top: 1px solid var(--line-dark); }
.then h3 { font-size: 1.1rem; }
.then ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.then li { display: grid; gap: 8px; align-content: start; }
.then li b { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.then li b .icon { color: var(--gold); width: 22px; height: 22px; }
.then li span { color: var(--mist); font-size: .95rem; }

/* results */
.results { background: linear-gradient(180deg, var(--midnight), var(--night-2) 30%, var(--night-2)); }
.results-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.5fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.results-copy p { color: var(--mist); margin-top: 18px; max-width: 48ch; }
.results-copy p strong { color: var(--cream); font-weight: 600; }
.ledger { margin-top: 30px; border-collapse: collapse; width: 100%; font-variant-numeric: tabular-nums; }
.ledger caption { text-align: left; font: 600 .72rem/1.4 var(--label); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); padding-bottom: 10px; }
.ledger th, .ledger td { text-align: left; padding: 13px 0; border-top: 1px solid var(--line-dark); font-weight: 400; }
.ledger thead th { font-size: .8rem; color: var(--mist); border-top: 0; padding-top: 0; }
.ledger td { font: 650 1.28rem/1 var(--text); letter-spacing: -.01em; }
.ledger td.after { color: var(--gold); }
.ledger tbody th { font-size: .95rem; color: var(--cream); padding-right: 12px; }
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 20px); margin: 0; }
.shot { margin: 0; }
.shot-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 0 0 1px var(--line-dark), 0 30px 60px -30px rgba(0, 0, 0, .8); background: #fff; aspect-ratio: 1; }
.shot-frame img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption { margin-top: 12px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: .9rem; }
.shot figcaption b { font-weight: 600; }
.shot figcaption span { color: var(--mist); font-variant-numeric: tabular-nums; }
.shot.after figcaption span { color: var(--gold); }
.shots-note { grid-column: 1 / -1; font-size: .9rem; color: var(--mist); margin-top: 6px; }
.results .cta-line { margin-top: 30px; }

/* work (generated only when portfolio/manifest.json exists) */
.work { background: var(--night-2); }
.work-page { padding-top: clamp(40px, 6vw, 80px); }
.work-page h1 { font-size: clamp(2rem, 1.45rem + 1.9vw, 3.3rem); }
.w-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: clamp(14px, 1.6vw, 22px); }
.w-card { display: flex; flex-direction: column; text-decoration: none; border-radius: 18px; overflow: hidden; background: var(--midnight); box-shadow: 0 0 0 1px var(--line-dark); transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out); }
.w-card:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(246, 237, 230, .3), 0 30px 50px -30px rgba(0, 0, 0, .8); }
.w-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--night-3); }
.w-media img, .w-media video { width: 100%; height: 100%; object-fit: cover; }
.w-text { padding: 18px 20px 22px; display: grid; gap: 8px; justify-items: start; }
.w-text p { color: var(--mist); font-size: .95rem; }
.w-badge { font: 600 .74rem/1 var(--text); padding: 6px 9px; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(169, 140, 255, .6); color: var(--violet-soft); letter-spacing: .14em; text-transform: uppercase; font-family: var(--label); padding: 7px 10px 5px; }
.w-all { margin-top: 28px; }
.w-group { padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--line-dark); }
.w-group-head { display: grid; gap: 10px; justify-items: start; max-width: 64ch; margin-bottom: 24px; }
.w-group-head p { color: var(--mist); }
.w-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 16px; align-items: start; }
.w-item { margin: 0; }
.w-item img, .w-item video { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 0 0 1px var(--line-dark); background: var(--night-3); }
.w-item figcaption { margin-top: 8px; font-size: .88rem; color: var(--mist); }
.w-item.tall { max-width: 360px; }
.w-reels { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr)); gap: clamp(14px, 1.6vw, 22px); margin-bottom: clamp(28px, 4vw, 48px); }
.w-reel { margin: 0; display: grid; gap: 10px; align-content: start; }
.w-reel video { width: 100%; height: auto; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 14px; background: var(--night-3); box-shadow: 0 0 0 1px var(--line-dark); }
.w-reel figcaption { display: grid; gap: 4px; font-size: .88rem; color: var(--mist); }
.w-reel figcaption b { color: var(--cream); font: 620 1rem/1.25 var(--display); font-stretch: 108%; }
.w-reel-link { display: inline-flex; align-items: center; gap: 6px; color: var(--cream); font-weight: 600; text-decoration: none; margin-top: 2px; }
.w-reel-link .icon { width: 16px; height: 16px; }
.w-reel-link:hover { text-decoration: underline; }
@media (max-width: 520px) { .w-reels { grid-template-columns: 1fr 1fr; } }
.w-proj + .w-proj { margin-top: clamp(28px, 4vw, 48px); }
.w-proj-head { display: grid; gap: 8px; justify-items: start; max-width: 64ch; margin-bottom: 16px; }
.w-proj-head p { color: var(--mist); }
.w-proj-head .w-sub { font-size: .92rem; }
.w-label { font-size: .86rem; color: var(--violet-soft) !important; }

/* packages */
.packages { background: var(--cream); }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 22px); align-items: stretch; }
.plan { border-radius: 20px; padding: clamp(24px, 2.4vw, 34px); background: #FBF6F2; box-shadow: 0 0 0 1px var(--line-light), 0 24px 50px -36px rgba(11, 12, 42, .45); display: flex; flex-direction: column; }
.plan.rec { background: var(--midnight); color: var(--cream); box-shadow: 0 0 0 1px rgba(11, 12, 42, .9), 0 40px 70px -34px rgba(11, 12, 42, .55); position: relative; }
.plan.rec::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, var(--gold-hi), transparent 40%, transparent 60%, var(--gold-lo)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.plan-name { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.plan h3 { font-size: 1.7rem; font-stretch: 115%; }
.tag { font: 600 .68rem/1 var(--label); letter-spacing: .16em; text-transform: uppercase; padding: 8px 11px 6px; border-radius: 999px; background: var(--gold-grad); color: var(--midnight); white-space: nowrap; }
.promise { margin-top: 10px; color: var(--slate); min-height: 3.2em; }
.plan.rec .promise, .plan.rec .term, .plan.rec .setup { color: var(--mist); }
.price { margin-top: 22px; display: flex; align-items: baseline; gap: 6px; font-variant-numeric: tabular-nums; }
.price b { font: 660 clamp(2.4rem, 2rem + 1vw, 3rem)/1 var(--display); font-stretch: 105%; letter-spacing: -.03em; }
.price span { color: var(--slate); font-size: .98rem; }
.plan.rec .price span { color: var(--mist); }
.setup { margin-top: 8px; font-weight: 600; font-variant-numeric: tabular-nums; }
.term { margin-top: 4px; font-size: .92rem; color: var(--slate); }
.feat { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line-light); display: grid; gap: 11px; font-size: .96rem; }
.plan.rec .feat { border-top-color: var(--line-dark); }
.feat li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.feat li .icon { width: 18px; height: 18px; margin-top: 3px; color: var(--bronze); stroke-width: 2; }
.plan.rec .feat li .icon { color: var(--gold); }
.feat li.lead-in { grid-template-columns: 1fr; font-weight: 600; }
.feat-note { margin-top: auto; padding-top: 22px; font-size: .88rem; color: var(--slate); }
.plan.rec .feat-note { color: var(--mist); }
.guarantee {
  margin-top: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px 28px; align-items: center;
  background: var(--midnight); color: var(--cream); border-radius: 20px; padding: clamp(22px, 3vw, 36px);
  position: relative; overflow: hidden;
}
.g-ic { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(226, 178, 116, .6); color: var(--gold); }
.g-ic .icon { width: 28px; height: 28px; }
.guarantee h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.6rem); }
.guarantee p { color: var(--mist); margin-top: 8px; max-width: 62ch; }
.terms { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: .92rem; color: var(--slate); }
.terms span { display: inline-flex; align-items: center; gap: 8px; }
.terms .icon { width: 17px; height: 17px; color: var(--bronze); stroke-width: 2; }

/* ownership */
.own { background: var(--cream-2); color: var(--midnight); }
.own-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.own-grid .head { margin: 0; }
.keys { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 0 0 1px var(--line-light); background: #F8F1EB; }
.keys li { padding: 26px 18px 24px; display: grid; gap: 14px; justify-items: start; align-content: start; border-left: 1px solid var(--line-light); }
.keys li:first-child { border-left: 0; }
.keys .icon { width: 28px; height: 28px; color: var(--bronze); }
.keys b { font: 620 1.02rem/1.2 var(--display); font-stretch: 108%; }
.keys span { font-size: .88rem; color: var(--slate); }

/* faq */
.faq { background: var(--cream); color: var(--midnight); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.qa { border-top: 1px solid var(--line-light); }
.qa details { border-bottom: 1px solid var(--line-light); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; font: 600 1.08rem/1.35 var(--text); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .icon { flex: none; width: 22px; height: 22px; color: var(--bronze); transition: transform .5s var(--ease-out); }
.qa details[open] summary .icon { transform: rotate(45deg); }
.qa summary:hover { color: var(--bronze); }
.qa .ans { padding: 0 0 24px; color: var(--slate); max-width: 64ch; }
.qa .ans p + p { margin-top: 10px; }

/* about */
.about { background: var(--cream); color: var(--midnight); padding-top: 0; }
.about-card { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); padding: clamp(28px, 4vw, 56px); border-radius: 24px; background: var(--cream-2); box-shadow: 0 0 0 1px var(--line-light); align-items: center; }
.about-card p { color: var(--slate); margin-top: 18px; max-width: 58ch; font-size: 1.08rem; }
.about-card p:first-of-type { margin-top: 22px; }
.sig { display: grid; gap: 16px; justify-items: start; padding-left: clamp(0px, 3vw, 40px); border-left: 1px solid var(--line-light); }
.sig img { width: auto; height: 104px; }
.sig b { font: 640 1.4rem/1.1 var(--display); font-stretch: 110%; display: block; }
.sig span { color: var(--slate); display: block; margin-top: 4px; }
.sig a { color: var(--bronze); font-weight: 600; }
.kchapas { font-size: .92rem; color: var(--slate); }

/* final cta */
.final {
  position: relative; isolation: isolate; overflow: hidden;
  padding: var(--section) 0 clamp(170px, 18vw, 300px);
  background:
    radial-gradient(90% 55% at 50% 104%, rgba(229, 70, 126, .26), transparent 62%),
    radial-gradient(60% 40% at 20% 106%, rgba(255, 138, 91, .16), transparent 70%),
    linear-gradient(180deg, var(--midnight), #1C1440);
}
.final .wrap { position: relative; z-index: 2; }
.final-in { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; }
.final p { color: var(--mist); margin-top: 18px; max-width: 54ch; font-size: 1.08rem; }
.final .actions { margin-top: 0; justify-content: flex-start; }
.contact-list { display: grid; gap: 12px; justify-items: start; }
.mail-alt { font-size: .92rem; color: var(--mist); }
.mail-alt a { color: var(--cream); }

/* footer */
.foot { background: var(--midnight); padding: 48px 0 40px; border-top: 1px solid var(--line-dark); font-size: .92rem; color: var(--mist); }
.foot-in { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 32px; }
.foot img { height: 60px; width: auto; }
.foot p { margin-top: 14px; max-width: 40ch; }
.foot h2 { font: 600 .74rem/1 var(--label); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--cream); text-decoration: underline; }
.foot-base { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .84rem; }

/* reveal (content visible by default; JS adds .rv only when it can animate) */
.rv { opacity: 0; transform: translateY(18px); filter: blur(4px); transition: opacity .9s var(--ease-out), transform 1.1s var(--ease-out), filter .9s var(--ease-out); }
.rv.in { opacity: 1; transform: none; filter: none; }

/* ---------- responsive ---------- */
@media (min-width: 1800px) {
  :root { --wrap: 1360px; }
  body { font-size: 1.125rem; }
}
@media (min-width: 2200px) {
  html { font-size: 112.5%; }
  :root { --wrap: 1520px; }
  .map { max-width: 580px; }
  .brand img { height: 56px; }
}
@media (max-width: 1100px) {
  .keys { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .keys li:nth-child(4) { border-left: 0; }
  .keys li:nth-child(n+4) { border-top: 1px solid var(--line-light); }
  .own-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 18ch; }
  .map { max-width: 560px; margin: 0; }
  .results-grid, .faq-grid, .final-in, .about-card { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 620px; }
  .promise { min-height: 0; }
  .then { grid-template-columns: 1fr; }
  .sig { padding-left: 0; border-left: 0; padding-top: 24px; border-top: 1px solid var(--line-light); }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .foot-in > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .canopy::after { display: none; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps::before { left: 27px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; background: linear-gradient(180deg, var(--gold), var(--coral) 60%, rgba(255, 138, 91, 0)); }
  .steps li { display: grid; grid-template-columns: 56px 1fr; gap: 0 20px; padding: 0; }
  .steps h3 { margin-top: 14px; }
  .steps p { grid-column: 2; margin-top: 8px; }
  .then ul { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; }
  .guarantee .btn { justify-self: start; }
  .keys { grid-template-columns: 1fr 1fr; }
  .keys li { border-left: 0; border-top: 1px solid var(--line-light); padding: 20px 16px; }
  .keys li:nth-child(even) { border-left: 1px solid var(--line-light); }
  .keys li:nth-child(-n+2) { border-top: 0; }
  .keys li:last-child { grid-column: 1 / -1; border-left: 0; }
}
@media (max-width: 520px) {
  .shots { grid-template-columns: 1fr; }
  .map-stats dd { font-size: 1.3rem; }
  .actions .btn { width: 100%; justify-content: center; }
  .foot-in { grid-template-columns: 1fr; }
}
