:root {
  --ink: #182027;
  --muted: #64707b;
  --paper: #f4f1ea;
  --surface: #ffffff;
  --line: #d8d1c4;
  --dark: #1f2a31;
  --green: #2f6f4e;
  --green-dark: #24563d;
  --yellow: #f0b429;
  --brick: #b74a32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 16px;
  font-weight: 900;
  border: 2px solid var(--dark);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.menu a {
  color: var(--dark);
}

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 2px solid transparent;
}

.nav-call,
.btn.primary {
  background: var(--green);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--dark);
  border-color: var(--dark);
}

.btn:hover,
.nav-call:hover {
  transform: translateY(-1px);
}

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

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--dark);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 23, 27, 0.88), rgba(18, 23, 27, 0.56) 48%, rgba(18, 23, 27, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 86px 0 112px;
}

.hero-copy {
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brick);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero .eyebrow,
.cta .eyebrow,
.band .eyebrow,
.page-hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--yellow);
}

.quick-contact {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

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

.quick-grid a {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.quick-grid a:last-child {
  border-right: 0;
}

.quick-grid strong {
  font-size: 21px;
}

.quick-grid span {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 76px 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow),
.two-col p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #e3ded4;
}

.service-card div {
  padding: 24px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card.text-only {
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.service-card.text-only p {
  color: rgba(255, 255, 255, 0.78);
}

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

.band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.steps strong {
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.capacity-panel,
.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.capacity-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.capacity-list span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 24px;
  font-weight: 900;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta {
  padding: 70px 0;
  background: var(--green-dark);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  margin-bottom: 0;
}

.footer {
  padding: 52px 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 34px;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 16px;
}

.page-hero {
  padding: 92px 0;
  background: var(--dark);
  color: #fff;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.contact-section {
  background: #fff;
}

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

.contact-card p {
  color: var(--muted);
}

.contact-card .btn {
  margin-top: 12px;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(24, 32, 39, 0.14);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 13px 10px;
  }

  .nav-call {
    margin-top: 6px;
  }

  .hero {
    min-height: 620px;
  }

  .quick-grid,
  .service-grid,
  .two-col,
  .band-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1160px);
  }

  .topbar-inner {
    padding: 8px 0;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-inner {
    padding: 70px 0 92px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .btn,
  .nav-call {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .capacity-list {
    grid-template-columns: 1fr;
  }
}
