/* =========================================================
   Expression Tropicale — Paysagiste Grand Montréal
   Design tokens, layout, and components
   ========================================================= */

:root {
  --primary: #156a30;
  --primary-rgb: 21, 106, 48;
  --primary-ink: #ffffff;
  --primary-ink-rgb: 255, 255, 255;
  --primary-dark: #0e4d22;
  --primary-dark-rgb: 14, 77, 34;
  --primary-light: #2a8a48;
  --primary-light-rgb: 42, 138, 72;
  --secondary: #22783d;
  --secondary-rgb: 34, 120, 61;
  --secondary-ink: #ffffff;
  --secondary-ink-rgb: 255, 255, 255;
  --accent: #b45309;
  --accent-rgb: 180, 83, 9;
  --accent-ink: #ffffff;
  --accent-ink-rgb: 255, 255, 255;
  --accent-on-light: #b45309;
  --accent-on-light-rgb: 180, 83, 9;
  --accent-dark: #92400e;
  --accent-dark-rgb: 146, 64, 14;
  --text: #1a2e1f;
  --text-rgb: 26, 46, 31;
  --text-light: #56685c;
  --text-light-rgb: 86, 104, 92;
  --text-muted: #6a7a70;
  --text-muted-rgb: 106, 122, 112;
  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --bg-alt: #f2f7f2;
  --bg-alt-rgb: 242, 247, 242;
  --bg-alt-ink: #1a2e1f;
  --bg-alt-ink-rgb: 26, 46, 31;
  --surface: #f8faf8;
  --surface-rgb: 248, 250, 248;
  --border: #d9e3d9;
  --border-rgb: 217, 227, 217;

  /* Utility tokens */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(var(--text-rgb), 0.04), 0 1px 3px rgba(var(--text-rgb), 0.06);
  --shadow: 0 4px 14px rgba(var(--text-rgb), 0.08);
  --shadow-lg: 0 20px 40px rgba(var(--text-rgb), 0.12);
  --transition: 200ms ease;
  --transition-slow: 400ms ease;

  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Playfair Display', 'Georgia', serif;

  --container-max: 1200px;
  --container-pad: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 7vw, 6rem);
}

/* =========================================================
   Reset & base
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.015em;
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p  { margin: 0 0 1rem; }

ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  width: 100%;
}

.section { padding-block: var(--section-y); }
.section-alt { background: var(--bg-alt); color: var(--bg-alt-ink); }
.section-dark { background: var(--primary-dark); color: var(--primary-ink); }
.section-brand { background: var(--primary); color: var(--primary-ink); }
.section-dark h2,
.section-dark h3,
.section-brand h2,
.section-brand h3 { color: #ffffff; }
.section-brand .btn--primary,
.cta-band .btn--primary {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.section-brand .btn--primary:hover,
.cta-band .btn--primary:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-on-light);
  margin-bottom: 0.75rem;
}
.section-dark .eyebrow,
.section-brand .eyebrow { color: rgba(255, 255, 255, 0.85); }

.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-lede {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
}
.section-brand .section-lede,
.section-dark .section-lede { color: rgba(255, 255, 255, 0.9); }

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.35);
}

.btn--secondary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}
.btn--secondary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--primary-ink);
  transform: translateY(-1px);
}

.btn--outline {
  background: var(--primary-dark);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
}
.btn--outline:hover {
  background: #072e14;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
  border-color: var(--primary);
}
.btn--ghost:hover {
  background: var(--primary);
  color: var(--primary-ink);
  transform: translateY(-1px);
}

.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.btn-group--center { justify-content: center; }

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--background);
  box-shadow: 0 1px 0 rgba(var(--text-rgb), 0.06);
}

.top-bar {
  background: var(--primary-dark);
  color: var(--primary-ink);
  font-size: 0.85rem;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 0.5rem;
  flex-wrap: wrap;
}
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.top-bar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.top-bar__phone {
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}
.top-bar__phone:hover { color: #ffffff; opacity: 0.85; }

.top-bar__social {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}
.top-bar__social a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
}
.top-bar__social a:hover { color: #ffffff; }
.top-bar__social svg { width: 16px; height: 16px; }

.main-nav {
  padding-block: 1rem;
}
.main-nav__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
}
.brand:hover { color: var(--primary-dark); }
.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.brand__tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}
.nav-list > li { margin: 0; position: relative; }
.nav-list > li > a,
.nav-list > li > .nav-group__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition), background var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > .nav-group__toggle:hover,
.nav-list > li.is-open > .nav-group__toggle {
  color: var(--primary);
  background: var(--bg-alt);
}
.nav-list > li > a.active {
  color: var(--primary);
  background: var(--bg-alt);
}
.nav-group__toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}
.nav-list > li.is-open .nav-group__toggle svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 80;
}
.nav-list > li.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-dropdown a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: min(85vh, 720px);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--primary-dark-rgb), 0.35) 0%, rgba(var(--primary-dark-rgb), 0.65) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.2) 80%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero__content { max-width: 720px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(14, 77, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  box-shadow: 0 0 0 3px rgba(109, 224, 138, 0.25);
}

.hero__title {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  text-wrap: balance;
}
.hero__title .accent {
  display: inline-block;
  color: var(--border);
  font-style: italic;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 60ch;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero__trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--border);
  flex-shrink: 0;
}

/* =========================================================
   Featured strip — highlights below hero
   ========================================================= */

.highlights {
  background: var(--primary);
  color: var(--primary-ink);
  padding-block: 2.5rem;
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.highlight__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight__icon svg { width: 22px; height: 22px; }
.highlight__title {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.highlight__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   Featured banner (CTA band)
   ========================================================= */

.cta-band {
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.cta-band__body h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 0.75rem;
}
.cta-band__body p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 55ch;
}
.cta-band__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   Services grid
   ========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.3);
}
.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.25);
}
.service-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  min-width: 0;
}
.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.service-card__text {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
}
.service-card__link:hover { color: var(--accent); }
.service-card__link svg { width: 14px; height: 14px; }

/* =========================================================
   About / Value proposition (two column)
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reversed { direction: rtl; }
.split--reversed > * { direction: ltr; }

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split__media--landscape { aspect-ratio: 4 / 3; }
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split__body h2 { margin-bottom: 1rem; }
.split__body p { color: var(--text-light); font-size: 1.02rem; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.98rem;
  margin: 0;
}
.feature-list svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   Portfolio strip
   ========================================================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.15));
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery__item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
.gallery__item:hover img { transform: scale(1.06); }

/* =========================================================
   Testimonials / promise cards
   ========================================================= */

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.promise {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.promise:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: var(--shadow-lg);
}
.promise__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise__icon svg { width: 24px; height: 24px; }
.promise__title {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.promise__text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   Process / steps
   ========================================================= */

.steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.steps > li {
  background: var(--background);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  margin: 0;
}
.steps > li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.steps p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   Contact section
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info {
  padding-right: 1rem;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info p { color: var(--text-light); margin-bottom: 1.75rem; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1.25rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0;
}
.contact-list__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list__label {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-list__value {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.contact-list__value--address { white-space: normal; }
.contact-list__value a { color: inherit; }
.contact-list__value a:hover { color: var(--accent); }

.contact-form {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.contact-form__lede {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-field label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.8rem 0.95rem;
  border: 1.5px solid #c9d6c9;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #f7faf7;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #a8bda8;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.18);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #93a595;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* =========================================================
   Final tropical CTA panel
   ========================================================= */

.cta-panel {
  background:
    radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.28) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(var(--primary-light-rgb), 0.35) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary-dark) 0%, #123f1c 55%, var(--primary-dark) 100%);
  color: var(--primary-ink);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before,
.cta-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-panel::before {
  width: 340px; height: 340px;
  top: -140px; right: -110px;
}
.cta-panel::after {
  width: 220px; height: 220px;
  bottom: -100px; left: -60px;
}
.cta-panel__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}
.cta-panel h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
.cta-panel p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-panel .btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.cta-panel .btn--primary:hover {
  background: var(--accent-dark);
  color: var(--accent-ink);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.cta-panel .btn--outline {
  background: var(--primary-dark);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
}
.cta-panel .btn--outline:hover {
  background: #072e14;
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-1px);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.footer-brand__name {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-col li { margin: 0; }
.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: #ffffff; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.footer-contact li svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact a { color: #ffffff; white-space: nowrap; }
.footer-contact a.footer-contact__addr { white-space: normal; }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}
.footer-legal {
  display: inline-flex;
  gap: 1.25rem;
  align-items: center;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}
.footer-legal a:hover { color: #ffffff; }

/* =========================================================
   Utilities
   ========================================================= */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    align-items: stretch;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .site-header.nav-open .nav-list { display: flex; }
  .main-nav__inner { position: relative; flex-wrap: wrap; }
  .nav-list > li > a,
  .nav-list > li > .nav-group__toggle {
    justify-content: space-between;
    padding: 0.85rem 0.75rem;
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--bg-alt);
    margin-top: 0.25rem;
    padding: 0.25rem 0.5rem;
  }
  .nav-list > li.is-open > .nav-dropdown { display: block; }
  .nav-cta { display: none; }
  .top-bar__inner { justify-content: center; text-align: center; }
  .top-bar__contact { justify-content: center; gap: 1rem 1.5rem; }

  .hero { min-height: 620px; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__media { max-width: 480px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split--reversed { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .highlights__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  :root { --section-y: clamp(2.75rem, 8vw, 4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar { font-size: 0.8rem; }
  .top-bar__contact { gap: 0.75rem 1rem; }
  .hero__trust { gap: 0.85rem 1.25rem; }
  .brand__tagline { display: none; }
  .btn { padding: 0.75rem 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* betterly-css-safety-net:start */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header {
  width: 100%;
  max-width: 100%;
}

.main-nav {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.5rem, 1.5vw, 1rem);
  align-items: center;
  justify-content: flex-end;
}

.nav-list {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.45rem, 1.25vw, .9rem);
  align-items: center;
  justify-content: flex-end;
}

.nav-cta {
  flex: 0 1 auto;
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 900px) {
  .primary-nav, .main-nav, .nav-list {
    justify-content: flex-start;
  }
  body:has(.nav-toggle) .primary-nav:not(.is-open),
  body:has(.nav-toggle) .main-nav:not(.is-open) {
    display: none;
  }
  body:has(.nav-toggle) .primary-nav.is-open,
  body:has(.nav-toggle) .main-nav.is-open {
    display: flex;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;
}

@media (max-width: 1180px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--background, #fff);
  border: 1px solid var(--border, #e1e6ed);
  border-radius: var(--radius, 12px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  overflow: hidden;
}

@media (max-width: 760px) {
  .intro-grid,
  .founder-grid,
  .visit-grid,
  .feature-grid,
  .trust-grid,
  .value-grid,
  .value__grid,
  .program-grid,
  .pillar-grid,
  .link-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .value__list,
  .values-list,
  .trust-list,
  .checklist,
  .bullets {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: grid;
  }
  .cta-banner-inner {
    display: grid;
  }
}
/* betterly-css-safety-net:end */
