:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: rgba(12, 12, 12, 0.94);
  --line: rgba(253, 121, 42, 0.24);
  --line-strong: rgba(253, 121, 42, 0.42);
  --accent: #fd792a;
  --accent-soft: #f97b3d;
  --text: #f8f3ed;
  --muted: #c8b9ad;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(253, 121, 42, 0.16), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(253, 121, 42, 0.11), transparent 22%),
    linear-gradient(180deg, #080808 0%, #050505 50%, #090909 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black, transparent 84%);
}

.ambient {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.ambient-left {
  top: -8rem;
  left: -10rem;
  background: rgba(253, 121, 42, 0.18);
}

.ambient-right {
  top: 16rem;
  right: -8rem;
  background: rgba(253, 121, 42, 0.12);
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.45));
}

.brand,
.site-nav a,
.button,
.header-cta {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brand-text {
  display: grid;
}

.brand-text strong,
.hero h1,
.hero h2,
.section h2 {
  font-family: "Syne", sans-serif;
}

.brand-text strong {
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.92rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-cta,
.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #120804;
  box-shadow: 0 18px 40px rgba(253, 121, 42, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
  padding: 4.2rem 0 2.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6rem);
  max-width: 10ch;
}

.hero-text,
.section-copy,
.service-card p,
.price-card p,
.gallery-card span,
.contact-copy p,
.hero-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 40rem;
  margin: 1rem 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-points span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card,
.service-card,
.price-card,
.gallery-card,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: flex;
}

.hero-card {
  width: 100%;
  min-height: 31rem;
  border-radius: 36px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    radial-gradient(circle at top right, rgba(253, 121, 42, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel-strong);
}

.card-label {
  color: var(--accent-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-card h2 {
  margin: 0.85rem 0 0.7rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.96;
  max-width: 11ch;
}

.section {
  padding: 2.5rem 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 12ch;
}

.section-copy {
  max-width: 29rem;
}

.services-grid,
.pricing-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

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

.service-card,
.price-card {
  border-radius: 28px;
  padding: 1.45rem;
}

.service-index {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(253, 121, 42, 0.14);
  color: var(--accent-soft);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card h3,
.price-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.price-card p {
  margin: 0.8rem 0 0;
  font-size: 1.02rem;
  color: var(--text);
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 18rem 12rem;
}

.gallery-card {
  border-radius: 30px;
  padding: 1.4rem;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    linear-gradient(160deg, rgba(16, 16, 16, 0.95), rgba(7, 7, 7, 0.92));
}

.gallery-card.large {
  grid-row: span 2;
}

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

.contact-panel {
  border-radius: 34px;
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 3rem;
  color: var(--muted);
}

.scroll-top {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.65, 0.2, 1);
}

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

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

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

@media (max-width: 980px) {
  .hero,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card.large,
  .gallery-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 1.2rem, 1180px);
  }

  .site-header {
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-card {
    min-height: 23rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .site-footer {
    flex-direction: column;
    align-items: start;
  }
}
