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

:root {
  --red:    #C84B31;
  --navy:   #2D2A3E;
  --amber:  #E8A838;
  --purple: #6C7AE0;
  --cream:  #F5F0E8;
  --light:  #f8f8f8;
  --muted:  #666;
  --border: #e0e0e0;
}

html { scroll-behavior: smooth; }
body { font-family: 'Georgia', serif; color: #222; background: #fff; line-height: 1.7; }
.container { max-width: 1060px; margin: 0 auto; padding: 0 2rem; }

/* ── HEADER ── */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2.5rem; background: var(--navy);
  position: sticky; top: 0; z-index: 100;
}
.header-logo { height: 44px; width: auto; display: block; }
nav a { color: rgba(255,255,255,0.85); text-decoration: none; margin-left: 1.8rem; font-family: -apple-system, sans-serif; font-size: 0.85rem; letter-spacing: 0.3px; transition: color 0.2s; }
nav a:hover { color: var(--amber); }
.header-phone { background: var(--red); color: #fff; text-decoration: none; padding: 0.55rem 1.2rem; font-family: -apple-system, sans-serif; font-size: 0.82rem; font-weight: 600; border-radius: 3px; white-space: nowrap; transition: background 0.2s; }
.header-phone:hover { background: #a83a23; }

/* ── HERO ── */
.hero { position: relative; height: 85vh; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-btn-wrap { position: absolute; bottom: 2.5rem; left: 2.5rem; }
.btn-red { display: inline-block; background: var(--red); color: #fff; text-decoration: none; padding: 0.8rem 2rem; font-family: -apple-system, sans-serif; font-size: 0.9rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s; letter-spacing: 0.5px; }
.btn-red:hover { background: #a83a23; }

/* ── SECTION COMMON ── */
.about, .why { padding: 5rem 0; }
.center { text-align: center; }
h2 { font-size: 2rem; font-weight: 700; color: #222; margin-bottom: 0.5rem; }
.red-rule { width: 48px; height: 3px; background: var(--red); margin: 0.8rem auto 1.5rem; }
.red-rule.left { margin: 0.8rem 0 1.5rem; }
.lead { font-style: italic; font-size: 1.05rem; color: var(--muted); max-width: 720px; margin: 0 auto 1rem; }
.body-text { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 0.95rem; }

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 4rem; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.col-text ul { padding-left: 1.2rem; color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.col-text ul li { margin-bottom: 0.3rem; }
.col-img img { width: 100%; height: 340px; object-fit: cover; display: block; }
.why-sub { font-style: italic; font-size: 1rem; color: #444; margin-bottom: 1.2rem; }

/* ── TESTIMONIAL ── */
.testimonial-band { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; margin-top: 5rem; text-align: center; }
.testimonial p { font-style: italic; font-size: 1rem; color: var(--muted); max-width: 680px; margin: 0 auto 1rem; }
.testimonial-name { font-family: -apple-system, sans-serif; font-size: 0.85rem; font-weight: 700; color: #444; }
.testimonial-dots { margin-top: 1.2rem; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #ccc; margin: 0 3px; }
.dot.active { background: var(--red); }

/* ── SERVICES BAND ── */
.services-band { background: var(--red); padding: 4rem 0; color: #fff; text-align: center; }
.services-band h2 { color: #fff; margin-bottom: 2.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem 1rem; }
.service-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.svc-icon { font-size: 2rem; width: 60px; height: 60px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.service-item p { font-family: -apple-system, sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.9); line-height: 1.3; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.gallery img { width: 100%; height: 200px; object-fit: cover; display: block; filter: brightness(0.9); transition: filter 0.2s; }
.gallery img:hover { filter: brightness(1.05); }

/* ── CONTACT ── */
.contact { padding: 5rem 0; }
.contact-layout { align-items: start; }
.contact h2 { margin-bottom: 0.3rem; }
.contact-tagline { font-style: italic; color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.contact-details { list-style: none; margin-top: 1.5rem; }
.contact-details li { font-family: -apple-system, sans-serif; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.contact-details a { color: var(--red); text-decoration: none; }

/* ── FORM ── */
#contact-form { display: grid; gap: 0.7rem; }
#contact-form input, #contact-form textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid var(--border); font-family: Georgia, serif;
  font-size: 0.9rem; outline: none; background: #fff;
  transition: border-color 0.2s;
}
#contact-form input:focus, #contact-form textarea:focus { border-color: var(--red); }
.inline-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.radio-group label:first-child { font-family: -apple-system, sans-serif; font-size: 0.8rem; color: var(--muted); display: block; margin-bottom: 0.3rem; }
.radios { display: flex; gap: 1.5rem; }
.radios label { font-family: -apple-system, sans-serif; font-size: 0.88rem; display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.form-success { text-align: center; padding: 2rem; background: var(--light); }
.success-dice { font-size: 2.5rem; margin-bottom: 0.5rem; animation: pop 0.3s ease-out; }
@keyframes pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-success p { color: var(--muted); font-size: 0.9rem; }
.form-error { background: #fde8e4; color: #7a2318; border: 1px solid #f5c0b8; padding: 0.8rem; font-family: -apple-system, sans-serif; font-size: 0.85rem; margin-top: 0.5rem; }
.form-error a { color: #7a2318; }

/* ── FOOTER ── */
footer { background: var(--light); border-top: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; }
.footer-logo-img { height: 52px; width: auto; margin: 0 auto 1rem; display: block; }
.footer-nav { margin-bottom: 1rem; }
.footer-nav a { font-family: -apple-system, sans-serif; font-size: 0.82rem; color: #555; text-decoration: none; margin: 0 0.8rem; }
.footer-nav a:hover { color: var(--red); }
.footer-social { margin-bottom: 1rem; }
.footer-social a { font-size: 1.3rem; margin: 0 0.4rem; text-decoration: none; }
.footer-copy { font-family: -apple-system, sans-serif; font-size: 0.75rem; color: #aaa; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  header { padding: 0.8rem 1rem; }
  nav { display: none; }
  .hero { height: 55vw; min-height: 260px; }
  .two-col, .contact-layout { grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
  .two-col.reverse { direction: ltr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery img { height: 130px; }
  .inline-fields { grid-template-columns: 1fr; }
  .container { padding: 0 1.2rem; }
  .about, .why, .contact { padding: 3rem 0; }
}
