*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0f0f0f;
  --black2:   #1a1a1a;
  --red:      #c0392b;
  --red2:     #e74c3c;
  --white:    #ffffff;
  --offwhite: #f5f4f0;
  --gray:     #6b7280;
  --light:    #e8e5df;
  --radius:   6px;
  --shadow:   0 4px 24px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }

img { max-width: 100%; height: auto; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(15,15,15,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192,57,43,.3);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: background .3s;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.logo-text { line-height: 1.15; }
.logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); letter-spacing: .04em;
}
.logo-text span:last-child {
  display: block; font-size: .65rem; font-weight: 500;
  color: var(--red2); letter-spacing: .14em; text-transform: uppercase;
}

/* hidden on desktop — shown only inside mobile drawer */
.nav-cta-item { display: none; }

.nav-links {
  list-style: none; display: flex; gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red2); }

.nav-cta {
  background: var(--red); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius);
  text-decoration: none; font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red2); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO ────────────────────────────────────── */
#home {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(15,15,15,.75) 0%, rgba(15,15,15,.58) 60%, rgba(15,15,15,.88) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 0 5%; padding-top: 70px;
}

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,.18);
  border: 1px solid rgba(192,57,43,.5);
  color: var(--red2); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--white); line-height: 1.12;
  margin-bottom: 22px;
}
.hero-content h1 em {
  font-style: normal; color: var(--red2);
}

.hero-content p {
  color: rgba(255,255,255,.82); font-size: 1.1rem;
  line-height: 1.75; max-width: 540px; margin-bottom: 40px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 15px 34px; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(192,57,43,.45);
}
.btn-primary:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(231,76,60,.55); }

.btn-outline {
  color: var(--white); padding: 14px 32px; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--red2); color: var(--red2); }

.hero-trust {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.trust-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--red); color: var(--white);
  border-radius: 50%; font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── SECTION COMMONS ─────────────────────────── */
section { padding: 96px 5%; }

.section-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.18; color: var(--black);
}
.section-title.white { color: var(--white); }
.section-sub {
  color: var(--gray); font-size: 1rem; line-height: 1.7;
  max-width: 560px; margin-top: 14px;
}
.section-sub.white { color: rgba(255,255,255,.72); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 14px auto 0; }

/* ── SERVICES ────────────────────────────────── */
#services { background: var(--offwhite); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  border: 1px solid var(--light);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.16); }
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(192,57,43,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 22px;
}
.service-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--black); margin-bottom: 10px;
}
.service-card p {
  color: var(--gray); font-size: .92rem; line-height: 1.65;
}

/* ── ABOUT ───────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; border-radius: 12px;
  object-fit: cover; height: 520px;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(192,57,43,.5);
}
.about-badge .big { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; line-height: 1; }
.about-badge .small { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

.about-text .section-sub { max-width: 100%; }

.check-list {
  list-style: none; margin-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .95rem; color: var(--black);
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--red); color: var(--white);
  border-radius: 50%; font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ── WHY US ──────────────────────────────────── */
#why {
  background: var(--black);
  position: relative; overflow: hidden;
}
#why::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(192,57,43,.2) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 36px 28px;
  text-align: center;
  transition: background .3s, border-color .3s;
}
.why-card:hover {
  background: rgba(192,57,43,.12);
  border-color: rgba(192,57,43,.4);
}
.why-card .icon { font-size: 2.4rem; margin-bottom: 18px; }
.why-card h4 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.why-card p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── PROCESS ─────────────────────────────────── */
#process { background: var(--offwhite); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; position: relative;
  counter-reset: steps;
}
.process-steps::before {
  content: '';
  position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, var(--red), var(--red2));
  z-index: 0;
}

.step {
  text-align: center; padding: 0 20px 0;
  position: relative; z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(192,57,43,.45);
  border: 4px solid var(--offwhite);
}
.step h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 8px;
}
.step p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────── */
#testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testi-card {
  background: var(--offwhite);
  border-radius: 10px; padding: 36px;
  border: 1px solid var(--light);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--red); opacity: .2;
  line-height: 1;
}
.stars { color: var(--red); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p {
  font-size: .95rem; color: var(--black);
  line-height: 1.7; margin-bottom: 24px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .95rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--black); }
.testi-loc { font-size: .8rem; color: var(--gray); }

/* ── CONTACT ─────────────────────────────────── */
#contact {
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact-info .section-sub { margin-bottom: 36px; }

.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.4);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item h5 {
  font-size: .78rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--red2); font-weight: 600;
  margin-bottom: 4px;
}
.contact-item p { color: rgba(255,255,255,.82); font-size: .93rem; }
.contact-item a { color: rgba(255,255,255,.82); text-decoration: none; }
.contact-item a:hover { color: var(--red2); }

/* form */
.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 40px;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--white); margin-bottom: 28px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.65); letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: .92rem; padding: 12px 16px;
  outline: none; transition: border-color .2s, background .2s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,.12);
}
.form-group select option { background: var(--black2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--red); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s;
  box-shadow: 0 4px 20px rgba(192,57,43,.45);
}
.form-submit:hover { background: var(--red2); transform: translateY(-2px); }

.form-success {
  display: none; text-align: center; padding: 20px;
  color: var(--red2); font-weight: 600; font-size: 1rem;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--black2);
  padding: 36px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
footer p { font-size: .82rem; color: rgba(255,255,255,.45); }
footer p span { color: var(--red2); }
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  color: rgba(255,255,255,.45); text-decoration: none;
  font-size: .82rem; transition: color .2s;
}
.footer-links a:hover { color: var(--red2); }

/* ══════════════════════════════════════════════
   RESPONSIVE  —  mobile-first breakpoints
   1100  tablet landscape / small desktop
    900  tablet portrait
    640  mobile
    420  small phones
   landscape  short-viewport landscape phones
══════════════════════════════════════════════ */

/* ── ≤1100px  tablet landscape ─────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 4%; }
  #about { gap: 48px; }
  .hero-trust { margin-top: 36px; padding-top: 24px; }
  #contact { gap: 52px; }
}

/* ── ≤900px  tablet portrait ────────────────── */
@media (max-width: 900px) {
  section { padding: 80px 5%; }
  .section-head { margin-bottom: 44px; }

  /* Services — 2 columns */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* About — stack */
  #about { grid-template-columns: 1fr; gap: 72px; }
  .about-img-wrap img { height: 380px; }
  .about-badge { right: 16px; bottom: -20px; }

  /* Why — tighter gap */
  .why-grid { gap: 20px; }

  /* Process — hide connector line, add vertical gap */
  .process-steps::before { display: none; }
  .process-steps { gap: 36px; }

  /* Testimonials — single column, centred */
  .testi-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

  /* Contact — stack */
  #contact { grid-template-columns: 1fr; gap: 56px; }

  /* Footer — column */
  footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { order: -1; }
}

/* ── ≤640px  mobile ─────────────────────────── */
@media (max-width: 640px) {

  /* Nav base */
  nav { padding: 0 5%; height: 64px; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }

  /* Hamburger → X when menu is open */
  .nav-mobile-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-mobile-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-mobile-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile drawer */
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--black);
    padding: 8px 5% 24px;
    gap: 0;
    border-bottom: 2px solid var(--red);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    z-index: 999;
  }
  .nav-mobile-open .nav-links li { width: 100%; }
  .nav-mobile-open .nav-links a {
    display: block; padding: 15px 0;
    font-size: .95rem; letter-spacing: .04em;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  /* Mobile CTA — last item in drawer */
  .nav-cta-item { display: block; }
  .nav-mobile-open .nav-links .nav-cta-item a {
    display: block; margin-top: 16px;
    background: var(--red); color: var(--white);
    text-align: center; padding: 14px;
    border-radius: var(--radius); border-bottom: none;
    font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  }
  .nav-cta-item a:hover { background: var(--red2) !important; }

  /* Hero */
  #home { padding: 0 5%; padding-top: 64px; }
  .hero-content { max-width: 100%; }
  .hero-content p { font-size: 1rem; margin-bottom: 28px; }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-outline {
    padding: 13px 22px; font-size: .9rem;
    flex: 1 1 140px; text-align: center;
  }
  .hero-trust { margin-top: 32px; padding-top: 20px; gap: 10px; }

  /* Sections */
  section { padding: 64px 5%; }
  .section-head { margin-bottom: 36px; }

  /* Services — 1 column */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }

  /* About */
  .about-img-wrap img { height: 260px; }
  .about-badge { padding: 18px 22px; right: 8px; bottom: -12px; }
  .about-badge .big { font-size: 2.2rem; }

  /* Process — numbered vertical list */
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .step {
    text-align: left;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: start;
  }
  .step-num {
    width: 56px; height: 56px; font-size: 1.3rem;
    margin: 0; grid-row: 1 / 3; border-width: 3px;
  }
  .step h4 { margin-bottom: 4px; }

  /* Testimonials */
  .testi-grid { max-width: 100%; }
  .testi-card { padding: 28px 22px; }

  /* Contact form */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

/* ── ≤420px  small phones ───────────────────── */
@media (max-width: 420px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; flex: unset; }
  .hero-trust { margin-top: 24px; padding-top: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }
  .about-img-wrap img { height: 220px; }
  .about-badge { display: none; }
  footer { text-align: center; align-items: center; }
  .footer-links { justify-content: center; }
  .contact-form h3 { font-size: 1.3rem; }
}

/* ── Landscape phones (short viewport) ──────── */
@media (max-height: 500px) and (orientation: landscape) {
  #home { min-height: auto; padding: 80px 5% 56px; }
  .hero-trust { margin-top: 20px; padding-top: 16px; }
  nav { height: 56px; }
  .nav-mobile-open .nav-links { top: 56px; overflow-y: auto; max-height: calc(100vh - 56px); }
}
