/* ============================================================
   NK Elite Property — design system
   Feel: elite, trustworthy property firm.
   Deep navy authority + gold accent + warm ivory paper.
   Brand colors sampled from the NK Elite logo.
   ============================================================ */

:root {
  --navy:      #0d1a2a;
  --navy-deep: #08111d;
  --ivory:          #f6f4ee;
  --paper:          #fffdf8;
  --gold:          #cfa93a;
  --gold-soft:     #e2c274;
  --ink:            #14202e;
  --muted:          #5a6675;
  --line:           #e6e0d2;
  --white:          #ffffff;

  --radius:   16px;
  --radius-sm:10px;
  --maxw:     1160px;
  --shadow:   0 18px 50px rgba(8, 17, 29, 0.16);
  --shadow-sm:0 8px 24px rgba(8, 17, 29, 0.09);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 900px; }

/* ---- Shared type ---- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section-title.center { text-align: center; }
.section-title.on-dark { color: var(--paper); }

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 14px;
  max-width: 620px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub.on-dark { color: rgba(247, 244, 236, 0.72); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .1s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #21170a; box-shadow: 0 6px 18px rgba(207, 169, 58, 0.34); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(13, 26, 42, 0.26); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(13, 26, 42, 0.05); }
.btn-block { width: 100%; text-align: center; padding: 16px; }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-name-accent { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink); transition: color .2s ease; }
.site-nav a:hover { color: var(--gold); }
.site-nav .nav-cta {
  background: var(--navy); color: var(--paper);
  padding: 10px 20px; border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--navy-deep); color: var(--paper); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ============================================================ HERO */
.hero { padding: clamp(48px, 7vw, 92px) 0; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 22px;
}
.accent-text { color: var(--gold); }
.hero .lead { font-size: 1.12rem; color: var(--muted); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 0.9rem; color: var(--navy); font-weight: 500;
}
.hero-trust li { position: relative; padding-left: 22px; }
.hero-trust li::before {
  content: "\2713"; position: absolute; left: 0; top: -1px;
  color: var(--gold); font-weight: 700;
}

.hero-media { position: relative; }
.hero-photo {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #d9e2dc;
}
.guarantee-card {
  position: absolute; left: -26px; bottom: -26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 18px 22px; min-width: 232px;
}
.gc-top {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.gc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; }
.gc-amount {
  font-family: var(--font-display); font-weight: 600;
  font-size: 2.1rem; color: var(--navy); margin: 8px 0 2px;
}
.gc-amount span { font-size: 1.1rem; color: var(--muted); }
.gc-meta { font-size: 0.85rem; color: var(--muted); }
.gc-status {
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line);
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.gc-check {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--navy); color: var(--paper); font-size: 0.75rem;
}

/* ============================================================ TRUST BAR */
.trustbar { background: var(--navy); color: var(--paper); }
.trustbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 36px 24px;
}
.trust-item { text-align: center; }
.trust-figure {
  display: block; font-family: var(--font-display);
  font-weight: 600; font-size: 2rem; color: var(--gold-soft);
}
.trust-label { font-size: 0.86rem; color: rgba(247,244,236,0.78); }

/* ============================================================ SECTIONS */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-alt { background: var(--paper); }
.section-dark { background: var(--navy-deep); }

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 52px;
  counter-reset: none;
}
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; color: var(--gold);
  display: inline-block; margin-bottom: 16px;
  padding-bottom: 6px; border-bottom: 2px solid var(--gold-soft);
}
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.32rem; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* Cards (why us) */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 52px;
}
.card {
  background: rgba(247, 244, 236, 0.05);
  border: 1px solid rgba(216, 184, 119, 0.22);
  border-radius: var(--radius); padding: 30px 26px;
}
.card-icon { color: var(--gold-soft); font-size: 0.7rem; }
.card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.24rem; color: var(--paper); margin: 12px 0 8px; }
.card p { color: rgba(247, 244, 236, 0.72); font-size: 0.96rem; }

/* Compare */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-top: 48px;
}
.compare-col { border-radius: var(--radius); padding: 32px 30px; }
.compare-them { background: var(--paper); border: 1px solid var(--line); }
.compare-us {
  background: var(--navy); color: var(--paper);
  position: relative; box-shadow: var(--shadow);
}
.compare-col h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 20px; }
.compare-them h3 { color: var(--muted); }
.compare-us h3 { color: var(--paper); }
.compare-col ul { display: grid; gap: 13px; }
.compare-col li { position: relative; padding-left: 28px; font-size: 0.98rem; }
.compare-them li { color: var(--muted); }
.compare-them li::before { content: "\2715"; position: absolute; left: 0; color: #b9482f; font-weight: 700; }
.compare-us li { color: rgba(247, 244, 236, 0.92); }
.compare-us li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-soft); font-weight: 700; }
.compare-badge {
  position: absolute; top: -13px; left: 30px;
  background: var(--gold); color: #241a06;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}

/* About */
.about-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 64px); align-items: center;
}
.about-media img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); background: #d9e2dc; }
.about-text p { color: var(--muted); margin-top: 12px; }
.tick-list { margin: 22px 0 28px; display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 28px; font-weight: 500; color: var(--navy); }
.tick-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700;
}

/* FAQ */
.faq { margin-top: 44px; display: grid; gap: 14px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 0;
  font-weight: 600; font-size: 1.05rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold); font-weight: 400; line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { color: var(--muted); padding: 0 0 20px; max-width: 680px; }

/* Contact / CTA */
.section-cta { background: var(--navy); }
.contact-form { margin-top: 40px; display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 15px 18px; border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 244, 236, 0.2);
  background: rgba(247, 244, 236, 0.08); color: var(--paper);
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(247, 244, 236, 0.55); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold-soft); background: rgba(247, 244, 236, 0.14);
}
.form-status { color: var(--gold-soft); font-weight: 500; text-align: center; min-height: 1.2em; }

/* ============================================================ FOOTER */
.site-footer { background: var(--navy-deep); color: rgba(247,244,236,0.8); padding: 56px 0 30px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 30px; flex-wrap: wrap; padding-bottom: 30px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.12);
}
.site-footer .brand-name { color: var(--paper); }
.footer-logo { height: 58px; width: auto; }
.footer-tagline { margin-top: 12px; font-size: 0.92rem; max-width: 320px; color: rgba(247,244,236,0.6); }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.95rem; color: rgba(247,244,236,0.8); }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding-top: 24px; font-size: 0.85rem; color: rgba(247,244,236,0.5);
}

/* ============================================================ MOTION */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-photo { height: 340px; }
  .steps, .cards { grid-template-columns: 1fr; }
  .compare, .about-inner { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .about-media { order: -1; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; box-shadow: var(--shadow-sm);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: none; }
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .guarantee-card { left: 0; bottom: -18px; min-width: 200px; padding: 15px 18px; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}
