/* =============================================
   FRASER RIVER STUDIO — PAPERCRAFT STYLESHEET
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  /* Sky palette */
  --sky-top: #a8d8f0;
  --sky-bottom: #d4eef9;
  --cloud-white: #f0ece4;
  --cloud-shadow: #d6cfc3;

  /* Mountain/Forest palette */
  --forest-dark: #2d5a27;
  --forest-mid: #3a7d32;
  --forest-light: #4a9e3f;
  --mountain-peak: #5a8a50;

  /* Water palette */
  --water-deep: #054055;
  --water-mid: #07485e;
  --water-light: #0a5e7a;
  --water-surface: #1a8aaa;

  /* Riverbed palette */
  --riverbed-dark: #3a2410;
  --riverbed-mid: #5c3d1e;
  --riverbed-light: #7a5a3a;
  --riverbed-sand: #a08060;
  --pebble-1: #8a7a6a;
  --pebble-2: #6a6050;
  --pebble-3: #9a8a7a;

  /* Paper / Cardboard */
  --paper-white: #f5f0e6;
  --paper-cream: #ede5d5;
  --cardboard: #c4a882;
  --cardboard-dark: #a08060;

  /* Text */
  --text-dark: #2a2318;
  --text-light: #f5f0e6;

  /* Hero */
  --hero-bg: #1a1a1a;

  /* Misc  */
  --nav-height: 64px;
  --nav-accent: #122E43;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--hero-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Cardboard texture overlay mixin via pseudo-element */
.paper-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.015) 2px,
      rgba(0, 0, 0, 0.015) 4px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.01) 3px,
      rgba(0, 0, 0, 0.01) 6px);
  pointer-events: none;
  z-index: 1;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: block;
  flex-shrink: 0;
}

.nav-logo-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--nav-accent);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
}

.nav-links a:not(.nav-cta):hover {
  color: #2563eb;
}

.nav-links a.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--nav-accent);
  color: #ffffff;
  border-radius: 2px;
  transition: opacity var(--transition-smooth);
}

.nav-links a.nav-cta:hover {
  opacity: 0.9;
  color: #ffffff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--nav-accent);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Slide-out Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid #e5e7eb;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--nav-accent);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-smooth);
}

.mobile-menu-close:hover {
  color: #2563eb;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  width: 100%;
  padding: 0 1.5rem;
}

.mobile-menu-links li {
  border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-links a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--nav-accent);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  padding: 1rem 0;
  transition: color var(--transition-smooth);
}

.mobile-menu-links a:not(.nav-cta):hover {
  color: #2563eb;
}

.mobile-menu-links a.nav-cta {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--nav-accent);
  color: #ffffff;
  border-radius: 2px;
  text-align: center;
  border: none;
}

.mobile-menu-links a.nav-cta:hover {
  opacity: 0.9;
  color: #ffffff;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-bg);
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      transparent 90%,
      rgba(26, 26, 26, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-word {
  display: block;
  font-family: 'Bungee', cursive;
  font-weight: 400;
  font-size: clamp(3.5rem, 12vw, 9rem);
  color: var(--paper-white);
  line-height: 1;
  letter-spacing: 4px;
  text-transform: capitalize;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInWord 0.8s ease forwards;
  animation-delay: var(--delay);
}

@keyframes fadeInWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   SECTIONS — SHARED
   ============================================= */
.section {
  position: relative;
  overflow: hidden;
}

.section-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-title {
  font-family: 'Bungee', cursive;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  text-transform: capitalize;
}

.section-title-light {
  color: var(--text-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: rgba(42, 35, 24, 0.7);
}

.section-subtitle-light {
  color: rgba(245, 240, 230, 0.7);
}

/* Scroll animation */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SERVICES — THE SKY
   ============================================= */
.services-section {
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bottom) 70%, var(--sky-bottom) 100%);
  padding-bottom: 0;
  position: relative;
}

/* Sky background decorative layer */
.sky-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Clouds */
.cloud {
  position: absolute;
  background: var(--cloud-white);
  border-radius: 50%;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08),
    inset 0 -3px 6px var(--cloud-shadow);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: var(--cloud-white);
  border-radius: 50%;
  box-shadow: inset 0 -3px 6px var(--cloud-shadow);
}

.cloud-1 {
  width: 180px;
  height: 60px;
  top: 15%;
  left: 10%;
  animation: floatCloud 30s linear infinite;
}

.cloud-1::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 30px;
}

.cloud-1::after {
  width: 100px;
  height: 70px;
  top: -30px;
  left: 70px;
}

.cloud-2 {
  width: 220px;
  height: 70px;
  top: 8%;
  right: 15%;
  animation: floatCloud 40s linear infinite reverse;
}

.cloud-2::before {
  width: 100px;
  height: 90px;
  top: -50px;
  left: 40px;
}

.cloud-2::after {
  width: 120px;
  height: 80px;
  top: -35px;
  left: 90px;
}

.cloud-3 {
  width: 140px;
  height: 50px;
  top: 25%;
  left: 55%;
  animation: floatCloud 35s linear infinite;
  opacity: 0.7;
}

.cloud-3::before {
  width: 70px;
  height: 60px;
  top: -35px;
  left: 20px;
}

.cloud-3::after {
  width: 80px;
  height: 55px;
  top: -25px;
  left: 55px;
}

.cloud-4 {
  width: 160px;
  height: 55px;
  top: 35%;
  left: 75%;
  animation: floatCloud 45s linear infinite;
  opacity: 0.5;
}

.cloud-4::before {
  width: 70px;
  height: 70px;
  top: -40px;
  left: 25px;
}

.cloud-4::after {
  width: 90px;
  height: 60px;
  top: -28px;
  left: 65px;
}

@keyframes floatCloud {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(80px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Birds */
.bird {
  position: absolute;
  width: 30px;
  height: 10px;
  animation: flyBird 8s ease-in-out infinite;
}

.bird-wing {
  position: absolute;
  top: 0;
  width: 15px;
  height: 6px;
  background: #4a4035;
  border-radius: 50% 50% 0 0;
}

.bird-wing-left {
  left: 0;
  transform-origin: right bottom;
  animation: flapLeft 0.6s ease-in-out infinite alternate;
  border-radius: 60% 0 0 0;
}

.bird-wing-right {
  right: 0;
  transform-origin: left bottom;
  animation: flapRight 0.6s ease-in-out infinite alternate;
  border-radius: 0 60% 0 0;
}

@keyframes flapLeft {
  from {
    transform: rotate(-20deg);
  }

  to {
    transform: rotate(20deg);
  }
}

@keyframes flapRight {
  from {
    transform: rotate(20deg);
  }

  to {
    transform: rotate(-20deg);
  }
}

@keyframes flyBird {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(30px, -15px);
  }

  50% {
    transform: translate(60px, 5px);
  }

  75% {
    transform: translate(30px, -10px);
  }
}

.bird-1 {
  top: 12%;
  left: 25%;
  animation-delay: 0s;
}

.bird-2 {
  top: 18%;
  left: 40%;
  animation-delay: -2s;
  transform: scale(0.7);
}

.bird-3 {
  top: 10%;
  left: 60%;
  animation-delay: -4s;
  transform: scale(0.85);
}

.bird-4 {
  top: 22%;
  left: 15%;
  animation-delay: -1s;
  transform: scale(0.6);
}

.bird-5 {
  top: 30%;
  left: 70%;
  animation-delay: -3s;
  transform: scale(0.75);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--paper-cream);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  text-align: center;
  position: relative;
  box-shadow:
    0 4px 0 var(--cardboard),
    0 8px 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Paper fold effect on corner */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(225deg, var(--sky-bottom) 50%, var(--cardboard-dark) 50%, var(--cardboard) 52%, var(--paper-cream) 52%);
  border-radius: 0 6px 0 0;
}

.service-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow:
    0 8px 0 var(--cardboard),
    0 16px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--forest-mid);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: 'Bungee', cursive;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(42, 35, 24, 0.7);
  line-height: 1.6;
}

/* Sky ↔ Mountain Transition */
.transition-sky-to-mountain {
  position: relative;
  z-index: 5;
  margin-top: -2px;
  line-height: 0;
}

.transition-sky-to-mountain svg {
  display: block;
  width: 100%;
  height: auto;
}

/* =============================================
   PARTNERS — THE MOUNTAINS
   ============================================= */
.partners-section {
  background: linear-gradient(180deg, var(--forest-light) 0%, var(--forest-mid) 40%, var(--forest-dark) 100%);
  padding-bottom: 0;
  position: relative;
}

/* Forest background */
.forest-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Triangular Trees */
.tree {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
}

.tree-bg {
  opacity: 0.25;
}

.tree-fg {
  opacity: 0.4;
}

.tree::before {
  content: '';
  position: absolute;
}

/* Stacked triangles */
.tree::after {
  content: '';
  position: absolute;
}

.tree-1 {
  left: 2%;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 260px solid #1a4a15;
}

.tree-2 {
  left: 8%;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 220px solid #1e5218;
}

.tree-3 {
  left: 15%;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 320px solid #1a4a15;
}

.tree-4 {
  right: 5%;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-bottom: 240px solid #1e5218;
}

.tree-5 {
  right: 12%;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-bottom: 300px solid #1a4a15;
}

.tree-6 {
  right: 20%;
  border-left: 32px solid transparent;
  border-right: 32px solid transparent;
  border-bottom: 200px solid #1e5218;
}

.tree-7 {
  left: 40%;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 340px solid #164212;
}

.tree-8 {
  left: 55%;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-bottom: 250px solid #1a4a15;
}

.tree-9 {
  left: -1%;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 400px solid #0f3a0c;
}

.tree-10 {
  right: -1%;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 440px solid #0f3a0c;
}

/* Additional tall trees — positioned high behind the heading */
.tree-11 {
  left: 3%;
  bottom: 40%;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 400px solid #1a4a15;
}

.tree-12 {
  left: 12%;
  bottom: 45%;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 450px solid #164212;
}

.tree-13 {
  left: 25%;
  bottom: 35%;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-bottom: 360px solid #1e5218;
}

.tree-14 {
  left: 35%;
  bottom: 50%;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-bottom: 420px solid #1a4a15;
}

.tree-15 {
  left: 50%;
  bottom: 40%;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-bottom: 380px solid #164212;
}

.tree-16 {
  left: 62%;
  bottom: 45%;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 480px solid #0f3a0c;
}

.tree-17 {
  right: 18%;
  bottom: 35%;
  border-left: 44px solid transparent;
  border-right: 44px solid transparent;
  border-bottom: 400px solid #0f3a0c;
}

.tree-18 {
  right: 5%;
  bottom: 42%;
  border-left: 48px solid transparent;
  border-right: 48px solid transparent;
  border-bottom: 440px solid #0f3a0c;
}

/* Partner Cards */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.partner-card {
  background: var(--paper-cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 4px 0 var(--cardboard),
    0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow:
    0 10px 0 var(--cardboard),
    0 20px 40px rgba(0, 0, 0, 0.25);
}

.partner-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8e0d0;
}

.partner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.partner-card:hover .partner-img {
  transform: scale(1.05);
}

.partner-info {
  padding: 1.5rem;
}

.partner-info h3 {
  font-family: 'Bungee', cursive;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.partner-info p {
  font-size: 0.9rem;
  color: rgba(42, 35, 24, 0.65);
}

/* Mountain ↔ Water Transition */
.transition-mountain-to-water {
  position: relative;
  z-index: 5;
  margin-top: -2px;
  line-height: 0;
}

.transition-mountain-to-water svg {
  display: block;
  width: 100%;
  height: auto;
}

/* =============================================
   CONTACT — UNDERWATER
   ============================================= */
.contact-section {
  background: linear-gradient(180deg, var(--water-light) 0%, var(--water-mid) 40%, var(--water-deep) 80%, var(--water-deep) 100%);
  padding-bottom: 0;
  position: relative;
  min-height: 80vh;
}

/* Underwater decorative layer */
.underwater-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: riseBubble linear infinite;
}

@keyframes riseBubble {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-600px) translateX(30px);
    opacity: 0;
  }
}

.bubble-1 {
  width: 12px;
  height: 12px;
  bottom: 10%;
  left: 15%;
  animation-duration: 8s;
  animation-delay: 0s;
}

.bubble-2 {
  width: 8px;
  height: 8px;
  bottom: 5%;
  left: 30%;
  animation-duration: 10s;
  animation-delay: -2s;
}

.bubble-3 {
  width: 16px;
  height: 16px;
  bottom: 15%;
  left: 50%;
  animation-duration: 7s;
  animation-delay: -4s;
}

.bubble-4 {
  width: 6px;
  height: 6px;
  bottom: 8%;
  left: 65%;
  animation-duration: 9s;
  animation-delay: -1s;
}

.bubble-5 {
  width: 10px;
  height: 10px;
  bottom: 20%;
  left: 80%;
  animation-duration: 11s;
  animation-delay: -3s;
}

.bubble-6 {
  width: 14px;
  height: 14px;
  bottom: 12%;
  left: 40%;
  animation-duration: 8.5s;
  animation-delay: -5s;
}

.bubble-7 {
  width: 7px;
  height: 7px;
  bottom: 18%;
  left: 25%;
  animation-duration: 12s;
  animation-delay: -6s;
}

.bubble-8 {
  width: 11px;
  height: 11px;
  bottom: 6%;
  left: 70%;
  animation-duration: 9.5s;
  animation-delay: -7s;
}

/* Seaweed */
.seaweed {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 120px;
  background: linear-gradient(to top, #1a5a30, #2a8a45);
  border-radius: 50% 50% 0 0;
  transform-origin: bottom center;
  animation: swaySeaweed 4s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes swaySeaweed {

  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

.seaweed-1 {
  left: 5%;
  height: 100px;
  animation-delay: 0s;
}

.seaweed-2 {
  left: 10%;
  height: 140px;
  animation-delay: -1s;
}

.seaweed-3 {
  right: 8%;
  height: 110px;
  animation-delay: -2s;
}

.seaweed-4 {
  right: 15%;
  height: 130px;
  animation-delay: -0.5s;
}

/* Fish */
.fish {
  position: absolute;
  animation: swimFish linear infinite;
}

.fish-body {
  width: 30px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 40% 60% 60% 40%;
  position: relative;
}

.fish-body::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 3px;
  right: 7px;
}

.fish-tail {
  position: absolute;
  left: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 12px solid rgba(255, 255, 255, 0.2);
}

@keyframes swimFish {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(calc(100vw + 100px));
  }
}

.fish-1 {
  top: 30%;
  animation-duration: 15s;
  animation-delay: 0s;
}

.fish-2 {
  top: 55%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.fish-3 {
  top: 70%;
  animation-duration: 18s;
  animation-delay: -10s;
}

/* Sturgeon */
.sturgeon {
  position: absolute;
  bottom: 20%;
  animation: swimSturgeon 25s linear infinite;
}

.sturgeon-body {
  width: 80px;
  height: 22px;
  background: rgba(200, 190, 170, 0.35);
  border-radius: 40% 60% 60% 40%;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.sturgeon-body::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 5px;
  right: 12px;
}

/* Whiskers */
.sturgeon-body::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 5px;
  width: 20px;
  height: 1px;
  background: rgba(200, 190, 170, 0.4);
  box-shadow: 0 4px 0 rgba(200, 190, 170, 0.3);
}

.sturgeon-tail {
  position: absolute;
  left: -16px;
  top: -2px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 20px solid rgba(200, 190, 170, 0.3);
}

.sturgeon-fin {
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid rgba(200, 190, 170, 0.3);
}

@keyframes swimSturgeon {
  0% {
    left: -120px;
  }

  100% {
    left: calc(100% + 120px);
  }
}

/* Light rays */
.light-ray {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  transform: skewX(-15deg);
  pointer-events: none;
}

.light-ray-1 {
  left: 20%;
}

.light-ray-2 {
  left: 50%;
  width: 40px;
  opacity: 0.6;
}

.light-ray-3 {
  left: 75%;
  width: 50px;
  opacity: 0.5;
  transform: skewX(-10deg);
}

/* Contact Form */
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: rgba(245, 240, 230, 0.12);
  border: 1px solid rgba(245, 240, 230, 0.2);
  border-radius: 6px;
  color: var(--text-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-smooth);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 240, 230, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 240, 230, 0.5);
  background: rgba(245, 240, 230, 0.18);
  box-shadow: 0 0 0 3px rgba(245, 240, 230, 0.08);
}

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

.btn-submit {
  padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--paper-cream);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow:
    0 4px 0 var(--cardboard),
    0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow:
    0 7px 0 var(--cardboard),
    0 12px 24px rgba(0, 0, 0, 0.25);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow:
    0 2px 0 var(--cardboard),
    0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Water ↔ Riverbed Transition */
.transition-water-to-riverbed {
  position: relative;
  z-index: 5;
  margin-top: -2px;
  margin-bottom: -2px;
  line-height: 0;
}

.transition-water-to-riverbed svg {
  display: block;
  width: 100%;
  height: auto;
}

/* =============================================
   FOOTER — THE RIVERBED
   ============================================= */
.footer-section {
  position: relative;
  background: linear-gradient(180deg, var(--riverbed-mid) 0%, var(--riverbed-dark) 100%);
  color: var(--text-light);
  overflow: hidden;
}

.riverbed-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Pebbles — CSS ovals */
.pebble {
  position: absolute;
  border-radius: 50%;
  bottom: 0;
  opacity: 0.3;
}

.pebble-1 {
  width: 40px;
  height: 25px;
  background: var(--pebble-1);
  left: 10%;
  bottom: 10px;
  transform: rotate(15deg);
}

.pebble-2 {
  width: 30px;
  height: 18px;
  background: var(--pebble-2);
  left: 25%;
  bottom: 5px;
  transform: rotate(-10deg);
}

.pebble-3 {
  width: 50px;
  height: 30px;
  background: var(--pebble-3);
  left: 45%;
  bottom: 8px;
  transform: rotate(25deg);
}

.pebble-4 {
  width: 25px;
  height: 16px;
  background: var(--pebble-1);
  left: 60%;
  bottom: 12px;
  transform: rotate(-20deg);
}

.pebble-5 {
  width: 35px;
  height: 22px;
  background: var(--pebble-2);
  left: 75%;
  bottom: 6px;
  transform: rotate(10deg);
}

.pebble-6 {
  width: 45px;
  height: 28px;
  background: var(--pebble-3);
  right: 8%;
  bottom: 15px;
  transform: rotate(-5deg);
}

.pebble-7 {
  width: 20px;
  height: 14px;
  background: var(--pebble-1);
  left: 35%;
  bottom: 3px;
  transform: rotate(30deg);
}

/* Crab */
.crab {
  position: absolute;
  bottom: 20px;
  right: 12%;
  width: 50px;
  height: 35px;
  animation: crabWalk 12s ease-in-out infinite;
}

@keyframes crabWalk {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(30px);
  }

  50% {
    transform: translateX(-20px);
  }

  75% {
    transform: translateX(15px);
  }
}

.crab-body {
  position: absolute;
  bottom: 8px;
  left: 10px;
  width: 30px;
  height: 18px;
  background: #c44a2a;
  border-radius: 50% 50% 40% 40%;
  box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

.crab-claw {
  position: absolute;
  bottom: 14px;
  width: 14px;
  height: 10px;
  background: #d45a3a;
  border-radius: 50%;
}

.crab-claw-left {
  left: 0;
  animation: clawSnap 2s ease-in-out infinite;
}

.crab-claw-right {
  right: 0;
  animation: clawSnap 2s ease-in-out infinite 1s;
}

@keyframes clawSnap {

  0%,
  80%,
  100% {
    transform: scale(1);
  }

  90% {
    transform: scale(1.15) rotate(-10deg);
  }
}

.crab-leg {
  position: absolute;
  bottom: 2px;
  width: 8px;
  height: 2px;
  background: #b04020;
  border-radius: 2px;
}

.crab-leg-1 {
  left: 8px;
  transform: rotate(-30deg);
}

.crab-leg-2 {
  left: 14px;
  transform: rotate(-15deg);
}

.crab-leg-3 {
  right: 8px;
  transform: rotate(30deg);
}

.crab-leg-4 {
  right: 14px;
  transform: rotate(15deg);
}

.crab-eye {
  position: absolute;
  bottom: 26px;
  width: 4px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}

.crab-eye-left {
  left: 17px;
}

.crab-eye-right {
  left: 29px;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}

.footer-col h4 {
  font-family: 'Bungee', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--paper-cream);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.5);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 240, 230, 0.08);
  color: rgba(245, 240, 230, 0.6);
  transition: all var(--transition-smooth);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: rgba(245, 240, 230, 0.15);
  color: var(--paper-white);
  transform: translateY(-3px);
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.5);
  transition: color var(--transition-smooth);
}

.legal-links a:hover {
  color: var(--paper-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.35);
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {

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

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .partners-grid .partner-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .navbar {
    padding: 0 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-word {
    letter-spacing: 2px;
  }

  .section-content {
    padding: 4rem 1.2rem;
  }

  .services-grid,
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid .service-card:last-child,
  .partners-grid .partner-card:last-child {
    max-width: none;
    grid-column: auto;
  }

  .contact-form {
    max-width: 100%;
  }

  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .legal-links {
    align-items: center;
  }

  /* Hide some decorative elements on mobile for performance */
  .cloud-3,
  .cloud-4,
  .bird-4,
  .bird-5,
  .tree-6,
  .tree-7,
  .tree-8,
  .tree-11,
  .tree-12,
  .tree-13,
  .tree-14,
  .tree-15,
  .tree-16,
  .tree-17,
  .tree-18 {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-logo-img {
    width: 36px;
    height: 36px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .partner-info {
    padding: 1.2rem;
  }
}