/*
Theme Name: CleanLakeO
Theme URI: https://cleanlakeo.org
Description: Sea & Shoreline Lake Okeechobee restoration microsite
Version: 1.0.0
Text Domain: cleanlakeo
*/


/* =========================
   1. Design Tokens
   ========================= */

:root {
  /* Brand colors (S&S Style Guide) */
  --color-blue-dark: #00AEEF;       /* Process Cyan — primary accent, CTAs */
  --color-blue-light: #54C8E8;      /* Pantone 305 — secondary accent */
  --color-green: #8DC63F;           /* Pantone 376 — tertiary accent */
  --color-text: #4D4D4D;            /* Charcoal grey — body copy */
  --color-text-dark: #000000;       /* Black — headings */
  --color-white: #ffffff;
  --color-cream: #ffffff;
  --color-offwhite: #ffffff;
  --color-blue-bg: #ffffff;
  --color-overlay: rgba(0, 80, 120, 0.55);
  --color-overlay-dark: rgba(0, 50, 80, 0.72);
  --color-blue-muted: rgba(0, 174, 239, 0.1);

  /* Typography */
  --font-primary: 'Calibri', 'Arial', sans-serif;
  --font-heading: 'Calibri', 'Arial', sans-serif;

  /* Type scale (fluid) — larger, more impactful */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: clamp(1.875rem, 2.5vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 3.5vw, 3rem);
  --text-5xl: clamp(2.5rem, 5vw, 3.75rem);
  --text-hero: clamp(3.25rem, 7vw, 5.5rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-section-lg: clamp(5rem, 8vw, 8rem);
  --space-section-sm: clamp(3rem, 5vw, 5rem);

  /* Layout */
  --max-width: 1200px;
  --max-width-sm: 800px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --border-radius: 12px;
  --border-radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(0, 174, 239, 0.15);
  --shadow-glow-green: 0 0 40px rgba(141, 198, 63, 0.12);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(16px);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}


/* =========================
   2. Reset & Base
   ========================= */

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

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-blue-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-blue-light);
}

p a,
.faq-answer a {
  position: relative;
}

p a::after,
.faq-answer a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width var(--duration) var(--ease);
}

p a:hover::after,
.faq-answer a:hover::after {
  width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* =========================
   3. Typography
   ========================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-text-dark);
  text-wrap: balance;
}

h1 {
  font-size: var(--text-hero);
  font-weight: 700;
}

h2 {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-sm);
  max-width: 68ch;
  line-height: 1.7;
}

.lead {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.8;
  max-width: 58ch;
  text-wrap: pretty;
}

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(141, 198, 63, 0.1);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  line-height: 1;
}

.section--blue .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-green);
}

.section--rich-dark .eyebrow {
  background: rgba(84, 200, 232, 0.1);
  color: var(--color-blue-light);
}

.hero .eyebrow {
  background: rgba(141, 198, 63, 0.18);
  color: var(--color-green);
}

.parallax-break .eyebrow {
  background: rgba(141, 198, 63, 0.18);
  color: var(--color-green);
}

.section--blue .eyebrow,
.section--rich-dark .eyebrow,
.parallax-break .eyebrow,
.text-center .eyebrow {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-white);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent {
  color: var(--color-blue-dark);
  font-style: italic;
  font-weight: inherit;
}

.section--blue .accent,
.section--rich-dark .accent,
.parallax-break .accent {
  color: var(--color-green);
}

.hero .accent {
  color: var(--color-green);
}


/* =========================
   4. Layout
   ========================= */

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

.container--narrow {
  max-width: var(--max-width-sm);
}

.section {
  padding-block: var(--space-section-lg);
}

.section--light {
  background-color: #ffffff;
}

.section--blue-bg {
  background-color: #ffffff;
}

.section--dark {
  background-color: var(--color-text-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark .eyebrow {
  color: var(--color-blue-light);
}

.section--blue {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(84, 200, 232, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(141, 198, 63, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #005F8A 0%, #0080B5 25%, #00AEEF 55%, #0090C7 100%);
  color: var(--color-white);
  position: relative;
}

.section--blue h2,
.section--blue h3,
.section--blue h4 {
  color: var(--color-white);
}

.section--blue .eyebrow {
  color: var(--color-green);
}

.section--rich-dark {
  background:
    radial-gradient(ellipse at 15% 80%, rgba(0, 174, 239, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(141, 198, 63, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, #001220 0%, #001a2e 25%, #00253d 50%, #003f5f 80%, #004d6e 100%);
  color: var(--color-white);
  position: relative;
}

.section--rich-dark h2,
.section--rich-dark h3,
.section--rich-dark h4 {
  color: var(--color-white);
}

.section--rich-dark .eyebrow {
  color: var(--color-blue-light);
}

.section--padded-lg {
  padding-block: var(--space-section-lg);
}

.section--padded-sm {
  padding-block: var(--space-section-sm);
}

.content-grid--reversed {
  direction: rtl;
}

.content-grid--reversed > * {
  direction: ltr;
}


/* =========================
   5. Navigation
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0, 174, 239, 0.06);
  transition: all var(--duration) var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 30px rgba(0, 40, 80, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 48px;
  width: auto;
  transition: height var(--duration) var(--ease);
}

.site-header.scrolled .nav__logo img {
  height: 36px;
}

.nav__links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  position: relative;
  padding-block: 0.25rem;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-blue-dark);
  transition: width var(--duration) var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-blue-dark);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================
   6. Hero
   ========================= */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding-block: calc(72px + var(--space-xl)) var(--space-xl);
  text-align: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero--short {
  min-height: 50vh;
}

.hero--medium {
  min-height: 65vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 20, 40, 0.4) 100%),
    linear-gradient(
      to bottom,
      rgba(0, 100, 160, 0.25) 0%,
      rgba(0, 80, 120, 0.45) 40%,
      rgba(0, 30, 50, 0.7) 100%
    );
}

.hero--short .hero__overlay {
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 20, 40, 0.3) 100%),
    linear-gradient(
      to bottom,
      rgba(0, 100, 160, 0.2) 0%,
      rgba(0, 60, 100, 0.4) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: var(--space-xl) var(--space-lg);
  background: rgba(0, 30, 60, 0.2);
  backdrop-filter: blur(8px) saturate(1.4);
  -webkit-backdrop-filter: blur(8px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  animation: heroEntrance 1s var(--ease) both;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  font-size: var(--text-2xl);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero .btn {
  margin-top: var(--space-sm);
}


/* =========================
   7. Cards
   ========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.card-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 174, 239, 0.08);
  border-top: 4px solid var(--color-blue-dark);
  transition: transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-top-color: var(--color-green);
}

.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-blue-dark), #0090C7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background 0.5s var(--ease);
  box-shadow: 0 4px 16px rgba(0, 174, 239, 0.25);
}

.card:hover .card__icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--color-green), #6FAE2B);
  box-shadow: 0 8px 24px rgba(141, 198, 63, 0.35);
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-size: var(--text-xl);
}

.card p {
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.7;
}


/* =========================
   8. CTA Items
   ========================= */

.cta-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.cta-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--color-blue-dark);
  transition: transform var(--duration) var(--ease);
}

.cta-item:hover {
  transform: translateX(4px);
}

.cta-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-item p {
  font-weight: 600;
  font-size: var(--text-base);
  margin-bottom: 0;
  color: var(--color-text-dark);
}


/* =========================
   9. Steps (Restoration Process)
   ========================= */

.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  position: relative;
}

.step {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 174, 239, 0.06);
  border-left: 4px solid var(--color-green);
  position: relative;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.step:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
  transform: translateX(4px);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc(var(--space-lg) + 28px - 1px);
  bottom: calc(-1 * var(--space-lg));
  width: 2px;
  height: var(--space-lg);
  background: linear-gradient(to bottom, var(--color-blue-light), transparent);
}

.step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue-dark), #0090c7);
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--text-3xl);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 174, 239, 0.25);
}

.step__content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.step__content p {
  margin-bottom: 0;
  font-size: var(--text-sm);
  line-height: 1.7;
}

.section--blue .step {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--color-green);
}

.section--blue .step:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section--blue .step h3 { color: var(--color-white); }
.section--blue .step p { color: rgba(255, 255, 255, 0.85); }

.section--blue .step:not(:last-child)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}


/* =========================
   10. Benefits List
   ========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
}

.benefit__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-green), #6FAE2B);
  color: var(--color-white);
  box-shadow: 0 3px 12px rgba(141, 198, 63, 0.3);
}

.benefit__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit p {
  margin-bottom: 0;
  font-size: var(--text-base);
  line-height: 1.6;
}

.section--blue .benefit__icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(141, 198, 63, 0.3));
  color: var(--color-white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}


/* =========================
   11. Contact Section
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 174, 239, 0.08);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text);
  background: rgba(247, 250, 251, 0.8);
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: var(--border-radius);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue-dark);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .optional {
  font-weight: 400;
  color: var(--color-text);
  font-size: var(--text-xs);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 174, 239, 0.08);
}

.contact-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-blue-dark);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-detail a,
.contact-detail span {
  font-size: var(--text-base);
  color: var(--color-text);
}

.contact-detail a:hover {
  color: var(--color-blue-dark);
}

.form-status {
  padding: var(--space-sm);
  border-radius: var(--border-radius);
  font-size: var(--text-sm);
  display: none;
}

.form-status--success {
  display: block;
  background-color: rgba(141, 198, 63, 0.15);
  color: #5a7a20;
  border: 1px solid rgba(141, 198, 63, 0.3);
}

.form-status--error {
  display: block;
  background-color: rgba(220, 53, 69, 0.1);
  color: #a02030;
  border: 1px solid rgba(220, 53, 69, 0.2);
}


/* =========================
   12. Video
   ========================= */

.video-container {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  margin-top: var(--space-lg);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: rgba(0, 30, 60, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.video-placeholder__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.video-placeholder__play:hover {
  background-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

.video-placeholder__play svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
  margin-left: 4px;
}

.video-placeholder__label {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}


/* =========================
   13. FAQ Accordion
   ========================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 174, 239, 0.06);
  border-left: 3px solid transparent;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}

.faq-question:hover {
  color: var(--color-blue-dark);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: var(--space-sm);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.faq-item.open .faq-question__icon {
  transform: rotate(180deg);
}

.faq-item:hover {
  background: rgba(0, 174, 239, 0.03);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > * {
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  padding: 0 var(--space-lg);
}

.faq-item.open .faq-answer__inner {
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
}


/* =========================
   14. Buttons
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  border-color: var(--color-blue-dark);
}

.btn--primary::after {
  content: '\2192';
  display: inline-block;
  opacity: 0;
  width: 0;
  transform: translateX(-8px);
  transition: opacity var(--duration) var(--ease),
              width var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.btn--primary:hover::after {
  opacity: 1;
  width: 1em;
  transform: translateX(0);
}

.btn--primary:hover {
  background-color: #009ad6;
  border-color: #009ad6;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.35), 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn--spaced {
  margin-top: var(--space-sm);
}

.btn--green {
  background: linear-gradient(135deg, var(--color-green), #6FAE2B);
  color: var(--color-white);
  border-color: transparent;
}

.btn--green::after {
  content: '\2192';
  display: inline-block;
  opacity: 0;
  width: 0;
  transform: translateX(-8px);
  transition: opacity var(--duration) var(--ease),
              width var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.btn--green:hover::after {
  opacity: 1;
  width: 1em;
  transform: translateX(0);
}

.btn--green:hover {
  background: linear-gradient(135deg, #7ab835, #5a9e1f);
  border-color: transparent;
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(141, 198, 63, 0.35), 0 0 0 3px rgba(141, 198, 63, 0.1);
}


/* =========================
   14b. Image Break (full-bleed photo moments)
   ========================= */

.image-break {
  margin-block: var(--space-xl);
  width: calc(100vw - 2rem);
  max-width: 1400px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-break img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  display: block;
}

.image-break::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(141, 198, 63, 0.12) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.image-break img {
  transition: transform 0.1s linear;
}

.image-break figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
}


/* =========================
   14c. Content Grid (2-column layouts)
   ========================= */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-lg);
}

.content-grid--wide-left {
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.content-grid img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}


/* =========================
   15. Parallax Break
   ========================= */

.parallax-break {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--color-white);
}

.parallax-break__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.parallax-break__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-overlay-dark);
}

.parallax-break__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-xl) var(--gutter);
}

.parallax-break h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}


/* =========================
   16. Stats
   ========================= */

.stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-blue-dark);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 174, 239, 0.25);
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-top: var(--space-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.section--blue .stat__number {
  color: var(--color-green);
}

.section--rich-dark .stat__number {
  color: var(--color-green);
}

.section--rich-dark .stat__label {
  color: rgba(255, 255, 255, 0.8);
}

.section--blue .stat__label {
  color: rgba(255, 255, 255, 0.8);
}

.stat.animated .stat__number {
  animation: statPulse 0.6s var(--ease);
}

@keyframes statPulse {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}


/* =========================
   17. Footer
   ========================= */

.site-footer {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0, 174, 239, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #001220 0%, #001a2e 40%, #00253d 100%);
  color: rgba(255, 255, 255, 0.7);
  padding-block: var(--space-2xl) var(--space-xl);
  position: relative;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.footer__logo img {
  height: 48px;
  width: auto;
  margin-inline: auto;
}

.footer__tagline {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-blue-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.footer__nav {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease);
}

.footer__nav a:hover {
  color: var(--color-blue-light);
}

.footer__contact {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__contact a {
  color: var(--color-blue-light);
  font-size: var(--text-sm);
}

.footer__contact a:hover {
  color: var(--color-white);
}

.footer__text {
  font-size: var(--text-sm);
}

.footer__text p {
  margin-bottom: var(--space-xs);
}

.footer__text p:last-child {
  margin-bottom: 0;
  opacity: 0.6;
}

.footer__text a {
  color: var(--color-blue-light);
}

.footer__text a:hover {
  color: var(--color-white);
}


/* =========================
   18. Clip-Path Wave System
   ========================= */

.has-wave-bottom {
  position: relative;
}

.has-wave-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(50px, 7vw, 90px);
  transform: translateY(99%);
  z-index: 5;
  pointer-events: none;
}

.has-wave-bottom.\--white::after {
  background-color: var(--color-white);
}

.has-wave-bottom.\--blue::after {
  background-color: #0090C7;
}

.has-wave-bottom.\--dark::after {
  background-color: #004d6e;
}

.has-wave-bottom.\--shape-1::after {
  clip-path: polygon(
    0% 0%, 100% 0%,
    100% 44%, 94% 48%, 88% 56%, 82% 62%, 76% 64%,
    70% 60%, 64% 54%, 58% 48%, 52% 44%, 46% 42%,
    40% 44%, 34% 50%, 28% 56%, 22% 60%, 16% 58%,
    10% 52%, 4% 44%, 0% 40%
  );
}

.has-wave-bottom.\--shape-2::after {
  clip-path: polygon(
    0% 0%, 100% 0%,
    100% 54%, 93% 56%, 86% 46%, 79% 36%, 72% 36%,
    65% 44%, 58% 54%, 51% 58%, 44% 54%, 37% 44%,
    30% 36%, 23% 34%, 16% 40%, 9% 48%, 0% 52%
  );
}

.has-wave-bottom.\--shape-3::after {
  clip-path: polygon(
    0% 0%, 100% 0%,
    100% 48%, 93% 46%, 86% 54%, 79% 60%, 72% 58%,
    65% 52%, 58% 46%, 51% 42%, 44% 46%, 37% 56%,
    30% 64%, 23% 68%, 16% 62%, 9% 52%, 0% 44%
  );
}

.has-wave-top-clearance {
  padding-top: calc(var(--space-section-lg) + clamp(30px, 4vw, 60px));
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(50px, 7vw, 90px);
  background-color: #001220;
  transform: translateY(-99%);
  z-index: 5;
  pointer-events: none;
  clip-path: polygon(
    0% 52%, 7% 56%, 14% 58%, 21% 54%, 28% 46%,
    35% 40%, 42% 38%, 49% 42%, 56% 50%, 63% 56%,
    70% 54%, 77% 46%, 84% 40%, 91% 42%, 100% 50%,
    100% 100%, 0% 100%
  );
}


/* =========================
   18b. Stat Glass Cards
   ========================= */

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.stat-card .stat__number {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-green);
  line-height: 1;
  text-shadow: 0 0 30px rgba(141, 198, 63, 0.3);
}

.stat-card .stat__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0;
}


/* =========================
   18c. FAQ Active State (EarthSlice-inspired)
   ========================= */

.faq-item.open {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.06) 0%, rgba(141, 198, 63, 0.04) 100%);
  border-color: var(--color-blue-dark);
  border-left: 3px solid var(--color-blue-dark);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0, 174, 239, 0.08);
}

.faq-item.open .faq-question {
  color: var(--color-blue-dark);
}


/* =========================
   19. Scroll Reveal
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease),
              transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease),
              transform 0.5s var(--ease);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   19. Accessible Focus
   ========================= */

:focus-visible {
  outline: 3px solid var(--color-blue-light);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--gutter);
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  z-index: 999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-sm);
  color: var(--color-white);
}


/* =========================
   20. Green-Tinted Section
   ========================= */

.section--green-tint {
  background-color: #ffffff;
}




/* =========================
   22. Scroll Progress Bar
   ========================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), var(--color-blue-dark));
  z-index: 101;
  transition: none;
  pointer-events: none;
}


/* =========================
   23. Pull Quote Component
   ========================= */

.pullquote {
  position: relative;
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-xl);
  margin-block: var(--space-lg);
  border-left: 4px solid var(--color-green);
  background: rgba(141, 198, 63, 0.04);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -0.1em;
  left: 0.25em;
  font-size: 5rem;
  line-height: 1;
  color: rgba(141, 198, 63, 0.2);
  font-family: Georgia, serif;
  pointer-events: none;
}

.pullquote p {
  font-size: var(--text-lg);
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 0;
  max-width: 60ch;
}

.pullquote cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--color-green);
  letter-spacing: 0.04em;
}

.section--rich-dark .pullquote {
  background: rgba(141, 198, 63, 0.06);
  border-left-color: var(--color-green);
}

.section--rich-dark .pullquote::before {
  color: rgba(141, 198, 63, 0.15);
}

.section--rich-dark .pullquote p {
  color: rgba(255, 255, 255, 0.9);
}

.section--blue .pullquote {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--color-green);
}

.section--blue .pullquote::before {
  color: rgba(141, 198, 63, 0.2);
}

.section--blue .pullquote p {
  color: rgba(255, 255, 255, 0.92);
}


/* =========================
   24. Responsive — Tablet
   ========================= */

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--color-white);
    padding: var(--space-lg) var(--gutter);
    gap: var(--space-md);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__links a {
    font-size: var(--text-base);
  }

  .hero {
    min-height: 70vh;
  }

  .hero--short {
    min-height: 40vh;
  }

  .hero--medium {
    min-height: 50vh;
  }

  .card-grid,
  .card-grid--2x2 {
    grid-template-columns: 1fr;
  }

  .cta-list {
    grid-template-columns: 1fr;
  }

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

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

  .content-grid,
  .content-grid--wide-left {
    grid-template-columns: 1fr;
  }

  .content-grid--reversed {
    direction: ltr;
  }

  .image-break img {
    height: 35vh;
  }

  .stats-row {
    gap: var(--space-lg);
  }

  .section {
    padding-block: var(--space-section-sm);
  }

  .parallax-break__bg {
    background-attachment: scroll;
  }

  .pullquote {
    padding-left: var(--space-lg);
  }

  .pullquote::before {
    font-size: 3.5rem;
    left: 0.15em;
  }

  .has-wave-top-clearance {
    padding-top: calc(var(--space-section-sm) + clamp(25px, 4vw, 45px));
  }
}


/* =========================
   25. Responsive — Mobile
   ========================= */

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .video-container {
    margin-top: var(--space-md);
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  .footer__inner {
    gap: var(--space-md);
  }

  .footer__nav {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer__contact {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step::after {
    display: none;
  }
}


/* =========================
   22. Print
   ========================= */

@media print {
  .site-header,
  .nav__toggle,
  .video-placeholder,
  .btn {
    display: none;
  }

  .has-wave-bottom::after,
  .site-footer::before {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    color: black;
    background: none;
  }

  .hero h1 {
    color: black;
    text-shadow: none;
  }
}
