/* New responsive classes and icon styles */
:root {
  --primary: #a8cde7;
  --navy: #1e293b;
  --accent1: #f48fb1;
  --accent2: #90caf9;
  --accent3: #ffb74d;
  --white: #ffffff;
  --light-gray: rgba(2, 6, 23, 0.08);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--navy);
  background: var(--primary);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Prevent background scroll when mobile nav is open */
body.is-locked {
  /* only prevent scrolling; position/top are managed in JS to preserve scroll pos */
  overflow: hidden;
}

/* animated site background */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.site-bg__gradient,
.site-bg__sparkles {
  position: absolute;
  inset: 0;
}

.site-bg__gradient {
  background: radial-gradient(
      1000px 600px at 15% 10%,
      rgba(255, 255, 255, 0.55) 0%,
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 85% 25%,
      rgba(255, 255, 255, 0.45) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #a8cde7 0%, #90caf9 60%, #dbedfa 100%);
  animation: gradientFloat 18s ease-in-out infinite alternate;
}

@keyframes gradientFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-18px);
  }
}

.site-bg__sparkles {
  background-image: radial-gradient(
      1.5px 1.5px at 10% 20%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 51%
    ),
    radial-gradient(
      1px 1px at 30% 70%,
      rgba(255, 255, 255, 0.55) 50%,
      transparent 51%
    ),
    radial-gradient(
      1px 1px at 70% 30%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 51%
    ),
    radial-gradient(
      1.5px 1.5px at 80% 80%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 51%
    );
  animation: sparkleFloat 20s linear infinite;
  opacity: 0.4;
  background-repeat: no-repeat;
}

@keyframes sparkleFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Desktop navigation */
.nav {
  display: none;
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

/* Mobile navigation toggle */
.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile navigation sheet */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-nav[aria-expanded="true"] {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 1rem;
}

@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.25rem;
    padding: 0.75rem;
  }
}

/* buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.2s;
}

.btn--cta {
  background: var(--accent1);
  color: var(--white);
}

.btn--cta:hover {
  filter: brightness(1.05);
  box-shadow: var(--shadow-hover);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--light-gray);
  color: var(--navy);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.7);
}

.btn--primary {
  background: var(--accent2);
  color: var(--navy);
}

/* hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 3.5rem 1.5rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
  }
}

.hero__content h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin: 0 0 0.8rem;
  line-height: 1.1;
}

@media (max-width: 480px) {
  .hero {
    padding: 2.25rem 1.1rem;
  }
  .hero__content h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .subhead {
    font-size: 1rem;
  }
  .btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  .site-header {
    padding: 0.65rem 1rem;
    gap: 0.75rem;
  }
}



.highlight {
  background: linear-gradient(
    120deg,
    rgba(244, 143, 177, 0.28),
    rgba(255, 255, 255, 0.28)
  );
  padding: 0.15em 0.4em;
  border-radius: 0.6em;
}

.subhead {
  margin: 0.4rem 0 1.2rem;
  font-size: 1.15rem;
  opacity: 0.9;
}

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

.hero__details {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* framed hero image */
.hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__art img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

/* sections */
.section {
  padding: 3.5rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}

/* Offset anchor scroll for sticky header */
section[id] {
  scroll-margin-top: 90px;
}
@media (max-width: 600px) {
  section[id] {
    scroll-margin-top: 76px;
  }
}

.section--tint {
  background: rgba(168, 205, 231, 0.2);
  border-radius: 20px;
}

.section__title {
  text-align: center;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 700;
  margin: 0 0 1rem;
}

.section__lead {
  text-align: center;
  opacity: 0.85;
  max-width: 700px;
  margin: 0.25rem auto 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr; /* Mobile-first approach */
}

@media (min-width: 500px) {
  .grid.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .grid.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.features-grid,
  .grid.testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .grid.services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

/* Icon styles */
.icon-container {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  background: var(--accent2);
  box-shadow: inset 0 0 0 4px var(--white), var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

/* testimonials */
.testimonial blockquote {
  margin: 0 0 0.6rem;
}

.stars {
  color: var(--accent3);
  letter-spacing: 2px;
}

/* before/after */
.beforeafter .ba {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  max-width: 1000px;
  margin-inline: auto;
}

.ba__img {
  display: block;
  width: 100%;
  height: auto;
}

.ba__overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-right: 2px solid var(--accent1);
}

.ba__range {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  width: 70%;
  margin-inline: auto;
  display: block;
  appearance: none;
  height: 8px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  outline: none;
}

.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.85), var(--shadow);
}

.ba__range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.85), var(--shadow);
}

/* about */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }
}

.about__media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.about__list li {
  margin-bottom: 0.45rem;
}

/* form */
.form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  width: min(100%, 900px);
  margin-inline: auto;
}

@media (max-width: 480px) {
  .form {
    padding: 1.1rem;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 0.95rem;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1/-1;
}

.field span {
  font-weight: 600;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(144, 202, 249, 0.28);
}

.error {
  color: #d32f2f;
  min-height: 1.1em;
  font-size: 0.85rem;
}

/* Field error highlight */
.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.18);
}

/* Submit button feedback */
#quoteSubmit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  display: none;
}

.form-status.is-success {
  display: block;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #388e3c;
}

.form-status.is-error {
  display: block;
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #d32f2f;
}

/* footer */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.2rem 1.5rem;
  margin-top: 2.2rem;
}

@media (max-width: 480px) {
  .site-footer {
    padding: 1.8rem 1.1rem;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile-first */
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.site-footer a {
  color: var(--accent1);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer__brand img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer p {
  opacity: 0.8;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Before/After slider improvements */
.ba {
  position: relative;
  overflow: hidden;
}

.ba__range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  cursor: ew-resize;
  z-index: 10;
  -webkit-appearance: none;
  /* Safari */
  appearance: none;
  padding: 0;
  margin: 0;
}

.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
}

/* Hide the native thumb to style our own line */
.ba__overlay {
  border-right: 2px solid var(--white);
  box-shadow: 0 0 0 4px var(--accent1);
  transition: width 0.1s ease-out;
}

/* Floating WhatsApp bubble */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
  /* z-index: 60;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s; */
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), 0 4px 10px rgba(0, 0, 0, 0.14);
  background: #20bd58;
}
.whatsapp-float:active {
  transform: translateY(-1px) scale(0.97);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 520px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Cookie banner */
.cookie-banner[hidden] { display: none !important; }

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 1rem;
  z-index: 9999;
}

.cookie-banner__content {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: .75rem 1rem;
  align-items: center;

  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);       /* slate-900ish */
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.05);
}

.cookie-banner__actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner .btn { min-width: 6.5rem; }

.cookie-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #c7e0ff;
}

@media (min-width: 720px) {
  .cookie-banner__content {
    grid-template-columns: 1fr auto;
  }
}

/* --- Service Cards with photos --- */
.card.service {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(2, 6, 23, 0.07); /* subtle */
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.card.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.12);
  border-color: rgba(2, 6, 23, 0.12);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;     /* consistent height across cards */
  background: #e2e8f0;       /* fallback while image loads */
}

.card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 65%);
  opacity: .9;
  pointer-events: none;
}

.badge-icon {
  position: absolute;
  top: .75rem; left: .75rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 9999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.8);     /* slate-900 glass */
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
}

.card__body {
  padding: 1rem 1rem 1.15rem;
}

.card__body h3 {
  margin: .25rem 0 .4rem;
  font-size: 1.05rem;
  letter-spacing: .2px;
}

.card__body p {
  margin: 0;
  color: #475569;
  font-size: .96rem;
  line-height: 1.55;
}

/* keep your existing grid but add a tiny gap boost for photos */
.services-grid {
  gap: 1.1rem;
}
@media (min-width: 900px) {
  .services-grid { gap: 1.25rem; }
}


/* --- Single photo block (replaces slider) --- */
.beforeafter .solo-photo{
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(2,6,23,.18);
  background: #e2e8f0;
}
.beforeafter .solo-photo img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

/* ===== Full-bleed Pink "Movie Night" Hero (light) ===== */
.hero--bleed{
  /* full-bleed across viewport even inside centered layouts */
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: 90vh;                /* almost full screen height */
  border-radius: 0;
  padding: clamp(1rem, 4vw, 3rem);
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: clip;
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
}

.hero--rose .hero__content{
  position: relative;
  z-index: 2;
  color: #0b1220;                  /* stronger black-ish */
  max-width: 72ch;
}

/* Background image */
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img{
  width:100%; height:100%;
  object-fit:cover;
  /* transform: scale(1.04); */
  /* filter: saturate(1.06) contrast(1.02); */
  /* animation: roseKenBurns 3s ease-out both; */
  /* will-change: transform; */
}
/* @keyframes roseKenBurns{
  0%   { transform: scale(1.08) translateY(0); }
  100% { transform: scale(1.02) translateY(-1.2%); }
} */

/* Light pink overlay (not dark) */
.hero__overlay{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg,
      rgba(255, 228, 238, .92) 0%,
      rgba(255, 228, 238, .70) 30%,
      rgba(255, 246, 251, .38) 60%,
      rgba(255, 255, 255, .18) 100%),
    radial-gradient(1200px 700px at 18% 68%,
      rgba(255, 192, 203, .28) 0%,
      rgba(255, 192, 203, .10) 60%,
      rgba(255, 192, 203, 0) 100%);
}

/* Legibility panel behind text */
.hero__panel{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(2,6,23,.10);
  padding: clamp(14px, 2.4vw, 22px) clamp(16px, 3vw, 28px);
}

/* Headline pop */
.hero--rose h1{
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255,255,255,.7); /* subtle light edge so dark text stands out */
}

/* New highlight color (sunrise peach->lemon) */
.highlight--sunrise{
  background: linear-gradient(90deg, #ffc7d9, #ffe59a, #ffc7d9);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding: 0 .28em;
  border-radius: .45em;
  background-size: 200% 100%;
  animation: sunriseShift 12s ease-in-out infinite;
}
@keyframes sunriseShift{
  0% { background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

/* Buttons over light overlay */
.hero--rose .btn--ghost{
  background: rgba(255,255,255,.92);
  border-color: rgba(2,6,23,.10);
  color: #0b1220;
}
.hero--rose .btn--ghost:hover{ background: #fff; }
.hero--rose .btn--cta{ box-shadow: 0 12px 28px rgba(255,105,180,.28); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__bg img, .highlight--sunrise{ animation: none !important; transform: none !important; }
}
