:root {
  --background: #ffffff;
  --surface: #f5f7fa;
  --surface-2: #eef2f6;
  --text: #1e2a36;
  --muted: #5d6b78;
  --border: #d7dee6;
  --accent: #1f4f7a;
  --accent-dark: #173a5b;
  --max-width: 1100px;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(19, 38, 56, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}


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

a {
  color: var(--accent);
}

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

.section {
  padding: 2rem 0;
}

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

.top-gap {
  margin-top: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

ul {
  padding-left: 30px;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 48rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.branding {
  min-width: 0;
}

.site-name {
  margin: 0;
  font-size: 1.1rem;
}

.site-tagline {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font: inherit;
}

.site-nav {
  display: none;
  border-top: 1px solid var(--border);
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 1rem;
}

.site-nav li + li {
  margin-top: 0.5rem;
}

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

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

.hero {
  padding-top: 2rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: .25rem;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button-secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button-secondary:hover,
.button-secondary:focus {
  background: var(--surface-2);
}

.grid-2,
.grid-3,
.gallery-grid,
.split {
  display: grid;
  gap: 1.25rem;
}

.card,
.panel,
.quote-card,
.cta-box,
.placeholder-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.placeholder-box {
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--surface);
  box-shadow: none;
}

.check-list,
.simple-list {
  padding-left: 1.2rem;
}

.cta-box {
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.text-link {
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.footer-nav li + li {
  margin-top: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  h1 {
    font-size: 2.8rem;
  }

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

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

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

  .split {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    border-top: 0;
  }

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

  .site-nav li + li {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  margin: 1rem 0 0 0;
}
@media (max-width: 699px) {
  .section {
    padding: 1.5rem 0;
  }

  .section:first-of-type {
    padding-top: 1rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.35rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  .lead {
    font-size: 1rem;
  }

  .header-inner {
    align-items: flex-start;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    text-align: center;
  }

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

  .grid-2,
  .grid-3,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-gap {
    margin-top: 0.75rem;
  }
}