:root {
  --bg: #f2f1ed;
  --surface: #faf9f6;
  --surface-2: #e7e5df;
  --ink: #202326;
  --ink-soft: #595e61;
  --line: rgba(32, 35, 38, 0.15);
  --dark: #1c2023;
  --dark-2: #252a2e;
  --white: #fff;
  --accent: #e85b2a;
  --accent-dark: #bf4219;
  --star: #f3b73f;
  --radius: 18px;
  --shadow: 0 26px 70px rgba(24, 27, 29, 0.16);
  --container: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff9a75;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 8vw, 5.4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 5.4vw, 3.8rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 3.3vw, 1.55rem);
  font-weight: 800;
}

p {
  color: var(--ink-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(28, 32, 35, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(28, 32, 35, 0.985);
  box-shadow: 0 12px 34px rgba(13, 15, 16, 0.15);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 132px;
  height: 58px;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 720;
  color: rgba(255, 255, 255, 0.77);
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right 160ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 9px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.header-phone svg {
  width: 17px;
  height: 17px;
  fill: var(--accent);
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 95;
  display: flex;
  padding: 24px max(20px, calc((100vw - var(--container)) / 2));
  flex-direction: column;
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 18px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
}

.mobile-menu-phone {
  margin-top: 18px;
  border: 0 !important;
  border-radius: 12px;
  background: var(--accent);
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.82), rgba(255,255,255,0.16) 55%),
    radial-gradient(circle at 78% 26%, rgba(32,35,38,0.075) 0 1px, transparent 1.5px);
  background-size: auto, 14px 14px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -14%;
  width: 58vw;
  height: 120%;
  background: linear-gradient(135deg, rgba(32,35,38,0.035), rgba(32,35,38,0.12));
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 84%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  padding-top: 44px;
  padding-bottom: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(1.03rem, 2.6vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(232, 91, 42, 0.24);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-primary svg {
  fill: currentColor;
}

.btn-secondary {
  border-color: rgba(32, 35, 38, 0.25);
  background: rgba(255,255,255,0.46);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-proof > div,
.hero-proof > a {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
}

.hero-proof strong {
  font-size: 1rem;
  font-weight: 880;
  white-space: nowrap;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.hero-proof > a {
  grid-column: 1 / -1;
  width: fit-content;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.hero-proof > a:hover {
  border-color: var(--ink-soft);
}

.hero-proof .stars {
  color: var(--star);
  font-size: 0.83rem;
  letter-spacing: 0.07em;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  margin-inline: auto;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: #141718;
  box-shadow: var(--shadow);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-audio-control {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 5px 8px 5px 5px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(18, 21, 23, 0.76);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}

.video-mute-button {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.11);
  color: var(--white);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.video-mute-button:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.04);
}

.video-mute-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-mute-button .icon-muted {
  display: none;
}

.video-mute-button.is-muted .icon-volume {
  display: none;
}

.video-mute-button.is-muted .icon-muted {
  display: block;
}

.video-volume-wrap {
  display: flex;
  align-items: center;
}

.video-volume {
  width: 74px;
  height: 22px;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.video-volume-value {
  min-width: 29px;
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.video-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(18, 21, 23, 0.72);
  color: rgba(255,255,255,0.93);
  font-size: 0.72rem;
  font-weight: 760;
  backdrop-filter: blur(8px);
}


.video-label a {
  color: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.video-label a:hover {
  color: #fff;
}

.video-label a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 2px;
}

.video-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 91, 42, 0.16);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.trust-strip-inner {
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip span {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-strip span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -13px;
  color: var(--accent);
}

/* Services */
.services {
  background: var(--surface);
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 180ms ease, background 180ms ease;
}

.service-row:hover {
  padding-left: 8px;
}

.service-number {
  padding-top: 3px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-row p {
  max-width: 650px;
  margin: 0;
  font-size: 0.95rem;
}

/* Experience */
.experience {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 55%, rgba(255,255,255,0.025) 55% 73%, transparent 73%),
    radial-gradient(circle at 16% 24%, rgba(255,255,255,0.06) 0 1px, transparent 1.4px);
  background-size: auto, 16px 16px;
  pointer-events: none;
}

.experience-grid {
  position: relative;
  display: grid;
  gap: 42px;
  align-items: center;
}

.experience-number {
  display: flex;
  flex-direction: column;
  line-height: 0.86;
}

.experience-number span {
  color: var(--white);
  font-size: clamp(7.5rem, 34vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.085em;
}

.experience-number small {
  margin-top: 22px;
  color: rgba(255,255,255,0.57);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.experience-copy p {
  max-width: 650px;
  color: rgba(255,255,255,0.7);
}

.experience-points {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.experience-points span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Reviews */
.reviews {
  padding-top: 44px;
  padding-bottom: 44px;
  background: var(--surface);
}

.reviews-card {
  display: grid;
  gap: 26px;
  padding: 32px 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(28, 32, 35, 0.07);
}

.reviews-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 6vw, 3rem);
}

.reviews-card p:last-child {
  margin-bottom: 0;
}

.reviews-stars {
  margin-bottom: 16px;
  color: var(--star);
  font-size: 1.45rem;
  letter-spacing: 0.11em;
}

.btn-dark {
  justify-self: start;
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #0d0f10;
}

.btn-dark svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

/* Process */
.process {
  background: var(--bg);
}

.process-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 225px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.25);
}

.process-step > span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* Area */
.area {
  overflow: hidden;
  background: var(--surface);
}

.area-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.area-copy p:not(.eyebrow) {
  max-width: 630px;
}

.area-seo-copy {
  margin-top: 18px;
}

.area-places-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.6);
  box-shadow: 0 18px 44px rgba(28, 32, 35, 0.06);
}

.area-places-box h3 {
  margin-bottom: 8px;
}

.area-places-box > p {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.area-places {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.area-places li {
  padding: 7px 10px;
  border: 1px solid rgba(32,35,38,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 720;
  line-height: 1.2;
}

.area-visual {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(32,35,38,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,35,38,0.055) 1px, transparent 1px),
    #e6e4de;
  background-size: 34px 34px;
}

.area-plane {
  position: absolute;
  border: 1px solid rgba(32,35,38,0.15);
  background: rgba(255,255,255,0.28);
  transform: skew(-18deg) rotate(-9deg);
}

.plane-one {
  top: 70px;
  right: 14%;
  width: 64%;
  height: 140px;
}

.plane-two {
  right: 27%;
  bottom: 30px;
  width: 52%;
  height: 100px;
}

.area-pin {
  position: absolute;
  top: 43%;
  left: 44%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  font-size: 0.8rem;
  transform: translate(-50%, -50%);
}

.area-pin span {
  width: 18px;
  height: 18px;
  margin-bottom: 8px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(32,35,38,0.3);
}

/* Contact */
.contact {
  background: var(--dark-2);
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 42px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
}

.contact-person {
  display: flex;
  margin-top: 34px;
  flex-direction: column;
}

.contact-person strong {
  font-size: 1.1rem;
}

.contact-person span {
  color: rgba(255,255,255,0.56);
  font-size: 0.9rem;
}

.contact-person address {
  margin-top: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.5;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  min-height: 88px;
  padding: 14px 14px 14px 16px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.contact-link:hover {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.075);
  transform: translateY(-2px);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.09);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-phone .contact-icon {
  background: var(--accent);
}

.contact-phone .contact-icon svg {
  fill: currentColor;
  stroke: none;
}

.star-icon {
  color: var(--star);
  font-size: 1.1rem;
}

.contact-link small,
.contact-link strong {
  display: block;
  min-width: 0;
}

.contact-link small {
  margin-bottom: 2px;
  color: rgba(255,255,255,0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.94rem, 3vw, 1.06rem);
}

.contact-arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(255,255,255,0.56);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

/* Footer */
.site-footer {
  padding: 54px 0 90px;
  background: #121516;
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-brand img {
  width: 160px;
  height: 90px;
  margin-bottom: 10px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.footer-data,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-data span,
.footer-data address,
.footer-data a,
.footer-links a {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
}

.footer-data address {
  font-style: normal;
  line-height: 1.55;
}

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

.footer-bottom {
  display: flex;
  margin-top: 44px;
  padding-top: 20px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.62);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.22);
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}

.footer-bottom strong {
  color: rgba(255,255,255,0.72);
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 90;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mobile-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.mobile-cta a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(20,22,23,0.3);
  font-size: 0.95rem;
}

.mobile-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Reveal – treść pozostaje widoczna, jeśli JavaScript jest wyłączony */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 430px) {
  .video-audio-control {
    top: 10px;
    right: 10px;
    gap: 6px;
    padding-right: 7px;
  }

  .video-volume {
    width: 62px;
  }

  .video-volume-value {
    display: none;
  }

  .area-places-box {
    padding: 22px 18px;
  }

  .area-places li {
    font-size: 0.75rem;
  }
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer-links {
    grid-column: 2;
  }
}

@media (min-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .section {
    padding: 104px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.17fr) minmax(280px, 0.72fr);
    gap: 50px;
    padding-top: 66px;
    padding-bottom: 72px;
    align-items: center;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero-media {
    width: min(100%, 400px);
    margin-right: 0;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, auto));
    gap: 16px 26px;
    justify-content: start;
  }

  .hero-proof > a {
    grid-column: auto;
  }

  .service-row {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 30px 0;
  }

  .experience-grid {
    grid-template-columns: minmax(290px, 0.92fr) minmax(0, 1.08fr);
    gap: 68px;
  }

  .reviews {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .reviews-card {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 44px 48px;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .area-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 64px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 80px;
  }

  .footer-grid {
    grid-template-columns: 1.45fr 1fr 0.75fr;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .site-footer {
    padding-bottom: 38px;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 980px) {
  .desktop-nav,
  .header-phone {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .brand {
    width: 145px;
  }

  .header-inner {
    gap: 26px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.27fr) minmax(330px, 0.73fr);
    min-height: calc(100vh - var(--header-height));
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-copy {
    padding-right: 12px;
  }

  .hero-actions .btn {
    min-height: 56px;
    padding-inline: 22px;
  }

  .services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .service-row {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 170px;
    padding: 30px 28px;
    border-right: 1px solid var(--line);
  }

  .service-row:hover {
    padding-left: 36px;
  }
}

@media (min-width: 1320px) {
  :root {
    --container: 1240px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.36fr) minmax(360px, 0.64fr);
    gap: 78px;
  }

  .hero-media {
    width: 410px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-grid {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .hero-actions .btn {
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  .contact-link {
    grid-template-columns: 40px minmax(0, 1fr) 20px;
    padding-inline: 12px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
