:root {
  --navy: #071d3c;
  --blue: #123b64;
  --green: #586f42;
  --leaf: #81925e;
  --wood: #9b693c;
  --sand: #f3efe5;
  --paper: #fbfaf7;
  --ink: #17202d;
  --muted: #68717d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 29, 60, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 6px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(7, 29, 60, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  width: clamp(132px, 12vw, 150px);
}

.brand img {
  width: 100%;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 32px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header nav a {
  padding: 8px 0;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 29, 60, 0.88), rgba(7, 29, 60, 0.45) 48%, rgba(7, 29, 60, 0.08)),
    linear-gradient(0deg, rgba(7, 29, 60, 0.58), rgba(7, 29, 60, 0.02) 45%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(52px, 9vw, 92px) clamp(18px, 6vw, 72px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 600px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
}

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

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

.intro,
.features,
.experience,
.contact {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(54px, 9vw, 104px) 0 clamp(34px, 6vw, 72px);
}

.intro .eyebrow,
.experience .eyebrow,
.contact .eyebrow {
  color: var(--wood);
}

.intro p:last-child,
.experience-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.features article {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(7, 29, 60, 0.08);
}

.features span {
  display: block;
  margin-bottom: 56px;
  color: var(--leaf);
  font-weight: 800;
}

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

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background: var(--sand);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-image {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.experience-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  font-weight: 700;
}

.experience-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(66px, 10vw, 112px) 0 clamp(28px, 5vw, 54px);
}

.contact h2 {
  max-width: 8ch;
}

.contact-panel {
  padding: clamp(26px, 4vw, 40px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel .button {
  margin-top: 8px;
}

.location-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(66px, 9vw, 112px);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background: var(--sand);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-copy {
  max-width: 420px;
}

.location-copy .eyebrow {
  color: var(--wood);
}

.location-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.location-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.location-copy .button {
  margin-top: 10px;
}

.map-shell {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #dbe4ee;
  aspect-ratio: 16 / 10;
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

footer p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    min-height: 68px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 29, 60, 0.92), rgba(7, 29, 60, 0.36) 58%, rgba(7, 29, 60, 0.04)),
      linear-gradient(90deg, rgba(7, 29, 60, 0.72), rgba(7, 29, 60, 0.18));
  }

  .intro,
  .experience,
  .contact,
  .location-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand {
    width: 138px;
  }

  .hero-content {
    width: min(100% - 32px, 560px);
    margin: 0 auto 42px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: 2.1rem;
  }

  .button {
    width: 100%;
  }

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

  .features article {
    min-height: 210px;
  }

  .features span {
    margin-bottom: 34px;
  }

  .experience {
    width: 100%;
    border-radius: 0;
  }

  .location-section {
    width: 100%;
    border-radius: 0;
  }

  .map-shell iframe {
    height: 320px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
