:root {
  --ink: #111416;
  --muted: #5a6467;
  --paper: #f6f8f7;
  --white: #ffffff;
  --teal: #006c67;
  --teal-dark: #004f4b;
  --lime: #d7ea60;
  --red: #b5243d;
  --line: #d8dfdc;
  --shadow: 0 18px 60px rgba(17, 20, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5%, 72px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(17, 20, 22, 0.08);
}

.brand {
  display: inline-grid;
  min-width: 180px;
  text-decoration: none;
  line-height: 1.02;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

.site-header.is-solid .brand {
  text-shadow: none;
}

.text-brand span,
.footer-brand span {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(215, 234, 96, 0.22);
  outline: none;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7%, 96px) 72px;
  color: var(--white);
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.88), rgba(17, 20, 22, 0.48) 52%, rgba(17, 20, 22, 0.14)),
    linear-gradient(0deg, rgba(17, 20, 22, 0.34), transparent 45%);
}

.hero-content {
  position: relative;
  max-width: 820px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 760px;
  font-size: 3.25rem;
}

.hero-lead {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
}

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

.button.compact {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(215, 234, 96, 0.4);
  outline-offset: 2px;
}

.section {
  padding: 84px 0;
  scroll-margin-top: 0;
}

.hero {
  scroll-margin-top: 0;
}

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

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.intro {
  background: var(--white);
}

.section h2 {
  font-size: 2.35rem;
}

.section p {
  font-size: 1.05rem;
}

.intro .eyebrow,
.gallery-section .eyebrow,
.contact-section .eyebrow {
  color: var(--red);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article,
.contact-methods a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 18px;
  padding: 22px;
}

.service-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.service-list h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

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

.strip {
  padding: 34px 0;
  background: var(--teal);
  color: var(--white);
}

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

.strip p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.gallery-section {
  background: var(--paper);
}

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

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

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  opacity: 0.86;
}

.contact-section {
  padding-bottom: 0;
  background: var(--white);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: block;
  padding: 18px;
  text-decoration: none;
}

.contact-methods span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.contact-methods strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.message-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.message-panel h3,
.message-panel p {
  margin: 0;
}

.message-panel h3 {
  font-size: 1.45rem;
}

.message-panel .button {
  justify-self: start;
}

.map-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 56px auto 0;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.map-wrap iframe {
  display: block;
}

.site-footer {
  padding: 42px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  line-height: 1.02;
}

.footer-brand strong {
  font-size: 1.35rem;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  color: #d8dfdc;
}

.site-footer a {
  color: var(--lime);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 20, 22, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86svh;
  max-width: min(92vw, 1180px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(215, 234, 96, 0.55);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 42px;
  }

  .section {
    scroll-margin-top: 0;
  }

  .site-header {
    align-items: flex-start;
    padding: 14px 20px;
  }

  .text-brand strong {
    font-size: 1.28rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 82svh;
    padding: 118px 20px 52px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .strip-grid,
  .footer-bottom,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 40px;
  }

  .section {
    padding: 58px 0;
    scroll-margin-top: 0;
  }

  .section-inner,
  .map-wrap {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .section h2 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-list span {
    margin-bottom: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 70px 14px 84px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-nav.prev {
    left: calc(50% - 64px);
  }

  .lightbox-nav.next {
    right: calc(50% - 64px);
  }
}
