:root {
  --navy: #10243f;
  --deep-navy: #071629;
  --blue: #1f6f9f;
  --gold: #c8a45d;
  --light-gold: #ead8ac;
  --sand: #f7f3ec;
  --cloud: #f5f7fa;
  --white: #ffffff;
  --text: #1c2530;
  --muted: #647080;
  --border: #dde4ec;
  --shadow: 0 18px 45px rgba(8, 24, 45, 0.12);
  --radius: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  background: var(--deep-navy);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221,228,236,.9);
}

.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: .02em;
  line-height: 1.05;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--sand);
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 16px !important;
  margin-left: 6px;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7,22,41,.94), rgba(16,36,63,.76)),
    url("../img/hero-placeholder.svg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero .container {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  align-items: center;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--light-gold);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.13;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5vw, 66px);
  margin: 18px 0 22px;
  max-width: 780px;
  letter-spacing: -.03em;
}

.hero p {
  font-size: 19px;
  color: rgba(255,255,255,.88);
  max-width: 690px;
  margin: 0 0 32px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--deep-navy);
  box-shadow: 0 16px 35px rgba(200,164,93,.25);
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.34);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.hero-card {
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 23px;
  margin-bottom: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.stat {
  padding: 18px;
  border-radius: 16px;
  background: var(--cloud);
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--cloud);
}

.section.sand {
  background: var(--sand);
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(31px, 4vw, 46px);
  letter-spacing: -.025em;
  margin: 10px 0 16px;
}

.section-header p {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 28px rgba(8,24,45,.06);
}

.card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card ul,
.content-block ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.card li,
.content-block li {
  margin: 7px 0;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.image-frame img {
  display: block;
  width: 100%;
}

.content-block h2 {
  font-size: clamp(31px, 4vw, 46px);
  letter-spacing: -.025em;
  margin: 10px 0 18px;
}

.content-block p {
  color: var(--muted);
  margin: 0 0 16px;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid var(--light-gold);
}

.process-item h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.process-item p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  background: linear-gradient(120deg, var(--deep-navy), var(--navy));
  color: white;
  padding: 86px 0 72px;
}

.page-hero h1 {
  color: white;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -.03em;
  margin: 16px 0;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 42px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 100px;
  background: var(--sand);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--light-gold);
}

.sidebar h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.sidebar a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(16,36,63,.08);
}

.sidebar a:hover {
  color: var(--navy);
}

.service-panel {
  scroll-margin-top: 105px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 22px;
  box-shadow: 0 8px 28px rgba(8,24,45,.05);
}

.service-panel h2 {
  font-size: 29px;
  margin-bottom: 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--navy);
  border: 1px solid var(--light-gold);
  font-size: 13px;
  font-weight: 700;
}

.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: white;
  border-radius: 30px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  color: white;
  font-size: 34px;
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255,255,255,.84);
  margin: 0;
  max-width: 650px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.contact-card {
  background: var(--navy);
  color: white;
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card h3 {
  color: white;
}

.contact-card p,
.contact-card li {
  color: rgba(255,255,255,.82);
}

.contact-card ul {
  padding-left: 18px;
}

.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(8,24,45,.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

textarea {
  min-height: 135px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(31,111,159,.10);
}

.notice {
  background: var(--sand);
  border: 1px solid var(--light-gold);
  color: var(--navy);
  border-radius: 16px;
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 14px;
}

.footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,.82);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .9fr;
  gap: 30px;
  margin-bottom: 38px;
}

.footer h3,
.footer strong {
  color: white;
}

.footer a {
  display: block;
  color: rgba(255,255,255,.78);
  margin: 8px 0;
}

.footer a:hover {
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 56px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
}

.placeholder-note {
  background: rgba(200,164,93,.12);
  border: 1px dashed var(--gold);
  color: var(--navy);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
}

.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  align-items: center;
}

.profile-placeholder {
  min-height: 260px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(16,36,63,.94), rgba(31,111,159,.7)),
    url("../img/team-placeholder.svg");
  background-size: cover;
  background-position: center;
}

.two-col-list {
  columns: 2;
  column-gap: 34px;
}

.owner-highlight {
  background: var(--sand);
  border: 1px solid var(--light-gold);
  border-radius: 28px;
  padding: 34px;
}

.owner-highlight h2 {
  margin-bottom: 14px;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

@media (max-width: 960px) {
  .top-strip .container {
    flex-direction: column;
    gap: 4px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

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

  .nav-links a {
    border-radius: 12px;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero .container,
  .split,
  .contact-layout,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
    padding: 72px 0;
  }

  .sidebar {
    position: static;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand {
    min-width: auto;
  }

  .brand-text span {
    display: none;
  }

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

  .section {
    padding: 64px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 68px 0 56px;
  }

  .card,
  .form-card,
  .contact-card {
    padding: 22px;
  }

  .cta-band {
    padding: 30px;
    border-radius: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .two-col-list {
    columns: 1;
  }
}
