/* Schulz Think — global styles
   Brand Midnight #12213A / Brand Gold #C9963E / Background #F7F6F4
   Montserrat: 800 for headlines, 400/500 for body and nav */

:root {
  --midnight: #12213A;
  --gold: #C9963E;
  --bg: #F7F6F4;
  --white: #FFFFFF;
  --charcoal: #1C1C1C;
  --gray: #6B6B6B;
  --border: #DDD9D2;
  --radius: 3px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--midnight);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 20px;
}

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

p {
  margin-bottom: 16px;
  max-width: 62ch;
}

p:last-child {
  margin-bottom: 0;
}

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

/* Buttons */

.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
}

.btn-primary:hover {
  background: #b8863a;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--midnight);
}

/* Header / Nav */

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--midnight);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--midnight);
}

/* Hero */

.hero {
  background: var(--midnight);
  color: var(--white);
  padding: 100px 0 90px;
}

.hero h1 {
  color: var(--white);
  /* Wider measure than a short tagline needs — this headline is a full sentence. */
  max-width: 26ch;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  margin-bottom: 24px;
}

.hero .lede {
  font-size: 1.15rem;
  color: #D7DCE6;
  max-width: 54ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sections */

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-intro {
  max-width: 62ch;
  margin-bottom: 48px;
}

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

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

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

.card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card-number {
  font-weight: 800;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.tile {
  padding: 32px;
  border-top: 3px solid var(--gold);
}

.tile h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

/* Stat / fact strip */

.fact-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.fact-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  justify-content: center;
  text-align: center;
}

.fact-strip span {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--midnight);
  text-transform: uppercase;
}

/* CTA banner */

.cta-banner {
  background: var(--midnight);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  max-width: 22ch;
  margin: 0 auto 28px;
}

.cta-banner-lede {
  color: #D7DCE6;
  max-width: 46ch;
  margin: -12px auto 28px;
}

/* Footer */

.site-footer {
  background: var(--white);
  color: var(--gray);
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner img {
  height: 30px;
}

.footer-meta {
  font-size: 0.85rem;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-meta a:hover {
  color: var(--gold);
}

/* Page header (About / Services / Contact) */

.page-header {
  background: var(--midnight);
  color: var(--white);
  padding: 64px 0 56px;
}

.page-header h1 {
  color: var(--white);
}

.page-header .lede {
  color: #D7DCE6;
  font-size: 1.05rem;
  max-width: 58ch;
}

/* About page */

.about-block {
  max-width: 68ch;
  margin-bottom: 8px;
}

.location-note {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 32px;
}

/* Services page */

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

.category-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.category-card p {
  color: var(--gray);
}

.checklist {
  list-style: none;
  margin: 20px 0;
  border-top: 1px solid var(--border);
}

.checklist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 700;
}

.category-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--midnight);
  align-self: flex-start;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.category-link:hover {
  color: var(--gold);
}

.service-category {
  scroll-margin-top: 90px;
}

.service-category-heading {
  padding-top: 56px;
}

.service-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block h2 {
  margin-bottom: 16px;
}

.service-block p {
  max-width: 68ch;
}

/* Contact form */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.form-group {
  margin-bottom: 22px;
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #C7C2B8;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
}

.form-status.success {
  color: #1B6B4A;
}

.form-status.error {
  color: #C0392B;
}

.contact-side h3 {
  color: var(--midnight);
}

/* Responsive */

@media (max-width: 860px) {
  .grid-3,
  .grid-2,
  .category-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

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

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

  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    border-left: 2px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-left-color: var(--gold);
    border-bottom-color: var(--border);
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: relative;
  }

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

  .section {
    padding: 56px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }
}
