:root {
  --bg-deep: #07090d;
  --bg: #0b0e11;
  --bg-elevated: #12161c;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(212, 175, 55, 0.35);
  --text: #f4f6fb;
  --muted: #9aa3b5;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --electric: #ffe566;
  --accent-green: #3ddc84;
  --accent-green-dim: rgba(61, 220, 132, 0.12);
  --cyan: #5ee7df;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(7, 9, 13, 0.92),
    rgba(7, 9, 13, 0.72),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  object-fit: cover;
}

.brand-text {
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}

.wc {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a227, #8b6914);
  color: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.32);
}

.btn-accent {
  background: linear-gradient(135deg, #36f0a1, #16c978);
  color: #04140c;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(61, 220, 132, 0.22);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(61, 220, 132, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.45);
}

.btn-outline:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shine:hover::after {
  opacity: 1;
  animation: shine-move 0.85s ease forwards;
}

@keyframes shine-move {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }
  to {
    transform: translateX(120%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shine::after {
    display: none;
  }
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background: radial-gradient(
    closest-side,
    rgba(212, 175, 55, 0.18),
    transparent 70%
  );
  filter: blur(4px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .brand-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    gap: 0.5rem;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .brand-text {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  .hero-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 0.88rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.gold-text {
  background: linear-gradient(135deg, var(--electric), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-cta .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-stats li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18, 22, 28, 0.65);
}

.hero-stats strong {
  font-size: 0.98rem;
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.phone-frame {
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.45),
    rgba(94, 231, 223, 0.15),
    transparent
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.phone-frame img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  margin-inline: auto;
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--bg-elevated);
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(18, 22, 28, 0.35), transparent);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18, 22, 28, 0.65);
  padding: 1.35rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.gallery .card h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.1rem;
}

.gallery .card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.shot-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-deep);
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.features .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.features h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.features p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.contact-intro > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.checklist {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.35rem;
}

.form-card {
  padding: 1.5rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 600;
}

.optional {
  font-weight: 500;
  color: var(--muted);
}

input,
textarea {
  font: inherit;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.25rem;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}

.form-status.ok {
  color: var(--accent-green);
}

.form-status.err {
  color: #ff8a8a;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.footer-meta {
  margin: 0;
}

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

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

.reveal-delay {
  transition-delay: 0.12s;
}
