/* ==========================================================
   CLEAN & GREEN — STYLES
   Light theme, refined editorial feel with bold accents
   ========================================================== */

:root {
  --blue: #2eaadc;
  --blue-deep: #1a7fb0;
  --blue-ink: #0d4d6e;
  --green: #4caf50;
  --green-deep: #2d8a3e;
  --green-ink: #1b5e20;
  --bg: #fafaf7;
  --bg-cream: #f4f1e8;
  --ink: #1a2b1f;
  --ink-soft: #4a5a4f;
  --line: rgba(26, 43, 31, 0.08);
  --line-strong: rgba(26, 43, 31, 0.16);
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(13, 77, 110, 0.08);
  --shadow-md: 0 10px 40px rgba(13, 77, 110, 0.12);
  --shadow-lg: 0 30px 80px rgba(13, 77, 110, 0.18);
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 48px;
  border-bottom: 1px solid var(--line);
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.nav.scrolled .nav-logo img {
  height: 40px;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  transition: color 0.3s var(--ease);
}

.nav.scrolled .nav-links a {
  color: var(--ink);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--green); }

.nav.scrolled .nav-links a:hover { color: var(--green-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--blue-deep);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-img--before { z-index: 1; }

.hero-img--after {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  animation: heroSweep 9s var(--ease) infinite;
}

@keyframes heroSweep {
  0%, 18% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  45%, 68% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  82%, 100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}

.sweep-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  left: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(76, 175, 80, 0.4) 45%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(46, 170, 220, 0.5) 55%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent 100%
  );
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: sweepGlow 9s var(--ease) infinite;
  pointer-events: none;
}

@keyframes sweepGlow {
  0%, 18% { left: -220px; opacity: 0; }
  20% { opacity: 1; }
  45% { left: calc(100% - 0px); opacity: 1; }
  48%, 100% { left: 100%; opacity: 0; }
}

.sweep-droplets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.sweep-droplets span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(174, 220, 244, 0.6));
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 4px rgba(46, 170, 220, 0.6);
  opacity: 0;
  animation: dropletFly 9s var(--ease) infinite;
}

.sweep-droplets span:nth-child(1) { top: 12%; animation-delay: 0.2s; }
.sweep-droplets span:nth-child(2) { top: 22%; animation-delay: 0.4s; }
.sweep-droplets span:nth-child(3) { top: 34%; animation-delay: 0.1s; }
.sweep-droplets span:nth-child(4) { top: 45%; animation-delay: 0.5s; }
.sweep-droplets span:nth-child(5) { top: 56%; animation-delay: 0.3s; }
.sweep-droplets span:nth-child(6) { top: 67%; animation-delay: 0.6s; }
.sweep-droplets span:nth-child(7) { top: 78%; animation-delay: 0.2s; }
.sweep-droplets span:nth-child(8) { top: 88%; animation-delay: 0.45s; }
.sweep-droplets span:nth-child(9) { top: 18%; animation-delay: 0.55s; }
.sweep-droplets span:nth-child(10) { top: 72%; animation-delay: 0.35s; }

@keyframes dropletFly {
  0%, 18% { left: -10px; opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 1; transform: translateY(0) scale(1); }
  45% { left: calc(100% + 10px); opacity: 0.8; transform: translateY(40px) scale(0.7); }
  48%, 100% { left: calc(100% + 30px); opacity: 0; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.4) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 28px;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.3);
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #6ec9e8 0%, #a5d96a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 22px);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  animation: fadeUp 1s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.8s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(45, 138, 62, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(45, 138, 62, 0.55);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }

.hero-indicator {
  position: absolute;
  bottom: 100px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  z-index: 10;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s var(--ease);
}

.indicator-dot.active {
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.indicator-label {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 50px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
  animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--green-deep) 100%);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
}

.marquee-track .dot { font-size: 14px; opacity: 0.7; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}

/* ============ SERVICES ============ */
.services {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

.svc-card {
  position: relative;
  padding: 56px 48px;
  border-radius: 32px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  border: 1px solid var(--line);
}

.svc-card--featured {
  box-shadow: 0 10px 40px rgba(46, 170, 220, 0.18);
}

.svc-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 6px 14px;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

.svc-card--blue {
  background: linear-gradient(135deg, #e8f4fa 0%, #d4ebf5 100%);
  color: var(--blue-ink);
}

.svc-card--green {
  background: linear-gradient(135deg, #ebf5e6 0%, #d8ecd0 100%);
  color: var(--green-ink);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.svc-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.6) 0%, transparent 60%);
  pointer-events: none;
  transition: transform 0.6s var(--ease);
}

.svc-card:hover::after {
  transform: translate(-20%, -10%) scale(1.2);
}

.svc-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.svc-card--blue .svc-icon { color: var(--blue-deep); }
.svc-card--green .svc-icon { color: var(--green-deep); }

.svc-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.svc-card p {
  font-size: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.svc-list {
  list-style: none;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.svc-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
  opacity: 0.7;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: currentColor;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 1;
  transition: gap 0.3s var(--ease);
}

.svc-link:hover { gap: 14px; }

/* ============ SHOWCASE ============ */
.showcase {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream) 100%);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 120px;
}

.ba-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== LOOPED BEFORE/AFTER TRANSITION ===== */
/* Each card loops on its own 8s cycle with a delay so they don't all change at once */
.ba-loop {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ba-img--before { z-index: 1; }

.ba-img--after {
  z-index: 2;
  clip-path: inset(0 0 100% 0);
  animation: baReveal 8s var(--ease) infinite;
}

/* Stagger each card's animation */
.ba-loop[data-delay="0"] .ba-img--after { animation-delay: 0s; }
.ba-loop[data-delay="1"] .ba-img--after { animation-delay: 2s; }
.ba-loop[data-delay="2"] .ba-img--after { animation-delay: 4s; }
.ba-loop[data-delay="3"] .ba-img--after { animation-delay: 6s; }

/* Top-to-bottom wipe reveal — different from the hero's horizontal sweep */
@keyframes baReveal {
  0%, 15% {
    clip-path: inset(0 0 100% 0);
  }
  40%, 70% {
    clip-path: inset(0 0 0 0);
  }
  85%, 100% {
    clip-path: inset(0 0 100% 0);
  }
}

/* Shine effect that travels with the reveal */
.ba-shine {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  top: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.1) 30%,
    rgba(165, 217, 106, 0.4) 45%,
    rgba(255,255,255,0.85) 50%,
    rgba(110, 201, 232, 0.4) 55%,
    rgba(255,255,255,0.1) 70%,
    transparent 100%
  );
  filter: blur(3px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: baShine 8s var(--ease) infinite;
}

.ba-loop[data-delay="0"] .ba-shine { animation-delay: 0s; }
.ba-loop[data-delay="1"] .ba-shine { animation-delay: 2s; }
.ba-loop[data-delay="2"] .ba-shine { animation-delay: 4s; }
.ba-loop[data-delay="3"] .ba-shine { animation-delay: 6s; }

@keyframes baShine {
  0%, 15% { top: -80px; opacity: 0; }
  18% { opacity: 1; }
  40% { top: 100%; opacity: 1; }
  42%, 70% { opacity: 0; top: 100%; }
  85%, 100% { opacity: 0; top: -80px; }
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: labelToggle 8s var(--ease) infinite;
}

.ba-label--before {
  left: 16px;
}

.ba-label--after {
  right: 16px;
  background: rgba(45, 138, 62, 0.85);
}

@keyframes labelToggle {
  0%, 14% { opacity: 0; }
  /* The before label is visible while no reveal has happened */
}

.ba-label--before {
  animation: beforeLabel 8s var(--ease) infinite;
}

.ba-label--after {
  animation: afterLabel 8s var(--ease) infinite;
}

@keyframes beforeLabel {
  0%, 12% { opacity: 1; }
  18%, 80% { opacity: 0; }
  87%, 100% { opacity: 1; }
}

@keyframes afterLabel {
  0%, 35% { opacity: 0; }
  42%, 78% { opacity: 1; }
  85%, 100% { opacity: 0; }
}

.ba-loop[data-delay="0"] .ba-label--before,
.ba-loop[data-delay="0"] .ba-label--after { animation-delay: 0s; }
.ba-loop[data-delay="1"] .ba-label--before,
.ba-loop[data-delay="1"] .ba-label--after { animation-delay: 2s; }
.ba-loop[data-delay="2"] .ba-label--before,
.ba-loop[data-delay="2"] .ba-label--after { animation-delay: 4s; }
.ba-loop[data-delay="3"] .ba-label--before,
.ba-loop[data-delay="3"] .ba-label--after { animation-delay: 6s; }

.ba-caption {
  padding: 24px 28px 28px;
}

.ba-caption h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--ink);
}

.ba-caption p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ============ GALLERY ============ */
.gallery-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery-item:hover::after { opacity: 1; }

/* ============ ABOUT ============ */
.about {
  padding: 140px 0;
  background: var(--bg-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title { margin-bottom: 24px; }

.about-text p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line-strong);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.4;
}

.about-quote {
  position: relative;
  padding: 56px 44px;
  background: linear-gradient(135deg, var(--white) 0%, #f0fbf2 100%);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.7;
  color: var(--green);
  opacity: 0.25;
  margin-bottom: -20px;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.quote-author {
  font-size: 14px;
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ INSTAGRAM ============ */
.instagram {
  padding: 140px 0;
  background: var(--bg);
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ig-handle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
}

.ig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.ig-post {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #262626;
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.ig-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  padding: 2px;
  flex-shrink: 0;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  padding: 4px;
}

.ig-user {
  flex: 1;
  min-width: 0;
}

.ig-username {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.ig-location {
  font-size: 12px;
  color: #262626;
  line-height: 1.2;
}

.ig-more {
  background: none;
  border: none;
  cursor: pointer;
  color: #262626;
  padding: 4px;
}

.ig-media {
  width: 100%;
  background: #fafafa;
  overflow: hidden;
}

.ig-media img {
  width: 100%;
  height: auto;
  display: block;
}

.ig-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px 4px;
}

.ig-icons {
  display: flex;
  gap: 14px;
}

.ig-actions svg {
  color: #262626;
  cursor: pointer;
}

.ig-caption {
  padding: 14px 14px 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #262626;
}

.ig-caption strong {
  font-weight: 600;
  margin-right: 4px;
}

.ig-time {
  padding: 0 14px 14px;
  font-size: 10px;
  color: #8e8e8e;
  letter-spacing: 0.02em;
}

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

/* ============ CONTACT ============ */
.contact {
  padding: 140px 0;
  background: var(--bg-cream);
}

.contact-card {
  background: linear-gradient(135deg, var(--blue-ink) 0%, var(--green-ink) 100%);
  border-radius: 36px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info { position: relative; z-index: 1; }
.contact-info .section-eyebrow { color: #a5d96a; }
.contact-info .section-title { color: var(--white); }

.contact-info .section-title em {
  background: linear-gradient(135deg, #6ec9e8 0%, #a5d96a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info > p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 32px;
  transition: all 0.3s var(--ease);
}

.contact-phone:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.contact-phone svg { color: #a5d96a; }

.contact-phone span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}

.contact-phone strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.contact-meta {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.8;
}

.contact-meta strong { font-weight: 600; color: #a5d96a; }

.contact-form {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 36px;
  border-radius: 24px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--white);
}

.contact-form label { display: block; margin-bottom: 16px; }

.contact-form label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: 2px solid transparent;
  transition: outline-color 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline-color: #a5d96a;
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-body);
}

.form-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 12px;
  text-align: center;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 8px;
  filter: brightness(1.2);
}

.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  opacity: 0.7;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 13px;
  opacity: 0.85;
}

.footer-meta a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 1;
  font-family: var(--font-display);
}

.footer-meta a:hover { color: #a5d96a; }

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .container { padding: 0 24px; }
  .hero-content { padding: 0 24px; }
  .services-grid, .ba-grid, .ig-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-card { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-indicator { right: 24px; bottom: 90px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
  .services, .showcase, .about, .contact, .instagram { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .svc-card { padding: 40px 28px; }
  .svc-badge { top: 20px; right: 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat-num { font-size: 40px; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-meta { align-items: center; }
  .hero-indicator { display: none; }
  .scroll-cue { display: none; }
}
