/* =========================================================================
   SYTEK Management Group — property management & real estate investment
   Warm, premium real-estate styling. Retune brand via the variables below.
   ========================================================================= */
:root {
  /* Rebranded to the SYTEK Management Group logo: red + charcoal.
     Variable names kept as --navy/--gold to avoid touching every rule —
     --navy now = brand charcoal, --gold now = brand red. */
  --navy: #35393d;        /* brand charcoal (headings, dark bands, footer) */
  --navy-700: #26292c;    /* darker charcoal */
  --gold: #c0474a;        /* brand red */
  --gold-soft: #dd6a6c;   /* lighter red */
  --red-dark: #9c393c;    /* deep red (gradients / hover) */
  --cream: #faf7f5;       /* warm off-white background */
  --ink: #2c3033;
  --muted: #6a7075;
  --line: #ebe6e2;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(40, 44, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(40, 44, 48, 0.14);
  --maxw: 1120px;
  /* --serif kept as the variable name; now a clean corporate grotesque. */
  --serif: "Archivo", "Inter", "Segoe UI", system-ui, sans-serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink);
  background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 700; color: var(--gold); margin: 0 0 14px;
}
h1, h2, h3 { font-family: var(--serif); color: var(--navy); line-height: 1.12; margin: 0 0 .4em; font-weight: 700; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px;
  border-radius: 10px; font-weight: 600; font-family: var(--sans); font-size: 1rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .1s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 10px 24px -8px rgba(192,71,74,.55); }
.btn--gold:hover { background: var(--red-dark); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(250,246,239,.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.brand:hover { text-decoration: none; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__logo { height: 46px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--navy); font-weight: 500; font-size: .98rem; }
.nav__links a:hover { color: var(--gold); text-decoration: none; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 80px 0 90px; }
.hero h1 .accent { color: var(--gold); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
/* Centered, text-led hero (no illustration) */
.hero__center { max-width: 880px; margin: 0 auto; text-align: center; padding: 96px 0 86px; }
.hero__center .lead { margin-inline: auto; }
.hero__center .hero__actions { justify-content: center; }
.hero__center .stats { max-width: 740px; margin-inline: auto; }
.hero__art { width: 100%; height: auto; filter: drop-shadow(0 24px 40px rgba(16,36,61,.18)); }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 40px; margin-top: 12px; }
.stat__num { font-family: var(--serif); font-size: 2.2rem; color: var(--navy); font-weight: 600; }
.stat__label { color: var(--muted); font-size: .95rem; }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(192,71,74,.12); color: var(--gold); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }

/* Charcoal band */
.band { background: var(--navy); color: #ece7e3; }
.band h2 { color: #fff; }
.band .lead { color: #c9bfb8; }
.band--art { position: relative; overflow: hidden; }

/* Vision split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.quote { font-family: var(--serif); font-size: clamp(1.5rem,2.6vw,2rem); color: var(--navy); line-height: 1.35; }
.quote .accent { color: var(--gold); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 26px; padding-top: 6px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.contact-item a { color: #fff; }
.contact-item div { color: #ece7e3; }
.contact-item .label { color: var(--gold-soft); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }

/* Contact form card */
.form-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { color: #ece7e3; font-size: .9rem; font-weight: 600; letter-spacing: .01em; }
.field label .opt { color: #a49a93; font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: #fff;
  background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px; padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #8a807a; }
.field select { appearance: none; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(192,71,74,.25);
}
.field input[aria-invalid="true"] { border-color: var(--gold-soft); }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-btn { align-self: flex-start; margin-top: 2px; }
.form-msg { margin: 0; font-size: .95rem; min-height: 1.2em; }
.form-msg--ok { color: #7bd88f; }
.form-msg--err { color: var(--gold-soft); }

/* Footer */
.site-footer { background: #1e2023; color: #a49a93; padding: 48px 0 28px; }
.footer__top { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: #e6ded8; }
.footer__bottom { padding-top: 20px; font-size: .9rem; }

/* Responsive */
@media (max-width: 860px) {
  .hero__grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .hero__art { max-width: 420px; margin: 0 auto; order: -1; }
  .grid--2, .grid--3, .stats, .contact-layout, .form-row { grid-template-columns: 1fr; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0; background: var(--cream);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 16px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: block; }
}
