* {
  box-sizing: border-box;
}

:root {
  --forest: #1f4d3a;
  --forest-dark: #143428;
  --pond: #2d6f7c;
  --cream: #f7f3ea;
  --sand: #d9c7a0;
  --ink: #1f2925;
  --white: #ffffff;
  --muted: #eef3ef;
  --shadow: 0 18px 45px rgba(20, 52, 40, 0.14);
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.hero {
  min-height: 88vh;
  color: var(--white);
  background:
    linear-gradient(rgba(10, 26, 21, 0.30), rgba(10, 26, 21, 0.72)),
    url("around-the-pond-sign.jpg") center 48% / cover no-repeat;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
}

.hero-content {
  margin: auto;
  padding: 90px 0 110px;
}

.hero h1 {
  max-width: 850px;
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 680px;
  margin: 0 0 32px;
  font-size: 1.2rem;
}

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

.hero .eyebrow {
  color: #f5dca3;
}

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

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

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

.hero .primary {
  background: var(--white);
  color: var(--forest-dark);
}

.secondary {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.section {
  padding: 88px 0;
}

.muted {
  background: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--forest-dark);
}

h3 {
  margin-top: 0;
  color: var(--forest-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.card {
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-section {
  height: min(72vh, 760px);
  overflow: hidden;
}

.photo-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.summer {
  background: var(--cream);
}

.summer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px;
  border: 1px solid rgba(31, 77, 58, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.address {
  font-size: 1.2rem;
}

.contact-card {
  padding: 32px;
  border-radius: 24px;
  background: var(--forest-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-label {
  margin: 20px 0 4px;
  color: #cfe0d6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-label:first-child {
  margin-top: 0;
}

.contact-link {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: none;
}

.full {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  background: var(--white);
  color: var(--forest-dark);
}

footer {
  padding: 48px 0;
  background: #0d241b;
  color: #dfe9e3;
}

.footer-content {
  text-align: center;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .split,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .summer-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 78vh;
  }
}

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

  .nav-links {
    gap: 12px;
    font-size: 0.92rem;
  }

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

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

  .section {
    padding: 64px 0;
  }

  .summer-box,
  .contact-card {
    padding: 24px;
  }

  .photo-section {
    height: 52vh;
  }
}
