:root {
  --green: #12372a;
  --blue: #2f80a3;
  --gold: #d4a017;
  --ink: #17231f;
  --muted: #64716c;
  --line: #dce5df;
  --paper: #fbfcf8;
  --soft: #eef5f0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 55, 42, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.75);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.85);
}

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

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: #263730;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(18, 55, 42, 0.18);
}

.btn.primary.light {
  background: var(--white);
  color: var(--green);
}

.btn.secondary {
  color: var(--green);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.hero {
  padding: 74px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 48px;
  align-items: center;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2.35rem, 4.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 600px;
  font-size: 1.17rem;
  color: #34463e;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 30px;
  color: var(--muted);
}

.trust-row strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #1e250d;
  font-size: 1.35rem;
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: -24px;
  bottom: 28px;
  width: min(280px, 70%);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 229, 223, 0.9);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  font-weight: 800;
  color: var(--green);
}

.section {
  padding: 84px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.split-section.reverse {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-content p {
  margin: 0 0 18px;
  color: #405149;
  font-size: 1.04rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.section-top {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card,
.testimonial-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 55, 42, 0.06);
}

.service-card {
  min-height: 245px;
  padding: 24px;
}

.service-card.featured {
  border-top: 4px solid var(--blue);
}

.service-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.service-card p,
.testimonial-card p,
.contact-intro,
.info-panel p {
  margin: 0;
  color: #50615a;
}

.differentials {
  background: linear-gradient(180deg, #f6faf7 0%, #ffffff 100%);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  color: #293a33;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 19px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 160, 23, 0.16);
}

.gallery {
  background: var(--green);
  color: var(--white);
}

.gallery h2,
.gallery .eyebrow {
  color: var(--white);
}

.gallery .eyebrow {
  opacity: 0.78;
}

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

.gallery-item {
  min-height: 190px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c251c;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

.testimonial-card {
  margin: 0;
  padding: 26px;
}

.testimonial-card p {
  font-size: 1rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-weight: 800;
  color: var(--green);
}

.cta-band {
  padding: 64px 0;
  background: var(--blue);
  color: var(--white);
}

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

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.contact-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 900;
  border-bottom: 3px solid var(--gold);
}

.info-panel {
  padding: 28px;
}

.info-panel h3:not(:first-child) {
  margin-top: 28px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list span {
  color: #55665f;
}

.hours-list strong {
  color: var(--green);
  text-align: right;
}

.site-footer {
  padding: 34px 0;
  background: #0d261d;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-inner p {
  margin: 0;
  font-weight: 800;
}

.footer-inner a {
  color: #e8d08a;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 16, 12, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  width: min(1040px, 100%);
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px;
  }

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

  .hero-grid,
  .split-section,
  .split-section.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-image {
    aspect-ratio: 16 / 11;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    height: 44px;
  }

  .main-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1.04rem;
  }

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

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    min-height: 150px;
  }

  .hours-list li {
    flex-direction: column;
    gap: 2px;
  }

  .hours-list strong {
    text-align: left;
  }
}
