:root {
  --obsidian: #06070B;
  --night: #101724;
  --gold: #D8B86A;
  --ivory: #F4E8D0;
  --amethyst: #7D5FFF;
  --wood: #6B3F2A;
  --green: #2C6E63;
  --line: rgba(216, 184, 106, .34);
  --glass: rgba(16, 23, 36, .62);
  --soft: rgba(244, 232, 208, .74);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 14% 8%, rgba(125, 95, 255, .16), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(216, 184, 106, .09), transparent 22rem),
    linear-gradient(180deg, #05060a 0%, #07101a 44%, #05060a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(216, 184, 106, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 184, 106, .05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(6, 7, 11, .78);
  border-bottom: 1px solid rgba(216, 184, 106, .22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.7vw, 1.72rem);
  font-weight: 700;
  color: var(--ivory);
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(216, 184, 106, .18), inset 0 0 0 7px rgba(216, 184, 106, .04);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(216, 184, 106, .7);
  transform: rotate(45deg);
}

.brand-mark::after {
  inset: 14px;
  border-radius: 50%;
  transform: none;
  background: var(--gold);
}

.main-nav {
  display: flex;
  gap: clamp(20px, 2.5vw, 42px);
  justify-content: center;
  font-size: .9rem;
  color: rgba(244, 232, 208, .83);
}

.main-nav a {
  position: relative;
  padding: 30px 0 28px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease, left .25s ease;
}

.main-nav a:hover::after {
  left: 0;
  width: 100%;
}

.phone-link {
  justify-self: end;
  padding: 12px 22px;
  border: 1px solid rgba(216, 184, 106, .72);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 700;
  box-shadow: inset 0 0 24px rgba(216, 184, 106, .04);
}

.nav-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 184, 106, .2);
  background: var(--obsidian);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 7, 11, .98) 0%, rgba(6, 7, 11, .8) 35%, rgba(6, 7, 11, .38) 62%, rgba(6, 7, 11, .86) 100%),
    linear-gradient(180deg, rgba(6, 7, 11, .12), rgba(6, 7, 11, .92)),
    url("images/hero.jpg") right center / min(68vw, 1120px) 100% no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, var(--obsidian), transparent);
  z-index: -1;
}

.hero-art {
  position: absolute;
  right: 12%;
  top: 22%;
  width: 18vw;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 184, 106, .22);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(125, 95, 255, .18);
  opacity: .45;
}

.astro-ring {
  position: absolute;
  border: 1px solid rgba(216, 184, 106, .15);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  left: -12rem;
  top: 6rem;
  width: 36rem;
  height: 36rem;
}

.ring-two {
  right: -10rem;
  bottom: -11rem;
  width: 30rem;
  height: 30rem;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 420px);
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: min(1280px, calc(100% - 48px));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: 88px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.7rem, 6.7vw, 6.9rem);
  line-height: .91;
  font-weight: 600;
  color: var(--ivory);
  text-wrap: balance;
}

.hero-text {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.hero-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 800;
  font-size: .88rem;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover,
.service-card:hover,
.gallery figure:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #12100a;
  background: linear-gradient(135deg, #f1d489, var(--gold));
  box-shadow: 0 18px 48px rgba(216, 184, 106, .18);
}

.btn-ghost {
  color: var(--ivory);
  border: 1px solid rgba(216, 184, 106, .55);
  background: rgba(16, 23, 36, .45);
  backdrop-filter: blur(14px);
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: rgba(244, 232, 208, .84);
  font-size: .9rem;
}

.social-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-proof span::before {
  content: "✦";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(216, 184, 106, .45);
  border-radius: 50%;
  color: var(--gold);
  font-size: .75rem;
}

.floating-notes {
  display: grid;
  gap: 22px;
  justify-self: end;
  width: min(100%, 330px);
}

.glass-note {
  padding: 28px;
  border: 1px solid rgba(216, 184, 106, .32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(16, 23, 36, .72), rgba(6, 7, 11, .42));
  box-shadow: 0 26px 80px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}

.note-top {
  transform: translateX(14px);
}

.note-bottom {
  transform: translateX(-28px);
}

.note-icon {
  color: var(--gold);
  font-size: 1.4rem;
}

.glass-note h2 {
  margin: 12px 0 10px;
  font-size: 1.72rem;
  line-height: 1;
}

.glass-note p,
.trust-item p,
.service-card p,
.about-copy p,
.timeline p,
.testimonial-grid p,
.faq p,
.site-footer p {
  color: var(--soft);
  line-height: 1.7;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1280px, calc(100% - 48px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(216, 184, 106, .38);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 23, 36, .82), rgba(6, 7, 11, .74));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 28px 34px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(216, 184, 106, .26);
}

.trust-item span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 2rem;
}

.trust-item h2 {
  margin: 0;
  color: var(--gold);
  font-size: 1.45rem;
}

.trust-item p {
  margin: 4px 0 0;
  font-size: .9rem;
}

.section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) 0 0;
}

.section-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  line-height: .96;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 295px;
  gap: 12px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 106, .46);
  border-radius: 6px;
  background: var(--night);
  transition: transform .28s ease, border-color .28s ease;
}

.service-card::after,
.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 11, .06), rgba(6, 7, 11, .9));
}

.service-card img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .5s ease;
}

.service-card:hover img,
.gallery figure:hover img {
  scale: 1.04;
}

.service-large {
  grid-column: span 2;
}

.service-wide {
  grid-column: span 2;
}

.service-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
}

.service-content span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: .8;
}

.service-content h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  line-height: .92;
}

.service-content p {
  margin: 0;
  max-width: 270px;
  font-size: .88rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.about-media {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(216, 184, 106, .64);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(216, 184, 106, .24);
  z-index: -1;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

.about-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  line-height: .93;
}

.about-copy p {
  max-width: 650px;
  font-size: 1rem;
}

blockquote {
  margin: 28px 0 0;
  color: var(--gold);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.04;
  font-style: italic;
}

.method {
  position: relative;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 184, 106, .62), transparent);
}

.timeline article {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(216, 184, 106, .3);
  border-radius: 8px;
  background: rgba(16, 23, 36, .46);
  backdrop-filter: blur(14px);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle, rgba(125, 95, 255, .28), rgba(6, 7, 11, .95));
  box-shadow: 0 0 28px rgba(125, 95, 255, .28);
}

.timeline h3 {
  margin: 22px 0 8px;
  color: var(--ivory);
  font-size: 1.5rem;
}

.timeline p {
  margin: 0;
  font-size: .9rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1280px, calc(100% - 48px));
  margin: clamp(54px, 7vw, 90px) auto 0;
  border-top: 1px solid rgba(216, 184, 106, .35);
  border-bottom: 1px solid rgba(216, 184, 106, .35);
  background: #101724;
}

.stats article {
  padding: 34px 28px;
  text-align: center;
}

.stats article + article {
  border-left: 1px solid rgba(216, 184, 106, .25);
}

.stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 600;
  line-height: .95;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .82fr 1fr .82fr 1.1fr;
  align-items: end;
  gap: 12px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: 280px;
  border: 1px solid rgba(216, 184, 106, .46);
  border-radius: 8px;
  background: var(--night);
  transition: transform .28s ease;
}

.gallery .portrait {
  height: 360px;
}

.gallery figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  text-align: center;
}

.testimonials,
.faq {
  max-width: 1120px;
}

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

.testimonial-grid article {
  padding: 30px;
  border: 1px solid rgba(216, 184, 106, .32);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(16, 23, 36, .62), rgba(6, 7, 11, .62));
  text-align: center;
}

.stars {
  color: var(--gold);
  letter-spacing: .16em;
  font-size: .82rem;
}

.testimonial-grid p {
  min-height: 92px;
  margin: 18px 0 22px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.22;
  font-style: italic;
}

.testimonial-grid strong {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #171207;
  background: var(--gold);
}

.faq-list {
  border: 1px solid rgba(216, 184, 106, .28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 23, 36, .48);
}

details + details {
  border-top: 1px solid rgba(216, 184, 106, .22);
}

summary {
  position: relative;
  padding: 22px 62px 22px 26px;
  cursor: pointer;
  list-style: none;
  color: var(--ivory);
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  color: var(--gold);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 0;
  padding: 0 26px 24px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  width: min(1280px, calc(100% - 48px));
  margin: clamp(70px, 9vw, 120px) auto 0;
  border: 1px solid rgba(216, 184, 106, .48);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 7, 11, .92) 0%, rgba(6, 7, 11, .72) 46%, rgba(6, 7, 11, .44) 100%),
    url("images/cta-final.jpg") center / cover no-repeat;
}

.final-content {
  max-width: 640px;
  padding: clamp(44px, 6vw, 78px);
}

.final-content h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .95;
}

.final-content p {
  max-width: 560px;
  color: var(--soft);
  line-height: 1.7;
}

.big-phone {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.site-footer {
  margin-top: 34px;
  padding: 48px clamp(24px, 5vw, 72px) 18px;
  background: #030407;
  border-top: 1px solid rgba(216, 184, 106, .28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr 1.05fr .95fr;
  gap: clamp(22px, 3vw, 48px);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.footer-grid > div + div {
  border-left: 1px solid rgba(216, 184, 106, .2);
  padding-left: clamp(18px, 2.6vw, 38px);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 7px 0;
  color: rgba(244, 232, 208, .72);
  font-size: .9rem;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216, 184, 106, .38);
  border-radius: 50%;
  color: var(--gold);
}

.skywebis-signature {
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 184, 106, .18);
  color: rgba(244, 232, 208, .62);
  text-align: center;
  font-size: .86rem;
}

.skywebis-signature a {
  display: inline;
  color: var(--gold);
}

.reveal {
  animation: revealUp .8s ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-button {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(216, 184, 106, .36);
    border-radius: 50%;
  }

  .menu-button span {
    width: 18px;
    height: 1px;
    background: var(--gold);
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(216, 184, 106, .28);
    border-radius: 8px;
    background: rgba(6, 7, 11, .96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav a {
    padding: 14px 10px;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .phone-link {
    margin-left: 10px;
    padding: 10px 14px;
    font-size: .84rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 28px;
    padding-top: 72px;
  }

  .floating-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .note-top,
  .note-bottom {
    transform: none;
  }

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

  .service-large,
  .service-wide {
    grid-column: span 1;
  }

  .timeline,
  .stats,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid > div + div {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand {
    max-width: 176px;
    font-size: 1.16rem;
    line-height: 1;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
  }

  .phone-link {
    padding: 9px 11px;
    font-size: .76rem;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 7, 11, .56) 0%, rgba(6, 7, 11, .82) 42%, rgba(6, 7, 11, .98) 100%),
      url("images/hero.jpg") 64% top / auto 52% no-repeat;
  }

  .hero-inner {
    width: min(100% - 32px, 520px);
    min-height: auto;
    padding: 43vh 0 48px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.3rem);
  }

  .hero-text {
    margin-top: 20px;
    font-size: .94rem;
  }

  .hero-actions,
  .about-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-proof {
    display: grid;
    gap: 12px;
  }

  .floating-notes,
  .trust-band,
  .services-grid,
  .about,
  .timeline,
  .stats,
  .gallery-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .glass-note {
    padding: 22px;
  }

  .trust-band {
    width: min(100% - 32px, 520px);
    margin-top: 0;
  }

  .trust-item {
    padding: 22px;
  }

  .trust-item + .trust-item,
  .stats article + article {
    border-left: 0;
    border-top: 1px solid rgba(216, 184, 106, .24);
  }

  .section,
  .stats,
  .final-cta {
    width: min(100% - 32px, 520px);
  }

  .section {
    padding-top: 72px;
  }

  .section-heading {
    text-align: left;
  }

  .services-grid {
    grid-auto-rows: 330px;
  }

  .about-media::before {
    inset: 12px -10px -10px 12px;
  }

  .timeline::before {
    left: 18px;
    top: 0;
    bottom: 0;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(216, 184, 106, .62), transparent);
  }

  .timeline article {
    padding: 22px 22px 22px 58px;
  }

  .timeline span {
    position: absolute;
    left: 14px;
    top: 22px;
  }

  .gallery figure,
  .gallery .portrait {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .testimonial-grid p {
    min-height: auto;
  }

  .final-cta {
    background:
      linear-gradient(180deg, rgba(6, 7, 11, .74), rgba(6, 7, 11, .95)),
      url("images/cta-final.jpg") center / cover no-repeat;
  }

  .final-content {
    padding: 34px 22px;
  }

  .site-footer {
    padding: 40px 16px 16px;
  }
}
