:root {
  --red: #e31b23;
  --orange: #ff6a00;
  --blue: #1e5bff;
  --cream: #f6f1ea;
  --cream-2: #efe8de;
  --ink: #121212;
  --char: #161616;
  --muted: #6b6560;
  --line: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --grad: linear-gradient(90deg, #e31b23 0%, #ff6a00 48%, #1e5bff 100%);
  --grad-soft: linear-gradient(120deg, #e31b23 0%, #ff6a00 42%, #1e5bff 100%);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-h: 88px;
  --radius: 999px;
  --shadow: 0 18px 40px rgba(18, 18, 18, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#poptavka,
#media-kit,
.service-block[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--red);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  background: var(--white);
  color: var(--ink);
  padding: 8px 12px;
}

.skip:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0.055;
  background: url("../img/grain.png");
  mix-blend-mode: overlay;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-solid {
  position: sticky;
  top: 0;
  background: var(--char);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover img {
  transform: rotate(-8deg) scale(1.08);
}

.nav {
  display: flex;
  justify-content: center;
  font-size: 14px;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 14px;
  position: relative;
}

.nav a + a::before {
  content: "\00B7";
  position: absolute;
  left: -2px;
  color: rgba(255, 255, 255, 0.45);
}

.nav a.is-active,
.nav a:hover {
  color: var(--white);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav a.is-active::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(227, 27, 35, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: #0e0e10;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-aurora {
  position: absolute;
  left: -8%;
  top: -10%;
  width: 68%;
  height: 120%;
  background:
    radial-gradient(ellipse at 22% 42%, rgba(227, 27, 35, 0.95) 0%, transparent 54%),
    radial-gradient(ellipse at 46% 28%, rgba(255, 106, 0, 0.8) 0%, transparent 48%),
    radial-gradient(ellipse at 30% 72%, rgba(30, 91, 255, 0.88) 0%, transparent 52%);
  filter: blur(28px);
  pointer-events: none;
  animation: aurora 16s ease-in-out infinite;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(58%, 820px);
  object-fit: cover;
  object-position: 70% 10%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  animation: kenburns 22s ease-in-out infinite alternate;
}

picture.hero-photo {
  display: block;
}

picture.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 10%;
}

.eq {
  position: absolute;
  left: 6%;
  bottom: 18%;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 72px;
  z-index: 2;
  opacity: 0.7;
}

.eq span {
  width: 4px;
  background: var(--grad);
  border-radius: 4px;
  animation: eq 1.1s ease-in-out infinite;
}

.eq span:nth-child(1) { height: 18%; animation-delay: 0s; }
.eq span:nth-child(2) { height: 42%; animation-delay: 0.12s; }
.eq span:nth-child(3) { height: 70%; animation-delay: 0.22s; }
.eq span:nth-child(4) { height: 36%; animation-delay: 0.08s; }
.eq span:nth-child(5) { height: 88%; animation-delay: 0.28s; }
.eq span:nth-child(6) { height: 50%; animation-delay: 0.16s; }
.eq span:nth-child(7) { height: 24%; animation-delay: 0.32s; }
.eq span:nth-child(8) { height: 62%; animation-delay: 0.05s; }

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 640px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin: 22px 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-sub a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.hero-sub a:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero-proof a {
  color: inherit;
  transition: color 0.25s ease;
}

.hero-proof a:hover {
  color: #c9dcff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  margin: 48px 0 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #8eb0ff;
}

.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 14px 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0;
  max-width: 28em;
  color: var(--muted);
}

.section-head .text-link {
  margin-top: 12px;
}

.services {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

a.service-card {
  color: inherit;
}

.service-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px 24px 28px;
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--grad);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(18, 18, 18, 0.14);
}

.service-card .num {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--red);
  font-weight: 700;
}

.service-card svg {
  width: 28px;
  height: 28px;
  margin: 14px 0 12px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
  flex: 1;
}

.service-card .more {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.service-card:hover .more {
  color: var(--red);
  letter-spacing: 0.02em;
}

.audience {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.72), rgba(18, 18, 18, 0.82)),
    url("../img/graphic-lights.webp") center/cover;
  color: var(--white);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  backdrop-filter: blur(8px);
  color: inherit;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

a.pill:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-3px);
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.photo-frame {
  position: relative;
  display: block;
  color: inherit;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(227, 27, 35, 0.45);
  z-index: 0;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: saturate(1.05) contrast(1.05);
}

.photo-frame picture {
  display: block;
  position: relative;
  z-index: 1;
}

.about-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-copy p {
  max-width: 36em;
  color: #3f3a36;
}

.about-copy .lead {
  margin-top: 22px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}

.text-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.process {
  background: var(--cream-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

a.process-step {
  color: inherit;
  display: block;
}

.process-step {
  background: var(--white);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(18, 18, 18, 0.14);
}

.process-step strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 10px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.energy {
  background: var(--char);
  color: var(--white);
}

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

a.shot {
  color: inherit;
  display: block;
}

.shot {
  position: relative;
  overflow: hidden;
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.shot:hover img {
  transform: scale(1.08);
}

.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

a.stat {
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

a.stat:hover {
  transform: translateY(-4px);
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.cta {
  padding: 28px 0 36px;
  background: var(--cream);
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(227, 27, 35, 0.82), rgba(255, 106, 0, 0.72), rgba(30, 91, 255, 0.82)),
    url("../img/graphic-mic.webp") center/cover;
  color: var(--white);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 12px 0 0;
  opacity: 0.92;
}

.cta-form,
.contact-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.field,
.contact-form input,
.contact-form select,
.contact-form textarea,
.cta-form input,
.cta-form select {
  min-height: 48px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 0 16px;
  min-width: 180px;
  outline: none;
}

.cta-form input,
.cta-form select {
  color-scheme: dark;
}

.cta-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: var(--muted);
}

.cta-form select option,
.contact-form select option {
  color: var(--ink);
}

.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-logo {
  display: block;
  flex-shrink: 0;
}

.footer-logo:hover img {
  transform: rotate(-8deg) scale(1.08);
}

.footer-brand p,
.footer-links {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-brand a[href*="maps"] {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a:hover,
.social a:hover {
  color: var(--white);
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background 0.25s ease;
}

.social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.copyright {
  margin: 36px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.page-hero {
  background: var(--char);
  color: var(--white);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(227, 27, 35, 0.55), transparent 60%),
    radial-gradient(ellipse at 50% 30%, rgba(255, 106, 0, 0.35), transparent 55%),
    radial-gradient(ellipse at 40% 80%, rgba(30, 91, 255, 0.4), transparent 55%);
  animation: aurora 18s ease-in-out infinite;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 16px 0 0;
  max-width: 36em;
  color: rgba(255, 255, 255, 0.82);
}

.service-detail {
  display: grid;
  gap: 28px;
}

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  position: relative;
}

.jump a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.jump a:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost.ink {
  color: var(--ink);
  border-color: rgba(18, 18, 18, 0.28);
}

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(18, 18, 18, 0.12);
}

.service-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad);
}

.service-block img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.service-block .copy {
  padding: 32px 32px 32px 24px;
}

.service-block .copy .hero-actions {
  margin-top: 22px;
}

.contact-panel a[href*="maps"] {
  border-bottom: 1px solid rgba(18, 18, 18, 0.25);
}

.contact-panel a[href*="maps"]:hover {
  color: var(--red);
  border-color: var(--red);
}

.service-block h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 2rem;
}

.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(227, 27, 35, 0.35);
  padding-left: 24px;
}

a.time-item {
  color: inherit;
  display: block;
}

.time-item {
  padding: 0 0 28px;
  position: relative;
  transition: transform 0.3s ease;
}

a.time-item:hover {
  transform: translateX(6px);
}

.time-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.time-item strong {
  display: block;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.faq details {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  margin-bottom: 12px;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.faq details[open] {
  border-left-color: var(--red);
  transform: translateX(4px);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s ease;
}

.faq details[open] summary {
  color: var(--red);
}

.faq details p {
  margin: 10px 0 0;
  color: #3f3a36;
}

.media-kit {
  background: var(--cream-2);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.kit-card {
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(18, 18, 18, 0.12);
}

.kit-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.kit-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3f3a36;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-panel,
.contact-form-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-panel h2,
.contact-form-card h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 2rem;
}

.contact-panel p {
  margin: 0 0 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.form-grid label.wide,
.form-grid .gdpr,
.form-grid .btn,
.form-grid .success {
  grid-column: 1 / -1;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  min-width: 0;
  border: 0;
  min-height: 48px;
  padding: 0 16px;
}

.contact-form-card textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.gdpr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
}

.gdpr input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.map-embed {
  margin-top: 18px;
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.success {
  display: none;
  margin-top: 12px;
  font-weight: 600;
}

.success.is-on {
  display: block;
}

.legal {
  max-width: 720px;
}

.legal h2 {
  font-family: var(--font-serif);
}

.cookie {
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 16px;
  max-width: 420px;
  z-index: 60;
  background: var(--char);
  color: var(--white);
  padding: 16px 18px;
  display: none;
  gap: 16px;
  align-items: flex-start;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.cookie.is-on {
  display: flex;
}

.cookie p {
  margin: 0;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.reveal.is-in {
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}

.hero-copy .kicker,
.hero-copy h1,
.hero-copy .hero-sub,
.hero-copy .hero-actions,
.hero-copy .hero-proof {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .kicker { animation-delay: 0.08s; }
.hero-copy h1 { animation-delay: 0.18s; }
.hero-copy .hero-sub { animation-delay: 0.32s; }
.hero-copy .hero-actions { animation-delay: 0.44s; }
.hero-copy .hero-proof { animation-delay: 0.58s; }

.page-hero .kicker,
.page-hero h1,
.page-hero p,
.page-hero .jump {
  opacity: 0;
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-hero .kicker { animation-delay: 0.05s; }
.page-hero h1 { animation-delay: 0.14s; }
.page-hero p { animation-delay: 0.26s; }
.page-hero .jump { animation-delay: 0.38s; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 70;
  background: var(--grad);
  pointer-events: none;
}

.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 16px 32px rgba(227, 27, 35, 0.38);
  display: inline-flex;
  align-items: center;
  animation: float-pulse 2.8s ease-in-out infinite;
}

.float-cta:hover {
  transform: translateY(-3px);
  color: var(--white);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 16px 32px rgba(227, 27, 35, 0.38); }
  50% { box-shadow: 0 16px 40px rgba(255, 106, 0, 0.5); }
}

@keyframes aurora {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 4%) scale(1.08); }
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes eq {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

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

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-aurora,
  .hero-photo,
  .eq span,
  .marquee-track,
  .page-hero::before,
  .reveal,
  .hero-copy .kicker,
  .hero-copy h1,
  .hero-copy .hero-sub,
  .hero-copy .hero-actions,
  .hero-copy .hero-proof,
  .page-hero .kicker,
  .page-hero h1,
  .page-hero p,
  .page-hero .jump,
  .float-cta {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--char);
    padding: 16px 20px 24px;
    gap: 8px;
  }

  .nav.is-open a + a::before {
    display: none;
  }

  .hero-photo {
    width: 100%;
    opacity: 0.38;
    mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 64px;
  }

  .eq {
    display: none;
  }

  .service-grid,
  .energy-grid,
  .about-grid,
  .footer-grid,
  .media-grid,
  .contact-layout,
  .process-grid,
  .stats,
  .service-block,
  .form-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .cookie {
    padding: 40px 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .btn {
    display: none;
  }

  .float-cta {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 92vh;
  }

  .hero-actions,
  .cta-form {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

@media print {
  .site-header,
  .cta,
  .cookie,
  .grain,
  .menu-toggle,
  .float-cta,
  .scroll-progress {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
