@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');

:root {
  --primary: #16324F;
  --accent: #3FA9F5;
  --bg: #F9FBFC;
  --text: #1F2933;
  --muted: #52606D;
  --border: #D9E2EC;
  --surface: #FFFFFF;
  --surface-alt: #EEF7FD;
  --shadow: 0 10px 30px rgba(22, 50, 79, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.15;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.125rem;
  max-width: 680px;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 2px solid transparent;
  min-height: 50px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent);
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(22, 50, 79, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(249, 251, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--primary);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  position: relative;
  background: linear-gradient(135deg, #ffffff, #eef7fd);
}

.logo-mark::before,
.logo-mark::after {
  content: '';
  position: absolute;
  background: var(--accent);
}

.logo-mark::before {
  width: 2px;
  height: 60%;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
}

.logo-mark::after {
  height: 2px;
  width: 60%;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #16324F;
  font-weight: 800;
}

.logo-sub {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #16324F;
  font-weight: 700;
  margin-top: 0.3rem;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--primary);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-card,
.image-card,
.cta-panel,
.info-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
}

.hero-card {
  overflow: hidden;
}

.hero-card img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.2;
}

.badge-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .badge-row {
    justify-content: center;
  }
}

.badge {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow);
}

.card p:last-child,
.info-card p:last-child,
.cta-panel p:last-child {
  margin-bottom: 0;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2.3rem;
}

.list-check {
  display: grid;
  gap: 0.8rem;
}

.list-check li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}

.list-check li::before {
  content: '•';
  position: absolute;
  left: 0.4rem;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.cta-band {
  padding: 0 0 80px;
}

.cta-panel {
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.page-hero {
  padding: 80px 0 40px;
}

.page-hero .lead {
  max-width: 780px;
}

.form-card,
.info-card {
  padding: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

label {
  font-weight: 700;
  color: var(--primary);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(63, 169, 245, 0.22);
  border-color: var(--accent);
}

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

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
}

.site-footer .logo,
.site-footer h3,
.site-footer h4,
.site-footer a {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.85);
}

.footer-links li + li,
.contact-list li + li {
  margin-top: 0.65rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
}

.placeholder-note {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--accent);
  background: #fff;
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .grid-2,
  .hero-grid,
  .two-column,
  .contact-grid,
  .footer-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .nav-toggle-label {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    position: relative;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    content: '';
  }

  .nav-toggle-label span::before {
    position: absolute;
    top: -7px;
  }

  .nav-toggle-label span::after {
    position: absolute;
    top: 7px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(249, 251, 252, 0.98);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 0;
    width: 100%;
  }

  .nav-toggle:checked ~ .site-nav {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 56px;
  }
}

@media (max-width: 560px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}
@media (min-width: 900px) {
  .badge-row,
  .btn-group {
    justify-content: center;
  }
}

.hero-subline {
  display: block;
  font-size: 0.68em;
  font-weight: 600;
  color: #5f6f82;
  margin-top: 0.18em;
}

.about-image {
  margin-top: 2rem;
}

.image-card .owner-headshot {
  width: 30.66% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.about-image {
  margin-top: 2rem;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.owner-headshot {
  width: 30.66%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.card h3,
.card p {
  text-align: center;
}