*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #09090c;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: #e63946; text-decoration: none; }
a:hover { color: #ff6b7a; }
img { max-width: 100%; }

/* ---------- decorative ---------- */
.bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(#26263a 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 72%);
}
.glow-tl, .glow-br { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.glow-tl { top: -140px; left: -120px; width: 420px; height: 420px; background: rgba(230,57,70,0.16); }
.glow-br { bottom: -160px; right: -120px; width: 460px; height: 460px; background: rgba(124,58,237,0.14); }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,9,12,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid #1c1c24;
  padding: 0 28px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { display: flex; align-items: center; gap: 11px; }
.header-logo img { width: 34px; height: 34px; flex: none; }
.wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.wordmark .wm-top {
  font-size: 1.18rem; font-weight: 800; color: #fff; letter-spacing: -0.2px;
}
.wordmark .wm-top em { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; color: #e63946; }
.wordmark .wm-sub {
  font-size: 0.55rem; font-weight: 600; color: #7a7a88;
  letter-spacing: 2.4px; text-transform: uppercase; margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  color: #a5a5b0; font-size: 0.9rem; font-weight: 500; transition: color 0.2s, background 0.2s;
  padding: 8px 14px; border-radius: 50px;
}
.nav a:hover { color: #fff; background: #17171f; }
.nav a.active { color: #fff; background: rgba(230,57,70,0.13); box-shadow: inset 0 0 0 1px rgba(230,57,70,0.3); }
.nav-cta {
  padding: 10px 20px !important; border-radius: 50px; background: #e63946 !important;
  color: #fff !important; font-size: 0.86rem; font-weight: 600; margin-left: 10px;
  box-shadow: none !important;
}
.nav-cta:hover { background: #ff4757 !important; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 150px 28px 96px;
  background: #09090c;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 820px 460px at 78% 18%, rgba(230,57,70,0.16), transparent 62%),
    radial-gradient(ellipse 700px 400px at 12% 85%, rgba(124,58,237,0.13), transparent 65%),
    linear-gradient(150deg, rgba(9,9,12,0.58) 0%, rgba(15,15,24,0.48) 52%, rgba(9,9,12,0.64) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center;
}
.hero-copy { text-align: left; position: relative; }
.hero-copy::before {
  content: "";
  position: absolute;
  top: -40px; bottom: -40px; left: -32px; right: -10%;
  z-index: -1;
  background: radial-gradient(ellipse 560px 420px at 30% 42%, rgba(3,3,6,0.62) 0%, rgba(3,3,6,0.42) 45%, transparent 75%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #ff9ba3; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.3);
  padding: 7px 15px; border-radius: 50px; margin-bottom: 22px;
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #e63946;
  box-shadow: 0 0 0 0 rgba(230,57,70,0.7); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}
.hero h1 {
  font-size: clamp(2.15rem, 4.1vw, 3.35rem); font-weight: 800;
  margin-bottom: 20px; line-height: 1.12; letter-spacing: -1px;
}
.hero h1 span {
  background: linear-gradient(100deg, #e63946 0%, #ff8b95 50%, #e63946 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: #e63946;
}
.hero p { font-size: 1.06rem; color: #a5a5b2; max-width: 500px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  background: #e63946; color: #fff; font-weight: 600; font-size: 0.95rem;
  transition: all 0.22s; border: none; cursor: pointer; font-family: inherit;
}
.btn:hover { background: #ff4757; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(230,57,70,0.36); }
.btn-outline { background: transparent; border: 1.5px solid #383846; color: #f0f0f0; }
.btn-outline:hover { background: #17171f; border-color: #e63946; color: #fff; box-shadow: none; }

.stat-row {
  display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid #1f1f2b;
}
.stat-row .stat-num { font-size: 1.55rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.stat-row .stat-num em { color: #e63946; font-style: normal; }
.stat-row .stat-label { color: #7a7a88; font-size: 0.78rem; letter-spacing: 0.3px; }

/* hero art */
.hero-art { display: flex; justify-content: center; }
.photo-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid #2b2b3a; box-shadow: 0 34px 70px rgba(0,0,0,0.6);
}
.photo-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(230,57,70,0.22);
  pointer-events: none;
}
.photo-frame img { display: block; width: 100%; height: auto; }
.photo-badge {
  position: absolute; bottom: 15px; left: 15px; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  background: rgba(9,9,12,0.78); backdrop-filter: blur(8px);
  border: 1px solid rgba(230,57,70,0.35); border-radius: 50px;
  padding: 8px 15px; font-size: 0.78rem; font-weight: 600; color: #fff;
}
.photo-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #e63946; box-shadow: 0 0 8px #e63946; }

/* ---------- sections ---------- */
.section { position: relative; padding: 92px 28px; }
.section-tight { padding: 64px 28px; }
.section-dark { background: #0c0c11; border-top: 1px solid #16161e; border-bottom: 1px solid #16161e; }
.section-inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.55rem, 2.9vw, 2.15rem); font-weight: 800; margin-bottom: 14px;
  text-align: center; letter-spacing: -0.6px;
}
.section-subtitle { color: #83838f; text-align: center; max-width: 580px; margin: 0 auto 46px; font-size: 1.02rem; }

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, #14141b 0%, #101015 100%);
  border: 1px solid #21212c; border-radius: 16px;
  padding: 34px 26px; text-align: center; transition: all 0.28s;
}
.card:hover { border-color: rgba(230,57,70,0.55); transform: translateY(-5px); box-shadow: 0 16px 38px rgba(0,0,0,0.5); }
.card-icon {
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 17px; border-radius: 14px;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.26);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 9px; }
.card p { color: #8d8d99; font-size: 0.92rem; line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: linear-gradient(180deg, #14141b 0%, #101015 100%);
  border: 1px solid #21212c; border-radius: 14px;
  padding: 4px 22px; transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(230,57,70,0.4); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-weight: 700; font-size: 1rem; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; font-size: 1.3rem; font-weight: 400; color: #e63946;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: #9a9aa8; font-size: 0.94rem; line-height: 1.7; padding: 0 0 20px; }

/* ---------- promise + pricing split ---------- */
.split-2 {
  display: grid; grid-template-columns: 1fr 0.85fr; gap: 26px; align-items: stretch;
  max-width: 940px; margin: 0 auto;
}
.promise-card {
  background: linear-gradient(180deg, #14141b 0%, #101015 100%);
  border: 1px solid #21212c; border-radius: 18px; padding: 38px 34px;
  display: flex; flex-direction: column; justify-content: center;
}
.promise-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.4px; }
.promise-card p { color: #8d8d99; font-size: 0.96rem; }
.promise-card .on-site { color: #e63946; font-weight: 700; }

.pricing-box {
  position: relative; overflow: hidden;
  background: linear-gradient(158deg, #1c1219 0%, #121219 100%);
  border: 1px solid #33222a; border-radius: 18px;
  padding: 38px 30px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.pricing-box::before {
  content: ""; position: absolute; top: -70px; right: -70px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.26), transparent 70%);
}
.pricing-box .price-label {
  position: relative; font-size: 0.7rem; font-weight: 700; color: #ff9ba3;
  letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 8px;
}
.pricing-box .price {
  font-size: 3.4rem; font-weight: 800; color: #fff; position: relative;
  line-height: 1; letter-spacing: -2px;
}
.pricing-box .price sup { font-size: 1.5rem; font-weight: 700; color: #e63946; vertical-align: super; }
.pricing-box .price small { font-size: 1rem; font-weight: 600; color: #83838f; letter-spacing: 0; }
.pricing-box .price-sub { color: #83838f; margin-top: 14px; font-size: 0.88rem; position: relative; line-height: 1.7; }
.pricing-box .price-sub strong { color: #d0d0da; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-tile {
  border-radius: 16px; overflow: hidden; border: 1px solid #21212c; background: #101015;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.gallery-tile:hover { transform: translateY(-5px); border-color: rgba(230,57,70,0.55); box-shadow: 0 16px 38px rgba(0,0,0,0.5); }
.gallery-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #0c0c11; }
.gallery-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-tile:hover .gallery-media img { transform: scale(1.06); }
.gallery-caption { padding: 16px 18px 18px; }
.gallery-caption h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.gallery-caption p { color: #83838f; font-size: 0.84rem; }

/* ---------- video ---------- */
.video-split {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
  max-width: 940px; margin: 0 auto;
}
.video-frame {
  position: relative; width: 100%; max-width: 400px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 1px solid #2b2b3a; box-shadow: 0 30px 64px rgba(0,0,0,0.6);
  background: #000; aspect-ratio: 1 / 1;
}
.video-frame video { display: block; width: 100%; height: 100%; object-fit: cover; background: #000; }
.video-copy h2 { font-size: clamp(1.5rem, 2.7vw, 2.05rem); font-weight: 800; letter-spacing: -0.6px; margin-bottom: 14px; }
.video-copy p { color: #8d8d99; font-size: 1rem; margin-bottom: 22px; }
.video-copy .vc-note { color: #6e6e7c; font-size: 0.85rem; margin-top: 18px; margin-bottom: 0; }
@media (max-width: 768px) {
  .video-split { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .video-copy { order: -1; }
}

/* ---------- testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: linear-gradient(180deg, #14141b 0%, #101015 100%);
  border: 1px solid #21212c; border-radius: 16px; padding: 34px 26px 28px;
  position: relative; display: flex; flex-direction: column;
  transition: border-color 0.28s, transform 0.28s;
}
.testimonial-card:hover { border-color: rgba(230,57,70,0.45); transform: translateY(-4px); }
.testimonial-card .stars { color: #ffc75a; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card .quote { color: #c3c3ce; font-size: 0.94rem; line-height: 1.75; margin-bottom: 20px; flex: 1; }
.testimonial-card .attrib { border-top: 1px solid #21212c; padding-top: 16px; }
.testimonial-card .author { font-weight: 700; color: #fff; font-size: 0.94rem; }
.testimonial-card .location { color: #6e6e7c; font-size: 0.82rem; }

/* ---------- final CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  max-width: 1000px; margin: 0 auto; border-radius: 24px;
  padding: 64px 40px; text-align: center;
  background:
    radial-gradient(ellipse 600px 300px at 50% 0%, rgba(230,57,70,0.2), transparent 68%),
    linear-gradient(160deg, #17111a 0%, #101018 100%);
  border: 1px solid #2c2030;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.7px; margin-bottom: 12px; position: relative; }
.cta-band p { color: #9a9aa8; max-width: 480px; margin: 0 auto 30px; position: relative; }
.cta-band .btn { position: relative; }
.cta-meta { margin-top: 22px; color: #6e6e7c; font-size: 0.85rem; position: relative; }
.cta-meta a { color: #c3c3ce; font-weight: 600; }
.cta-meta a:hover { color: #e63946; }

/* ---------- forms ---------- */
.contact-form { max-width: 520px; margin: 0 auto; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; margin-bottom: 15px; border-radius: 10px;
  border: 1px solid #2a2a36; background: #101015; color: #fff; font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s; font-family: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #61616e; }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: #e63946; box-shadow: 0 0 0 3px rgba(230,57,70,0.12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.contact-panel {
  background: linear-gradient(180deg, #14141b 0%, #101015 100%);
  border: 1px solid #21212c; border-radius: 18px; padding: 32px 28px;
}
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-item:last-of-type { margin-bottom: 0; }
.contact-item .ci-icon {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.26);
  display: flex; align-items: center; justify-content: center;
}
.contact-item .ci-icon svg { width: 19px; height: 19px; }
.contact-item .ci-label {
  font-size: 0.68rem; font-weight: 700; color: #7a7a88;
  letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 2px;
}
.contact-item .ci-value { color: #e8e8f0; font-size: 0.98rem; font-weight: 500; }
.contact-item a.ci-value:hover { color: #e63946; }

/* ---------- features list ---------- */
.features-list { max-width: 620px; margin: 0 auto; list-style: none; }
.features-list li {
  padding: 17px 4px; border-bottom: 1px solid #1f1f2a;
  display: flex; align-items: flex-start; gap: 13px; color: #b8b8c4; font-size: 0.97rem;
}
.features-list li:last-child { border-bottom: none; }
.features-list li strong { color: #fff; }
.features-list li .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(230,57,70,0.15); color: #e63946; font-weight: 700; font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center; margin-top: 3px;
}

/* ---------- footer ---------- */
.footer { background: #07070a; border-top: 1px solid #16161e; padding: 56px 28px 26px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; text-align: left; margin-bottom: 36px; }
.footer-logo { max-width: 210px; margin-bottom: 16px; opacity: 0.92; }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 0.82rem; letter-spacing: 1.3px; text-transform: uppercase; }
.footer-col p { color: #6e6e7c; font-size: 0.9rem; line-height: 1.75; }
.footer-col a { color: #8d8d99; font-size: 0.9rem; line-height: 2; display: block; }
.footer-col a:hover { color: #e63946; }
.footer-bottom {
  border-top: 1px solid #16161e; padding-top: 24px; color: #4e4e5a; font-size: 0.82rem;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* ---------- page header ---------- */
.page-header {
  position: relative;
  padding: 136px 28px 62px; text-align: center;
  background:
    radial-gradient(ellipse 680px 380px at 50% -5%, rgba(230,57,70,0.17), transparent 66%),
    linear-gradient(150deg, #09090c 0%, #14141f 55%, #09090c 100%);
  overflow: hidden;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 800; position: relative; z-index: 1; letter-spacing: -1px; }
.page-header p { color: #83838f; margin-top: 10px; font-size: 1.04rem; position: relative; z-index: 1; }

.content-area { max-width: 780px; margin: 0 auto; }
.content-area p { color: #a8a8b6; margin-bottom: 16px; font-size: 1rem; line-height: 1.85; }
.content-area h2 { font-size: 1.4rem; margin: 34px 0 14px; color: #fff; font-weight: 700; letter-spacing: -0.4px; }
.content-area h2:first-child { margin-top: 0; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eyebrow .pulse { animation: none; }
  html { scroll-behavior: auto; }
  .hero-bg-video { display: none; }
  .hero { background: #0c0c12 url('/img/hero-bg-poster.jpg') center/cover no-repeat; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-3, .gallery-grid, .testimonials { grid-template-columns: 1fr; }
  .hero-bg-video { display: none; }
  .hero { padding: 118px 22px 72px; background: #0c0c12 url('/img/hero-bg-poster.jpg') center/cover no-repeat; }
  .hero .hero-scrim { background: linear-gradient(160deg, rgba(9,9,12,0.6) 0%, rgba(9,9,12,0.66) 100%); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-copy::before { left: -6%; right: -6%; background-position: center; background: radial-gradient(ellipse 480px 420px at 50% 42%, rgba(3,3,6,0.62) 0%, rgba(3,3,6,0.42) 45%, transparent 75%); }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .stat-row { justify-content: center; gap: 26px; }
  .hero-art .photo-frame { max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .footer-bottom { justify-content: center; text-align: center; }
  .nav { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0;
         background: #0a0a0e; padding: 20px 22px 26px; gap: 8px;
         border-bottom: 1px solid #21212c; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; text-align: center; }
  .nav a.active::after { display: none; }
  .nav-cta { text-align: center; }
  .menu-toggle { display: block; }
  .cta-band { padding: 48px 26px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .stat-row { gap: 18px; }
  .stat-row .stat-num { font-size: 1.3rem; }
}
