:root {
  --bg-primary: #FFFFFF;
  --bg-hero: #FFF8F0;
  --bg-rose: #FFF0F5;
  --bg-sky: #F0FAFF;
  --text-heading: #1A1A2E;
  --text-body: #3D3D5C;
  --text-muted: #8888AA;
  --accent-rose: #FF6B9D;
  --accent-tangerine: #FF9F43;
  --accent-mint: #00D2A0;
  --accent-sky: #4ECDC4;
  --dark-violet: #2C1654;
  --skeleton-light: #FFF0F5;
  --skeleton-deep: #FFE0EA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.72;
  letter-spacing: 0.005em;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

/* ========== SKELETON OVERLAY ========== */
.skeleton-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-hero);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 600ms ease-out;
}

.skeleton-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.skeleton-overlay.hidden {
  display: none;
}

.skeleton-hero {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skeleton-leaf {
  width: 120px;
  height: auto;
  animation: skeletonPulse 1.8s ease-in-out infinite;
}

.skeleton-vine {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 40%;
  height: 3px;
  background: var(--skeleton-deep);
  border-radius: 2px;
  animation: skeletonPulse 1.8s ease-in-out infinite;
}

.skeleton-vine-2 {
  left: 15%;
  bottom: 25%;
  width: 25%;
  animation-delay: 0.3s;
}

@keyframes skeletonPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ========== NAV PILL ========== */
.nav-pill {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 107, 157, 0.3);
  border-radius: 50px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 300ms ease, backdrop-filter 300ms ease;
}

.nav-pill:hover {
  border-color: rgba(255, 107, 157, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 1px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========== NAV OVERLAY ========== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--dark-violet);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease;
}

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

.nav-menu {
  list-style: none;
  text-align: left;
}

.nav-menu li {
  margin-bottom: 24px;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color 300ms ease;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.nav-link:hover {
  color: var(--accent-rose);
}

.nav-fish {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--bg-hero);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8vh 6vw;
  transition: opacity 600ms ease, transform 600ms ease;
}

.hero-content.faded {
  opacity: 0;
  transform: translateY(-20px);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 9rem);
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.005em;
}

.hero-botanical {
  position: absolute;
  top: 8%;
  right: 8%;
  z-index: 1;
}

.hero-monstera {
  width: clamp(180px, 30vw, 360px);
  height: auto;
  animation: gentleFloat 12s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
  0% {
    transform: rotate(-3deg) translateY(-8px);
  }
  100% {
    transform: rotate(3deg) translateY(8px);
  }
}

/* ========== SECTIONS ========== */
.section {
  position: relative;
  padding: 120px 6vw;
  overflow: hidden;
}

.section--full {
  background: var(--bg-primary);
}

.section--inset {
  margin: 0 5%;
  border-radius: 16px;
}

.section--rose {
  background: var(--bg-rose);
}

.section--sky {
  background: var(--bg-sky);
}

.section-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  cursor: default;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-mint);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease-out;
}

.section-heading:hover::after {
  transform: scaleX(1);
}

.section-body {
  margin-bottom: 20px;
  color: var(--text-body);
}

.section-body em {
  font-style: italic;
  color: var(--text-heading);
  font-weight: 500;
}

/* ========== REVEAL ANIMATIONS ========== */
.section[data-reveal='section'] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.section[data-reveal='section'].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== DOT DIVIDER ========== */
.dot-divider {
  position: relative;
  width: 100%;
  height: 48px;
  overflow: hidden;
}

.dot-divider canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ========== FISH LIST ========== */
.fish-list {
  list-style: none;
  padding: 0;
}

.fish-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.fish-bullet {
  width: 28px;
  height: auto;
  flex-shrink: 0;
  margin-top: 4px;
}

.fish-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fish-list li strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.fish-list li span {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* ========== FISH SWIM ========== */
.fish-swim-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.swimming-fish {
  position: absolute;
  top: 50%;
  left: -60px;
  animation: fishSwim 8s ease-in-out forwards;
}

@keyframes fishSwim {
  0% { transform: translate(0, 0); opacity: 0.6; }
  25% { transform: translate(25vw, -15px); opacity: 0.8; }
  50% { transform: translate(50vw, 0); opacity: 0.7; }
  75% { transform: translate(75vw, 15px); opacity: 0.8; }
  100% { transform: translate(105vw, 0); opacity: 0; }
}

/* ========== SECTION BOTANICAL ========== */
.section-botanical {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.section-botanical svg {
  width: 200px;
  height: auto;
}

/* ========== CONTACT ========== */
.contact-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--accent-rose);
  text-decoration: none;
  position: relative;
  transition: color 300ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath d='M4 8 C7 3, 14 2, 18 8 C14 14, 7 13, 4 8Z' fill='none' stroke='%23FF6B9D' stroke-width='1.2'/%3E%3Cpath d='M1 8 L4 5.5 L4 10.5Z' fill='none' stroke='%23FF6B9D' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: width 300ms ease-out, height 300ms ease-out;
  transform-origin: left center;
}

.contact-link:hover::after {
  width: 24px;
  height: 16px;
}

.contact-link:hover {
  color: var(--accent-tangerine);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-violet);
  padding: 80px 6vw;
  text-align: center;
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-botanical {
  display: flex;
  justify-content: center;
}

.footer-botanical svg {
  width: 120px;
  height: auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-botanical {
    top: 5%;
    right: 4%;
  }

  .hero-monstera {
    width: 160px;
  }

  .hero-content {
    padding: 6vh 5vw;
  }

  .section {
    padding: 80px 5vw;
  }

  .section--inset {
    margin: 0 3%;
    border-radius: 12px;
  }

  .section-botanical {
    display: none;
  }

  .nav-link {
    font-size: 2rem;
  }

  .nav-fish {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
}