/* SEVENAGY — Navy/Gold clean property theme */

:root {
  --navy: #0f1f2f;
  --gold: #c4a44a;
  --gold-light: #f4f1e6;
  --cream: #faf8f3;
  --text: #1f2328;
  --muted: #6b6660;
  --border: #e5e0da;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --radius: 14px;
  --max: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  z-index: 9999;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #1b3550);
  border-radius: 9px;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.nav-links a:hover { color: var(--text); background: #f5f2ed; }
.nav-links a.active { color: var(--navy); background: var(--gold-light); font-weight: 600; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(196,164,74,0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(15,31,47,0.12), transparent 55%),
    linear-gradient(180deg, #f7f4eb 0%, #ffffff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(196,164,74,0.18);
  color: #6e5720;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.hero-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15,31,47,0.18);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 4px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}
.hero-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef3f8;
  color: var(--navy);
  font-size: 1.1rem;
}
.hero-card strong { color: var(--navy); font-size: 0.95rem; }
.hero-card span { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 2px; }

.section { padding: 64px 0; }
.section.alt { background: #f7f4eb; }
.section-header { max-width: 760px; margin-bottom: 32px; }
.section-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ece8e1;
  color: #4b453f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-title {
  margin-top: 10px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub { margin-top: 10px; color: var(--muted); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.property-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.property-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-color: #eee;
  position: relative;
}
.property-body { padding: 22px; }
.property-price {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 10px;
  background: #eef3f8;
  color: #36536b;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.property-title {
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
}
.property-meta {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  color: #7a756f;
  font-size: 0.9rem;
}
.property-meta i { color: #a08c72; }
.property-address {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.93rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.service-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff7eb;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card h3 { color: var(--navy); font-size: 1.05rem; }
.service-card p { margin-top: 8px; color: var(--muted); font-size: 0.93rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.review {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.review p { color: var(--text); font-size: 1rem; line-height: 1.5; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.review-author strong { color: var(--navy); font-size: 0.92rem; }
.review-author span { color: var(--muted); font-size: 0.82rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 22px; }
.blog-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.blog-card .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-light);
  color: #614f1e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-card h4 { margin-top: 14px; color: var(--navy); font-size: 1.05rem; }
.blog-card p { margin-top: 10px; color: var(--muted); font-size: 0.93rem; }
.blog-card .read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #37586f;
  font-weight: 600;
}

.about-hero { padding: 68px 0 40px; }
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.about-main p { color: #323337; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.value-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.value-card h4 { color: var(--navy); font-size: 1rem; }
.value-card p { color: var(--muted); font-size: 0.9rem; margin-top: 8px; line-height: 1.5; }
.side-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.side-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.side-card p, .side-card li, .side-card i { font-size: 0.92rem; color: #4a4744; }
.side-card ul li {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  align-items: center;
}
.side-card a i { color: var(--gold); margin-top: 2px; }

.cta {
  background:
    radial-gradient(circle at 80% 10%, rgba(196,164,74,0.22), transparent 40%),
    linear-gradient(180deg, var(--navy), #0b1a2a);
  color: #ffffff;
}
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cta h2 { font-size: clamp(1.3rem, 1.8vw, 1.7rem); font-weight: 800; color: #ffffff; }
.cta p { color: #d8cfc3; margin-top: 8px; }
.cta .btn-primary {
  background: var(--gold);
  color: #1b1204;
  border: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.contact-form {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin: 14px 0 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font: inherit;
}
.contact-form .btn-primary { width: 100%; margin-top: 8px; }
.info-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.info-card h3 { color: var(--navy); }
.info-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  color: #524d46;
  font-size: 0.95rem;
}
.info-row i { color: var(--gold); margin-top: 3px; }
.info-strong { display: block; color: var(--navy); font-weight: 700; }
.info-weak { display: block; color: #6b6762; font-size: 0.92rem; }

.footer { background: #0a1926; color: #d6cbc2; padding-top: 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}
.footer-brand strong {
  color: #ffffff;
  font-size: 1.05rem;
}
.footer-links h4 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links ul li {
  display: flex;
  gap: 8px;
  padding: 5px 0;
  align-items: center;
  color: #cbc4b9;
  font-size: 0.92rem;
}
.footer-links a:hover { color: #ffffff; }
.footer-bottom {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #a69e95;
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}
