:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --ink: #18231f;
  --muted: #5d6862;
  --line: #dce3dc;
  --orange: #f45a2a;
  --green: #0f6b4f;
  --lime: #d9f36b;
  --blue: #1d6fb8;
  --shadow: 0 24px 70px rgba(24, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 245, 0.88);
  border-bottom: 1px solid rgba(220, 227, 220, 0.75);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(24, 35, 31, 0.06);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--ink);
}

.page-section {
  scroll-margin-top: 88px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 15, 0.92), rgba(11, 18, 15, 0.5), rgba(11, 18, 15, 0.18));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 120px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  width: min(780px, 100%);
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 34px rgba(244, 90, 42, 0.28);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button.compact {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.9rem;
}

.band {
  padding: 28px 0;
  background: var(--ink);
  color: #fff;
}

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

.metrics article {
  padding: 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 4px;
  color: var(--lime);
  font-size: 1.05rem;
}

.metrics span {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section-heading {
  padding: 86px 0 28px;
}

.section-heading h2,
.split h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.event-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  padding-bottom: 88px;
}

.event-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-card {
  grid-template-columns: minmax(260px, 0.8fr) 1fr;
}

.event-image {
  min-height: 230px;
  background: #f0f3ef;
}

.event-image.tall {
  min-height: 420px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3ee;
  color: #9b3b20;
  font-size: 0.78rem;
  font-weight: 800;
}

.event-content h3,
.service-panel h3,
.result-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.event-content p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.info-section {
  padding: 92px 0;
  background: #edf4f0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.split p {
  color: var(--muted);
  font-size: 1rem;
}

.service-panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-panel ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.service-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.results-section {
  padding-bottom: 94px;
}

.search-box {
  display: grid;
  gap: 8px;
  width: min(360px, 100%);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.search-box input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input {
  min-height: 48px;
  padding: 0 16px;
  text-transform: none;
}

.search-box input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 107, 79, 0.12);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

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

.result-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(24, 35, 31, 0.08);
}

.result-card[hidden] {
  display: none;
}

.result-cover {
  height: 178px;
  background: #e8eee9;
}

.result-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-body {
  padding: 20px;
}

.result-meta {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.result-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.result-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.contact-section {
  padding: 92px 0;
  background: #10221c;
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 52px;
  align-items: start;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  gap: 2px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-list span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  padding: 48px 0 26px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 34px;
}

.footer-logo {
  width: 140px;
  max-height: 44px;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    border-radius: 8px;
    flex-direction: column;
  }

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

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

  .hero {
    min-height: 740px;
  }

  .metrics,
  .event-grid,
  .featured-card,
  .split,
  .results-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .row-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content,
  .copyright {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 72px 0 90px;
  }

  .section-heading {
    padding-top: 64px;
  }

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

  .contact-form {
    padding: 20px;
  }
}
