:root {
  --sage: #8fb89d;
  --sage-dark: #3f7359;
  --mint: #edf7ef;
  --cream: #fbfcf8;
  --ink: #17352a;
  --muted: #5d736a;
  --line: #d6e5da;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(36, 78, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, var(--mint) 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 12px;
}

.brand {
  color: var(--sage-dark);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.header-contact,
.secondary-cta,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.header-contact {
  border: 1px solid var(--line);
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--sage-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 0 46px;
}

.hero-copy {
  max-width: 640px;
}

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

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

h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
}

.hero h2 {
  margin-bottom: 20px;
  color: var(--sage-dark);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.intro {
  max-width: 620px;
  margin-bottom: 18px;
  color: #28483b;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.trust-note {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
}

.cta {
  padding: 0 26px;
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(63, 115, 89, 0.25);
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: 28px;
  background: rgba(143, 184, 157, 0.28);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(48px, 7vw, 84px);
}

.feature-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(54, 96, 73, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--sage-dark);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.22;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 42px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.booking-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.contact-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.secondary-cta {
  padding: 0 24px;
  border: 1px solid var(--sage-dark);
  color: var(--sage-dark);
}

.email-link {
  color: var(--sage-dark);
  font-weight: 700;
  text-align: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    max-width: 640px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 720px) {
  .site-header,
  .hero,
  .feature-grid,
  .booking-panel {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    padding-top: 16px;
  }

  .header-contact {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-visual::before {
    inset: 12px -10px -10px 10px;
    border-radius: 22px;
  }

  .hero-visual img {
    border-radius: 22px;
  }

  .feature-card {
    min-height: 0;
  }

  .booking-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions {
    align-items: stretch;
  }

  .secondary-cta,
  .cta {
    width: 100%;
  }
}
