/* Base styles */
:root {
  color-scheme: light;
  --bg: #eef7f2;
  --surface: #ffffff;
  --surface-strong: #f3faf5;
  --text: #10292c;
  --muted: #4d6e72;
  --primary: #117d60;
  --primary-dark: #0b5d46;
  --accent: #44b17e;
  --border: #c8ded5;
  --shadow: 0 12px 30px rgba(17, 41, 44, 0.08);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 20;
}
.page-banner {
  width: 100%;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background: none;
}
.page-banner img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  justify-content: space-around;
  max-width: 1120px;
}
.site-nav a {
  color: var(--primary);
  transition: color 0.2s ease;
}
.site-nav a.button-primary {
  color: #ffffff;
}
.site-nav a.button-primary:hover {
  color: #ffffff;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--primary-dark);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--primary);
  color: #ffffff;
}
.button-primary:hover {
  background: var(--primary-dark);
}
.button-secondary {
  background: transparent;
  border-color: rgba(17, 125, 96, 0.2);
  color: var(--primary);
}
.hero {
  background: linear-gradient(135deg, #e9fbf2 0%, #ffffff 100%);
  padding: 5rem 0 4rem;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  margin: 0;
  line-height: 1.05;
}
.hero p {
  max-width: 42rem;
  margin: 1.25rem 0 1.8rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-light,
.section-dark {
  padding: 4rem 0;
}
.section-dark {
  background: #0e3f36;
  color: #eef6f0;
}
.section-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-intro h1,
.section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.section-intro p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card,
.detail-card,
.contact-card,
.booking-form-card,
.callout,
.testimonial {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
}
.card h3,
.detail-card h2,
.callout h2,
.testimonial h2 {
  margin-top: 0;
}
.card p,
.detail-card p,
.callout p,
.testimonial p {
  color: var(--muted);
}
.list,
.features-list,
.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.features-list li,
.detail-card li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.4rem;
}
.features-list li::before,
.detail-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.align-center {
  align-items: center;
}
.quote {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #f3f4f6;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.step-card {
  background: var(--surface-strong);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.07);
}
.step-number {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.callout {
  text-align: center;
}
.callout p {
  margin: 1rem auto 1.8rem;
  max-width: 720px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e5e7eb;
}
.testimonial-author {
  margin-top: 1rem;
  color: #cbd5e1;
  font-size: 0.95rem;
}
.contact-card {
  min-height: 360px;
}
form {
  display: grid;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.form-group {
  display: grid;
  gap: 0.6rem;
}
label {
  font-weight: 600;
  color: var(--text);
}
input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(17, 125, 96, 0.15);
}
.form-message {
  margin-top: 0.5rem;
  color: var(--accent);
}
.site-footer {
  padding: 2rem 0;
  background: #0b322a;
  color: #cde4da;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
footer a {
  color: inherit;
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .two-column,
  .steps-row,
  .form-row {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .button {
    width: 100%;
  }
}
