/* =====================
   TOKENS & RESET
   ===================== */
:root {
  --red:      #a62828;
  --red-lt:   #c43535;
  --black:    #0d0d0d;
  --black-2:  #181818;
  --white:    #ffffff;
  --off-white:#f7f5f5;
  --gray-1:   #e8e1e1;
  --gray-2:   #888;
  --text:     #1a1a1a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h: 80px;
  --radius: 6px;
  --shadow: 0 4px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.14);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   UTILITIES
   ===================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.section__title--light { color: var(--white); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__header .eyebrow { justify-content: center; }
.section__header .eyebrow::before { display: none; }

.section__desc { color: var(--gray-2); font-size: 17px; max-width: 580px; margin: 0 auto; }

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-item.visible { opacity: 1; transform: translateY(0); }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
}
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--full { width: 100%; }

.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-lt); border-color: var(--red-lt); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.14); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo-img { height: 56px; width: auto; object-fit: contain; border-radius: 4px; }
.nav__logo-img--footer { height: 183px; mix-blend-mode: screen; display: block; isolation: auto; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--black); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--red); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

.nav__mobile { display: none; background: var(--white); border-top: 1px solid var(--gray-1); padding: 20px 32px 28px; }
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 18px; }
.nav__mobile a { color: var(--black); font-size: 16px; font-weight: 500; }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(166,40,40,0.15);
  border: 1px solid rgba(166,40,40,0.4);
  color: #e07070;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0;
}

.hero__word-wrapper {
  display: block;
  margin-bottom: 28px;
}

.hero__animated-word {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--red);
  white-space: nowrap;
  transition: opacity 0.4s ease;
}
.hero__animated-word.fade { opacity: 0; transition: opacity 0.25s ease; }

.hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin-bottom: 44px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll-hint p {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(166,40,40,0.8), transparent);
  animation: line-grow 1.8s ease infinite;
}
@keyframes line-grow {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* =====================
   STATS
   ===================== */
.stats {
  background: var(--red);
  padding: 64px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
.stat strong {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat__plus {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.stat p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* =====================
   ABOUT
   ===================== */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__card-stack { position: relative; height: 380px; }
.about__card {
  position: absolute;
  border-radius: 12px;
  padding: 40px;
}
.about__card--back {
  width: 85%;
  height: 85%;
  background: var(--red);
  opacity: 0.15;
  top: 30px;
  right: 0;
  transform: rotate(3deg);
}
.about__card--front {
  width: 90%;
  height: auto;
  background: var(--black);
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.about__card-icon { font-size: 36px; }
.about__card--front h3 { font-family: var(--font-serif); font-size: 22px; color: var(--white); }
.about__card--front p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.about__card-line { width: 40px; height: 2px; background: var(--red); }
.about__card-detail { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }

.about__text p { color: #555; margin-bottom: 18px; font-size: 16px; }

.about__pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar__icon { color: var(--red); font-size: 10px; margin-top: 6px; flex-shrink: 0; }
.pillar strong { display: block; font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.pillar p { font-size: 14px; color: var(--gray-2); margin: 0; }

/* =====================
   SERVICES
   ===================== */
.services { background: var(--black); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--black-2);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.35s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: #1f1f1f; }

.service-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-card__num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
}
.service-card__icon { font-size: 20px; opacity: 0.3; }
.service-card h3 { font-family: var(--font-serif); font-size: 20px; color: var(--red); line-height: 1.3; }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; flex: 1; }
.service-card__arrow { color: var(--red); font-size: 18px; margin-top: auto; }

/* =====================
   PROCESS
   ===================== */
.process { background: var(--off-white); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.process__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(166,40,40,0.1);
}
.process__connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(166,40,40,0.2));
  z-index: 0;
}
.process__connector--last { display: none; }
.process__body h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.process__body p { font-size: 14px; color: var(--gray-2); line-height: 1.7; }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { background: var(--black); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.testimonial:hover {
  border-color: rgba(166,40,40,0.3);
  transform: translateY(-4px);
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--red);
  line-height: 1;
  margin-bottom: -12px;
}
.testimonial p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; color: var(--white); font-size: 14px; }
.testimonial__author span { font-size: 12px; color: rgba(255,255,255,0.35); }

/* =====================
   FAQ
   ===================== */
.faq { background: var(--black); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq__intro p:not(.eyebrow) { color: rgba(255,255,255,0.5); margin-top: 8px; }
.faq__intro .section__title { color: var(--white); }
.faq__intro a { color: var(--red); font-weight: 500; }
.faq__intro a:hover { text-decoration: underline; }

.faq__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--red); }
.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 0 20px;
}
.faq__item.open .faq__answer { display: block; }
.faq__answer p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* =====================
   CONTACT
   ===================== */
.contact { background: var(--off-white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact__info p:not(.eyebrow) { color: #555; margin-bottom: 36px; }
.contact__details { display: flex; flex-direction: column; gap: 22px; }
.contact__details li { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact__details span, .contact__details a { font-size: 15px; color: #444; line-height: 1.6; padding-top: 6px; }
.contact__details a:hover { color: var(--red); }

.contact__form {
  background: var(--white);
  border-radius: 12px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--black); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-1);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(166,40,40,0.08);
}
.form-group input[type="file"] { padding: 10px 12px; font-size: 13px; color: var(--gray-2); }
.form-group textarea { resize: vertical; }
.form__disclaimer { font-size: 12px; color: var(--gray-2); text-align: center; line-height: 1.6; margin-top: -6px; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--black); padding: 56px 0 32px; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer__links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.footer__links a { color: rgba(255,255,255,0.45); font-size: 14px; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__contact { text-align: right; }
.footer__contact p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; }
.footer__bottom { text-align: center; }
.footer__bottom p { color: rgba(255,255,255,0.3); font-size: 13px; line-height: 1.7; }
.footer__disclaimer { max-width: 560px; margin: 8px auto 0; font-size: 12px !important; }

/* =====================
   STICKY CTA
   ===================== */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(166,40,40,0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(166,40,40,0.5);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__card-stack { height: 280px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__connector { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__contact { text-align: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo-img { height: 44px; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact__form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
  .about__card-stack { height: 220px; }
  .about__card--front { padding: 24px; }
  .footer__links { gap: 16px; }
  .nav__logo-img--footer { height: 132px; margin: 0 auto; }
  .stats__grid { gap: 16px; padding: 0 16px; }
  .stat strong { font-size: 36px; }
  .stat__plus { font-size: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .hero__title { font-size: 36px; }
  .hero__animated-word { font-size: 22px; }
  .hero__sub { font-size: 15px; }
  .hero__badge { font-size: 10px; padding: 5px 12px; }
  .section__title { font-size: 26px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat strong { font-size: 30px; }
  .service-card { padding: 28px 20px; }
  .process__num { width: 52px; height: 52px; font-size: 16px; }
  .contact__form { padding: 24px 16px; }
  .footer__top { gap: 24px; }
  .nav__logo-img--footer { height: 90px; }
  .faq__question { font-size: 14px; }
  .btn--lg { padding: 14px 24px; font-size: 14px; }
}
