:root {
  --bg: #08070a;
  --surface: #13131b;
  --text: #f6f4f3;
  --muted: #9b98a3;
  --accent: #f25f5c;
  --accent-soft: #412f44;
  --border: #2c2733;
  --highlight: #d4b483;
  --surface-2: #191721;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242, 95, 92, .16), transparent 34rem),
    linear-gradient(180deg, #08070a 0%, #101019 48%, #08070a 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 70%);
}

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

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

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 7, 10, .82);
  border-bottom: 1px solid rgba(212, 180, 131, .16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 82px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(242, 95, 92, .28);
}

.brand-eyebrow,
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--highlight);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.site-nav a {
  border-radius: 8px;
  color: rgba(246, 244, 243, .78);
  font-size: .94rem;
  font-weight: 700;
  padding: .75rem .9rem;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  padding: .78rem 1rem;
}

.hero {
  padding: 6.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: 4rem;
  align-items: center;
}

.hero-copy h2,
.section-header h2,
.benefit-panel h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: .98;
}

.hero-copy h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6.2vw, 5.9rem);
}

.hero-copy p,
.section-header p,
.benefit-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy > p {
  max-width: 620px;
  margin: 1.35rem 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  padding: .95rem 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 34px rgba(242, 95, 92, .24);
}

.btn-secondary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(212, 180, 131, .35);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.photo-frame {
  position: absolute;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(212, 180, 131, .24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 244, 243, .16), transparent 36%),
    linear-gradient(135deg, rgba(242, 95, 92, .72), rgba(65, 47, 68, .65) 48%, rgba(212, 180, 131, .7));
  box-shadow: var(--shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, .18);
}

.photo-frame span {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
  color: #fff;
  font-weight: 900;
  padding: 4rem 1.25rem 1.25rem;
}

.photo-frame-main {
  inset: 0 74px 64px 0;
}

.photo-frame-side {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 55%;
  background:
    linear-gradient(160deg, rgba(212, 180, 131, .78), rgba(242, 95, 92, .62)),
    var(--accent-soft);
}

.camera-card {
  position: absolute;
  left: -32px;
  bottom: 38px;
  width: min(310px, calc(100% - 2rem));
  border: 1px solid rgba(212, 180, 131, .24);
  border-radius: 8px;
  background: rgba(19, 19, 27, .9);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  backdrop-filter: blur(14px);
}

.panel-label {
  margin: 0 0 .65rem;
  color: var(--highlight);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.camera-card h3,
.card h3,
.service-card h3,
.benefit-grid h3 {
  margin: 0;
  font-size: 1.2rem;
}

.camera-card p,
.card p,
.service-card p,
.benefit-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
}

.stats-strip div {
  background: rgba(19, 19, 27, .86);
  padding: 1.35rem;
}

.stats-strip strong {
  display: block;
  color: var(--accent);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: .55rem;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 5.2rem 0;
}

.section-soft {
  background: rgba(65, 47, 68, .22);
  border-block: 1px solid rgba(212, 180, 131, .12);
}

.split-section,
.benefit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 3rem;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.section-header {
  max-width: 620px;
}

.section-header.center {
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-header h2,
.benefit-panel h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(19, 19, 27, .78);
  padding: 1.5rem;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 95, 92, .46);
  background: rgba(25, 23, 33, .96);
}

.card-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(242, 95, 92, .14);
  color: var(--accent);
  font-weight: 900;
}

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

.card,
.benefit-panel,
.contact-form,
.contact-note {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(19, 19, 27, .82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.card {
  padding: 1.5rem;
}

.step-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 8px rgba(212, 180, 131, .1);
}

.benefit-layout {
  grid-template-columns: 1fr 1.35fr;
  align-items: stretch;
}

.benefit-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(242, 95, 92, .08), rgba(65, 47, 68, .54)),
    var(--surface);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
}

.benefit-grid article {
  min-height: 210px;
  background: rgba(19, 19, 27, .88);
  padding: 1.55rem;
}

.section-contact {
  padding-bottom: 6rem;
}

.contact-layout {
  align-items: stretch;
}

.contact-copy {
  padding-top: .8rem;
}

.contact-note {
  display: grid;
  gap: .45rem;
  margin-top: 1.6rem;
  padding: 1rem;
}

.contact-note strong {
  color: var(--highlight);
}

.contact-note span {
  color: var(--muted);
  line-height: 1.6;
}

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

.contact-form label {
  display: grid;
  gap: .55rem;
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(212, 180, 131, .2);
  border-radius: 8px;
  background: #0e0d13;
  color: var(--text);
  outline: none;
  padding: 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(242, 95, 92, .12);
}

.contact-form button {
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 0;
  color: var(--muted);
  font-size: .94rem;
}

.footer-inner span:first-child {
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 1.5rem;
    display: none;
    width: min(280px, calc(100vw - 3rem));
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(19, 19, 27, .98);
    box-shadow: var(--shadow);
    padding: .7rem;
  }

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

  .hero-grid,
  .split-section,
  .benefit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .sticky-copy {
    position: static;
  }

  .process-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-eyebrow {
    display: none;
  }

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

  .hero-copy h2 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .photo-frame-main {
    inset: 0 42px 56px 0;
  }

  .photo-frame-side {
    width: 48%;
    height: 48%;
  }

  .camera-card {
    left: 12px;
    bottom: 20px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
