/* =========================================================
   ACCENICA — LANDING PAGE  (css/landing.css)
   ========================================================= */

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

:root {
  --navy:      #080f1e;
  --navy-mid:  #0d1b2a;
  --navy-card: rgba(255,255,255,0.04);
  --gold:      #c9a84c;
  --gold-lt:   #e2c97e;
  --white:     #ffffff;
  --off-white: #dde0e8;
  --muted:     rgba(255,255,255,0.55);
  --border:    rgba(255,255,255,0.08);
  --gold-border: rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

/* ── NAVIGATION ──────────────────────────────────────── */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 3.5rem;
  background: linear-gradient(to bottom, rgba(8,15,30,.9) 0%, transparent 100%);
  transition: background .35s, padding .35s;
}
.l-nav.stuck {
  background: rgba(8,15,30,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.l-logo img { height: 34px; width: auto; display: block; }
.l-nav-links {
  display: flex; align-items: center; gap: 2.2rem;
  list-style: none;
}
.l-nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
  transition: color .2s;
}
.l-nav-links a:hover { color: var(--gold); }
.l-nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .55rem 1.4rem;
  font-weight: 700 !important;
  letter-spacing: .06em;
  border-radius: 2px;
  transition: background .2s, transform .15s !important;
}
.l-nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────── */
.l-hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
}
.l-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.l-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,15,30,.88) 0%, rgba(8,15,30,.45) 55%, rgba(8,15,30,.65) 100%),
    linear-gradient(to top, rgba(8,15,30,.9) 0%, transparent 35%);
}
.l-hero-content {
  position: relative; z-index: 2;
  padding: 0 3.5rem;
  max-width: 680px;
  margin-left: max(3.5rem, calc(50vw - 520px));
}
.l-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: .4rem 1rem;
  margin-bottom: 1.8rem;
}
.l-hero-eyebrow::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.l-hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
  color: var(--white);
}
.l-hero-title em {
  font-style: normal;
  color: var(--gold);
}
.l-hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: var(--off-white);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.8rem;
}
.l-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.l-btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  text-decoration: none;
  padding: .9rem 2.2rem;
  font-size: .83rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .15s;
}
.l-btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.l-btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.9);
  text-decoration: none;
  padding: .9rem 2.2rem;
  font-size: .83rem; letter-spacing: .07em; text-transform: uppercase;
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.l-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* STATS BAR */
.l-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: rgba(8,15,30,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-border);
}
.l-stat {
  flex: 1; text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--border);
}
.l-stat:last-child { border-right: none; }
.l-stat-n {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.75rem; font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.l-stat-l {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}

/* SCROLL INDICATOR */
.l-scroll {
  position: absolute; right: 3.5rem; bottom: 7rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.l-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1; }
}

/* ── INTRO CARDS SECTION ─────────────────────────────── */
.l-section {
  padding: 7rem 3.5rem;
  max-width: 1280px; margin: 0 auto;
}
.l-section-label {
  display: block;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.l-section-title {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1rem;
}
.l-section-sub {
  font-size: .95rem; color: var(--muted);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 4rem;
}

.l-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--border);
}
.l-card {
  padding: 2.8rem 2.4rem;
  background: var(--navy-card);
  border: none;
  position: relative;
  transition: background .3s;
  text-decoration: none; color: inherit;
  display: block;
}
.l-card::after {
  content: '';
  position: absolute; bottom: 0; left: 2.4rem; right: 2.4rem; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.l-card:hover { background: rgba(201,168,76,.05); }
.l-card:hover::after { transform: scaleX(1); }

.l-card-num {
  font-family: Georgia, serif;
  font-size: .8rem; color: var(--gold);
  opacity: .6; margin-bottom: 1.8rem;
  letter-spacing: .08em;
}
.l-card h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: .9rem;
  line-height: 1.3;
}
.l-card p {
  font-size: .88rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 2rem;
}
.l-card-link {
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: gap .2s;
}
.l-card:hover .l-card-link { gap: .8rem; }

/* DIVIDER */
.l-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1280px; margin: 0 auto;
}

/* FEATURED PROPERTIES STRIP */
.l-props {
  padding: 0 3.5rem 7rem;
  max-width: 1280px; margin: 0 auto;
}
.l-props-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.l-props-all {
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: color .2s;
}
.l-props-all:hover { color: var(--gold-lt); }
.l-props-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; border: 1.5px solid var(--border);
}
.l-prop-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  display: block; text-decoration: none;
  background: #1a2535;
}
.l-prop-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.l-prop-card:hover img { transform: scale(1.06); }
.l-prop-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,30,.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem 1.8rem;
  transition: background .3s;
}
.l-prop-card:hover .l-prop-overlay {
  background: linear-gradient(to top, rgba(8,15,30,.95) 0%, rgba(8,15,30,.2) 60%);
}
.l-prop-tag {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .4rem;
}
.l-prop-title {
  font-family: Georgia, serif; font-size: 1rem; color: var(--white);
  line-height: 1.3; margin-bottom: .3rem;
}
.l-prop-loc { font-size: .75rem; color: var(--muted); }

/* FOOTER STRIP ON LANDING */
.l-footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.3);
}
.l-footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 2.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.l-footer-copy {
  font-size: .75rem; color: var(--muted);
}
.l-footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.l-footer-links a {
  font-size: .75rem; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.l-footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .l-nav { padding: 1.2rem 2rem; }
  .l-nav.stuck { padding: .8rem 2rem; }
  .l-nav-links { gap: 1.4rem; }
  .l-nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .l-hero-content { padding: 0 2rem; margin-left: 0; max-width: 100%; }
  .l-section, .l-props { padding-left: 2rem; padding-right: 2rem; }
  .l-cards { grid-template-columns: 1fr; }
  .l-props-grid { grid-template-columns: 1fr 1fr; }
  .l-footer-inner { padding: 2rem; }
  .l-scroll { display: none; }
}
@media (max-width: 600px) {
  .l-hero { min-height: 100svh; }
  .l-hero-title { font-size: 2.2rem; }
  .l-hero-content { padding: 0 1.4rem; }
  .l-stats { flex-wrap: wrap; }
  .l-stat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .l-section, .l-props { padding-left: 1.4rem; padding-right: 1.4rem; padding-top: 4rem; padding-bottom: 4rem; }
  .l-props-grid { grid-template-columns: 1fr; }
  .l-props-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .l-footer-inner { flex-direction: column; }
}
