:root {
  --green: #07965f;
  --green-dark: #035f43;
  --gold: #d5a115;
  --ink: #10211b;
  --muted: #62736c;
  --line: #d9e6df;
  --paper: #fbfcf9;
  --wash: #eef7f1;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(3, 95, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 252, 249, 0.82);
  border-bottom: 1px solid rgba(217, 230, 223, 0.78);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  height: 42px;
  object-fit: contain;
  width: 58px;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  color: var(--green-dark);
  position: relative;
}

nav a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: clamp(52px, 8vw, 104px) clamp(20px, 6vw, 88px) 44px;
  place-items: center start;
  position: relative;
}

.hero::after {
  animation: tide 6s ease-in-out infinite;
  background:
    linear-gradient(90deg, transparent, rgba(213, 161, 21, 0.85), transparent),
    linear-gradient(90deg, transparent, rgba(7, 150, 95, 0.65), transparent);
  bottom: 34px;
  content: "";
  height: 3px;
  left: -10%;
  position: absolute;
  width: 120%;
}

.hero-art {
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  position: absolute;
}

.hero-art img {
  animation: drift 11s ease-in-out infinite;
  bottom: 5vh;
  max-width: none;
  position: absolute;
  right: -12vw;
  width: min(980px, 86vw);
}

.hero-copy {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--green-dark);
  font-size: clamp(3rem, 9vw, 7.4rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 930px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  max-width: 720px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 20px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

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

.button.secondary {
  color: var(--green-dark);
}

.hero-details {
  align-self: end;
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 4px;
  margin-top: clamp(48px, 8vw, 82px);
  padding-left: 18px;
  position: relative;
  z-index: 1;
}

.hero-details p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.hero-details strong {
  color: var(--green-dark);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.hero-details span {
  color: var(--muted);
  font-weight: 650;
}

.band {
  background: var(--wash);
  border-block: 1px solid var(--line);
}

.intro {
  padding: clamp(34px, 5vw, 70px) clamp(20px, 6vw, 88px);
}

.intro p {
  color: var(--green-dark);
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  font-weight: 750;
  line-height: 1.12;
  margin: 0;
  max-width: 1120px;
}

.section {
  padding: clamp(60px, 9vw, 118px) clamp(20px, 6vw, 88px);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
  max-width: 720px;
}

h2 {
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

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

.service {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 254px;
  padding: clamp(22px, 2vw, 32px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service:hover {
  border-color: rgba(7, 150, 95, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

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

h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

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

.fleet {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 88px);
}

.fleet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.fleet-list span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 850;
  padding: 14px 22px;
}

.contact-layout {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding-top: 34px;
}

.contact-primary {
  display: grid;
  gap: 10px;
}

.contact-name {
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.contact-primary a {
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
}

.contact-primary span {
  color: var(--muted);
  font-weight: 750;
}

.contact-info {
  display: grid;
  font-style: normal;
  gap: 18px;
}

.contact-info a {
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-size: clamp(1.08rem, 2.2vw, 1.7rem);
  font-weight: 760;
  padding-bottom: 18px;
}

.site-footer {
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 88px);
}

.site-footer span:first-child {
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer span:last-child {
  color: rgba(255, 255, 255, 0.74);
}

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

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(-18px, -10px, 0) rotate(1deg);
  }
}

@keyframes tide {
  0%,
  100% {
    transform: translateX(-2%);
  }
  50% {
    transform: translateX(2%);
  }
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand span {
    font-size: 0.86rem;
  }

  nav {
    justify-content: space-between;
    width: 100%;
  }

  .hero {
    min-height: 760px;
    padding-top: 42px;
  }

  .hero-art img {
    bottom: 10vh;
    right: -28vw;
    width: 760px;
  }

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

  .service:last-child {
    grid-column: auto;
  }

  .contact-primary a {
    font-size: clamp(2rem, 13vw, 3.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
