/* =====================================================================
   Dust Detectives — modernized brand site
   ===================================================================== */

:root {
  /* Brand palette */
  --pink:        #C94FB3;
  --pink-bright: #E15FC9;
  --teal:        #1E9E8A;
  --teal-deep:   #178573;
  --orange:      #F5853C;
  --yellow:      #EAC91C;
  --ink:         #2c2740;
  --ink-soft:    #5b5570;
  --cream:       #fbf7fb;
  --white:       #ffffff;

  /* Section backgrounds */
  --hero-g1: #c7f0d1;
  --hero-g2: #aeccf6;
  --hero-g3: #c9b4f3;
  --hero-g4: #f3b9e6;

  --radius:    20px;
  --radius-lg: 32px;
  --shadow-sm: 0 6px 18px rgba(44, 39, 64, .08);
  --shadow-md: 0 16px 40px rgba(44, 39, 64, .14);
  --shadow-lg: 0 30px 70px rgba(44, 39, 64, .20);

  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);

  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Outfit", "Poppins", sans-serif;
  --font-script: "Pacifico", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.ico { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  --bg: var(--pink);
  --fg: #fff;
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  padding: .72em 1.35em;
  border-radius: 999px;
  line-height: 1.1;
  box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--bg) 80%, transparent);
  transition: transform .25s var(--ease-pop), box-shadow .25s var(--ease), filter .2s;
  white-space: nowrap;
}
.btn .ico { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -8px color-mix(in srgb, var(--bg) 75%, transparent); filter: saturate(1.08); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn--lg { font-size: 1.06rem; padding: .85em 1.6em; }
.btn--pink   { --bg: var(--pink); }
.btn--teal   { --bg: var(--teal); }
.btn--ghost  { --bg: rgba(255,255,255,.75); --fg: var(--ink); backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { --bg: #fff; }
.btn--outline {
  --bg: transparent; --fg: var(--pink);
  border: 2px solid currentColor; box-shadow: none;
}
.btn--outline:hover { background: var(--pink); --fg: #fff; }

/* =====================================================================
   Brand / logo
   ===================================================================== */
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand__heart {
  width: 2rem; height: 2rem; display: grid; place-items: center;
  color: var(--orange);
  filter: drop-shadow(0 3px 6px rgba(245,133,60,.4));
}
.brand__heart .ico { width: 100%; height: 100%; }
.brand__name { font-family: var(--font-script); font-size: 1.3rem; line-height: 1; }
.brand__dust { color: var(--pink); }
.brand__det  { color: var(--teal); }
.brand--logo { gap: 0; }
.brand__img { height: clamp(46px, 6.5vw, 58px); width: auto; display: block; }

/* =====================================================================
   Nav
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: .55rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(44,39,64,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  font-weight: 500; font-size: .95rem; color: var(--ink);
  position: relative; padding: .25rem 0; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; border-radius: 2px; background: var(--pink);
  transition: width .25s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--pink); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { margin-left: .4rem; }

.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 24px; height: 2.5px; border-radius: 3px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: 7rem 0 4rem;
}
.hero__bg {
  position: absolute; inset: -20%; z-index: -2;
  background: linear-gradient(135deg, var(--hero-g1), var(--hero-g2), var(--hero-g3), var(--hero-g4));
  background-size: 250% 250%;
  animation: gradientShift 18s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.blob {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(60px); opacity: .55;
}
.blob--1 { width: 420px; height: 420px; background: #ff9ce6; top: -120px; right: -60px; }
.blob--2 { width: 360px; height: 360px; background: #8fe3d2; bottom: -120px; left: -80px; }
.blob--3 { width: 300px; height: 300px; background: #ffd27a; top: 40%; left: 45%; opacity: .4; }

/* Logo lives in the hero background (scrolls away with the page, not the nav) */
.hero__brandbar { position: absolute; top: 1.3rem; left: 0; right: 0; z-index: 3; pointer-events: none; }
.hero__logo { height: clamp(96px, 13vw, 156px); width: auto; display: block; filter: drop-shadow(0 6px 14px rgba(120,60,120,.22)); }
.hero__spacer { height: 3rem; }

.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; }
.hero__eyebrow {
  display: inline-block; font-weight: 600; color: var(--ink);
  background: rgba(255,255,255,.6); backdrop-filter: blur(6px);
  padding: .4rem 1rem; border-radius: 999px; font-size: .9rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -.02em; color: #fff;
  text-shadow: 0 4px 24px rgba(80,40,100,.25);
}
.hero__title span { display: block; }
.hero__since {
  font-family: var(--font-display); font-weight: 700;
  color: var(--white);
  background: linear-gradient(120deg, var(--pink-bright), #ff8fd6);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(225,95,201,.35));
  width: max-content;
}
.hero__lead {
  margin: 1.4rem 0 1.9rem; max-width: 30rem;
  font-size: 1.12rem; color: #46406a; font-weight: 400;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust { margin-top: 1.6rem; font-size: .95rem; color: #4b4470; font-weight: 500; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.stars { color: #ffb703; letter-spacing: .1em; }

/* Hero art */
.hero__art { position: relative; height: 440px; }
.orb {
  position: absolute; display: grid; place-items: center;
  border-radius: 30px; background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px); box-shadow: var(--shadow-md);
}
.orb .ico { width: 58%; height: 58%; }
.orb--flower { width: 150px; height: 150px; top: 6%;  right: 24%; color: var(--pink); border-radius: 40% 60% 55% 45% / 50%; }
.orb--eye    { width: 168px; height: 130px; top: 38%; right: 0;   color: var(--teal); border-radius: 48%; }
.orb--star   { width: 140px; height: 140px; top: 66%; right: 32%; color: var(--orange); border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%; }
.float { animation: float 6s var(--ease) infinite; animation-delay: var(--d, 0s); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-18px) rotate(3deg); }
}
.spark { position: absolute; color: #fff; font-size: 1.6rem; opacity: .9; animation: twinkle 3s ease-in-out infinite; text-shadow: 0 2px 8px rgba(255,180,230,.6); }
.spark--a { top: 18%; right: 12%; animation-delay: .2s; }
.spark--b { top: 56%; right: 40%; animation-delay: 1.1s; font-size: 1.1rem; }
.spark--c { top: 84%; right: 8%;  animation-delay: 1.9s; font-size: 1.3rem; }
@keyframes twinkle { 0%,100% { transform: scale(.7); opacity: .35; } 50% { transform: scale(1.2); opacity: 1; } }

.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(70,40,90,.5); border-radius: 999px;
  display: grid; justify-items: center; padding-top: 7px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: rgba(70,40,90,.6); animation: cue 1.6s infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* =====================================================================
   Gallery marquee
   ===================================================================== */
.gallery { padding: 2.4rem 0; background: var(--cream); overflow: hidden; }
.marquee { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 1.1rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.shot {
  height: 210px; border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); flex: none; transition: transform .35s var(--ease);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.shot:hover { transform: translateY(-6px) scale(1.02); }
.shot:hover img { transform: scale(1.08); }
/* page-2 tile shapes */
.shot--rect    { width: 300px; }
.shot--wide    { width: 420px; }
.shot--oval    { width: 300px; border-radius: 50%; }
.shot--oval-v  { width: 150px; border-radius: 50%; }
.shot--circle  { width: 210px; border-radius: 50%; }
.shot--round   { width: 165px; border-radius: 28px; }

/* =====================================================================
   Section title
   ===================================================================== */
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1;
  letter-spacing: -.01em; display: inline-flex; align-items: center; gap: .4em;
}
.section-title__spark, .pricing__spark { width: .55em; height: .55em; color: var(--orange); }
.pricing__spark { color: var(--teal); fill: var(--teal); }
.section-title--white { color: #fff; }
.section-title--pink  { color: var(--pink-bright); }

/* =====================================================================
   About
   ===================================================================== */
.about { background: var(--orange); color: #fff; padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.about__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.about__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: .98; margin-bottom: 1.4rem; }
.about__brand { color: #1c8c79; display: block; }
.about__here { color: #fff; font-weight: 500; }
.about__body p { color: rgba(255,255,255,.95); margin-bottom: 1rem; font-size: 1.02rem; }
.about__body strong { color: #fff; font-weight: 700; }

.about__media { display: grid; justify-items: center; gap: 1.6rem; }
.photo-frame { position: relative; width: min(100%, 360px); box-shadow: var(--shadow-lg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame--blob { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; overflow: hidden; aspect-ratio: 4 / 5; }
.sticker {
  position: absolute; display: grid; place-items: center;
  width: 64px; height: 64px; font-size: 1.9rem; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-md); animation: wave 3.5s ease-in-out infinite;
}
.sticker--wave { top: 10px; left: -14px; }
.sticker--clap { top: 14px; left: -16px; }
@keyframes wave { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(10deg); } }

.about__call { text-align: center; }
.about__call-label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: .7rem; }
.about__phone { box-shadow: var(--shadow-md); }

/* =====================================================================
   Services
   ===================================================================== */
.services { position: relative; isolation: isolate; padding: clamp(4rem, 8vw, 7rem) 0; overflow: hidden; }
.services__bg {
  position: absolute; inset: -20%; z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, #d7c5ff, transparent 45%),
    radial-gradient(circle at 80% 25%, #ffd0f3, transparent 45%),
    radial-gradient(circle at 60% 90%, #bfeede, transparent 45%),
    linear-gradient(135deg, #cdbbf6, #aecbf3, #c8eede, #d8b9f0);
  background-size: 200% 200%; animation: gradientShift 22s ease infinite;
}
.services__head { text-align: center; margin-bottom: 2.6rem; }
.services__sub { margin-top: .6rem; color: #5a4f7a; font-style: italic; font-size: 1.05rem; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.svc {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: rgba(255,255,255,.86); backdrop-filter: blur(6px);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,.6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc__letter {
  font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1;
  color: var(--pink); flex: none; width: 1.4em; text-align: center;
  padding-right: 1rem; border-right: 2px solid rgba(201,79,179,.25);
}
.svc__text h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: .25rem; }
.svc__text p { font-size: .95rem; color: var(--ink-soft); }

/* =====================================================================
   Testimonials
   ===================================================================== */
.reviews { background: linear-gradient(160deg, #d558bb, #c94fb3); color: #fff; padding: clamp(4rem, 8vw, 7rem) 0; }
.reviews__head { text-align: center; margin-bottom: 2.6rem; }
.reviews__daisy { display: inline-grid; place-items: center; width: 56px; height: 56px; color: var(--orange); margin-bottom: .4rem; }
.reviews__daisy .ico { width: 100%; height: 100%; --flower-center: #d558bb; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius); padding: 1.6rem; backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), background .3s;
}
.review:hover { transform: translateY(-6px); background: rgba(255,255,255,.2); }
.review__top { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.review__avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,255,255,.7); }
.review__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.review .stars { font-size: .95rem; }
.review__text { font-size: .97rem; color: rgba(255,255,255,.95); }

/* =====================================================================
   Pricing
   ===================================================================== */
.pricing { position: relative; background: var(--yellow); padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 9vw, 8rem); overflow: hidden; }
.pricing__wedge {
  position: absolute; inset: 16% 0 0 0; z-index: 0;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 22% 100%);
  opacity: .92;
}
.pricing .container { position: relative; z-index: 1; }
.pricing__title { display: flex; justify-content: center; width: 100%; margin-bottom: 2.6rem; }
.pricing__spark { color: #fff; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.plan {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  padding: 2rem 1.7rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan--featured {
  background: linear-gradient(165deg, #d65fbe, var(--pink));
  color: #fff; transform: scale(1.04);
  box-shadow: 0 30px 60px -16px rgba(201,79,179,.6);
}
.plan--featured:hover { transform: scale(1.04) translateY(-8px); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; padding: .35em 1em; border-radius: 999px; box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--pink); }
.plan--featured .plan__name { color: #fff; }
.plan__price { font-family: var(--font-display); font-weight: 700; font-size: 3.1rem; line-height: 1; color: var(--pink); margin: .4rem 0 .1rem; }
.plan--featured .plan__price { color: #fff; }
.plan__price span { font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--ink-soft); margin-left: .15rem; }
.plan--featured .plan__price span { color: rgba(255,255,255,.85); }
.plan__cap { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.plan--featured .plan__cap { color: rgba(255,255,255,.85); }
.plan__features { display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.plan__features li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; font-size: .97rem; color: var(--ink); line-height: 1.35; }
.plan__features li > span { flex: 1; }
.plan__features .ico { color: var(--pink); width: 1.25em; height: 1.25em; margin-top: .1em; }
.plan--featured .plan__features li { color: #fff; }
.plan--featured .plan__features .ico { color: #fff; }
.plan__features .muted { display: block; font-weight: 400; font-size: .85em; color: var(--ink-soft); }
.plan--featured .plan__features .muted { color: rgba(255,255,255,.8); }
.plan__features .opt { opacity: .72; }
.plan__features .opt .ico { color: var(--ink-soft); }
.plan--featured .plan__features .opt .ico { color: rgba(255,255,255,.7); }
.plan__cta { margin-top: auto; justify-content: center; }
.plan--featured .btn--pink { --bg: #fff; --fg: var(--pink); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--teal); color: #fff; padding: clamp(4rem, 8vw, 7rem) 0; }
.faq__title { margin-bottom: 2.2rem; }
.faq__clover { display: inline-grid; place-items: center; width: 1em; height: 1em; color: var(--orange); }
.faq__clover .ico { width: 100%; height: 100%; }
.faq__list { display: grid; gap: 1rem; max-width: 860px; }
.faq__item {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius); overflow: hidden; transition: background .3s;
}
.faq__item[open] { background: rgba(255,255,255,.16); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1.12rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; line-height: 1;
  color: var(--orange); transition: transform .3s var(--ease); flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 1.4rem 1.2rem; }
.faq__answer p { color: rgba(255,255,255,.92); font-size: 1rem; }
/* slide-down animation when opened (JS adds .faq-animate) */
.faq__item[open] .faq__answer { animation: faqOpen .35s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================================
   Contact
   ===================================================================== */
.contact { background: var(--cream); padding: clamp(4rem, 8vw, 7rem) 0; }
.contact__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
.contact__media { display: grid; justify-items: center; }
.photo-frame--wave {
  aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: 46% 54% 50% 50% / 14% 14% 86% 86%;
  border: 10px solid var(--teal);
}
.contact__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.05; color: var(--pink-bright); }
.contact__offer { color: var(--pink); }
.contact__lead { margin: .8rem 0 1.6rem; color: var(--ink-soft); font-size: 1.05rem; max-width: 32rem; }
.contact__details { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
.contact__details li { display: flex; align-items: center; gap: .9rem; }
.contact__ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.contact__ico .ico { width: 1.3em; height: 1.3em; }
.contact__k { display: block; font-family: var(--font-display); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); }
.contact__details a { font-weight: 500; color: var(--ink); transition: color .2s; }
.contact__details a:hover { color: var(--pink); }
.contact__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }

.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.8rem; }
.field--full { grid-column: 1 / -1; }
.contact__form input, .contact__form textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem 1rem; border-radius: 14px; border: 2px solid #ece3ee;
  background: #fff; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.contact__form input:focus, .contact__form textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(201,79,179,.12);
}
.contact__form .btn { justify-content: center; }
.contact__formnote { grid-column: 1/-1; font-size: .9rem; font-weight: 600; min-height: 1.2em; margin: 0; }
.contact__formnote.ok { color: var(--teal); }
.contact__formnote.err { color: #d6336c; }

.contact__social { display: flex; gap: .8rem; }
.social { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-pop), background .2s; }
.social .ico { width: 1.4em; height: 1.4em; }
.social:hover { transform: translateY(-4px) scale(1.08); background: var(--teal-deep); }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: #241f33; color: #fff; padding: 3rem 0 2.2rem; }
.footer__inner { display: grid; justify-items: center; gap: 1rem; text-align: center; }
.brand--footer .brand__name { font-size: 1.5rem; }
.footer__tag { color: rgba(255,255,255,.7); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__links a { color: rgba(255,255,255,.85); font-weight: 500; transition: color .2s; }
.footer__links a:hover { color: var(--pink-bright); }
.footer__copy { color: rgba(255,255,255,.5); font-size: .88rem; }

/* =====================================================================
   Scroll-reveal animations
   ===================================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: opacity, transform;
}
[data-reveal="rise"] { transform: translateY(40px); }
[data-reveal="fade"] { transform: none; }
[data-reveal="pop"]  { transform: scale(.7); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"]{ transform: translateX(50px); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="pop"].is-visible { transition-timing-function: var(--ease-pop); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
    padding: 1rem 1.5rem 1.6rem; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s var(--ease);
  }
  .nav.scrolled .nav__links, .nav .nav__links { }
  .nav__links.open { transform: translateY(0); }
  .nav__link { padding: .8rem .2rem; border-bottom: 1px solid #f0e7f2; }
  .nav__link::after { display: none; }
  .nav__cta { margin: .8rem 0 0; text-align: center; justify-content: center; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 320px; max-width: 360px; margin-inline: auto; order: -1; }
  .hero { padding-top: 6rem; }

  .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-8px); }
  .pricing__wedge { inset: 10% 0 0 0; clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%); }
}

@media (max-width: 520px) {
  .container { width: min(100% - 1.8rem, var(--container)); }
  .contact__form { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .svc__letter { font-size: 2.4rem; }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; }
}
