/* =========================================================
   Western Falcon Inc. — Brand new site styles
   Modern, professional, finance-oriented
   ========================================================= */

:root {
  --ink: #0a1a2f;
  --ink-2: #14253f;
  --soft: #4a5d7a;
  --muted: #8a96aa;
  --line: #e6e9f0;
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-dark: #0a1a2f;
  --gold: #c9a96b;
  --gold-2: #b08a47;
  --teal: #2c5f7f;
  --shadow: 0 10px 30px rgba(10, 26, 47, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 26, 47, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-header p { color: var(--soft); font-size: 17px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover { background: var(--gold-2); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 20px rgba(176, 138, 71, 0.3); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--white-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ===== Top bar ===== */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-logo img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.is-active { color: var(--gold); }
.nav-menu a.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-menu .has-sub { position: relative; }
.nav-menu .has-sub > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.6;
}
.nav-menu .sub {
  position: absolute;
  top: 100%;
  left: -16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ease);
}
.nav-menu .has-sub:hover .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub a { display: block; padding: 10px 20px; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: all var(--ease);
}
.nav-toggle span::before { content: ''; position: absolute; top: -7px; left: 0; }
.nav-toggle span::after { content: ''; position: absolute; top: 7px; left: 0; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #0a1a2f 0%, #14253f 50%, #1a3a5f 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201,169,107,0.15), transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(44,95,127,0.4), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 880px; }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 640px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 640px;
}
.hero-stats .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stats .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== Page header (smaller) ===== */
.page-header {
  background: linear-gradient(135deg, #0a1a2f 0%, #14253f 100%);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201,169,107,0.12), transparent 60%);
}
.page-header-inner { position: relative; }
.page-header h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 12px;
}
.page-header p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 640px; margin: 0 auto; }
.breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.breadcrumbs a { color: rgba(255,255,255,0.6); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

/* ===== Cards & grids ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,169,107,0.12), rgba(201,169,107,0.04));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  padding: 12px;
}
.card-icon img { width: 100%; height: 100%; object-fit: contain; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--soft); font-size: 15px; }
.card .card-link { color: var(--gold); font-weight: 600; font-size: 14px; margin-top: 16px; display: inline-block; }

/* Service feature cards */
.feature-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease);
  border: 1px solid var(--line);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card-img { aspect-ratio: 16/10; overflow: hidden; }
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.feature-card:hover .feature-card-img img { transform: scale(1.05); }
.feature-card-body { padding: 28px; }
.feature-card-body h3 { font-size: 22px; margin-bottom: 10px; }
.feature-card-body p { color: var(--soft); font-size: 15px; margin-bottom: 16px; }
.feature-card-body .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Two-column split (About-style) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.split .lead { color: var(--soft); font-size: 17px; margin-bottom: 24px; }
.split ul.checks { list-style: none; margin-top: 24px; }
.split ul.checks li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.split ul.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') center/contain no-repeat;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,107,0.25), transparent 70%);
  top: -150px; right: -100px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3.5vw, 36px); max-width: 640px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 8px; }

/* ===== Contact block ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-info-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}
.contact-info-card .icon img { width: 100%; height: 100%; object-fit: contain; }
.contact-info-card h4 { font-size: 18px; margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.contact-info-card p { color: var(--soft); font-size: 15px; line-height: 1.5; }
.contact-info-card a { color: var(--ink); }
.contact-info-card a:hover { color: var(--gold); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form h3 { font-size: 24px; margin-bottom: 8px; }
.form .form-sub { color: var(--soft); margin-bottom: 24px; font-size: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: all var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,169,107,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form button { width: 100%; justify-content: center; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success { display: none; padding: 16px; border-radius: var(--radius-sm); background: rgba(40,167,69,0.1); color: #1d7a32; font-size: 14px; margin-top: 16px; text-align: center; }
.form-success.show { display: block; }

/* ===== Map ===== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  padding-top: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.footer-grid a { color: rgba(255,255,255,0.7); display: block; padding: 5px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-contact { margin-top: 16px; font-size: 14px; }
.footer-contact p { padding: 3px 0; }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: all var(--ease);
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }

/* ===== Mission / Values ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
}
.value-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--soft); }

/* ===== Article / long-form content ===== */
.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.85;
}
.prose h2 { font-size: 30px; margin: 48px 0 16px; }
.prose h3 { font-size: 22px; margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 24px 24px; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--ink); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .grid-3, .grid-4, .values-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 80px 0 60px; }
  .section { padding: 72px 0; }
}
@media (max-width: 720px) {
  .topbar-contact { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    gap: 0;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 0; }
  .nav-menu a { display: block; padding: 12px 24px; }
  .nav-menu .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 24px; min-width: 0; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
  .grid-2, .grid-3, .grid-4, .values-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form { padding: 28px 20px; }
}
