/* Mizumi Reserve — Saket Tumul, Authorised Channel Partner
   Design language: near-black monochrome, Jost display / Manrope text. */

:root {
  --ink: #0E1112;
  --ink-2: #0A0C0D;
  --charcoal: #171B1C;
  --charcoal-2: #2E3336;
  --grey-900: #26292B;
  --grey-800: #3E4448;
  --grey-700: #4A5054;
  --grey-650: #4E5551;
  --grey-600: #5A6064;
  --grey-500: #7C8286;
  --grey-450: #767C80;
  --grey-400: #8E9498;
  --grey-350: #9EA4A8;
  --grey-300: #A8AEB2;
  --grey-250: #B9BEC1;
  --grey-200: #C8CDD0;
  --grey-150: #D8DBDD;
  --grey-100: #E6E8E9;
  --off-white: #F2F3F3;
  --near-white: #F4F5F5;
  --paper: #FBFBFB;
  --line: rgba(14,17,18,.1);
  --line-2: rgba(14,17,18,.12);
  --line-3: rgba(14,17,18,.08);
  --line-4: rgba(14,17,18,.2);
  --error: #8C3A2E;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--grey-900); font-family: Manrope, system-ui, sans-serif; overflow-x: hidden; }
a { color: var(--grey-800); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
input, select, textarea, button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--grey-900); color: var(--paper); }
h1, h2, h3, p, ul, table { margin: 0; }
.display { font-family: Jost, system-ui, sans-serif; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.wrap-legal { max-width: 900px; margin: 0 auto; padding: 0 26px; }

@keyframes drift { 0% { transform: scale(1.05); } 100% { transform: scale(1.13) translateY(-1.6%); } }
@keyframes rule { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 1s cubic-bezier(.16,.72,.24,1), transform 1s cubic-bezier(.16,.72,.24,1); }
[data-reveal].in { opacity: 1; transform: none; }

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

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,251,251,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.site-header .wrap { padding: 13px 26px; display: flex; align-items: center; gap: 30px; }
.brand { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 0 0 auto; text-decoration: none; }
.brand img { height: 33px; width: 96px; display: block; }
.brand .tag { width: 96px; font-size: 6.5px; line-height: 1.35; letter-spacing: .05em; text-transform: uppercase; color: var(--grey-600); font-weight: 600; text-align: center; border-top: 1px solid rgba(14,17,18,.55); padding-top: 3px; }
.main-nav { margin-left: auto; display: flex; gap: 26px; align-items: center; font-size: 13px; font-weight: 500; letter-spacing: .02em; }
.main-nav a[data-nav] { color: var(--grey-700); display: none; }
.nav-cta { background: var(--ink); color: var(--paper); padding: 12px 22px; font-weight: 600; letter-spacing: .03em; white-space: nowrap; font-size: 12.5px; text-transform: uppercase; text-decoration: none; }
.nav-cta:hover { background: var(--charcoal-2); color: var(--paper); text-decoration: none; }
@media (min-width: 1080px) { .main-nav a[data-nav] { display: inline; } }
@media (max-width: 480px) {
  .brand img { height: 21px; width: 62px; }
  .brand .tag { width: 62px; font-size: 5px; letter-spacing: .03em; padding-top: 2px; }
  .nav-cta { padding: 10px 14px; font-size: 11px; }
  .site-header .wrap { gap: 14px; padding: 11px 16px; }
}

/* ---- Hero ---- */
.hero { position: relative; background: var(--ink); color: var(--near-white); overflow: hidden; min-height: min(88vh, 760px); display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; animation: drift 30s ease-in-out infinite alternate; }
.hero-media .g1 { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,17,18,.9) 0%, rgba(14,17,18,.72) 34%, rgba(14,17,18,.38) 62%, rgba(14,17,18,.6) 100%); pointer-events: none; }
.hero-media .g2 { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,17,18,.5) 0%, rgba(14,17,18,0) 26%, rgba(14,17,18,.62) 100%); pointer-events: none; }
.hero-grid { position: relative; max-width: var(--max); margin: 0 auto; padding: 130px 26px 52px; width: 100%; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); gap: clamp(32px,5vw,64px); align-items: end; }
@media (max-width: 939px) { .hero-grid { grid-template-columns: minmax(0,1fr); align-items: start; } .hero-grid .hero-form { justify-self: start !important; margin-top: 10px; } }
.eyebrow { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--grey-200); font-weight: 600; animation: fade .9s ease .1s both; }
.hero h1 { font-weight: 200; font-size: clamp(36px,5.2vw,66px); line-height: 1.03; letter-spacing: -.015em; margin: 18px 0 0; animation: rise 1.1s cubic-bezier(.16,.72,.24,1) .16s both; }
.hero-rule { height: 1px; background: rgba(244,245,245,.45); margin: 26px 0 22px; max-width: 180px; transform-origin: left; animation: rule 1.3s cubic-bezier(.16,.72,.24,1) .5s both; }
.hero-lede { font-size: clamp(15px,1.7vw,18px); line-height: 1.6; color: var(--grey-150); max-width: 520px; margin: 0; font-weight: 300; animation: rise 1.1s cubic-bezier(.16,.72,.24,1) .32s both; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 16px 34px; margin-top: 30px; align-items: flex-end; animation: rise 1.1s cubic-bezier(.16,.72,.24,1) .44s both; }
.hero-facts .price-label { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-350); font-weight: 600; }
.hero-facts .price { font-weight: 300; font-size: clamp(28px,3.4vw,40px); letter-spacing: -.01em; margin-top: 6px; }
.hero-facts .price sup-ast { font-size: 15px; color: var(--grey-350); }
.hero-facts .stats { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-200); font-weight: 600; }
.hero-facts .stats .dot { color: #6E7478; }
.hero-fine { font-size: 10px; color: var(--grey-400); margin: 22px 0 0; letter-spacing: .03em; }

.hero-form { background: rgba(251,251,251,.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--grey-900); padding: 26px 24px 24px; max-width: 400px; width: 100%; justify-self: end; box-shadow: 0 24px 60px -20px rgba(0,0,0,.55); animation: rise 1.1s cubic-bezier(.16,.72,.24,1) .56s both; }
.hero-form .form-title { font-weight: 400; font-size: 20px; color: var(--ink); line-height: 1.3; }
.hero-form .form-sub { font-size: 11.5px; color: var(--grey-400); margin: 6px 0 18px; line-height: 1.55; }

/* ---- Forms (shared) ---- */
.field-line { display: grid; gap: 14px; }
.field-line input, .field-line select, .field-line textarea { border: 0; border-bottom: 1px solid rgba(14,17,18,.25); background: transparent; padding: 9px 2px; font-size: 14.5px; outline: none; width: 100%; }
.field-line input:focus, .field-line select:focus, .field-line textarea:focus { border-bottom-color: var(--ink); }
.field-line select { color: var(--grey-900); }
.consent-row { display: flex; gap: 9px; align-items: flex-start; cursor: pointer; }
.consent-row input[type="checkbox"] { margin-top: 2px; width: 15px; height: 15px; accent-color: var(--ink); flex: 0 0 auto; }
.consent-row span { font-size: 10.5px; line-height: 1.55; color: var(--grey-600); }
.form-error { font-size: 12px; color: var(--error); }
.btn-submit { background: var(--ink); color: var(--paper); border: 0; padding: 15px; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; width: 100%; }
.btn-submit:hover { background: var(--charcoal-2); }
.btn-submit:disabled { opacity: .65; cursor: default; }
.call-link { text-align: center; font-size: 12px; font-weight: 600; color: var(--grey-800); letter-spacing: .04em; display: block; margin-top: 14px; }
.thankyou { display: flex; flex-direction: column; gap: 10px; padding: 22px 0; text-align: center; animation: fade .5s ease both; }
.thankyou .display { font-size: 24px; font-weight: 300; color: var(--ink); }
.thankyou p { font-size: 13.5px; line-height: 1.7; color: var(--grey-700); }
.thankyou a { font-weight: 700; }
.is-hidden { display: none !important; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Stat band ---- */
.stat-band { background: var(--off-white); border-bottom: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); }
.stat-cell { padding: 34px 22px; border-right: 1px solid var(--line); }
.stat-grid .stat-cell:first-child { padding-left: 0; }
.stat-grid .stat-cell:last-child { padding-right: 0; border-right: 0; }
.stat-cell .num { font-weight: 300; font-size: 32px; color: var(--ink); letter-spacing: -.01em; }
.stat-cell .num .plus { font-size: 20px; }
.stat-cell .label { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-500); margin-top: 8px; font-weight: 600; }
.stat-foot { font-size: 10.5px; color: var(--grey-400); line-height: 1.6; margin: 0; padding: 0 0 22px; }

/* ---- Section shells ---- */
section { padding: clamp(66px,9vw,120px) 0; }
.section-dark { background: var(--ink); color: var(--near-white); }
.section-paper { background: var(--paper); }
.section-off { background: var(--off-white); }
.kicker { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey-400); font-weight: 600; }
.section-dark .kicker { color: var(--grey-400); }
h2.headline { font-weight: 200; font-size: clamp(30px,4.2vw,50px); line-height: 1.1; letter-spacing: -.015em; color: var(--ink); margin: 20px 0 0; }
.section-dark h2.headline { color: var(--near-white); }
.section-lede { font-size: 16px; line-height: 1.75; color: var(--grey-700); margin: 20px 0 0; }

/* ---- Overview ---- */
.overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: clamp(38px,6vw,84px); align-items: center; }
.overview-body p { font-size: 16.5px; line-height: 1.8; color: var(--grey-700); margin: 26px 0 0; text-wrap: pretty; }
.overview-body p + p { margin-top: 18px; }
.overview-facts { margin-top: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 22px; border-top: 1px solid var(--line-4); padding-top: 24px; }
.overview-facts dt { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-400); font-weight: 600; }
.overview-facts dd { font-size: 14.5px; color: var(--grey-900); margin: 6px 0 0; }
.overview-media { display: grid; gap: 12px; }
.overview-media .split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.overview-media img { width: 100%; object-fit: cover; background: #E8E9EA; }
.ar-16-10 { aspect-ratio: 16/10; }
.ar-1 { aspect-ratio: 1; }
.ar-3-2 { aspect-ratio: 3/2; }

/* ---- Highlights ---- */
.highlights-head { max-width: 660px; }
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1px; background: rgba(244,245,245,.16); margin-top: 52px; }
.highlight-cell { background: var(--ink); padding: 32px 28px 34px; display: flex; flex-direction: column; gap: 12px; transition: background .25s ease; }
.highlight-cell:hover { background: var(--charcoal); }
.highlight-cell .n { font-size: 12px; letter-spacing: .14em; color: var(--grey-400); font-weight: 500; }
.highlight-cell .t { font-size: 23px; font-weight: 300; line-height: 1.25; color: var(--near-white); }
.highlight-cell p { font-size: 14px; line-height: 1.7; color: var(--grey-300); }
.highlights-media { margin-top: 52px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 12px; }
.highlights-media img { width: 100%; object-fit: cover; background: var(--charcoal); }
.highlights-foot { font-size: 10.5px; color: var(--grey-500); margin: 18px 0 0; }

/* ---- Amenities ---- */
.amenities-head { max-width: 640px; }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(30px,4vw,56px); margin-top: 52px; }
.amenity-col-title { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); font-weight: 700; padding-bottom: 14px; border-bottom: 1px solid var(--line-4); }
.amenity-list { display: grid; gap: 0; margin-top: 4px; list-style: none; padding: 0; }
.amenity-list li { font-size: 15px; color: var(--grey-800); padding: 11px 0; border-bottom: 1px solid var(--line-3); }
.amenity-list li:last-child { border-bottom: 0; }
.carbon-card { background: var(--off-white); padding: 34px 30px; display: flex; flex-direction: column; gap: 14px; align-self: start; }
.carbon-card .amenity-col-title { border-bottom: 0; padding-bottom: 0; }
.carbon-card > p { font-size: 14px; line-height: 1.75; color: var(--grey-700); }
.carbon-pillars { display: grid; gap: 14px; margin-top: 4px; }
.carbon-pillars .pt { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.carbon-pillars .pd { font-size: 13px; color: var(--grey-600); line-height: 1.6; margin-top: 3px; }
.text-link { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; align-self: flex-start; display: inline-block; }
.text-link:hover { text-decoration: none; }
.amenities-foot { font-size: 10.5px; color: var(--grey-400); line-height: 1.65; margin: 34px 0 0; }

/* ---- Residences ---- */
.residences-head { max-width: 660px; }
.table-scroll { overflow-x: auto; margin-top: 44px; }
.res-table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--paper); }
.res-table thead tr { background: var(--ink); color: var(--grey-100); }
.res-table th { text-align: left; padding: 17px 22px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.res-table th.num, .res-table td.num { text-align: right; }
.res-table td { padding: 19px 22px; font-size: 15.5px; color: var(--grey-900); border-bottom: 1px solid var(--line); }
.res-table tbody tr:last-child td { border-bottom: 0; }
.res-table td.num { font-size: 15px; font-variant-numeric: tabular-nums; color: var(--grey-700); }
.res-table td .price { color: var(--grey-900); font-weight: 600; }
.res-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 18px; margin-top: 18px; }
.res-card-dark { background: var(--ink); color: var(--near-white); padding: 34px 30px; display: flex; flex-direction: column; gap: 15px; }
.res-card-dark .eyebrow2 { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-350); font-weight: 700; }
.res-card-dark .t { font-size: 24px; font-weight: 300; line-height: 1.28; }
.res-card-dark p { font-size: 13.5px; line-height: 1.7; color: var(--grey-300); }
.res-card-dark ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; font-size: 13.5px; color: var(--grey-150); }
.res-card-dark ul li { display: flex; gap: 10px; }
.res-card-dark ul li .dash { color: var(--grey-400); }
.btn-light { margin-top: auto; background: var(--near-white); color: var(--ink); text-align: center; padding: 15px; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; display: block; }
.btn-light:hover { background: #fff; text-decoration: none; }
.res-card-outline { background: var(--paper); padding: 34px 30px; border: 1px solid var(--line-4); }
.res-card-outline .eyebrow2 { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-400); font-weight: 700; }
.res-card-outline .plan { font-size: 34px; font-weight: 300; line-height: 1.2; color: var(--ink); margin-top: 12px; letter-spacing: .01em; }
.res-card-outline > p { font-size: 13.5px; line-height: 1.7; color: var(--grey-700); margin: 10px 0 0; }
.plan-rows { margin-top: 20px; display: grid; gap: 0; }
.plan-rows .row { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line-3); }
.plan-rows .row:last-child { border-bottom: 0; }
.plan-rows .row span:first-child { font-size: 14px; color: var(--grey-800); }
.plan-rows .row span:last-child { font-size: 14px; font-weight: 700; color: var(--ink); }
.res-card-outline .fine { font-size: 10.5px; line-height: 1.65; color: var(--grey-400); margin: 18px 0 0; }
.residences-foot { font-size: 10.5px; line-height: 1.7; color: var(--grey-400); margin: 26px 0 0; max-width: 940px; }

/* ---- Master plan / location shared grid ---- */
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(32px,5vw,64px); margin-top: 46px; align-items: start; }
.plan-img { width: 100%; background: #fff; border: 1px solid var(--line-4); }
.legend-title { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); font-weight: 700; padding-bottom: 14px; border-bottom: 1px solid var(--line-4); }
.legend-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 0 28px; margin-top: 4px; list-style: none; padding: 0; }
.legend-grid li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-3); font-size: 14.5px; color: var(--grey-800); }
.legend-grid li .idx { font-size: 11px; color: var(--grey-400); font-weight: 600; min-width: 14px; }
.fine { font-size: 10.5px; line-height: 1.7; color: var(--grey-400); margin: 20px 0 0; }

/* ---- Location ---- */
.drive-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1px; background: var(--line-4); margin-top: 42px; border: 1px solid var(--line-4); }
.drive-cell { background: var(--paper); padding: 26px 22px; }
.drive-cell .t { font-weight: 300; font-size: 28px; color: var(--ink); }
.drive-cell .l { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-500); margin-top: 7px; font-weight: 600; }
.drive-foot { font-size: 10.5px; color: var(--grey-400); margin: 14px 0 0; }
.nearby { display: grid; gap: 0; margin: 0; }
.nearby > div { padding: 15px 0; border-bottom: 1px solid var(--line-4); }
.nearby > div:last-of-type { border-bottom: 0; }
.nearby dt { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-400); font-weight: 700; }
.nearby dd { font-size: 14.5px; color: var(--grey-800); margin: 6px 0 0; line-height: 1.65; }

/* ---- Enquire ---- */
.enquire { position: relative; overflow: hidden; }
.enquire-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .14; filter: saturate(.6); }
.enquire-grid { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(38px,5vw,72px); align-items: start; }
.enquire-copy .headline { font-size: clamp(30px,4.4vw,52px); line-height: 1.08; }
.enquire-copy > p { font-size: 16px; line-height: 1.75; color: var(--grey-300); margin: 22px 0 0; max-width: 450px; }
.enquire-points { margin-top: 34px; display: grid; gap: 15px; font-size: 14.5px; color: var(--grey-150); }
.enquire-points div { display: flex; gap: 13px; }
.enquire-points .dash { color: var(--grey-400); }
.enquire-call { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(244,245,245,.18); font-size: 13.5px; line-height: 1.75; color: var(--grey-350); }
.enquire-call a { color: var(--near-white); font-weight: 700; }
.enquire-form-panel { background: var(--paper); color: var(--grey-900); padding: clamp(26px,3.5vw,42px); }
.enquire-form-panel .form-title { font-size: 23px; font-weight: 400; color: var(--ink); }
.enquire-form-panel .form-sub { font-size: 12.5px; color: var(--grey-400); margin: 8px 0 28px; line-height: 1.6; }
.enquire-form-panel .thankyou { min-height: 400px; justify-content: center; gap: 14px; }
.enquire-form-panel .thankyou .display { font-size: 30px; }
.enquire-form-panel .thankyou p { font-size: 15px; color: var(--grey-700); }
.field-grid { display: grid; gap: 19px; }
.field-grid .two { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
@media (max-width: 480px) { .field-grid .two { grid-template-columns: 1fr; } }
.field-grid label { display: grid; gap: 7px; }
.field-grid label > span:first-child { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-500); font-weight: 700; }
.field-grid input, .field-grid select, .field-grid textarea { border: 0; border-bottom: 1px solid rgba(14,17,18,.25); background: transparent; padding: 10px 2px; font-size: 15px; outline: none; font-family: inherit; width: 100%; }
.field-grid input:focus, .field-grid select:focus, .field-grid textarea:focus { border-bottom-color: var(--ink); }
.field-grid textarea { resize: vertical; }
.consent-row-lg { display: flex; gap: 11px; align-items: flex-start; margin-top: 4px; cursor: pointer; }
.consent-row-lg input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--ink); flex: 0 0 auto; }
.consent-row-lg span { font-size: 12px; line-height: 1.6; color: var(--grey-600); }
.form-error-block { font-size: 13px; color: var(--error); background: rgba(140,58,46,.07); padding: 11px 13px; border-left: 2px solid var(--error); }
.btn-submit-lg { background: var(--ink); color: var(--paper); border: 0; padding: 17px; font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; width: 100%; }
.btn-submit-lg:hover { background: var(--charcoal-2); }
.btn-submit-lg:disabled { opacity: .65; cursor: default; }

/* ---- FAQ ---- */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line-4); margin-top: 40px; }
.faq-list details { border-bottom: 1px solid var(--line-4); padding: 22px 0; }
.faq-list summary { font-size: 16.5px; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ""; }
.faq-list p { font-size: 15px; line-height: 1.8; color: var(--grey-700); margin: 14px 0 0; }

/* ---- Footer ---- */
.site-footer { background: var(--ink-2); color: var(--grey-400); padding: clamp(52px,6vw,80px) 0 32px; font-size: 12.5px; line-height: 1.75; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 42px; }
.footer-grid img { height: 46px; width: auto; }
.footer-grid p { margin: 14px 0 0; }
.footer-grid .about-p { max-width: 300px; margin-top: 18px; }
.footer-grid a { color: var(--grey-200); display: inline-block; margin-top: 12px; }
.footer-col-title { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-100); font-weight: 700; }
.footer-grid .name { margin: 15px 0 0; color: var(--grey-200); font-weight: 600; }
.footer-links { display: grid; gap: 8px; margin-top: 16px; }
.footer-links a { color: var(--grey-400); margin-top: 0; }
.footer-legal { margin-top: 46px; padding-top: 26px; border-top: 1px solid rgba(142,148,152,.22); font-size: 11px; line-height: 1.8; color: var(--grey-450); display: grid; gap: 12px; }
.footer-legal strong { color: var(--grey-300); font-weight: 700; }
.footer-legal a { color: var(--grey-400); margin: 0; display: inline; }

/* ---- Sticky bottom bar ---- */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: rgba(14,17,18,.97); backdrop-filter: blur(12px); border-top: 1px solid rgba(244,245,245,.16); padding: 11px 16px; display: flex; gap: 12px; align-items: center; justify-content: center; }
.sticky-bar .txt { flex: 1 1 auto; min-width: 0; color: var(--grey-200); font-size: 12.5px; line-height: 1.45; display: none; }
.sticky-bar .txt strong { color: var(--near-white); font-weight: 700; }
@media (min-width: 1080px) { .sticky-bar .txt { display: block; } }
.btn-outline { border: 1px solid rgba(244,245,245,.4); color: var(--near-white); padding: 12px 18px; font-size: 11.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.btn-outline:hover { background: rgba(244,245,245,.1); text-decoration: none; }
.btn-solid { background: var(--near-white); color: var(--ink); padding: 12px 20px; font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.btn-solid:hover { background: #fff; text-decoration: none; }
body { padding-bottom: 82px; }

/* ---- Modal ---- */
.modal-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(10,12,13,.74); display: flex; align-items: center; justify-content: center; padding: 20px; animation: fade .35s ease both; }
.modal-backdrop.is-hidden { display: none; }
.modal-card { background: var(--paper); max-width: 430px; width: 100%; padding: clamp(26px,4vw,38px); position: relative; animation: rise .45s cubic-bezier(.16,.72,.24,1) both; }
.modal-close { position: absolute; top: 12px; right: 12px; background: transparent; border: 0; font-size: 22px; line-height: 1; color: var(--grey-400); cursor: pointer; padding: 6px; }
.modal-card img { height: 40px; width: auto; }
.modal-card .modal-title { font-size: 25px; font-weight: 300; color: var(--ink); line-height: 1.24; margin-top: 18px; }
.modal-card > p { font-size: 14px; line-height: 1.7; color: var(--grey-700); margin: 12px 0 22px; }
.modal-fine { font-size: 10px; color: var(--grey-400); line-height: 1.6; margin: 16px 0 0; }
.modal-form { display: grid; gap: 17px; }
.modal-form input[type="text"], .modal-form input[type="tel"] { border: 0; border-bottom: 1px solid rgba(14,17,18,.25); background: transparent; padding: 11px 2px; font-size: 15px; outline: none; width: 100%; }
.modal-form input:focus { border-bottom-color: var(--ink); }
.modal-consent { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.modal-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--ink); flex: 0 0 auto; }
.modal-consent span { font-size: 11.5px; line-height: 1.6; color: var(--grey-600); }

/* ---- Legal page ---- */
.legal-topstrip { background: var(--ink); color: var(--grey-100); font-size: 12.5px; padding: 9px 0; }
.legal-topstrip .wrap-narrow { display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: space-between; align-items: center; }
.legal-topstrip a { color: var(--grey-100); font-weight: 600; }
.legal-header { border-bottom: 1px solid rgba(18,33,28,.12); background: var(--paper); }
.legal-header .wrap-narrow { padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-brand { display: flex; flex-direction: column; gap: 2px; color: var(--ink); text-decoration: none; }
.legal-brand .name { font-size: 19px; font-weight: 500; line-height: 1; }
.legal-brand .role { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-500); font-weight: 600; }
.legal-header .back { font-size: 13.5px; font-weight: 600; }
.legal-main { max-width: 1000px; margin: 0 auto; padding: clamp(40px,6vw,72px) 24px 80px; }
.legal-main h1 { font-weight: 300; font-size: clamp(32px,5vw,52px); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }
.legal-main > p.lede { font-size: 16px; line-height: 1.75; color: var(--grey-650); margin: 20px 0 0; max-width: 640px; }
.legal-main > p.updated { font-size: 12.5px; color: var(--grey-500); margin: 16px 0 0; }
.legal-jump { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 0; }
.legal-jump a { border: 1px solid rgba(18,33,28,.2); padding: 9px 16px; font-size: 13px; font-weight: 600; border-radius: 2px; color: var(--ink); }
.legal-section { margin-top: 64px; scroll-margin-top: 24px; }
.legal-section + .legal-section { padding-top: 52px; border-top: 1px solid rgba(18,33,28,.14); }
.legal-section .sec-num { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-800); font-weight: 700; }
.legal-section h2 { font-weight: 300; font-size: clamp(26px,3.4vw,38px); line-height: 1.15; color: var(--ink); margin: 14px 0 0; }
.legal-section .sub { font-size: 14px; color: var(--grey-500); margin: 12px 0 0; }
.operator-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: rgba(18,33,28,.14); border: 1px solid rgba(18,33,28,.14); margin-top: 28px; }
.operator-grid > div { background: #fff; padding: 22px 20px; }
.operator-grid .k { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-800); font-weight: 700; }
.operator-grid .v { font-size: 15px; margin-top: 8px; line-height: 1.6; }
.operator-grid .v.small { font-size: 13.5px; word-break: break-all; }
.legal-body { margin-top: 32px; display: grid; gap: 16px; font-size: 15.5px; line-height: 1.8; color: var(--grey-800); max-width: 760px; }
.legal-body p { margin: 0; }
.legal-clause { margin-top: 28px; display: grid; gap: 22px; max-width: 760px; }
.legal-clause h3 { font-size: 16px; font-weight: 700; color: var(--ink); }
.legal-clause p { font-size: 15.5px; line-height: 1.8; color: var(--grey-800); margin: 9px 0 0; }
.disclaimer-box { margin-top: 28px; background: var(--ink); color: var(--grey-150); padding: clamp(24px,3.5vw,36px); border-top: 3px solid var(--grey-200); max-width: 820px; }
.disclaimer-box .head { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--grey-200); font-weight: 700; }
.disclaimer-box .body { display: grid; gap: 16px; margin-top: 20px; font-size: 15px; line-height: 1.8; }
.disclaimer-box strong { color: var(--near-white); }
.disclaimer-box a { color: var(--grey-200); }
.legal-note { font-size: 13px; line-height: 1.75; color: var(--grey-500); margin: 26px 0 0; max-width: 820px; }
.legal-footer { background: var(--ink-2); color: var(--grey-400); padding: 40px 0 32px; font-size: 12.5px; line-height: 1.7; }
.legal-footer .wrap-narrow { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: flex-start; }
.legal-footer .brand-name { font-size: 18px; color: var(--near-white); }
.legal-footer p { margin: 8px 0 0; max-width: 340px; }
.legal-footer .links { display: grid; gap: 8px; }
.legal-footer .links a { color: var(--grey-400); }
