/* ============================================
   KOLARIĆ CLEAN&CARE — STYLES
   Aesthetic: Refined airy minimalism
   Palette : whites, soft blues, deep navy accent
   Type    : Fraunces (display) + Manrope (body) + Caveat (script)
============================================ */

:root {
  /* Colors */
  --c-blue-50: #f1f8fd;
  --c-blue-100: #e3f0fa;
  --c-blue-200: #c5e1f4;
  --c-blue-300: #8fc8e9;
  --c-blue-400: #5ab1de;
  --c-blue-500: #3da5e0;
  --c-blue-600: #2a7eb8;
  --c-blue-700: #1c5a8c;
  --c-navy: #0b3a6f;
  --c-navy-deep: #082c54;
  --c-ink: #0d1b2a;
  --c-ink-soft: #3a4a5c;
  --c-mute: #6b7a8a;
  --c-line: #e6edf3;
  --c-bg: #ffffff;
  --c-bg-soft: #f7fbfd;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Spacing & layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 20px -8px rgba(11, 58, 111, 0.12);
  --shadow-md: 0 20px 60px -20px rgba(11, 58, 111, 0.25);
  --shadow-lg: 0 40px 100px -30px rgba(11, 58, 111, 0.35);

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

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

/* ============================================
   TYPOGRAPHY UTILITIES
============================================ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue-500);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: currentColor;
}
.eyebrow--dark { color: var(--c-navy); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  font-variation-settings: "opsz" 120;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-blue-500);
}
.section-title--light { color: #fff; }
.section-title--light em { color: var(--c-blue-200); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--c-ink-soft);
  margin-top: 1.25rem;
  max-width: 560px;
  line-height: 1.65;
}

.section-head {
  margin-bottom: 4rem;
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-head--center .eyebrow { padding-left: 0; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .section-sub { margin-inline: auto; }

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--c-ink-soft);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--c-navy);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(11, 58, 111, 0.5);
}
.btn--primary:hover {
  background: var(--c-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(11, 58, 111, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid var(--c-blue-200);
}
.btn--ghost:hover {
  background: var(--c-blue-50);
  border-color: var(--c-blue-400);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(230, 237, 243, 0.6);
  transition: all 0.3s ease;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.6rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  color: var(--c-navy);
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.85; }

/* Inline logo SVG */
.logo-svg {
  display: block;
  height: 102px;
  width: auto;
  aspect-ratio: 527 / 312;
}
.logo-svg .logo-dark { fill: #231f1f; }
.logo-svg--light .logo-dark { fill: #ffffff; }

@media (max-width: 480px) {
  .logo-svg { height: 78px; }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav__menu a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--c-blue-500);
  transition: width 0.3s var(--ease);
}
.nav__menu a:not(.nav__cta):hover { color: var(--c-navy); }
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  padding: 0.6rem 1.25rem;
  background: var(--c-navy);
  color: #fff !important;
  border-radius: 999px;
  transition: all 0.3s;
}
.nav__cta:hover {
  background: var(--c-navy-deep);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__menu {
    position: fixed;
    top: 98px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 0;
    box-shadow: 0 20px 40px -10px rgba(11,58,111,0.15);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--c-line);
    font-size: 1rem;
  }
  .nav__menu .nav__cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
  }
  .nav__burger { display: flex; }
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--c-bg-soft) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__wave {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.hero__content { animation: fadeUp 1s var(--ease) both; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--c-navy);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-blue-500);
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--c-blue-600);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  animation: fadeIn 1.2s var(--ease) 0.2s both;
}
.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 12% 50% / 50% 50% 12% 50%;
  background-image: linear-gradient(135deg, rgba(11, 58, 111, 0.08), rgba(61, 165, 224, 0.18)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero__badge {
  position: absolute;
  bottom: 8%;
  left: -8%;
  background: #fff;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-md);
  max-width: 240px;
  animation: floatY 4s ease-in-out infinite;
}
.hero__badge svg {
  color: var(--c-blue-500);
  flex-shrink: 0;
  background: var(--c-blue-50);
  padding: 6px;
  border-radius: 10px;
  box-sizing: content-box;
  width: 24px;
  height: 24px;
}
.hero__badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--c-navy);
  line-height: 1.2;
  margin-bottom: 2px;
}
.hero__badge span {
  display: block;
  font-size: 0.78rem;
  color: var(--c-mute);
  line-height: 1.3;
}

/* Floating droplets */
.hero__droplet {
  position: absolute;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--c-blue-300), var(--c-blue-500));
  opacity: 0.65;
  transform: rotate(-45deg);
  animation: floatY 5s ease-in-out infinite;
  box-shadow: 0 10px 30px -10px rgba(61, 165, 224, 0.5);
}
.hero__droplet--1 {
  width: 50px; height: 50px;
  top: 10%; right: 15%;
  animation-delay: 0s;
}
.hero__droplet--2 {
  width: 30px; height: 30px;
  top: 25%; left: 5%;
  animation-delay: 1s;
  opacity: 0.4;
}
.hero__droplet--3 {
  width: 22px; height: 22px;
  bottom: 25%; right: 0%;
  animation-delay: 2s;
  opacity: 0.55;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mute);
  z-index: 2;
}
.hero__scroll svg { animation: bobble 2s ease-in-out infinite; }

@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }
  .hero__visual { width: 100%; max-width: 420px; margin-inline: auto; }
  .hero__badge {
    left: 4%;
    right: auto;
    bottom: 6%;
    max-width: 200px;
  }
  .hero__scroll { display: none; }
}

/* ============================================
   ABOUT
============================================ */
.about {
  padding: 8rem 0 6rem;
  background: #fff;
}
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}
.about__intro { position: sticky; top: 120px; }
.about__text > p + p { margin-top: 1.25rem; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--c-line);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}
.stat__num i {
  font-style: normal;
  font-size: 0.55em;
  color: var(--c-blue-500);
  vertical-align: super;
  margin-left: 2px;
}
.stat__label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--c-mute);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .about { padding: 5rem 0 4rem; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__intro { position: static; }
  .about__stats { gap: 1rem; }
}

/* ============================================
   SERVICES
============================================ */
.services {
  padding: 7rem 0;
  background: var(--c-bg-soft);
  position: relative;
  overflow: hidden;
}
.services__bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61,165,224,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.service-card {
  background: #fff;
  padding: 2rem 1.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,165,224,0.04), rgba(11,58,111,0.06));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-blue-300);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--c-blue-50);
  color: var(--c-blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease);
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
}
.service-card:hover .service-card__icon {
  background: var(--c-navy);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--c-navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
}

@media (max-width: 1080px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .services { padding: 4.5rem 0; }
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY / ZAŠTO NAS
============================================ */
.why {
  padding: 7rem 0;
  background: #fff;
  position: relative;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.why__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
}
.why__shape {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 35% 50%;
  background-image: linear-gradient(135deg, rgba(11, 58, 111, 0.1), rgba(61, 165, 224, 0.18)),
    url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?ixlib=rb-4.0.3&auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-lg);
}

.why__quote {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--c-navy);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  max-width: 260px;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
}
.why__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.4;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why__list li {
  display: flex;
  gap: 1.1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-line);
}
.why__list li:last-child { border-bottom: none; padding-bottom: 0; }

.why__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-blue-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__check svg { width: 18px; height: 18px; }

.why__list h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--c-navy);
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
}
.why__list p {
  font-size: 0.93rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .why { padding: 5rem 0; }
  .why__inner { grid-template-columns: 1fr; gap: 5rem; }
  .why__visual { width: 100%; margin-inline: auto; max-width: 360px; }
  .why__quote {
    right: auto;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%) rotate(2deg);
    max-width: 280px;
    text-align: center;
  }
}

/* ============================================
   GALLERY
============================================ */
.gallery {
  padding: 7rem 0;
  background: var(--c-bg-soft);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}

.gallery__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.gallery__item:hover .gallery__img { transform: scale(1.08); }

.gallery__img--1 { background-image: linear-gradient(180deg, transparent 50%, rgba(11,58,111,0.5)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=900&q=80'); }
.gallery__img--2 { background-image: linear-gradient(180deg, transparent 50%, rgba(11,58,111,0.5)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }
.gallery__img--3 { background-image: linear-gradient(180deg, transparent 50%, rgba(11,58,111,0.5)), url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }
.gallery__img--4 { background-image: linear-gradient(180deg, transparent 50%, rgba(11,58,111,0.5)), url('https://images.unsplash.com/photo-1540518614846-7eded433c457?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80'); }
.gallery__img--5 { background-image: linear-gradient(180deg, transparent 50%, rgba(11,58,111,0.5)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80'); }

.gallery__item figcaption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  z-index: 1;
}

@media (max-width: 880px) {
  .gallery { padding: 5rem 0; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 220px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 540px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery__item--tall,
  .gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
  padding: 7rem 0;
  background: #fff;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--c-bg-soft);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
  border: 1px solid var(--c-line);
  transition: all 0.4s var(--ease);
}
.testimonial:hover {
  background: #fff;
  border-color: var(--c-blue-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial__mark {
  width: 28px;
  height: 28px;
  color: var(--c-blue-300);
  margin-bottom: 1rem;
}
.testimonial p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.075rem;
  line-height: 1.55;
  color: var(--c-ink);
  font-style: italic;
  font-variation-settings: "opsz" 60;
  margin-bottom: 1.5rem;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  border-top: 1px solid var(--c-line);
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-navy);
}
.testimonial footer span {
  font-size: 0.82rem;
  color: var(--c-mute);
  margin-top: 2px;
}

@media (max-width: 880px) {
  .testimonials { padding: 5rem 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
============================================ */
.contact {
  position: relative;
  padding: 7rem 0 6rem;
  background: var(--c-navy);
  color: #fff;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contact__bg svg { width: 100%; height: 100%; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact .eyebrow { color: var(--c-blue-300); }

.contact__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 460px;
}
.contact__signoff {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--c-blue-200);
  line-height: 1.3;
  max-width: 380px;
}

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: #fff;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}
.contact-card:hover:not(.contact-card--info) {
  background: rgba(255,255,255,0.13);
  border-color: var(--c-blue-300);
  transform: translateX(6px);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__body { flex: 1; min-width: 0; }
.contact-card__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue-200);
  margin-bottom: 0.25rem;
}
.contact-card__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-card__arrow {
  width: 20px;
  height: 20px;
  color: var(--c-blue-200);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.contact-card:hover .contact-card__arrow { transform: translateX(4px); }

@media (max-width: 880px) {
  .contact { padding: 5rem 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-card { padding: 1.25rem; }
  .contact-card__value { font-size: 0.95rem; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--c-navy-deep);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.25rem;
  max-width: 320px;
}
.footer__brand .logo-svg {
  height: 165px;
}

.footer__col h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a, .footer__col li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--c-blue-300); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 780px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__droplet { animation-name: floatRotate; }
@keyframes floatRotate {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-15px); }
}
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Scroll-triggered fade-in for sections */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; }
.stagger > *:nth-child(8) { transition-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
