:root {
  --ink: #07070b;
  --night: #10172e;
  --gold: #b99454;
  --ivory: #f4ebdd;
  --amethyst: #5a3d73;
  --ritual: #c8bfae;
  --white: #ffffff;
  --line: rgba(185, 148, 84, 0.24);
  --serif: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Manrope", Arial, sans-serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 96px), var(--container));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  background: rgba(7, 7, 11, 0.78);
  border-bottom: 1px solid rgba(185, 148, 84, 0.18);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(calc(100% - 80px), var(--container));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr auto auto;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: var(--gold);
  font-family: var(--serif);
  line-height: 0.94;
}
.brand span {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand small {
  margin-top: 7px;
  color: var(--ritual);
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.6px;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 38px;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
}
.main-nav a {
  position: relative;
  padding: 35px 0 31px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}
.phone-cta,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  background: rgba(7, 7, 11, 0.4);
  padding: 0 18px;
  font-weight: 900;
  font-size: 13px;
}
.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
}
svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.hero {
  position: relative;
  height: 980px;
  min-height: 860px;
  margin-top: -88px;
  overflow: hidden;
}
.hero-img,
.cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
}
.hero-img {
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 77% 30%,
      rgba(185, 148, 84, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 58% 12%,
      rgba(90, 61, 115, 0.22),
      transparent 24%
    ),
    linear-gradient(
      90deg,
      rgba(7, 7, 11, 0.96) 0%,
      rgba(7, 7, 11, 0.86) 39%,
      rgba(22, 22, 28, 0.32) 67%,
      rgba(34, 34, 41, 0.72) 100%
    ),
    linear-gradient(180deg, rgba(7, 7, 11, 0.22), rgba(7, 7, 11, 0.76));
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 650px;
  padding-top: 80px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font: 800 12px/1.3 var(--sans);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: #8a6a35;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: 0;
}
.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--ivory);
  font-size: clamp(58px, 6vw, 88px);
  line-height: 1.02;
  font-weight: 500;
}
.hero-text {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(244, 235, 221, 0.86);
  font-size: 20px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, #d7b873, var(--gold));
  box-shadow: 0 16px 40px rgba(185, 148, 84, 0.2);
}
.btn-ghost {
  color: var(--ivory);
  border: 1px solid var(--gold);
  background: rgba(7, 7, 11, 0.36);
}
.btn:hover {
  box-shadow: 0 0 34px rgba(185, 148, 84, 0.24);
}
.proof {
  margin-top: 34px;
  color: var(--ritual);
  font-size: 13px;
  font-weight: 700;
}
.proof span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 13px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-float {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 92px;
}
.hero-float article {
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 16px;
  align-items: center;
  padding: 18px 24px;
  background: rgba(16, 23, 46, 0.54);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}
.hero-float i {
  grid-row: span 2;
  color: var(--gold);
}
.hero-float strong {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}
.hero-float small {
  color: var(--ritual);
}
.orbital {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(185, 148, 84, 0.32);
  border-radius: 50%;
  opacity: 0.38;
}
.orbital-one {
  right: 18%;
  top: 18%;
  width: 210px;
  height: 210px;
}
.orbital-two {
  right: 31%;
  bottom: 23%;
  width: 130px;
  height: 130px;
  border-color: rgba(244, 235, 221, 0.16);
}

.section-light {
  color: var(--ink);
  background:
    radial-gradient(
      circle at 4% 16%,
      rgba(185, 148, 84, 0.12),
      transparent 25%
    ),
    radial-gradient(circle at 94% 8%, rgba(90, 61, 115, 0.1), transparent 30%),
    var(--ivory);
}
.trust {
  min-height: 760px;
  padding: 122px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 54px;
  align-items: center;
}
.section-copy h2,
.section-head h2,
.about-copy h2,
.faq h2,
.final-content h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4vw, 66px);
  line-height: 1.08;
  font-weight: 500;
}
.section-copy p,
.faq p {
  color: #4e473d;
  font-size: 16px;
  line-height: 1.8;
}
.note {
  margin-top: 28px;
  color: #8a6a35 !important;
  font-weight: 700;
}
.medallions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}
.medallion {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(185, 148, 84, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 60px rgba(7, 7, 11, 0.08);
}
.medallion::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(185, 148, 84, 0.16);
  border-radius: 50%;
}
.medallion svg {
  color: var(--gold);
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
}
.medallion strong {
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}
.medallion span {
  max-width: 120px;
  margin-top: 8px;
  color: #5d554b;
  font-size: 11px;
  line-height: 1.45;
}

.services {
  min-height: 1180px;
  padding: 92px 0 108px;
  background:
    radial-gradient(
      circle at 70% 15%,
      rgba(90, 61, 115, 0.22),
      transparent 32%
    ),
    linear-gradient(180deg, var(--ink), var(--night) 52%, var(--ink));
}
.section-head {
  max-width: 760px;
  margin-bottom: 52px;
}
.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  color: var(--ivory);
}
.service-list {
  display: grid;
  gap: 54px;
}
.service-item {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 42px;
  align-items: center;
  min-height: 300px;
  border-top: 1px solid var(--line);
}
.service-item.reverse {
  grid-template-columns: 1fr 520px;
}
.service-item.reverse img {
  grid-column: 2;
}
.service-item.reverse div {
  grid-column: 1;
  grid-row: 1;
}
.service-item.wide {
  grid-template-columns: 58% 1fr;
}
.service-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  filter: saturate(0.95) contrast(1.02);
}
.service-item span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
}
.service-item h3 {
  margin: 4px 0 14px;
  color: var(--ivory);
  font-size: 34px;
  line-height: 1.05;
  text-transform: uppercase;
}
.service-item p {
  max-width: 420px;
  color: rgba(244, 235, 221, 0.76);
  line-height: 1.75;
}

.about {
  min-height: 940px;
  padding: 112px 0;
  background: var(--ink);
}
.about-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
  height: 700px;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(185, 148, 84, 0.16);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy p {
  color: rgba(244, 235, 221, 0.78);
  font-size: 16px;
  line-height: 1.85;
}
.about-copy blockquote {
  margin: 34px 0;
  padding-left: 28px;
  color: var(--gold);
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}
.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-tags span {
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}

.figures {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 14% 35%,
      rgba(185, 148, 84, 0.17),
      transparent 22%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(90, 61, 115, 0.26),
      transparent 32%
    ),
    linear-gradient(135deg, #0b1023, var(--night));
}
.figure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.figure-grid article {
  min-height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.figure-grid article:first-child {
  border-left: 0;
}
.figure-grid svg {
  color: var(--gold);
  width: 36px;
  height: 36px;
}
.figure-grid strong {
  color: var(--gold);
  font-family: var(--serif);
  line-height: 1.1;
  text-transform: uppercase;
}
.figure-grid span {
  color: var(--ritual);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.method {
  min-height: 980px;
  padding: 112px 0;
}
.method .section-head h2,
.faq h2 {
  color: var(--ink);
}
.method-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 86px;
}
.method-line::before {
  content: "";
  position: absolute;
  top: 86px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(185, 148, 84, 0.48);
}
.method-line article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(var(--step-shift, 0));
}
.method-line article:nth-child(2),
.method-line article:nth-child(4) {
  --step-shift: 58px;
}
.method-line span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--gold);
  border: 1px solid rgba(185, 148, 84, 0.5);
  border-radius: 50%;
  font: 700 11px/1 var(--serif);
}
.method-line i {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(185, 148, 84, 0.34);
  border-radius: 50%;
}
.method-line h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  text-transform: uppercase;
}
.method-line p {
  max-width: 220px;
  color: #534c43;
  line-height: 1.65;
}

.gallery {
  min-height: 1300px;
  padding: 104px 0 120px;
  background: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr 0.85fr;
  grid-auto-rows: 300px;
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--night);
}
.gallery-grid .large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid .vertical {
  grid-row: span 2;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.08);
}
.gallery-grid figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  padding-top: 16px;
  color: var(--ivory);
  border-top: 1px solid var(--gold);
  font: 800 13px/1 var(--sans);
  text-transform: uppercase;
}

.testimonials {
  min-height: 780px;
  padding: 112px 0;
  background: linear-gradient(180deg, var(--night), var(--ink));
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-grid article {
  min-height: 280px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}
.testimonial-grid p {
  color: rgba(244, 235, 221, 0.88);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}
.testimonial-grid span {
  color: var(--gold);
  font-weight: 900;
}

.faq {
  min-height: 780px;
  padding: 112px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 58px;
  align-items: start;
}
.accordion {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid rgba(185, 148, 84, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 22px;
}
.faq-item.is-open p {
  display: block;
}
.faq-item.is-open svg {
  transform: rotate(180deg);
}

.final-cta {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 7, 11, 0.88),
    rgba(7, 7, 11, 0.62),
    rgba(7, 7, 11, 0.82)
  );
}
.final-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.final-content h2 {
  max-width: 770px;
  color: var(--ivory);
  font-size: clamp(44px, 4.6vw, 74px);
}
.final-content p {
  max-width: 560px;
  color: rgba(244, 235, 221, 0.82);
  font-size: 18px;
  line-height: 1.7;
}
.cta-panel {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(16, 23, 46, 0.58);
  backdrop-filter: blur(18px);
}
.cta-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-weight: 900;
}
.cta-panel .big-phone {
  color: var(--gold);
  font-size: 26px;
  font-family: var(--serif);
}

.site-footer {
  padding: 92px 0 28px;
  background: #050508;
  color: rgba(244, 235, 221, 0.72);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1.05fr;
  gap: 52px;
}
.footer-brand span {
  font-size: 36px;
}
.site-footer h3 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 11px;
  color: rgba(244, 235, 221, 0.72);
  font-size: 13px;
  line-height: 1.65;
}
.site-footer a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  margin-top: 74px;
  border-top: 1px solid var(--line);
}
.skywebis-signature a {
  display: inline;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--ivory);
  transform: translateY(-100%);
}
.cursor-halo {
  position: fixed;
  z-index: 0;
  width: 360px;
  height: 360px;
  pointer-events: none;
  opacity: 0.16;
  background: radial-gradient(
    circle,
    rgba(185, 148, 84, 0.35),
    transparent 67%
  );
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.image-reveal {
  --mask-scale: 0;
}
.image-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: var(--gold);
  transform: scaleX(var(--mask-scale));
  transform-origin: right;
}

@media (max-width: 1080px) {
  .container,
  .header-inner {
    width: min(calc(100% - 48px), var(--container));
  }
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }
  .main-nav {
    position: fixed;
    top: 88px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: rgba(7, 7, 11, 0.95);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 16px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .trust-grid,
  .about-grid,
  .faq-grid,
  .final-content {
    grid-template-columns: 1fr;
  }
  .medallions,
  .testimonial-grid,
  .figure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-item,
  .service-item.reverse,
  .service-item.wide {
    grid-template-columns: 1fr;
  }
  .service-item.reverse img,
  .service-item.reverse div {
    grid-column: auto;
    grid-row: auto;
  }
  .method-line {
    grid-template-columns: repeat(2, 1fr);
  }
  .method-line::before {
    display: none;
  }
  .method-line article:nth-child(2),
  .method-line article:nth-child(4) {
    --step-shift: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .large,
  .gallery-grid .vertical {
    grid-column: span 1;
    grid-row: span 1;
  }
  .hero-float {
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .container,
  .header-inner {
    width: min(calc(100% - 34px), var(--container));
  }
  .site-header {
    height: 76px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand span {
    font-size: 24px;
  }
  .brand small {
    font-size: 8px;
  }
  .phone-cta {
    width: 42px;
    padding: 0;
    font-size: 0;
  }
  .main-nav {
    top: 76px;
    right: 17px;
    left: 17px;
  }
  .hero {
    height: 900px;
    min-height: 850px;
    margin-top: -76px;
  }
  .hero-img {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 11, 0.96), rgba(7, 7, 11, 0.7)),
      linear-gradient(180deg, rgba(7, 7, 11, 0.35), rgba(7, 7, 11, 0.88));
  }
  .hero-content {
    padding-top: 82px;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-actions,
  .btn {
    width: 100%;
  }
  .proof span {
    margin: 0 7px;
  }
  .hero-float {
    bottom: 22px;
    grid-template-columns: 1fr;
  }
  .hero-float article {
    min-height: 72px;
    padding: 14px 16px;
  }
  .trust,
  .services,
  .about,
  .method,
  .gallery,
  .testimonials,
  .faq {
    min-height: auto;
    padding: 72px 0;
  }
  .section-copy h2,
  .section-head h2,
  .about-copy h2,
  .faq h2,
  .final-content h2 {
    font-size: clamp(38px, 10vw, 48px);
  }
  .medallions,
  .testimonial-grid,
  .figure-grid,
  .method-line,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .medallion {
    width: 170px;
    height: 170px;
  }
  .service-item {
    gap: 18px;
    min-height: auto;
  }
  .service-item img {
    height: 250px;
  }
  .service-item h3 {
    font-size: 28px;
  }
  .about-image {
    height: 470px;
    border-radius: 24px;
  }
  .figures {
    min-height: auto;
    padding: 50px 0;
  }
  .figure-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .figure-grid article:first-child {
    border-top: 0;
  }
  .method-line {
    margin-top: 44px;
    gap: 42px;
  }
  .gallery-grid {
    grid-auto-rows: 300px;
  }
  .final-cta {
    min-height: 760px;
  }
  .final-content {
    gap: 30px;
  }
  .cta-panel {
    padding: 24px;
  }
  .cta-panel .big-phone {
    font-size: 21px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cursor-halo {
    display: none;
  }
}

/* Navigation enrichie */
@media (min-width: 1081px) {
  .header-inner {
    width: min(calc(100% - 40px), 1420px);
    grid-template-columns: 235px 1fr auto;
    gap: 18px;
  }
  .main-nav {
    gap: 18px;
    font-size: 11px;
  }
  .main-nav a {
    white-space: nowrap;
  }
  .brand span {
    font-size: 27px;
  }
}
