@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:     #1a2744;
  --navy-mid: #243156;
  --green:    #3a7d60;
  --green-lt: #e8f2ed;
  --off-white:#f7f8f6;
  --white:    #ffffff;
  --text:     #1a2744;
  --muted:    #5a6580;
  --border:   #dde2eb;
  --radius:   6px;
  --shadow:   0 2px 16px rgba(26,39,68,.08);
  --transition: .25s ease;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
p  { color: var(--muted); }

/* ─── LAYOUT HELPERS ────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; }
.section--shaded { background: var(--off-white); }
.section--navy   { background: var(--navy); color: var(--white); }
.section--navy p { color: rgba(255,255,255,.75); }

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-intro { max-width: 560px; margin-bottom: 48px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: #2e6650; border-color: #2e6650; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(58,125,96,.3); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); }

/* ─── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(26,39,68,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo { display: flex; flex-direction: column; gap: 1px; }
.nav__logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: .04em;
}
.nav__logo-tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 16px; }

/* Mobile nav toggle */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: all var(--transition); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,125,96,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,125,96,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { max-width: 640px; position: relative; z-index: 1; }
.hero__badge {
  display: inline-block;
  background: rgba(58,125,96,.2);
  border: 1px solid rgba(58,125,96,.4);
  color: #7ec8a8;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── OUTCOMES STRIP ────────────────────────────────────── */
.outcomes {
  background: var(--green);
  padding: 48px 0;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-card {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.outcome-card:last-child { border-right: none; }
.outcome-card__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
}
.outcome-card h3 { color: var(--white); margin-bottom: 6px; font-size: 1.1rem; }
.outcome-card p  { color: rgba(255,255,255,.8); font-size: .9rem; }

/* ─── ABOUT STRIP (home) ────────────────────────────────── */
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-strip__image {
  background: var(--border);
  border-radius: 8px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.about-strip__image img { width: 100%; height: 100%; object-fit: cover; }
.about-strip__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8edf5 0%, #d4dce8 100%);
  color: var(--muted);
  font-size: .85rem;
  gap: 8px;
}
.about-strip__placeholder svg { opacity: .4; }

/* ─── ACTIVITIES ────────────────────────────────────────── */
.activity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: all var(--transition);
}
.activity-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--green); }
.activity-card__icon {
  width: 44px; height: 44px;
  background: var(--green-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.activity-card h3 { margin-bottom: 8px; font-size: 1rem; }
.activity-card p  { font-size: .9rem; }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  color: var(--green);
  opacity: .15;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.testimonial-card__stars { color: #f59e0b; margin-bottom: 16px; font-size: .9rem; letter-spacing: 2px; }
.testimonial-card__text { font-style: italic; color: var(--text); margin-bottom: 20px; line-height: 1.75; }
.testimonial-card__author { display: flex; flex-direction: column; gap: 3px; }
.testimonial-card__name  { font-weight: 600; font-size: .9rem; color: var(--navy); }
.testimonial-card__role  { font-size: .8rem; color: var(--muted); }

/* ─── SERVICES PAGE ─────────────────────────────────────── */
.service-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  border-top: 4px solid var(--green);
}
.service-block__badge {
  display: inline-block;
  background: var(--green-lt);
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.service-block h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-block p  { margin-bottom: 20px; }
.service-block ul { display: flex; flex-direction: column; gap: 8px; }
.service-block ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--muted);
}
.service-block ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── OUTCOMES TAG LIST ─────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tag {
  background: var(--green-lt);
  color: var(--green);
  border: 1px solid rgba(58,125,96,.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 500;
}

/* ─── CONTACT FORM ──────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--green-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item__label { font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-item__value { font-size: .95rem; color: var(--navy); font-weight: 500; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,125,96,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: var(--green-lt);
  border: 1px solid rgba(58,125,96,.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green);
  font-weight: 500;
  margin-top: 16px;
}

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8edf5 0%, #d4dce8 100%);
  color: var(--muted);
  font-size: .8rem; gap: 8px;
}
.gallery-lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 999;
  align-items: center; justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 4px; }
.gallery-lightbox__close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ─── BOOKING SECTION ───────────────────────────────────── */
.booking-cta {
  background: var(--navy);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,125,96,.2) 0%, transparent 70%);
  pointer-events: none;
}
.booking-cta h2, .booking-cta p { color: var(--white); }
.booking-cta p { color: rgba(255,255,255,.7); margin-bottom: 28px; margin-top: 12px; }

/* ─── BLOG ──────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e8edf5 0%, #d4dce8 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .8rem;
}
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.blog-card p { font-size: .88rem; margin-bottom: 16px; }
.blog-card__meta { font-size: .78rem; color: var(--muted); }

/* ─── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  color: var(--white);
}
.page-hero__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7ec8a8;
  margin-bottom: 12px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 520px; }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background: #131d35;
  color: rgba(255,255,255,.65);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.footer p { font-size: .88rem; line-height: 1.7; }
.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .88rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--green); color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

/* ─── UTILITIES ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0 !important; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .outcomes__grid, .about-strip__inner, .contact-wrapper, .footer__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .outcome-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .outcome-card:last-child { border-bottom: none; }
}
@media (max-width: 680px) {
  .nav__links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px 24px; border-bottom: 1px solid var(--border); gap: 16px; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-cta { padding: 40px 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
