:root {
  --ink: #18202a;
  --muted: #657084;
  --paper: #fbfcfd;
  --panel: #ffffff;
  --line: #dfe7ee;
  --brand: #0f6c81;
  --brand-dark: #0b4756;
  --accent: #d3662f;
  --accent-soft: #fff1ea;
  --shadow: 0 18px 50px rgba(24, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(251, 252, 253, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: block;
  width: 76px;
  height: 52px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(24, 32, 42, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-dark);
  background: #eef8fa;
}

.site-nav .nav-cta {
  color: white;
  background: var(--brand);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: white;
  background: var(--brand-dark);
}

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

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

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: stretch;
  background: #10242d;
}

.hero-media {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(36px, 7vw, 84px);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 36, 45, 0.12), rgba(16, 36, 45, 0.7)),
    linear-gradient(0deg, rgba(16, 36, 45, 0.28), rgba(16, 36, 45, 0.02));
}

.hero-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(86%, 540px);
  object-fit: contain;
  filter:
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.82))
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.32));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 72px);
  color: white;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

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

.hero .eyebrow {
  color: #ffb28d;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--accent);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #b65328;
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-services article {
  min-height: 260px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--panel);
}

.quick-services span {
  color: var(--brand);
  font-weight: 900;
}

.quick-services h2,
.service-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.quick-services p,
.section p,
.service-grid li {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.section h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
}

.section > div > p {
  max-width: 640px;
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.quote-grid blockquote,
.coming-soon-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 26px rgba(24, 32, 42, 0.05);
}

.service-grid article {
  padding: 24px;
}

.service-grid h3 {
  margin-top: 0;
}

.service-grid ul {
  padding-left: 18px;
  margin: 0;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  background: #eef5f6;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stats div {
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.stats strong {
  color: var(--brand-dark);
  font-size: 1.8rem;
  line-height: 1;
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
}

.testimonials {
  background: var(--ink);
}

.testimonials .eyebrow {
  color: #ffb28d;
}

.testimonials h2 {
  color: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quote-grid blockquote {
  margin: 0;
  padding: 24px;
  background: #202b37;
  border-color: rgba(255, 255, 255, 0.14);
}

.quote-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  background: var(--accent-soft);
}

.coming-soon-panel {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: clamp(28px, 5vw, 48px);
}

.coming-soon-panel span {
  color: var(--brand-dark);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: #111820;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .hero,
  .split,
  .about-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 320px;
    order: 2;
  }

  .hero-logo {
    width: min(78%, 340px);
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .brand small {
    max-width: 170px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .quick-services,
  .service-grid,
  .quote-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .quick-services article {
    min-height: 0;
  }

  .section-heading {
    display: block;
  }

  .site-footer {
    flex-direction: column;
  }
}
