:root {
  --navy: #061b2d;
  --navy2: #092b45;
  --gold: #c99341;
  --ink: #0d2235;
  --muted: #65707d;
  --light: #f7f8f8;
  --white: #ffffff;
  --line: #e3e7eb;
}

/* Global */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0 0 18px;
}

/* Top Bar */
.topbar {
  background: #051a2c;
  color: #d4a04d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  gap: 12px;
}

.brand-mark {
  font-family: Georgia, serif;
  font-size: 50px;
  letter-spacing: 0.08em;
}

.brand-line {
  height: 38px;
  width: 1px;
  background: #cfd4d9;
}

.brand-text strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand-text span {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #445;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #0b2238;
  text-decoration: none;
  text-transform: uppercase;
  padding: 28px 0;
}

.main-nav a.active,
.main-nav .current-menu-item > a {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.contact-btn,
.main-nav .menu-item:last-child > a {
  background: var(--navy);
  color: #fff !important;
  padding: 14px 22px !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--ink);
}

/* WordPress Menu Support */
.main-nav ul {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  list-style: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      rgba(255, 255, 255, 0.95) 36%,
      rgba(255, 255, 255, 0.2) 70%
    ),
    url("../images/hero-city.jpg") right center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 15px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.eyebrow::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: 52px;
  max-width: 650px;
  margin-bottom: 26px;
}

.hero p {
  max-width: 500px;
  color: #25384b;
}

/* Buttons */
.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  border-color: #9ca7b0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.btn-gold {
  background: var(--gold);
  color: #081b2c;
}

/* Practice Strip */
.practice-strip {
  background: #061d31;
  color: #fff;
  padding: 34px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.strip-item {
  display: flex;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.strip-item:last-child {
  border-right: 0;
}

.icon {
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}

.strip-item h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.strip-item p {
  font-size: 12px;
  color: #d7e0e8;
  margin: 0;
}

/* Sections */
.section {
  padding: 70px 0;
}

.about-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.stat {
  border-right: 1px solid #d8dde1;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-family: Georgia, serif;
  font-size: 31px;
  color: var(--gold);
  display: block;
}

.stat span {
  font-size: 12px;
  font-weight: 700;
  color: #475563;
  display: block;
  line-height: 1.25;
}

/* Services */
.services {
  background: linear-gradient(180deg, #fbfcfd, #eef5f8);
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head .eyebrow {
  justify-content: center;
  margin-bottom: 10px;
}

.section-head .eyebrow::before {
  content: "";
  width: 45px;
  height: 1px;
  background: transparent;
}

.section-head h2 {
  font-size: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: #fff;
  text-align: center;
  padding: 34px 20px;
  min-height: 188px;
  box-shadow: 0 12px 28px rgba(13, 34, 53, 0.06);
  border: 1px solid #f0f2f3;
}

.service-card .icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  color: #4e5c69;
  margin-bottom: 16px;
}

.learn {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}

/* CTA */
.cta-band {
  background: #061d31;
  color: #fff;
  padding: 54px 0;
}

.quote {
  font-size: 20px;
  max-width: 620px;
}

.quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 70px;
  color: var(--gold);
  float: left;
  line-height: 0.8;
  margin-right: 22px;
}

.quote p {
  color: #fff;
}

.quote small {
  color: #d6a45b;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cta-box {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 90px;
}

.cta-box h2 {
  color: #fff;
  font-size: 34px;
  margin: 6px 0 20px;
}

/* Blog */
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.blog-head h2 {
  font-size: 34px;
}

.blog-card {
  background: #fff;
  box-shadow: 0 12px 32px rgba(13, 34, 53, 0.1);
}

.blog-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 20px;
}

.date {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7782;
  font-weight: 800;
}

.blog-body h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  margin: 12px 0 16px;
}

/* Footer */
.site-footer {
  background: #061d31;
  color: #d7e0e8;
}

.footer-main {
  padding: 44px 0;
}

.footer-logo {
  font-family: Georgia, serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
}

.footer-col {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 38px;
  min-height: 160px;
}

.footer-col h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #d7e0e8;
  text-decoration: none;
  font-size: 12px;
  margin: 0 0 7px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 0;
  font-size: 11px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.socials span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 24px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 560px;
    background-position: 70% center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .strip-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px;
  }

  .cta-box {
    padding-left: 24px;
    margin-top: 30px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col {
    border-left: 0px;
    padding-left: 10px;
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .topbar .container {
    display: block;
    text-align: center;
    
  }
.site-footer {
 
    padding: 20px;
}
  .brand-mark {
    font-size: 38px;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .hero {
    min-height: 500px;
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.94),
        rgba(255, 255, 255, 0.75)
      ),
      url("../images/hero-city.jpg") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 34px;
  }

  .strip-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .blog-head,
  .footer-bottom .container {
    display: block;
  }

  .section {
    padding: 48px 0;
  }

  .hero-content {
    padding: 55px 20px;
  }

  .footer-main {
    padding: 35px 0;
  }

  .blog-card {
    margin-bottom: 22px;
  }
}