/* === ZIP ZIPULIA PRODUCTION — street/show: asphalt black + acid-graffiti lime + magenta === */
:root {
  --bg: #0E0F12;
  --bg-soft: #14161B;
  --surface: #1A1D24;
  --surface-2: #22262F;
  --surface-3: #2A2F39;

  --accent: #CDEB45;        /* acid graffiti lime — primary (from the wall + brand overlays) */
  --accent-soft: #DAF267;
  --accent-deep: #A9C521;
  --accent-ink: #11140A;    /* dark text on lime */

  --pink: #FF2E88;          /* magenta pop — secondary (brand story-overlay colour) */
  --pink-soft: #FF5BA2;

  --white: #FFFFFF;
  --text: #ECEDEF;
  --text-soft: #A6ACB8;
  --text-mute: #6E7480;
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);

  --shadow: 0 30px 70px -36px rgba(0, 0, 0, 0.88);
  --shadow-accent: 0 16px 40px -16px rgba(205, 235, 69, 0.45);
  --radius: 16px;
  --radius-sm: 10px;

  --container: 1280px;
  --pad-x: 32px;
  --header-h: 68px;

  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 84px; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s, opacity .25s; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* === TYPE === */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--white);
  text-transform: uppercase;
}
h1 { font-size: clamp(2.1rem, 7vw, 5.6rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); margin-bottom: .5em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.55rem); margin-bottom: .45em; letter-spacing: 0.01em; }
h4 { font-size: 1.12rem; letter-spacing: 0.02em; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--accent); }
.em-pink { color: var(--pink) !important; }

p { margin-bottom: 1em; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.08rem; max-width: 680px; color: var(--text-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1em;
  display: inline-block;
}
.eyebrow-light { color: var(--text-soft); }
.eyebrow.eyebrow-white { color: var(--white); }

.section-head { text-align: center; max-width: 740px; margin: 0 auto 64px; }
.section-head .lead { margin: 0 auto; }

.ico { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; display: inline-grid; place-items: center; }
.ico svg { width: 100%; height: 100%; display: block; }
.ico-line { display: flex; align-items: flex-start; gap: 10px; }
.ico-line .ico { margin-top: 4px; }
.ico-line > span:not(.ico) { flex: 1; min-width: 0; }

section { position: relative; }
.services, .about, .process, .proof, .videos, .gallery, .faq, .cta { padding: clamp(72px, 11vw, 130px) 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px;
  font-family: var(--display);
  font-size: .95rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: all .28s cubic-bezier(.2,.8,.2,1); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm { padding: 10px 20px; font-size: .82rem; }
.btn-lg { padding: 17px 38px; font-size: 1.02rem; }

.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-soft); transform: translateY(-2px); box-shadow: 0 20px 46px -16px rgba(205,235,69,.6); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { background: rgba(255,255,255,.04); color: var(--white); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 15, 18, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; height: var(--header-h); gap: 18px; }

.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark { height: 40px; width: 40px; border-radius: 50%; overflow: hidden; display: inline-flex; border: 1.5px solid var(--accent); flex-shrink: 0; }
.logo-mark img { height: 100%; width: 100%; object-fit: cover; display: block; }
.logo-text {
  font-family: var(--display); font-weight: 700; font-size: 1.32rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); line-height: 1;
  display: flex; flex-direction: column;
}
.logo-text em { font-style: normal; color: var(--accent); }
.logo-text .logo-sub { font-size: .54rem; letter-spacing: 0.34em; color: var(--text-mute); font-weight: 500; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 2px; position: absolute; left: 56%; top: 50%; transform: translate(-50%, -50%); }
.nav > a {
  position: relative; padding: 8px 12px; font-size: .78rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--text-soft); text-transform: uppercase;
  font-family: var(--display);
}
.nav > a:hover, .nav > a.is-active { color: var(--white); }
.nav-indicator {
  position: absolute; bottom: 2px; left: 0; height: 2px; width: 0; background: var(--accent);
  border-radius: 2px; opacity: 0; transition: left .35s cubic-bezier(.4,0,.2,1), width .35s cubic-bezier(.4,0,.2,1), opacity .25s;
}
.nav-indicator.is-visible { opacity: 1; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-footer { display: none; }

.burger { display: none; width: 30px; height: 22px; position: relative; background: none; border: 0; cursor: pointer; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .25s, top .3s; }
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 120px 0 70px; overflow: hidden; color: var(--white);
  background:
    radial-gradient(120% 80% at 84% 14%, rgba(205,235,69,0.14) 0%, transparent 52%),
    radial-gradient(110% 92% at 2% 98%, rgba(255,46,136,0.16) 0%, transparent 55%),
    linear-gradient(160deg, #16181D 0%, #0E0F12 58%, #0A0B0E 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(36px, 5vw, 64px); align-items: center; width: 100%; }
.hero-text { max-width: 640px; }
.hero h1 { margin-bottom: .3em; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--text); max-width: 540px; margin-bottom: 2.2em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.6em; }
.hero-meta { display: flex; gap: clamp(20px, 3vw, 40px); flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; max-width: 560px; }
.hero-meta > div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--white); line-height: 1; }
.hero-meta strong .u { color: var(--accent); font-size: .58em; }
.hero-meta span { font-size: .82rem; color: var(--text-soft); margin-top: 6px; letter-spacing: .02em; }

.hero-image { position: relative; align-self: center; }
.hero-image > img { width: 100%; height: auto; max-height: calc(100svh - 180px); object-fit: cover; border-radius: 22px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.85); border: 1px solid var(--line); }
.hero-badge { position: absolute; left: -18px; bottom: 26px; display: flex; align-items: center; gap: 12px; max-width: 270px; padding: 12px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.hero-badge-mark { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1.5px solid var(--accent); }
.hero-badge-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge b { font-family: var(--display); font-size: .9rem; font-weight: 700; color: var(--white); display: block; line-height: 1.15; }
.hero-badge span { font-size: .74rem; color: var(--text-mute); }

.hero-scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 42px; height: 42px; display: grid; place-items: center; color: var(--white);
  border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.25);
  animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* hero entrance — staggered fade-up */
@keyframes hero-fade-up { 0% { opacity: 0; transform: translateY(28px); filter: blur(4px); } 100% { opacity: 1; transform: none; filter: none; } }
.hero-text > .eyebrow, .hero-text > h1, .hero-text > .hero-sub,
.hero-text > .hero-cta, .hero-text > .hero-meta, .hero-image { opacity: 0; animation: hero-fade-up 1s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-text > .eyebrow { animation-delay: .10s; }
.hero-text > h1 { animation-delay: .22s; animation-duration: 1.2s; }
.hero-text > .hero-sub { animation-delay: .42s; }
.hero-text > .hero-cta { animation-delay: .58s; }
.hero-text > .hero-meta { animation-delay: .74s; }
.hero-image { animation-delay: .4s; animation-duration: 1.4s; }

/* === SERVICES === */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.service-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .35s, border-color .35s, box-shadow .35s;
}
.service-card.is-featured { border-color: rgba(205,235,69,.45); }
.service-card:hover { transform: translateY(-4px); border-color: rgba(205,235,69,.5); box-shadow: var(--shadow); }
.service-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #0b0c0e; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--display); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent); padding: 5px 12px; border-radius: 999px;
}
.service-tag.tag-pink { background: var(--pink); color: #fff; }
.service-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { color: var(--white); }
.service-body p { margin-bottom: 1.3em; font-size: .96rem; }
.service-feats { list-style: none; margin: 0 0 1.3em; display: grid; gap: 9px; }
.service-feats li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--text-soft); line-height: 1.5; }
.service-feats li svg { position: absolute; left: 0; top: 3px; width: 16px; height: 16px; color: var(--accent); }
.service-meta { margin: 0 0 1.2em; font-family: var(--display); font-size: .86rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--text-mute); }
.service-link {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 0; cursor: pointer; color: var(--white);
  font-family: var(--display); font-size: .9rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  transition: gap .25s, color .25s;
}
.service-link svg { width: 17px; height: 17px; color: var(--accent); transition: transform .25s; }
.service-link:hover { color: var(--accent); }
.service-link:hover svg { transform: translateX(4px); }
.services-note { text-align: center; margin-top: 42px; color: var(--text-mute); font-size: .98rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.services-cta { text-align: center; margin-top: 22px; }

/* === ABOUT === */
.about { background: var(--bg-soft); }
.two-col { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.two-col.reverse .col-media { order: 2; }
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.about-img .about-swiper { aspect-ratio: 4 / 5; width: 100%; }
.about-img .about-swiper .swiper-wrapper, .about-img .about-swiper .swiper-slide { height: 100%; }
.about-img-caption {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  font-family: var(--display); font-size: .76rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); background: rgba(14,15,18,.72); backdrop-filter: blur(6px); padding: 7px 14px; border-radius: 999px;
}
.about-creds { list-style: none; margin: 1.5em 0; display: grid; gap: 11px; }
.about-creds li { position: relative; padding-left: 26px; color: var(--text); font-size: .98rem; line-height: 1.5; }
.about-creds li::before { content: ""; position: absolute; left: 0; top: .62em; width: 13px; height: 2px; background: var(--accent); border-radius: 2px; }
.about-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.8em; }
.about-tags li {
  font-family: var(--display); font-size: .8rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text); background: var(--surface-2); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px;
}
.quote-line {
  margin-top: 1.8em; padding: 16px 20px; border-left: 3px solid var(--accent);
  background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--display); font-size: 1.1rem; letter-spacing: .02em; color: var(--white); text-transform: uppercase;
}
.quote-line span { color: var(--pink); }

/* === PROCESS === */
.process { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
}
.process-card::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--accent); transition: height .5s ease; }
.process-card:hover::before { height: 100%; }
.process-num {
  font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.4px rgba(205,235,69,.65); display: block; margin-bottom: .35em;
}
.process-card h3 { color: var(--white); }
.process-card p { margin: 0; font-size: .96rem; }

/* === PROOF (social proof / reactions) === */
.proof { background: var(--bg-soft); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.result-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; transition: transform .35s, border-color .35s;
}
.result-card:hover { transform: translateY(-4px); border-color: rgba(205,235,69,.45); }
.result-num {
  font-family: var(--display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.3rem); line-height: 1;
  color: var(--accent); margin-bottom: .3em; letter-spacing: .01em;
}
.result-num .u { font-size: .42em; color: var(--text-soft); display: inline-block; margin-left: 2px; }
.result-label { font-size: .95rem; color: var(--text-soft); margin: 0; }
.results-note { text-align: center; margin-top: 38px; color: var(--text-mute); font-size: .92rem; }

/* === CTA bands === */
.cta { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); text-align: center; }
.cta-1 { background: linear-gradient(120deg, #15171C 0%, #1B1E24 52%, #20300A 100%); }
.cta-1 .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; text-align: left; }
.cta-1 .cta-inner > div { max-width: 660px; }
.cta-2 { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.cta .lead { margin-left: auto; margin-right: auto; }
.cta-1 .lead { margin: 0; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 2.4em; }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 2.6em auto 0; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform .3s, border-color .3s, background .3s;
}
.contact-card svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 6px; }
.contact-card h4 { color: var(--white); }
.contact-card span { font-size: .86rem; color: var(--text-soft); }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(205,235,69,.4); background: var(--surface-2); }

/* === VIDEO SLIDER === */
.videos { background: var(--bg); overflow: hidden; }
.video-swiper, .gallery-swiper { padding: 0 var(--pad-x); }
.video-swiper .swiper-slide { width: min(320px, 72vw); height: auto; }
.video-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.video-media { position: relative; aspect-ratio: 9 / 16; background: #000; cursor: pointer; }
.video-media video { width: 100%; height: 100%; object-fit: cover; }
.video-media video:fullscreen, .video-media video:-webkit-full-screen { object-fit: contain; background: #000; }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.32); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.8); padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.28);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .35s, color .25s, background .25s, border-color .25s;
}
.video-play:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.07); }
.video-play svg { width: 36px; height: 36px; }
.video-play.is-hidden { opacity: 0; pointer-events: none; }
.video-cap { padding: 16px 18px 18px; }
.video-cap h4 { color: var(--white); margin-bottom: .25em; }
.video-cap p { margin: 0; font-size: .88rem; color: var(--text-soft); }

/* === GALLERY === */
.gallery { background: var(--bg-soft); overflow: hidden; }
.gallery-swiper .swiper-slide { width: min(330px, 74vw); height: auto; }
.gallery-swiper a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line-soft); background: #0b0c0e; }
.gallery-swiper img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.gallery-swiper a:hover img { transform: scale(1.06); }

/* swiper chrome */
.swiper-button-prev, .swiper-button-next { color: var(--white); transition: color .25s; }
.swiper-button-prev:hover, .swiper-button-next:hover { color: var(--accent); }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 26px; font-weight: 700; }
/* adaptive/dynamic pagination — external relative wrapper, in flow below the slider */
.slider-dots { position: relative; width: 100%; height: 14px; margin-top: 28px; }
.slider-dots .swiper-pagination { bottom: 3px; }
.swiper-pagination-bullet { width: 8px; height: 8px; background: var(--text-mute); opacity: .55; }
.swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }

/* === FAQ === */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 500;
  letter-spacing: .01em; color: var(--white); text-transform: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg); transition: transform .3s;
}
.faq-list details[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-list details p { padding: 0 44px 22px 0; margin: 0; color: var(--text-soft); }
.faq-link {
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--accent);
  font: inherit; font-weight: 600; text-decoration: underline; text-underline-offset: 3px;
}
.faq-list a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* === FOOTER === */
.site-footer { background: #090A0C; padding: clamp(60px, 8vw, 90px) 0 36px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-soft); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: .94rem; max-width: 340px; }
.site-footer h5 { color: var(--white); font-size: .9rem; letter-spacing: .1em; margin-bottom: 16px; }
.site-footer .footer-grid p { margin-bottom: 9px; font-size: .92rem; }
.site-footer a:hover { color: var(--accent); }

.footer-seo { padding: 40px 0; border-bottom: 1px solid var(--line-soft); }
.footer-seo h4 { color: var(--text); font-size: 1.05rem; margin-bottom: 14px; text-transform: none; letter-spacing: 0; font-family: var(--sans); font-weight: 700; }
.footer-seo p { font-size: .86rem; color: var(--text-mute); line-height: 1.75; }
.footer-seo strong { color: var(--text-soft); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; }
.footer-bottom p { margin: 0; font-size: .85rem; color: var(--text-mute); }
.footer-credit { display: inline-flex; align-items: center; gap: 7px; }
.footer-credit svg { width: 15px; height: 15px; color: var(--accent); }
.footer-credit a:hover { color: var(--accent); }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 46px; height: 46px;
  border-radius: 999px; background: var(--accent); color: var(--accent-ink); border: 0; cursor: pointer;
  display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .3s; box-shadow: var(--shadow-accent);
}
.scroll-top svg { width: 22px; height: 22px; }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-soft); }

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
  .hero-text > *, .hero-image { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
  html { scroll-behavior: auto; }
}

/* === BOOKING MODAL === */
.booking-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.booking-modal.is-open { display: block; }
body.modal-open { overflow: hidden; }
.booking-overlay { position: absolute; inset: 0; background: rgba(5,6,8,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fade .3s ease; }
.booking-dialog {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 36px)); max-height: calc(100dvh - 36px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px clamp(24px, 4vw, 44px); box-shadow: var(--shadow); animation: pop .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translate(-50%, -46%) scale(.96); } }
.booking-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: background .25s, color .25s, transform .25s;
}
.booking-close svg { width: 19px; height: 19px; }
.booking-close:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: rotate(90deg); }
.booking-form-wrap .eyebrow { margin-bottom: .8em; }
.booking-dialog h3 { color: var(--white); margin-bottom: .4em; text-transform: none; letter-spacing: 0; font-weight: 600; }
.booking-lead { font-size: .95rem; margin-bottom: 1.8em; }
.booking-context { display: none; align-items: center; gap: 11px; margin-bottom: 1.5em; padding: 12px 14px; border: 1px solid rgba(205,235,69,.35); background: rgba(205,235,69,.08); border-radius: var(--radius-sm); font-size: .9rem; color: var(--text); }
.booking-context.is-shown { display: flex; }
.booking-context strong { color: var(--white); }
.booking-context-ico { flex-shrink: 0; width: 24px; height: 24px; color: var(--accent); display: inline-grid; place-items: center; }
.booking-context-ico svg { width: 100%; height: 100%; }
.booking-socials { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .92rem; color: var(--text-soft); flex-wrap: wrap; }
.booking-socials a { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 600; }
.booking-socials a svg { width: 16px; height: 16px; }

.field { display: block; margin-bottom: 16px; }
.field-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-soft); margin-bottom: 7px; letter-spacing: .02em; }
.field-label em { color: var(--accent); font-style: normal; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; font-family: var(--sans); font-size: .98rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(205,235,69,.18); }
.booking-error { color: var(--pink-soft); font-size: .88rem; min-height: 1.2em; margin-bottom: 8px; }
.booking-submit { width: 100%; margin-top: 6px; position: relative; }
.booking-submit-spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(17,20,10,.4); border-top-color: var(--accent-ink); border-radius: 999px; animation: spin .7s linear infinite; }
.booking-submit.is-loading .booking-submit-label { opacity: .5; }
.booking-submit.is-loading .booking-submit-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.booking-success { text-align: center; padding: 14px 0; }
.booking-success-icon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 999px; background: rgba(205,235,69,.16); display: grid; place-items: center; color: var(--accent); }
.booking-success-icon svg { width: 32px; height: 32px; }
.booking-success h3 { color: var(--white); text-transform: none; letter-spacing: 0; }
.booking-success p { margin: .6em 0 1.6em; }
.booking-success .btn + .btn { margin-top: 10px; }

/* === MOBILE === */
@media (max-width: 860px) {
  :root { --pad-x: 20px; }

  .nav {
    position: fixed; left: 0; right: 0; top: var(--header-h); transform: none;
    height: calc(100dvh - var(--header-h)); flex-direction: column; justify-content: flex-start; align-items: stretch;
    gap: 0; padding: 18px var(--pad-x) 32px; background: var(--bg);
    overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 90;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav > a { padding: 15px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav-indicator { display: none; }
  .header-cta { display: none; }
  .burger { display: block; }

  .nav-footer { display: block; margin-top: 24px; }
  .nav-footer .nav-cta { width: 100%; margin-bottom: 18px; }
  .nav-footer-link { display: flex; align-items: center; gap: 12px; padding: 12px 0; color: var(--text-soft); border-bottom: 1px solid var(--line-soft); }
  .nav-footer-link svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
  .nav-footer-link span { font-size: .92rem; }

  body.nav-open { overflow: hidden; }

  .hero { min-height: 0; padding: 104px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .hero-image > img { max-height: 62vh; }
  .hero-badge { left: 12px; }
  .eyebrow { font-size: .62rem; letter-spacing: 0.16em; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-meta { gap: 20px 28px; }
  .hero-scroll { display: none; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-media { aspect-ratio: 4 / 3; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .results-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse .col-media { order: 0; }
  .about-img img { aspect-ratio: 4 / 3; }

  .cta-1 .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-1 .cta-inner .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 14px; }

  .video-swiper .swiper-slide { width: 64vw; }
  .gallery-swiper .swiper-slide { width: 70vw; }
  .swiper-button-prev, .swiper-button-next { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .process-grid, .results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
