:root {
  --page-bg: #e7e7e7;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-muted: rgba(244, 244, 244, 0.78);
  --surface-stroke: rgba(24, 24, 24, 0.1);
  --text: #161616;
  --text-soft: #5f5f5f;

  /* Easy-to-configure brand colors */
  --brand-primary: #f39200;
  --brand-secondary: #1f2f3f;

  --radius-xl: 2rem 2rem 0 2rem;
  --radius-lg: 1.5rem 1.5rem 0 1.5rem;
  --radius-md: 1.125rem 1.125rem 0 1.125rem;
  --radius-sm: 0.875rem 0.875rem 0 0.875rem;

  --shadow-header: 0 10px 22px rgba(0, 0, 0, 0.08);
  --shadow-box: 0 12px 28px rgba(0, 0, 0, 0.08);

  --header-mobile: 78px;
  --header-compact: 84px;
  --header-desktop: 112px;
  --hero-image: url('assets/hero-bg.jpg');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--page-bg);
  color: var(--text);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-header);
}

.header-inner {
  min-height: var(--header-mobile);
  display: grid;
  grid-template-columns: 96px 1fr 96px;
  align-items: center;
  padding: 0 1rem;
}

.menu-toggle {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.site-logo {
  grid-column: 2;
  justify-self: center;
  width: clamp(110px, 30vw, 170px);
}

.desktop-nav { display: none; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--surface-stroke);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu.is-open { display: block; }

.mobile-menu-inner {
  padding: 1rem;
}

.mobile-menu-inner a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 700;
}

.hero {
  display: grid;
  gap: 0;
  padding: 1rem 1rem 2rem;
}

.hero-image {
  min-height: 300px;
  background-image: linear-gradient(180deg, rgba(31, 47, 63, 0.16), rgba(31, 47, 63, 0.04)), var(--hero-image);
  background-size: cover;
  background-position: center center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-box);
}

.hero-panel {
  width: min(100%, 1180px);
  margin: -2.5rem auto 0;
  background: var(--surface);
  border: 1px solid var(--surface-stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-box);
  padding: 1.5rem;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  margin: 0;
  background: rgba(243, 146, 0, 0.12);
  color: var(--brand-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
}

h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  margin: 0;
  max-width: 42rem;
  color: var(--text-soft);
  font-size: 1rem;
}

.contact-card {
  margin-top: 1.5rem;
  background: var(--surface-muted);
  border: 1px solid rgba(31, 47, 63, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.contact-card h2,
.site-footer h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.2;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-list a {
  font-weight: 700;
  color: var(--brand-secondary);
}

.contact-list strong {
  font-size: 1rem;
}

.contact-note {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.site-footer {
  padding: 0 1rem 1.25rem;
}

.footer-inner,
.footer-bottom {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.footer-inner {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--surface-stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-box);
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.footer-inner p,
.footer-bottom p {
  margin: 0;
  color: var(--text-soft);
}

.footer-bottom {
  padding: 1rem 0 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 1.25rem 1.25rem 2.25rem;
  }

  .hero-image {
    min-height: 420px;
    background-position: center center;
  }

  .hero-panel,
  .footer-inner,
  .footer-bottom {
    width: min(100%, 1220px);
  }

  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: var(--header-desktop);
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-logo {
    grid-column: auto;
    justify-self: start;
    width: 190px;
    transition: width 0.2s ease;
  }

  .desktop-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-pill {
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    padding: 0 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(24, 24, 24, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-box);
  }

  .nav-pill a {
    font-weight: 700;
  }

  .site-header.is-compact .header-inner {
    min-height: var(--header-compact);
  }

  .site-header.is-compact .site-logo {
    width: 160px;
  }

  .hero {
    width: min(100%, 1440px);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .hero-image {
    min-height: 640px;
    border-radius: var(--radius-xl);
  }

  .hero-panel {
    margin: 0 0 2rem -4.5rem;
    max-width: 560px;
    background: rgba(247, 247, 247, 0.78);
  }
}
