/* ── Design tokens ── */
:root {
  --brand:       #f43f5e;
  --brand-dark:  #be123c;
  --brand-light: #fff1f2;
  --accent:      #f97316;
  --text:        #1c0a14;
  --text-muted:  #6b7280;
  --bg:          #ffffff;
  --bg-alt:      #fff7f8;
  --border:      #fecdd3;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(244,63,94,0.12);
  --font-head:   'Sora', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-w:       1140px;
  --rainbow:     linear-gradient(90deg, #f43f5e 0%, #f97316 17%, #eab308 33%, #22c55e 50%, #06b6d4 67%, #818cf8 83%, #ec4899 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout ── */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }

/* ── Typography ── */
h1,h2,h3 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
em { color: var(--accent); font-style: normal; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--brand); color: #fff;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn--ghost:hover { background: var(--brand-light); transform: translateY(-1px); }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }

/* ── Section helpers ── */
.section-eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 0.5rem; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-sub { color: var(--text-muted); margin-top: 0.75rem; font-size: 1.05rem; }

/* ── Rainbow strip ── */
.rainbow-strip { height: 5px; background: var(--rainbow); }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; gap: 2rem; height: 64px; }
.nav__logo { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--brand); flex: 1; }
.nav__links { display: flex; gap: 1.75rem; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.15s; }
.nav__links a:hover { color: var(--brand); }
.nav__toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #7f1d1d 0%, var(--brand-dark) 40%, var(--brand) 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero__eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin-bottom: 1rem; }
.hero__title { margin-bottom: 1.25rem; }
.hero__title em { color: var(--accent); font-style: normal; }
.hero__sub { font-size: 1.1rem; opacity: 0.88; max-width: 500px; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__cta .btn { background: var(--accent); color: #1c0a14; border-color: var(--accent); }
.hero__cta .btn:hover { background: #ea6b0a; border-color: #ea6b0a; color: #1c0a14; }
.hero__cta .btn--ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.hero__cta .btn--ghost:hover { background: rgba(255,255,255,0.1); }
.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.15);
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.trust-bar__inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem; text-align: center; }
.trust-bar__item { font-size: 0.9rem; color: var(--text-muted); }
.trust-bar__item strong { display: block; font-family: var(--font-head); font-size: 1.4rem; color: var(--brand); font-weight: 700; }

/* ── SERVICES ── */
.services { padding: clamp(3rem, 8vw, 5rem) 0; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card__icon { font-size: 2rem; margin-bottom: 1rem; }
.card__icon--1 { color: #f43f5e; }
.card__icon--2 { color: #f97316; }
.card__icon--3 { color: #eab308; }
.card__icon--4 { color: #22c55e; }
.card__icon--5 { color: #06b6d4; }
.card__icon--6 { color: #818cf8; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ── ABOUT ── */
.about { background: var(--bg-alt); padding: clamp(3rem, 8vw, 5rem) 0; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about__img-wrap { display: flex; justify-content: center; }
.about__img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__text h2 { margin-bottom: 1rem; }
.about__text p { color: var(--text-muted); margin-bottom: 0.75rem; }

/* ── TESTIMONIALS ── */
.testimonials { padding: clamp(3rem, 8vw, 5rem) 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial { background: var(--bg-alt); border-left: 4px solid var(--brand); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.75rem 2rem; }
.testimonial p { font-size: 1.05rem; color: var(--text); margin-bottom: 1rem; font-style: italic; }
.testimonial footer { font-size: 0.875rem; font-weight: 600; color: var(--brand); }

/* ── CONTACT ── */
.contact { background: var(--brand-dark); color: #fff; padding: clamp(3rem, 8vw, 5rem) 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact__info h2 { margin-bottom: 1rem; }
.contact__info p { opacity: 0.85; margin-bottom: 1.5rem; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact__list li { font-size: 1rem; opacity: 0.9; }
.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact__form input,
.contact__form textarea { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 0.75rem 1rem; color: #fff; font-family: var(--font-body); font-size: 0.95rem; width: 100%; }
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact__form input:focus,
.contact__form textarea:focus { outline: 2px solid var(--accent); }
.contact__form .btn { background: var(--accent); color: #1c0a14; border-color: var(--accent); }
.contact__form .btn:hover { background: #ea6b0a; }
.contact .section-eyebrow { color: var(--accent); }

/* ── FOOTER ── */
.footer__rainbow { height: 4px; background: var(--rainbow); }
.footer { background: #0f0007; color: rgba(255,255,255,0.55); }
.footer__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; padding: 1.75rem 0; }
.footer__logo { font-family: var(--font-head); font-weight: 700; color: #fff; flex: 1; }
.footer__copy { font-size: 0.85rem; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: 0.875rem; transition: color 0.15s; }
.footer__links a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 5%; gap: 1rem; }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: block; }
  .nav__inner { position: relative; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { justify-content: flex-start; }
  .hero__img { max-width: 100%; aspect-ratio: 16/9; }
  .about__inner { grid-template-columns: 1fr; }
  .about__img { max-width: 100%; aspect-ratio: 4/3; }
  .contact__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; gap: 1rem; }
}
