:root {
  --dark-green: #16391f;
  --deep-green: #1d4a29;
  --green: #2e9e44;
  --bright-green: #3cc153;
  --light-green: #e8f5ea;
  --white: #ffffff;
  --off-white: #f7faf7;
  --text: #22302a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Monochrome line icons */
svg.ico {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; }

/* ===== Top bar ===== */
.topbar {
  background: var(--dark-green);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  text-align: center;
}
.topbar a { color: var(--bright-green); text-decoration: none; font-weight: 700; }

/* ===== Header / nav ===== */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--dark-green);
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.brand-name span { color: var(--green); }
nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
nav a:hover { color: var(--green); }
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--green);
  transition: width 0.25s ease;
}
nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--dark-green); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--dark-green) 0%, var(--deep-green) 55%, #276b38 100%);
  color: var(--white);
  padding: 4.5rem 1rem 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 320px at 12% 18%, rgba(60,193,83,0.28), transparent 70%),
    radial-gradient(520px 280px at 88% 32%, rgba(60,193,83,0.18), transparent 70%);
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 110px;
  display: block;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  border: 4px solid rgba(255,255,255,0.85);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  margin-bottom: 1.3rem;
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero h1 span { color: var(--bright-green); }
.hero .tagline {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  opacity: 0.95;
}
.hero-ctas {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--bright-green);
  color: var(--dark-green);
  box-shadow: 0 6px 22px rgba(60, 193, 83, 0.35);
}
.btn-primary:hover { background: var(--white); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.hero-points {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-points div::before { content: "✓ "; color: var(--bright-green); font-weight: 800; }

/* ===== Sections ===== */
section { padding: 4rem 1rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-align: center;
}
h2 {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--dark-green);
  text-transform: uppercase;
  margin: 0.4rem 0 0.8rem;
}
h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--bright-green));
  margin: 0.7rem auto 0;
}
.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: #4b5a52;
}

/* ===== Services ===== */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}
@media (min-width: 920px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .service-card { padding: 1.6rem 0.9rem; }
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(22, 57, 31, 0.08);
  border-top: 4px solid var(--green);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(22, 57, 31, 0.16);
}
.service-card:hover .icon { background: var(--green); }
.service-card:hover .icon svg { stroke: var(--white); }
.service-card .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.service-card .icon svg {
  transition: stroke 0.25s ease;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--dark-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  color: var(--dark-green);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.service-card p { font-size: 0.93rem; color: #4b5a52; }

/* ===== Our work ===== */
.work-photo {
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(22, 57, 31, 0.22);
}

/* Placeholder used in place of photos that haven't been supplied yet,
   so a missing image never falls back to raw alt text on the page. */
.photo-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(150deg, var(--light-green), var(--off-white));
  color: var(--green);
  border: 2px dashed #bfe0c6;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
}
.photo-placeholder svg.ico { width: 2.2rem; height: 2.2rem; }

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.why-card {
  background: linear-gradient(150deg, var(--deep-green), #143820);
  color: var(--white);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(60,193,83,0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--bright-green);
  box-shadow: 0 14px 30px rgba(22, 57, 31, 0.25);
}
.why-card h3 {
  color: var(--bright-green);
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.95rem; opacity: 0.92; }

/* ===== Brand band (banner-style waves) ===== */
.brandband {
  background: var(--white);
  padding: 3.5rem 1rem 0;
  text-align: center;
  overflow: hidden;
}
.brandband-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 26px rgba(22, 57, 31, 0.18);
  margin-bottom: 1.2rem;
}
.bb-tagline {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: #1c2b22;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.bb-sub {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  margin-bottom: 1rem;
}
.bb-waves {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(110px, 18vw, 220px);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.about-text p { margin-bottom: 1rem; color: #3c4a43; font-size: 1.05rem; }
.about-media { position: relative; padding-bottom: 24px; }
.van-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(22, 57, 31, 0.22);
}
.hands-photo {
  position: absolute;
  bottom: 0;
  left: -18px;
  width: 36%;
  border-radius: 12px;
  border: 4px solid var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.hands-photo.photo-placeholder { aspect-ratio: 1 / 1; font-size: 0.75rem; }
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hands-photo { left: 12px; }
}
.partners {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
}
@media (max-width: 820px) { .partners { justify-content: center; } }
.partner {
  background: var(--light-green);
  border-radius: 12px;
  padding: 1rem 1.8rem;
  font-weight: 700;
  color: var(--dark-green);
}
.partner small { display: block; font-weight: 600; color: var(--green); }

/* ===== Booking ===== */
.booking { background: var(--light-green); }
.booking-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  box-shadow: 0 10px 34px rgba(22, 57, 31, 0.14);
  border-top: 5px solid var(--green);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-green);
  margin-bottom: 0.3rem;
}
.form-field label small { font-weight: 500; color: #6b7a72; }
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
  border: 2px solid #d5e5d8;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--text);
}
/* Selects render with the browser's native appearance mixed with our
   custom border/background on some mobile browsers (notably iOS Safari),
   which can make the field look inert or fail to open the option list.
   Forcing appearance:none and drawing our own arrow keeps the control
   fully clickable everywhere. */
.form-field select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 2.2rem 0.7rem 0.8rem;
  border: 2px solid #d5e5d8;
  border-radius: 10px;
  background-color: var(--off-white);
  color: var(--text);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e9e44' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
}
.form-field select:invalid { color: #6b7a72; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background-color: var(--white);
}
.form-submit {
  grid-column: 1 / -1;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--dark-green); transform: translateY(-2px); }
.form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.88rem;
  color: #6b7a72;
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ===== Contact ===== */
.contact { background: var(--dark-green); color: var(--white); }
.contact h2 { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.8); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(60,193,83,0.5);
}
.contact-card .icon { margin-bottom: 0.6rem; }
.contact-card .icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--bright-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--bright-green);
  margin-bottom: 0.5rem;
}
.contact-card a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
  margin-top: 0.2rem;
  word-break: break-word;
}
.contact-card a:hover { color: var(--bright-green); }

/* ===== Footer ===== */
footer {
  background: #0f2916;
  border-top: 3px solid var(--green);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}
footer .foot-tagline {
  color: var(--bright-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

/* ===== Floating call button (mobile) ===== */
.call-fab {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 200;
  display: none;
}
/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 700px) {
  .call-fab { display: block; }
  .nav-inner { flex-wrap: nowrap; }
  nav ul li { display: none; }
  nav ul li:last-child { display: block; }
  .nav-cta { font-size: 0.85rem; padding: 0.45rem 0.9rem; white-space: nowrap; }
}
