/* ============================================================
   DEMIRCI CAPITAL — Design System
   Black & Gold · Luxury Property
   ============================================================ */

:root {
  --black: #0a0a0b;
  --black-2: #101012;
  --black-3: #161618;
  --black-4: #1d1d20;
  --gold: #c6a15b;
  --gold-bright: #e8cd90;
  --gold-deep: #8c7440;
  --cream: #f2ede3;
  --grey: #a09a8d;
  --grey-dark: #6b665c;
  --line: rgba(198, 161, 91, 0.16);
  --line-soft: rgba(242, 237, 227, 0.07);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: initial; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 10px; background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--black-4); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- grain overlay (disabled — read as fuzziness) ---------- */
.grain { display: none; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader svg { width: 92px; height: 92px; }
.preloader .mono-path {
  stroke: var(--gold); stroke-width: 1.4; fill: none;
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: draw 2.2s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader .word {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.55em;
  text-transform: uppercase; color: var(--grey);
  animation: fadeUp 1.4s 0.7s var(--ease) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 28px;
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold-deep); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 44px; height: 1px; background: var(--gold-deep); }

h1, h2, h3, .display { font-family: var(--serif); font-weight: 400; line-height: 1.08; color: var(--cream); }
.display-xl { font-size: clamp(3rem, 7.2vw, 6.8rem); letter-spacing: -0.01em; }
.display-lg { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.display-md { font-size: clamp(1.9rem, 3.4vw, 3.1rem); }
.display-sm { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.italic { font-style: italic; color: var(--gold-bright); }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--grey); font-weight: 300; line-height: 1.85; }
.body-text { color: var(--grey); font-weight: 300; }
.gold { color: var(--gold); }

/* ---------- layout ---------- */
.container { width: min(1280px, 92vw); margin: 0 auto; }
.container-wide { width: min(1520px, 94vw); margin: 0 auto; }
section { position: relative; }
.section-pad { padding: clamp(90px, 12vh, 160px) 0; }
.section-head { max-width: 780px; margin-bottom: clamp(48px, 7vh, 84px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 42px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--black);
  background: linear-gradient(120deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200%; overflow: hidden;
  transition: all 0.55s var(--ease);
}
.btn:hover { background-position: 100%; box-shadow: 0 12px 44px rgba(198,161,91,0.28); transform: translateY(-2px); }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(6px); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(242,237,227,0.28);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); box-shadow: none; background: rgba(198,161,91,0.06); }
.link-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 8px; position: relative;
}
.link-line::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: var(--gold-deep); transform-origin: right; transition: transform 0.5s var(--ease);
}
.link-line:hover::after { transform: scaleX(0.35); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: all 0.5s var(--ease);
}
.nav-inner {
  width: min(1520px, 94vw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav.scrolled {
  height: 68px;
  background: rgba(10,10,11,0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo svg { width: 40px; height: 40px; }
.nav-logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .wm-1 { font-family: var(--serif); font-size: 19px; letter-spacing: 0.14em; color: var(--cream); }
.nav-logo .wm-2 { font-size: 8.5px; letter-spacing: 0.52em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a:not(.btn-nav) {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--grey); position: relative; padding: 6px 0;
  transition: color 0.35s;
}
.nav-links a:not(.btn-nav)::after {
  content: ""; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
  background: var(--gold); transition: all 0.4s var(--ease); transform: translateX(-50%);
}
.nav-links a:not(.btn-nav):hover, .nav-links a.active { color: var(--cream); }
.nav-links a:not(.btn-nav):hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav {
  padding: 12px 26px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  border: 1px solid var(--gold-deep); color: var(--gold);
  transition: all 0.45s var(--ease);
}
.btn-nav:hover { background: var(--gold); color: var(--black); box-shadow: 0 8px 30px rgba(198,161,91,0.25); }

/* burger */
.burger { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; z-index: 1002; }
.burger span {
  display: block; width: 26px; height: 1.5px; background: var(--cream);
  margin: 7px auto; transition: all 0.45s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); background: var(--gold); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); background: var(--gold); }

.menu-overlay {
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(10,10,11,0.97); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; visibility: hidden; transition: all 0.6s var(--ease);
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-overlay a {
  font-family: var(--serif); font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--grey); padding: 6px 0; transition: all 0.4s;
  opacity: 0; transform: translateY(24px);
}
.menu-overlay.open a { opacity: 1; transform: none; }
.menu-overlay a:hover { color: var(--gold-bright); font-style: italic; }
.menu-overlay .m-cta { font-family: var(--sans); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 30px; border: 1px solid var(--gold-deep); padding: 16px 38px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(60px, 10vh, 110px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.18) 40%, rgba(10,10,11,0.88) 100%),
    radial-gradient(90% 60% at 20% 90%, rgba(10,10,11,0.72), transparent);
}
.hero-content { position: relative; }
.hero .eyebrow { margin-bottom: 34px; }
.hero h1 { margin-bottom: 36px; max-width: 1000px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero .lead { max-width: 540px; margin-bottom: 48px; }
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-dark);
}
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 72px; overflow: hidden;
}
.scroll-hint::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint { 0% { top: -50%; } 100% { top: 110%; } }

/* page hero (inner pages) */
.page-hero {
  position: relative; min-height: 64svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(50px, 8vh, 90px);
  overflow: hidden;
}
.page-hero.tall { min-height: 78svh; }

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding: 26px 0; overflow: hidden; white-space: nowrap;
  background: var(--black-2);
}
.marquee-track { display: inline-flex; gap: 0; animation: marquee 36s linear infinite; }
.marquee span {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--grey-dark); padding: 0 34px; display: inline-flex; align-items: center; gap: 68px;
}
.marquee span::after { content: "✦"; font-size: 11px; color: var(--gold-deep); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); background: var(--black-2);
}
.stat {
  padding: clamp(36px, 5vw, 64px) clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line);
  transition: background 0.5s;
}
.stat:last-child { border-right: 0; }
.stat:hover { background: var(--black-3); }
.stat .num {
  font-family: var(--serif); font-size: clamp(2.6rem, 4.4vw, 4rem);
  color: var(--gold); line-height: 1; margin-bottom: 14px; display: flex; align-items: baseline;
}
.stat .num .suffix { font-size: 0.5em; color: var(--gold-deep); margin-left: 4px; }
.stat .lbl { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); }

/* ---------- service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-card {
  position: relative; background: var(--black-2);
  padding: clamp(40px, 4vw, 60px) clamp(28px, 3vw, 44px);
  min-height: 460px; display: flex; flex-direction: column;
  overflow: hidden; transition: background 0.6s;
}
.svc-card .svc-bg {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s var(--ease), transform 1.4s var(--ease);
  transform: scale(1.08);
}
.svc-card .svc-bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .svc-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.75), rgba(10,10,11,0.92)); }
.svc-card:hover .svc-bg { opacity: 1; transform: scale(1); }
.svc-card > * { position: relative; }
.svc-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold-deep); margin-bottom: auto; }
.svc-card h3 { font-size: clamp(1.5rem, 2vw, 1.9rem); margin: 26px 0 16px; }
.svc-card p { color: var(--grey); font-size: 14.5px; margin-bottom: 28px; }
.svc-card .link-line { font-size: 10.5px; }

.svc-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .svc-grid.grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .svc-grid.grid-4 { grid-template-columns: 1fr; } }

/* ---------- property cards ---------- */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.5vw, 36px); }
.prop-card { position: relative; background: var(--black-2); border: 1px solid var(--line-soft); transition: border-color 0.5s, transform 0.6s var(--ease), box-shadow 0.6s; }
.prop-card:hover { border-color: var(--line); transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.prop-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.prop-card:hover .prop-media img { transform: scale(1.07); }
.prop-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 8px 16px; backdrop-filter: blur(8px);
}
.prop-badge.let { background: rgba(10,10,11,0.65); color: var(--grey); border: 1px solid var(--line-soft); }
.prop-badge.available { background: rgba(198,161,91,0.92); color: var(--black); }
.prop-body { padding: 28px 26px 30px; }
.prop-body .area { font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.prop-body h3 { font-size: 1.45rem; margin-bottom: 8px; }
.prop-body .specs { font-size: 12.5px; color: var(--grey-dark); letter-spacing: 0.06em; display: flex; gap: 16px; margin-bottom: 18px; }
.prop-body .price { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-bright); border-top: 1px solid var(--line-soft); padding-top: 18px; display:flex; justify-content: space-between; align-items: baseline; }
.prop-body .price small { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-dark); }

/* ---------- split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 100px); align-items: center; }
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-media .frame {
  position: absolute; inset: 18px; border: 1px solid rgba(198,161,91,0.35); pointer-events: none;
}
.split-media.tall { aspect-ratio: 4/4.6; }
.split-media.wide { aspect-ratio: 4/3; }

/* ---------- quote ---------- */
.quote-block { text-align: center; max-width: 900px; margin: 0 auto; }
.quote-block .q-mark { font-family: var(--serif); font-size: 90px; line-height: 0.4; color: var(--gold-deep); display: block; margin-bottom: 38px; }
.quote-block blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.5rem); font-style: italic; line-height: 1.4; color: var(--cream); }
.quote-block cite { display: block; margin-top: 34px; font-style: normal; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }

/* ---------- testimonials ---------- */
.testi-wrap { position: relative; min-height: 300px; }
.testi { position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease); text-align: center; max-width: 820px; margin: 0 auto; }
.testi.active { opacity: 1; }
.testi p { font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.9rem); font-style: italic; line-height: 1.5; color: var(--cream); margin-bottom: 30px; }
.testi .who { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
.testi .stars { color: var(--gold); letter-spacing: 8px; margin-bottom: 26px; font-size: 13px; }
.testi-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.testi-dots button { width: 28px; height: 2px; background: var(--black-4); border: 0; transition: background 0.4s; }
.testi-dots button.active { background: var(--gold); }

/* ---------- cta band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,11,0.92), rgba(10,10,11,0.55)); }
.cta-inner { position: relative; padding: clamp(90px, 13vh, 150px) 0; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); margin-bottom: 12px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--black-2); border: 1px solid var(--line-soft);
  color: var(--cream); font-family: var(--sans); font-size: 15px; font-weight: 300;
  padding: 17px 18px; outline: none; transition: border-color 0.4s; border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c6a15b'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.form-note { font-size: 12px; color: var(--grey-dark); }
.form-success { display: none; text-align: center; padding: 60px 20px; border: 1px solid var(--line); background: var(--black-2); }
.form-success.show { display: block; }
.form-success .tick { font-size: 40px; color: var(--gold); margin-bottom: 20px; display: block; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); background: var(--black-2); }
.footer-top { padding: clamp(70px, 10vh, 110px) 0 60px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(36px, 5vw, 80px); }
.footer-brand svg { width: 62px; height: 62px; margin-bottom: 24px; }
.footer-brand .tag { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--grey); max-width: 260px; line-height: 1.5; }
.footer-col h4 { font-size: 10.5px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; font-weight: 600; font-family: var(--sans); }
.footer-col a, .footer-col p { display: block; color: var(--grey); font-size: 14px; padding: 6px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding: 30px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 11.5px; color: var(--grey-dark);
}
.footer-bottom a { color: var(--grey-dark); transition: color 0.3s; margin-left: 22px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- reveal animations (js adds .in) ---------- */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.clip-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease); }
.clip-img.in { clip-path: inset(0 0 0% 0); }

/* ---------- misc ---------- */
.divider-gold { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-deep), transparent); }
.bg-2 { background: var(--black-2); }
.tag-row { display: flex; gap: 12px; flex-wrap: wrap; }
.tag-row span { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); border: 1px solid var(--line-soft); padding: 9px 18px; }
.checklist li { display: flex; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); color: var(--grey); font-size: 15px; align-items: baseline; }
.checklist li::before { content: "—"; color: var(--gold); }

.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 70px); }

/* property detail */
.pd-hero { position: relative; min-height: 72svh; display: flex; align-items: flex-end; overflow: hidden; padding-bottom: 60px; }
.pd-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; cursor: pointer; transition: opacity .4s; }
.pd-gallery img:hover { opacity: .85; }
.pd-gallery .side { display: grid; gap: 14px; }
.pd-facts { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--black-2); }
.pd-fact { padding: 30px 26px; border-right: 1px solid var(--line); }
.pd-fact:last-child { border-right: 0; }
.pd-fact .v { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-bright); }
.pd-fact .k { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-dark); margin-top: 6px; }

/* login */
.login-wrap { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; }
.login-media { position: relative; overflow: hidden; }
.login-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.login-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(10,10,11,0.55)); }
.login-panel { display: flex; align-items: center; justify-content: center; padding: 8vh 8vw; }
.login-box { width: 100%; max-width: 440px; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 0; }
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-media { display: none; }
  .pd-facts { grid-template-columns: repeat(2, 1fr); }
  .pd-fact:nth-child(2) { border-right: 0; }
  .pd-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 1150px) {
  .nav-links { display: none; }
  .burger { display: block; }
}
@media (max-width: 760px) {
  .prop-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .two-col-text { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .pd-gallery { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.2s !important; }
}
