/*
Theme Name: Four North Heights
Theme URI: https://fournorthheights.com
Author: Four North Heights
Description: A simple, premium one-page WordPress theme for Four North Heights.
Version: 1.0.0
License: GPLv2 or later
Text Domain: four-north-heights
*/

:root {
  --navy: #06214d;
  --navy-2: #0b2e66;
  --gold: #b89236;
  --slate: #536476;
  --ink: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --soft: #f7f8fb;
  --line: #e7eaf0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img { width: 230px; max-width: 60vw; height: auto; display: block; }
.nav { display: flex; gap: 24px; align-items: center; font-size: 15px; color: var(--navy); font-weight: 600; }
.nav a:hover { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 14px 28px rgba(184,146,54,.20);
}
.btn:hover { transform: translateY(-1px); }
.btn.secondary { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: none; }
.hero {
  padding: 92px 0 80px;
  background:
    radial-gradient(circle at 80% 10%, rgba(184,146,54,.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; }
h1 { margin: 14px 0 18px; font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: -0.045em; color: var(--navy); }
.hero p { font-size: 20px; color: var(--muted); max-width: 640px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(6,33,77,.10);
}
.hero-icon { width: 100%; max-width: 350px; display: block; margin: 0 auto 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat { background: var(--soft); border-radius: 20px; padding: 18px; border: 1px solid var(--line); }
.stat strong { display: block; color: var(--navy); font-size: 24px; }
.stat span { color: var(--muted); font-size: 14px; }
.section { padding: 76px 0; }
.section.alt { background: var(--soft); }
.section-title { max-width: 760px; margin-bottom: 34px; }
h2 { margin: 0 0 12px; color: var(--navy); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.03em; }
.section-title p { margin: 0; color: var(--muted); font-size: 18px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background:#fff; border:1px solid var(--line); border-radius:24px; padding:28px; box-shadow:0 18px 40px rgba(6,33,77,.06); }
.card .num { color: var(--gold); font-weight: 900; font-size: 14px; letter-spacing: .12em; }
.card h3 { margin: 12px 0 10px; color: var(--navy); font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.about-mark { background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: 44px; text-align: center; }
.about-mark img { max-width: 330px; width: 100%; }
.list { margin: 22px 0 0; padding: 0; list-style: none; }
.list li { padding: 12px 0 12px 32px; position: relative; border-bottom: 1px solid var(--line); color: var(--muted); }
.list li:before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.cta { background: var(--navy); color: #fff; border-radius: 34px; padding: 48px; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.78); margin: 0; max-width: 640px; }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-inner { display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
@media (max-width: 860px) {
  .nav { display: none; }
  .hero { padding: 62px 0; }
  .hero-grid, .about { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 32px; }
  .logo-wrap img { width: 190px; }
}
