:root {
  --bg: #0b0b0c;
  --bg-soft: #121214;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #b8b8bf;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f5b718;
  --accent-2: #ff8a00;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 183, 24, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 138, 0, 0.08), transparent 28%),
    var(--bg);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  animation: drift 8s ease-in-out infinite;
}

.glow-left {
  left: -10rem;
  top: -7rem;
  width: 32rem;
  height: 32rem;
  background: rgba(245, 183, 24, 0.12);
}

.glow-right {
  right: -8rem;
  bottom: 6rem;
  width: 28rem;
  height: 28rem;
  background: rgba(255, 138, 0, 0.11);
  animation-delay: 1.4s;
}

@keyframes drift {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-18px) translateX(8px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(245, 183, 24, 0); }
  50% { box-shadow: 0 0 28px rgba(245, 183, 24, 0.22); }
}

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

.section,
.hero,
.proof-bar {
  position: relative;
  z-index: 2;
}

.section-border {
  border-bottom: 1px solid var(--line);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 12, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

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

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(245, 183, 24, 0.22);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-sub,
.footer-text,
.info-label {
  color: #a4a4ab;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  color: #d0d0d6;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 18px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: #ffd04c;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pulse {
  animation: pulseGlow 3.2s ease-in-out infinite;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-grid,
.two-col,
.split-proof {
  display: grid;
  gap: 3rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 183, 24, 0.24);
  background: rgba(245, 183, 24, 0.1);
  color: #f7cf62;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.contact-copy h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.7rem, 7vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-copy p,
.section-head p,
.contact-copy p,
.card p,
.map-card p,
.step-box p,
.contact-box p,
.quote-card blockquote {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.hero-copy p {
  max-width: 46rem;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.info-card,
.card,
.quote-card,
.map-card,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 183, 24, 0.25);
}

.info-value {
  margin-top: 0.55rem;
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.26), transparent);
}

.hero-badge,
.hero-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.hero-badge {
  bottom: 6rem;
  display: inline-flex;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #f7cf62;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-caption {
  bottom: 1.5rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-bar {
  background: rgba(255, 255, 255, 0.02);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1.35rem 0;
}

.proof-pill {
  padding: 1rem 1rem;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e5e8;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  max-width: 52rem;
}

.section-head h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 1rem;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

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

.card {
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.card:hover,
.gallery-card:hover,
.map-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 183, 24, 0.26);
  background: var(--panel-strong);
}

.card.small {
  min-height: 100%;
}

.card.big {
  padding: 1.9rem;
}

.card h3,
.map-card h3,
.quote-card blockquote,
.contact-copy h2 {
  margin: 0.9rem 0 0;
}

.card h3,
.map-card h3,
.contact-box a,
.contact-box p {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.card-icon,
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}

.chip-row,
.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-row {
  margin-top: 1rem;
}

.chip-row span,
.footer-chips span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dedee2;
}

.two-col {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.gallery-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card figcaption {
  padding: 1rem 1rem 1.15rem;
  font-size: 0.96rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-proof {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.quote-card,
.map-card {
  border-radius: 30px;
  padding: 2rem;
}

.quote-card blockquote {
  margin: 1.2rem 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
  color: #fff;
}

.quote-author {
  margin-top: 1.2rem;
  color: #9e9ea6;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.step-box,
.contact-box {
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.step-box strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-row.large {
  margin-top: 1.4rem;
}

.area-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.3rem 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-link {
  width: fit-content;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  border-radius: 32px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(245,183,24,0.08));
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-box a {
  display: block;
  margin-top: 0.7rem;
}

.footer {
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  background: #050505;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }

@media (max-width: 1120px) {
  .services-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .two-col,
  .split-proof,
  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .gallery-grid,
  .why-grid,
  .faq-grid,
  .steps-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 24rem;
  }

  .proof-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .topbar .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand-title {
    font-size: 0.82rem;
  }

  .brand-sub {
    font-size: 0.64rem;
  }

  .section,
  .hero {
    padding: 4rem 0;
  }

  .card,
  .quote-card,
  .map-card,
  .contact-card {
    border-radius: 24px;
  }

  .hero-copy p,
  .section-head p,
  .contact-copy p,
  .card p,
  .map-card p,
  .step-box p,
  .contact-box p {
    font-size: 0.96rem;
  }
}


.hero-media {
  align-self: stretch;
}

.hero-frame {
  min-height: 42rem;
}

.hero-frame img {
  object-position: center center;
}

.hero-caption {
  max-width: 24rem;
}

.footer {
  padding: 3rem 0 1rem;
  position: relative;
  z-index: 2;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

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

.footer-logo {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(245, 183, 24, 0.22);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.45rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-contact-list a:hover,
.footer-link-group a:hover {
  color: #fff;
}

.footer-links-col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-link-group {
  display: grid;
  gap: 0.75rem;
}

.footer-heading {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.footer-link-group a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-map-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  min-height: 18rem;
}

.footer-map-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,5,5,0.75);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.footer-map-badge img {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
}

.footer-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.82);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #94949b;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(245, 183, 24, 0.08), transparent 30%),
    var(--bg);
}

.legal-main {
  padding: 4rem 0 5rem;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-card p, .legal-card li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.legal-card ul {
  padding-left: 1.2rem;
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .footer-links-col,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 28rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    gap: 1.5rem;
  }

  .footer-map-badge {
    left: 0.8rem;
    right: 0.8rem;
    width: fit-content;
    max-width: calc(100% - 1.6rem);
  }

  .legal-card {
    padding: 1.35rem;
    border-radius: 24px;
  }
}
