:root {
  --bg: #08111f;
  --bg-soft: #111c31;
  --bg-panel: rgba(17, 28, 49, 0.82);
  --paper: #f3ece2;
  --paper-strong: #fffaf3;
  --text: #0f1828;
  --text-soft: #d2dcee;
  --muted: #8ea1bc;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(8, 17, 31, 0.12);
  --accent: #f7b267;
  --accent-strong: #f75d34;
  --accent-soft: rgba(247, 178, 103, 0.18);
  --card: rgba(255, 255, 255, 0.94);
  --shadow: 0 25px 60px rgba(7, 15, 28, 0.18);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1240px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(247, 178, 103, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(85, 150, 255, 0.15), transparent 35%),
    linear-gradient(160deg, #08111f 0%, #111c31 46%, #08111f 100%);
  color: #eef4ff;
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  transition: padding 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(8, 17, 31, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.97);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(214, 201, 180, 0.85);
}

.brand-card img,
.footer-brand img {
  height: auto;
  width: clamp(160px, 24vw, 280px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-family: "Oswald", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.9);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%);
  transition: transform 0.26s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta::after,
.button::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  color: #0f1828;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 36px rgba(247, 93, 52, 0.28);
}

.button-secondary {
  color: #f8f5ef;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost {
  color: var(--text);
  border-color: rgba(15, 24, 40, 0.14);
  background: rgba(255, 255, 255, 0.6);
}

.page-shell {
  overflow: clip;
}

.hero {
  position: relative;
  padding: 28px 0 48px;
}

.hero-grid,
.split-grid,
.contact-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.glass-panel,
.dark-panel,
.light-panel,
.service-card,
.stat-card,
.testimonial-card,
.faq-item,
.gallery-item,
.contact-card,
.pricing-panel,
.about-card,
.form-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  padding: clamp(30px, 5vw, 56px);
  background: linear-gradient(180deg, rgba(10, 19, 36, 0.94), rgba(17, 28, 49, 0.98));
  border: 1px solid rgba(247, 178, 103, 0.18);
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.8;
}

.hero-copy::before {
  inset: auto auto 20px -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(247, 93, 52, 0.38), transparent 65%);
  animation: floatOrb 7s ease-in-out infinite;
}

.hero-copy::after {
  inset: 10px -40px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(85, 150, 255, 0.26), transparent 70%);
  animation: floatOrb 9s ease-in-out infinite reverse;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.display-title,
.section-title,
.page-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 6.2vw, 4.9rem);
}

.hero p,
.section-copy,
.lede {
  max-width: 62ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.08rem);
}

.hero-actions,
.stacked-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: #f6f1e8;
}

.hero-media,
.image-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(247, 178, 103, 0.26);
}

.hero-media {
  min-height: 500px;
}

.hero-media img,
.image-panel img,
.gallery-item img,
.service-card img,
.feature-card img,
.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img,
.image-panel img {
  min-height: 100%;
  transform: scale(1.04);
  transition: transform 1.2s ease;
  object-position: center;
}

.hero-media:hover img,
.image-panel:hover img {
  transform: scale(1.09);
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 270px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(8, 17, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.floating-card strong,
.service-card h3,
.feature-card h3,
.testimonial-card h3,
.faq-item summary,
.contact-card h3,
.about-card h3,
.pricing-panel h3,
.stat-card strong {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.surface-light,
.surface-cream,
.surface-dark,
.surface-accent {
  position: relative;
  padding: clamp(60px, 8vw, 90px) 0;
}

.surface-light {
  background: linear-gradient(180deg, #f7f2e9 0%, #efe7db 100%);
  color: var(--text);
}

.surface-cream {
  background: linear-gradient(180deg, #f4ece2 0%, #fff8ef 100%);
  color: var(--text);
}

.surface-dark {
  background: linear-gradient(180deg, rgba(10, 19, 36, 0.96), rgba(8, 17, 31, 0.98));
}

.surface-accent {
  background: linear-gradient(135deg, #f7b267 0%, #f75d34 100%);
  color: #0f1828;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-title,
.page-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: inherit;
}

.section-copy,
.lede,
.surface-light .section-copy,
.surface-cream .section-copy {
  color: inherit;
  opacity: 0.78;
}

.trust-grid,
.stats-grid,
.services-grid,
.gallery-grid,
.areas-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.trust-grid,
.stats-grid,
.areas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

.card,
.feature-card,
.service-card,
.testimonial-card,
.stat-card,
.contact-card,
.about-card,
.pricing-panel,
.faq-item,
.form-card {
  position: relative;
  overflow: hidden;
}

.feature-card,
.stat-card,
.testimonial-card,
.about-card,
.pricing-panel,
.contact-card,
.faq-item,
.form-card {
  padding: 22px;
}

.feature-card,
.stat-card,
.testimonial-card,
.about-card,
.pricing-panel,
.contact-card,
.faq-item,
.form-card,
.service-card {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line-dark);
}

.feature-card::before,
.service-card::before,
.about-card::before,
.contact-card::before,
.pricing-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 178, 103, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover::before,
.service-card:hover::before,
.about-card:hover::before,
.contact-card:hover::before,
.pricing-panel:hover::before {
  opacity: 1;
}

.service-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.gallery-item:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
}

.service-card img,
.gallery-item img,
.contact-card img {
  border-radius: 16px;
  aspect-ratio: 1.2 / 1;
}

.service-card h3,
.feature-card h3,
.testimonial-card h3,
.contact-card h3,
.about-card h3,
.pricing-panel h3 {
  margin: 0;
  font-size: 1.55rem;
}

.service-card p,
.feature-card p,
.testimonial-card p,
.contact-card p,
.about-card p,
.pricing-panel p,
.faq-item p,
.form-note,
.surface-light li,
.surface-cream li {
  margin: 0;
  color: rgba(15, 24, 40, 0.75);
}

.feature-card .card-top,
.stat-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.metric {
  color: var(--accent-strong);
  font-size: 2.2rem;
}

.dark-showcase {
  padding: 26px;
  border-radius: 28px;
  background: rgba(8, 17, 31, 0.65);
  border: 1px solid var(--line);
}

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

.testimonial-card {
  background: #fff;
}

.testimonial-card p:first-of-type {
  font-size: 1.04rem;
}

.quote-mark {
  color: var(--accent-strong);
  font-size: 3rem;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
}

.cta-box {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(28px, 6vw, 48px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(15, 24, 40, 0.1);
}

.cta-box .display-title,
.cta-box p,
.cta-box .phone-display {
  color: #0f1828;
}

.phone-display {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
}

.page-hero {
  padding: 36px 0 34px;
}

.page-hero-shell {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(14, 20, 27, 0.95), rgba(18, 33, 49, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-shell p {
  max-width: 66ch;
}

.split-panel {
  display: grid;
  gap: 20px;
}

.list-clean,
.check-list,
.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.contact-list li,
.areas-grid li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before,
.contact-list li::before,
.areas-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  transform: translateY(-50%);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-size: 1.15rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent-strong);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 12px;
}

.gallery-item {
  cursor: pointer;
  padding: 14px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--text);
  border: 1px solid rgba(8, 17, 31, 0.08);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-caption {
  margin-top: 12px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(53, 65, 85, 0.4);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(247, 93, 52, 0.75);
  box-shadow: 0 0 0 4px rgba(247, 93, 52, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.status-banner {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
}

.status-success {
  background: rgba(73, 189, 120, 0.15);
  color: #1f7a43;
  border: 1px solid rgba(73, 189, 120, 0.24);
}

.status-error {
  background: rgba(247, 93, 52, 0.12);
  color: #a53a21;
  border: 1px solid rgba(247, 93, 52, 0.2);
}

.site-footer {
  background: #0a1324;
  color: rgba(239, 244, 255, 0.88);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-grid h3 {
  margin-top: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-grid a,
.footer-grid p,
.footer-lower p {
  color: rgba(239, 244, 255, 0.72);
}

.footer-lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 10, 18, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 84vh;
  border-radius: 22px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.stagger > * {
  transition-delay: calc(var(--item-index, 0) * 90ms);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .about-grid,
  .services-grid,
  .gallery-grid,
  .trust-grid,
  .stats-grid,
  .testimonials-grid,
  .check-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-header {
    padding: 12px 0;
  }

  .brand-card {
    max-width: calc(100% - 62px);
  }

  .hero,
  .page-hero {
    padding-top: 16px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .about-grid,
  .services-grid,
  .gallery-grid,
  .trust-grid,
  .stats-grid,
  .testimonials-grid,
  .check-grid,
  .pricing-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-shell,
  .cta-box,
  .surface-light,
  .surface-dark,
  .surface-cream,
  .surface-accent {
    border-radius: 22px;
  }

  .hero h1,
  .section-title,
  .page-title {
    letter-spacing: 0;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .footer-lower,
  .header-shell {
    align-items: flex-start;
  }

  .hero-actions,
  .stacked-actions,
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-cta {
    width: 100%;
  }
}
