:root {
  --black: #070708;
  --graphite: #16131A;
  --ivory: #F3E9D2;
  --copper: #B97855;
  --gold: #D7B56D;
  --mist: #5E6B73;
  --white: #FFFFFF;
  --line: rgba(185, 120, 85, 0.34);
  --glass: rgba(22, 19, 26, 0.58);
  --serif: "Cormorant Garamond", "Playfair Display", serif;
  --sans: "Inter", "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: rgba(243, 233, 210, 0.84);
  background:
    radial-gradient(circle at 72% 8%, rgba(185, 120, 85, 0.18), transparent 32rem),
    linear-gradient(180deg, var(--black), #0a090b 38%, var(--black));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(215, 181, 109, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 181, 109, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  z-index: -1;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 5vw, 56px);
  background: rgba(7, 7, 8, 0.68);
  border-bottom: 1px solid rgba(185, 120, 85, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.site-footer h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ivory);
}

.main-nav {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  font-size: 0.88rem;
  color: rgba(243, 233, 210, 0.78);
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.25s ease;
}

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

.phone-outline {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(185, 120, 85, 0.7);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(22, 19, 26, 0.36);
  box-shadow: inset 0 0 20px rgba(185, 120, 85, 0.08);
}

.nav-toggle,
.nav-trigger {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 58px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg,
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 8, 0.94) 0%, rgba(7, 7, 8, 0.78) 33%, rgba(7, 7, 8, 0.24) 67%, rgba(7, 7, 8, 0.52) 100%),
    linear-gradient(0deg, rgba(7, 7, 8, 0.82), transparent 34%, rgba(7, 7, 8, 0.42)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: slowDepth 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--copper);
}

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
  color: var(--ivory);
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(3rem, 7.2vw, 6.9rem);
  line-height: 0.89;
  font-weight: 600;
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
  color: rgba(243, 233, 210, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--copper), #d59a75);
  border: 1px solid rgba(243, 233, 210, 0.12);
}

.btn-ghost {
  border: 1px solid rgba(185, 120, 85, 0.62);
  background: rgba(7, 7, 8, 0.42);
  color: var(--ivory);
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: rgba(243, 233, 210, 0.68);
  font-size: 0.88rem;
}

.social-proof span {
  width: 6px;
  height: 6px;
  border: 1px solid var(--copper);
  border-radius: 50%;
}

.floating-notes {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  top: 24%;
  display: grid;
  gap: 18px;
  width: min(280px, 28vw);
}

.floating-notes article,
.testimonial-grid article {
  border: 1px solid rgba(185, 120, 85, 0.42);
  background: linear-gradient(135deg, rgba(22, 19, 26, 0.68), rgba(7, 7, 8, 0.36));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.floating-notes article {
  min-height: 112px;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.floating-notes span,
.service-copy span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(22, 19, 26, 0.7);
}

.trust-item {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(185, 120, 85, 0.32);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 0.95;
  font-weight: 600;
  color: var(--copper);
}

.trust-item span {
  color: rgba(243, 233, 210, 0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-frame {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(66px, 8vw, 112px) auto 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-heading.centered {
  justify-content: center;
  text-align: center;
  border-bottom: 0;
}

.section-heading h2,
.about-copy h2,
.final-cta h2 {
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: 0.95;
  font-weight: 600;
}

.service-list {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22, 19, 26, 0.38), rgba(7, 7, 8, 0.42));
}

.service-panel {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(280px, 1fr) minmax(360px, 44%);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  min-height: 214px;
  padding: clamp(18px, 2.4vw, 28px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease;
}

.service-panel:nth-child(even) {
  grid-template-columns: minmax(360px, 44%) 112px minmax(280px, 1fr);
}

.service-panel:nth-child(even) .service-number {
  grid-column: 2;
}

.service-panel:nth-child(even) .service-copy {
  grid-column: 3;
}

.service-panel:nth-child(even) .service-media {
  grid-column: 1;
  grid-row: 1;
}

.service-panel:last-child {
  border-bottom: 0;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(185, 120, 85, 0.08), transparent 28%),
    radial-gradient(circle at 18% 50%, rgba(215, 181, 109, 0.06), transparent 20rem);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-panel:hover::before {
  opacity: 1;
}

.service-number {
  position: relative;
  z-index: 1;
  min-height: 120px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(185, 120, 85, 0.28);
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
}

.service-panel:nth-child(even) .service-number {
  border-right: 0;
  border-left: 1px solid rgba(185, 120, 85, 0.28);
}

.service-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.service-copy h3 {
  margin-top: 8px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 600;
}

.service-copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-copy span::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(185, 120, 85, 0.7);
}

.service-media {
  position: relative;
  z-index: 1;
  height: 164px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 120, 85, 0.42);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 8, 0.22), rgba(7, 7, 8, 0.05), rgba(7, 7, 8, 0.48));
}

.service-media img {
  filter: saturate(0.84) contrast(1.08);
  transition: transform 0.35s ease;
}

.service-panel:hover .service-media img {
  transform: scale(1.04);
}

.service-copy p,
.about-copy p,
.method p,
.faq p,
.final-cta p,
.site-footer p {
  margin: 12px 0 0;
  line-height: 1.75;
  color: rgba(243, 233, 210, 0.68);
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border: 1px solid var(--line);
  background: rgba(22, 19, 26, 0.42);
}

.about-image {
  min-height: 520px;
}

.about-copy {
  padding: clamp(34px, 5vw, 72px);
  align-self: center;
}

blockquote {
  margin-top: 32px;
  padding: 24px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  line-height: 1.12;
}

.method {
  position: relative;
  margin-top: clamp(76px, 8vw, 118px);
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 58px);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(185, 120, 85, 0.18), transparent 38rem),
    linear-gradient(rgba(7, 7, 8, 0.84), rgba(7, 7, 8, 0.94));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method::before,
.method::after {
  content: "";
  position: absolute;
  inset: 10%;
  opacity: 0.28;
  border: 1px solid rgba(215, 181, 109, 0.2);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.method::after {
  inset: 28%;
  transform: rotate(16deg);
}

.method-steps {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.method-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.method-steps article {
  position: relative;
  text-align: center;
  padding: 0 18px;
}

.method-steps span {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  background: rgba(7, 7, 8, 0.84);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.method-steps h3 {
  font-size: 1.9rem;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 120, 85, 0.52);
  transition: transform 0.25s ease;
}

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

.gallery .tall {
  grid-row: span 2;
}

.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 7, 8, 0.82));
}

.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.35rem;
}

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

.testimonial-grid article {
  padding: clamp(28px, 4vw, 46px);
}

.testimonial-grid p {
  margin: 0 0 24px;
  color: rgba(243, 233, 210, 0.76);
  line-height: 1.75;
}

.testimonial-grid strong {
  color: var(--copper);
}

.faq-list {
  border: 1px solid var(--line);
  background: rgba(22, 19, 26, 0.36);
}

details {
  border-bottom: 1px solid rgba(185, 120, 85, 0.24);
}

details:last-child {
  border-bottom: 0;
}

summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(20px, 4vw, 38px);
  cursor: pointer;
  color: var(--ivory);
  font-weight: 600;
  list-style: none;
}

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

summary::after {
  content: "+";
  color: var(--copper);
  font-size: 1.3rem;
}

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

.faq p {
  padding: 0 clamp(20px, 4vw, 38px) 26px;
  margin-top: 0;
}

.final-cta {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  min-height: 308px;
  margin: clamp(72px, 8vw, 110px) auto 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(185, 120, 85, 0.62);
}

.final-cta-bg {
  background-image:
    linear-gradient(90deg, rgba(7, 7, 8, 0.92), rgba(7, 7, 8, 0.62) 46%, rgba(7, 7, 8, 0.22));
  background-position: center;
  animation: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 60px);
}

.phone-large {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  color: var(--ivory);
  line-height: 1;
  text-align: right;
}

.site-footer {
  margin-top: 42px;
  padding: clamp(46px, 6vw, 70px) clamp(18px, 5vw, 58px) 22px;
  background: #050506;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 1fr 0.9fr;
  gap: clamp(28px, 4vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 14px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.96rem;
}

.site-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(243, 233, 210, 0.7);
}

.hours {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.footer-bottom {
  max-width: 1180px;
  margin: 38px auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(185, 120, 85, 0.22);
  color: rgba(243, 233, 210, 0.5);
}

.skywebis-signature {
  margin: 0;
}

.skywebis-signature a {
  display: inline;
  margin: 0;
  color: var(--copper);
}

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

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

@keyframes slowDepth {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07);
  }
}

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

  .nav-trigger {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .nav-trigger span {
    width: 18px;
    height: 1px;
    background: var(--ivory);
  }

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    border: 1px solid var(--line);
    background: rgba(7, 7, 8, 0.94);
    backdrop-filter: blur(16px);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(185, 120, 85, 0.18);
  }

  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .phone-outline {
    justify-self: end;
    padding: 0 14px;
  }

  .floating-notes {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }

  .trust-strip,
  .method-steps,
  .testimonial-grid,
  .footer-grid,
  .final-cta-content,
  .about,
  .service-panel,
  .service-panel:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-panel:nth-child(even) .service-number,
  .service-panel:nth-child(even) .service-copy,
  .service-panel:nth-child(even) .service-media {
    grid-column: auto;
    grid-row: auto;
  }

  .service-number,
  .service-panel:nth-child(even) .service-number {
    min-height: auto;
    place-items: start;
    border-left: 0;
    border-right: 0;
    padding-bottom: 4px;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(185, 120, 85, 0.24);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .method-steps::before {
    display: none;
  }

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

  .gallery .wide,
  .gallery .tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .phone-large {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .brand {
    font-size: 1.22rem;
  }

  .phone-outline {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding: 78px 18px 48px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(7, 7, 8, 0.44), rgba(7, 7, 8, 0.86) 42%, rgba(7, 7, 8, 0.96)),
      url("images/hero.jpg");
    background-position: center top;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
  }

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

  .btn {
    width: 100%;
  }

  .section-frame,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .section-heading {
    display: block;
  }

  .service-panel {
    min-height: auto;
    align-items: start;
    padding: 22px;
  }

  .service-copy {
    max-width: none;
  }

  .service-media {
    height: 220px;
  }

  .about-image {
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .footer-bottom {
    display: grid;
  }
}
