/* ==========================================================================
   LKH INFRATECH — Luxury Real Estate Design System
   Palette: Midnight Ink · Forest Pine · Champagne Gold · Ivory
   ========================================================================== */

:root {
  --ink: #10141b;
  --ink-2: #171e28;
  --night: #0b1118;
  --pine: #0d2b21;
  --pine-2: #18503c;
  --gold: #c2a35d;
  --gold-2: #e6cf96;
  --gold-deep: #9c7d3f;
  --ivory: #faf7f1;
  --cream: #f3eee4;
  --paper: #ffffff;
  --muted: #6e746d;
  --line: #e5dfd2;
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(11, 17, 24, 0.14);
  --shadow-sm: 0 10px 30px rgba(11, 17, 24, 0.08);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 20px;
  --radius-sm: 10px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.container { width: min(var(--container), calc(100% - 48px)); margin: auto; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(44px, 6.4vw, 82px); }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { font-size: 26px; }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 600; }
p { margin: 0 0 16px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.kicker.on-dark { color: var(--gold-2); }

/* --------------------------------------------------------------------------
   Top utility bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--night);
  color: #9aa3ad;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding: 6px 0;
}
.topbar a { color: var(--gold-2); font-weight: 700; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-left { display: flex; align-items: center; gap: 8px; color: #7f8994; }
.topbar .tb-right { display: flex; align-items: center; gap: 26px; }
.topbar .tb-sep { opacity: 0.35; }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s ease;
}
.site-header.scrolled { box-shadow: 0 14px 44px rgba(11, 17, 24, 0.1); }
.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 62px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3d464f;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--pine); }
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); }

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  width: 46px;
  height: 46px;
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  place-items: center;
}
.menu-btn:hover { border-color: var(--gold); color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(120deg, #e9d3a0, var(--gold) 55%, #b08d4b);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(194, 163, 93, 0.35);
}
.btn-gold:hover { box-shadow: 0 18px 40px rgba(194, 163, 93, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-outline {
  background: transparent;
  color: var(--pine);
  border-color: rgba(13, 43, 33, 0.45);
}
.btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-light {
  background: var(--ivory);
  color: var(--ink);
}
.btn-light:hover { background: var(--gold-2); }
.btn-sm { padding: 13px 24px; }

.actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: gap 0.25s ease;
}
.link-arrow:hover { gap: 16px; }
.link-arrow::after { content: "→"; }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(194, 163, 93, 0.14), transparent 60%),
    radial-gradient(700px 480px at -12% 108%, rgba(24, 80, 60, 0.35), transparent 62%),
    linear-gradient(160deg, #0d1520 0%, #0b1118 45%, #10161f 100%);
  color: var(--ivory);
  padding: 108px 0 118px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(230, 207, 150, 0.22);
  border-radius: 50%;
  right: -240px;
  top: -300px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
}
.hero .kicker { color: var(--gold-2); }
.hero h1 { color: var(--ivory); font-weight: 500; }
.hero-intro { font-size: 18px; color: #a9b2bd; max-width: 560px; margin: 6px 0 0; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  width: max-content;
  margin-top: 46px;
}
.hero-stats .hs { padding: 0 34px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
.hero-stats .hs:first-child { border-left: 0; padding-left: 0; }
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--gold-2);
  line-height: 1.1;
}
.hero-stats span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8f99a5;
}

.showcase {
  position: relative;
  border: 1px solid rgba(230, 207, 150, 0.3);
  border-radius: 26px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 44px 40px 36px;
  backdrop-filter: blur(6px);
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(230, 207, 150, 0.14);
  border-radius: 20px;
  pointer-events: none;
}
.logo-tile {
  background: var(--paper);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.logo-tile img { height: 150px; width: 82%; object-fit: contain; }
.showcase-tagline {
  margin: 26px 0 0;
  text-align: center;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.showcase-desc {
  margin: 12px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: #c8cfd8;
}
.showcase-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.showcase-mini .sm {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}
.showcase-mini strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-2);
  font-weight: 600;
}
.showcase-mini span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8f99a5;
}

/* --------------------------------------------------------------------------
   Marquee ribbon
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--pine);
  border-top: 1px solid rgba(230, 207, 150, 0.25);
  border-bottom: 1px solid rgba(230, 207, 150, 0.25);
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marq 30s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-right: 54px;
  white-space: nowrap;
}
.marquee-group span {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.marquee-group .d { color: rgba(255, 255, 255, 0.4); font-size: 9px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 104px 0; }
.section-soft { background: var(--ivory); }
.section-cream { background: var(--cream); }
.section-dark {
  background:
    radial-gradient(700px 400px at 92% 0%, rgba(194, 163, 93, 0.12), transparent 55%),
    var(--night);
  color: var(--ivory);
}
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.section-dark .section-head h2 { color: var(--ivory); }
.section-dark .section-head p { color: #9aa3ad; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(194, 163, 93, 0.55);
}
.card:hover::before { opacity: 1; }
.card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(194, 163, 93, 0.5);
  background: linear-gradient(140deg, rgba(230, 207, 150, 0.22), rgba(194, 163, 93, 0.06));
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 24px;
}
.card h3 { font-size: 25px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* --------------------------------------------------------------------------
   Property cards
   -------------------------------------------------------------------------- */
.property-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.art {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.art::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  right: -70px;
  top: -80px;
}
.art-a { background: linear-gradient(140deg, #16281f 0%, #0d2b21 55%, #123c2c 100%); }
.art-b { background: linear-gradient(140deg, #2b2414 0%, #3c2f16 55%, #6b5123 100%); }
.art-c { background: linear-gradient(140deg, #131a26 0%, #1c2836 55%, #2a3d52 100%); }
.art-d { background: linear-gradient(140deg, #0f1e18 0%, #13301f 55%, #0c2215 100%); }
.art .mono {
  position: absolute;
  right: 18px;
  bottom: -34px;
  font-family: var(--serif);
  font-size: 150px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  font-weight: 700;
  pointer-events: none;
}
.art-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(11, 17, 24, 0.55);
  border: 1px solid rgba(230, 207, 150, 0.35);
  border-radius: 999px;
  padding: 7px 13px;
  backdrop-filter: blur(4px);
}
.art-tag::before { content: "◆"; font-size: 7px; }
.property-body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.property-body .kicker { margin-bottom: 8px; font-size: 10px; }
.property-body h3 { font-size: 27px; margin-bottom: 12px; }
.property-body p { color: var(--muted); font-size: 14.5px; flex: 1; }
.meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 22px; }
.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine-2);
  border: 1px solid rgba(13, 43, 33, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(13, 43, 33, 0.04);
}

/* --------------------------------------------------------------------------
   Company box / dark panels
   -------------------------------------------------------------------------- */
.company-box {
  background: var(--ink-2);
  border: 1px solid rgba(230, 207, 150, 0.28);
  border-radius: 26px;
  padding: 44px 40px;
  color: var(--ivory);
  box-shadow: var(--shadow);
}
.company-box h3 { color: var(--ivory); }
.company-box p { color: #aab3bd; }
.company-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.detail {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.detail:hover { border-color: rgba(230, 207, 150, 0.5); transform: translateY(-2px); }
.detail small {
  display: block;
  color: var(--gold-2);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.detail strong { font-size: 13.5px; font-weight: 700; color: #e8eaee; line-height: 1.5; display: block; }

/* --------------------------------------------------------------------------
   Split layouts
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split p { color: var(--muted); }
.split .kicker { margin-bottom: 14px; }

/* --------------------------------------------------------------------------
   Trust band / stat rows
   -------------------------------------------------------------------------- */
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
  padding: 44px 0;
}
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.band-item { display: flex; gap: 20px; align-items: flex-start; }
.band-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  min-width: 64px;
}
.band-item h4 { font-size: 18px; margin: 4px 0 4px; color: var(--ink); }
.band-item p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   CTA panel
   -------------------------------------------------------------------------- */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(560px 300px at 90% 0%, rgba(230, 207, 150, 0.16), transparent 60%),
    linear-gradient(130deg, #16402e 0%, #0b1d16 70%);
  border: 1px solid rgba(230, 207, 150, 0.3);
  color: var(--ivory);
  padding: 72px 64px;
  text-align: center;
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(230, 207, 150, 0.18);
  border-radius: 50%;
  left: -160px;
  bottom: -220px;
  pointer-events: none;
}
.cta-panel h2 { color: var(--ivory); }
.cta-panel p { color: #b7c2ba; max-width: 640px; margin: 0 auto 34px; }
.cta-panel .actions { justify-content: center; }
.cta-panel .kicker { justify-content: center; }

/* --------------------------------------------------------------------------
   Quote
   -------------------------------------------------------------------------- */
.quote { text-align: center; max-width: 880px; margin: auto; }
.quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.4;
  color: var(--gold);
  display: block;
  margin-bottom: 34px;
}
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}
.quote cite {
  display: block;
  margin-top: 30px;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 88% -12%, rgba(194, 163, 93, 0.16), transparent 60%),
    linear-gradient(160deg, #0e1621 0%, #0b1118 60%, #111a26 100%);
  color: var(--ivory);
  padding: 84px 0 96px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ivory); max-width: 800px; }
.page-hero .lead { color: #a9b2bd; font-size: 17.5px; max-width: 700px; margin: 0; }
.breadcrumb {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 26px;
}
.breadcrumb span { opacity: 0.5; margin: 0 10px; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px 40px;
  box-shadow: var(--shadow-sm);
}
.form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 163, 93, 0.18);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 12px; color: #8a918a; }

/* --------------------------------------------------------------------------
   Info list (contact)
   -------------------------------------------------------------------------- */
.info-list { display: grid; gap: 0; }
.info-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; }
.info-row b {
  min-width: 170px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 3px;
}
.info-row span { color: var(--muted); font-size: 14.5px; }
.info-row a { color: var(--pine); font-weight: 700; }
.info-row a:hover { color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   Notice
   -------------------------------------------------------------------------- */
.notice {
  background: linear-gradient(90deg, rgba(230, 207, 150, 0.16), rgba(230, 207, 150, 0.04));
  border: 1px solid rgba(194, 163, 93, 0.4);
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  padding: 22px 26px;
  color: #5f5433;
  font-size: 13.5px;
}
.notice strong { color: var(--gold-deep); }
.notice a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal { max-width: 860px; }
.legal h2 {
  font-size: 32px;
  margin: 48px 0 14px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 23px; margin-top: 30px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--pine); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-rule { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 800; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--night);
  color: #a4adB6;
  padding: 76px 0 30px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 207, 150, 0.5), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.9fr 0.9fr 1.2fr; gap: 48px; }
.footer-logo {
  background: var(--paper);
  border-radius: 12px;
  padding: 18px 20px;
  width: 224px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.footer-logo img { height: 74px; width: 100%; object-fit: contain; }
.footer h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.footer p, .footer a { font-size: 13.5px; color: #a4adb6; line-height: 1.8; }
.footer a:hover { color: var(--gold-2); }
.footer-links { display: grid; gap: 11px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, color 0.25s ease;
}
.footer-links a::before { content: "—"; color: rgba(230, 207, 150, 0.45); font-size: 11px; }
.footer-links a:hover { transform: translateX(4px); color: var(--gold-2); }
.footer .f-contact a { font-weight: 700; color: #c9d1da; }
.footer .f-contact a:hover { color: var(--gold-2); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 58px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #77818c;
}
.footer-bottom strong { color: var(--gold-2); font-weight: 700; }

/* --------------------------------------------------------------------------
   WhatsApp floating action
   -------------------------------------------------------------------------- */
.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1001;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.whatsapp svg { width: 30px; height: 30px; fill: currentColor; }
.whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.8);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.whatsapp:hover, .whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.6), 0 0 0 6px rgba(37, 211, 102, 0.15);
  filter: brightness(1.08);
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.85; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease var(--d, 0s), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 84px 0 96px; }
  .showcase { max-width: 560px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .topbar .tb-left { display: none; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 900px) {
  .nav { min-height: 78px; }
  .menu-btn { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 247, 241, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(11, 17, 24, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav-links > a::after { display: none; }
  .nav-links .nav-cta { display: inline-flex; justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 26px 0; width: auto; }
  .hero-stats .hs:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 30px)); }
  .brand img { height: 46px; }
  .nav { min-height: 70px; }
  .hero { padding: 64px 0 78px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .hero-stats .hs { padding: 0 22px; }
  .cards, .band-grid, .footer-grid, .form-grid, .company-details { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .showcase { padding: 30px 22px 26px; }
  .cta-panel { padding: 48px 24px; }
  .form-panel { padding: 30px 24px; }
  .quote-mark { font-size: 80px; }
  .footer { padding: 56px 0 26px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .page-hero { padding: 64px 0 72px; }
  .band { padding: 34px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .whatsapp::after { animation: none; }
  .btn, .card, .whatsapp { transition: none; }
}
