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

:root {
  --red: #b9252b;
  --red-dark: #8f1c21;
  --yellow: #ffd23c;
  --dark: #1c1c1c;
  --gray-bg: #f4f4f2;
  --text-muted: #555;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: #2a2a2a; line-height: 1.7; background: #fff; }

a { color: var(--red); }

/* HEADER */
.site-header { border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; background: #fff; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dark); }
.logo-icon { display:flex; align-items:center; justify-content:center; width:42px; height:42px; background:var(--red); color:#fff; font-family:var(--font-display); font-weight:700; font-size:1rem; border-radius:4px; flex-shrink:0; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.02em; white-space: nowrap; }

.main-nav { display: flex; gap: 32px; }
.main-nav > a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 8px 0; border-bottom: 2px solid transparent; transition: border-color 0.2s, color 0.2s; }
.main-nav > a:hover, .main-nav > a.active { color: var(--red); border-bottom-color: var(--red); }

/* DROPDOWN */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 6px; }
.nav-item > a::after { content: '▾'; font-size: 0.7rem; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid #e5e5e5; border-radius: 0 0 6px 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); min-width: 220px; padding: 8px 0; z-index: 200; }
.nav-item:hover .dropdown, .nav-item.open .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 20px; text-decoration: none; color: var(--dark); font-size: 0.88rem; font-weight: 500; text-transform: none; letter-spacing: normal; border: none !important; }
.dropdown a:hover { background: var(--gray-bg); color: var(--red); }

@media (max-width: 860px) {
  .nav-item > a::after { margin-left: auto; }
  .dropdown { position: static; display: none; border: none; box-shadow: none; padding-left: 16px; }
  .nav-item.open .dropdown { display: block; }
}

.header-phone { display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; line-height: 1.2; }
.phone-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; }
.phone-number { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--red); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

@media (max-width: 860px) {
  .main-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; padding: 8px 24px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

/* HERO */
.hero { position: relative; min-height: 380px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.hero-overlay { width: 100%; display: flex; justify-content: center; padding: 24px; }
.hero-banner { background: rgba(185,37,43,0.82); color: #fff; text-align: center; padding: 40px 56px; max-width: 720px; width: 100%; }
@media (max-width: 600px) {
  .hero { min-height: 280px; }
  .hero-banner { padding: 24px 20px; }
  .hero-overlay { padding: 16px; }
}
.hero-banner h1 { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 12px; }
.hero-tag { font-size: 1rem; font-weight: 400; margin-bottom: 18px; opacity: 0.95; }
.hero-phone { display: inline-block; font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 700; color: var(--yellow); text-decoration: underline; letter-spacing: 0.04em; }

/* PAGE LAYOUT */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 48px 24px 64px; }
@media (max-width: 600px) { .page-wrap { padding: 28px 16px 40px; } }
.content-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; } }

.title-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.title-row h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; color: var(--dark); }
.title-img { width: 90px; height: 90px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
@media (max-width: 600px) { .title-img { width: 64px; height: 64px; } }

.content-main p { margin-bottom: 18px; color: #333; }
.content-main h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin: 28px 0 14px; color: var(--dark); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }

.cta-button { display: inline-block; background: var(--red); color: #fff; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.05em; padding: 16px 36px; border-radius: 4px; transition: background 0.2s; }
.cta-button:hover { background: var(--red-dark); }

/* FORM SIDEBAR */
.form-sidebar { position: sticky; top: 100px; }
@media (max-width: 900px) { .form-sidebar { position: static; } }
.form-box { background: var(--red); color: #fff; padding: 28px 28px 32px; border-radius: 6px; }
.form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 6px; letter-spacing: 0.04em; }
.form-sub { text-align: center; font-size: 0.85rem; opacity: 0.9; margin-bottom: 20px; }

.form-box .form-label { display: block; font-weight: 700; font-size: 0.85rem; margin: 14px 0 6px; }
.form-box input[type="text"], .form-box input[type="tel"], .form-box input[type="email"], .form-box textarea {
  width: 100%; padding: 12px 14px; border: none; border-radius: 4px; font-family: var(--font-body); font-size: 0.92rem; color: #2a2a2a; background: #fff;
}
.form-box textarea { resize: vertical; }
.form-box input:focus, .form-box textarea:focus { outline: 3px solid var(--yellow); }

.radio-group { display: flex; flex-direction: column; gap: 8px; background: rgba(255,255,255,0.08); padding: 12px 14px; border-radius: 4px; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 400; cursor: pointer; }
.radio-group input { accent-color: var(--yellow); width: 16px; height: 16px; }

.form-submit { width: 100%; margin-top: 22px; background: var(--yellow); color: var(--dark); border: none; padding: 16px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: #ffdc66; transform: translateY(-1px); }

.hidden-field { display: none; }

/* FOOTER */
.site-footer { background: var(--dark); color: #ccc; text-align: center; padding: 36px 24px; }
.footer-inner p { margin-bottom: 6px; font-size: 0.92rem; }
.footer-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-inner a { color: var(--yellow); text-decoration: none; }
.footer-copy { margin-top: 14px; font-size: 0.78rem; color: #888; }

/* SERVICE CARDS (services page) */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0 32px; }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { border: 1px solid #e5e5e5; border-radius: 6px; overflow: hidden; }
.service-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.service-card-body { padding: 18px 20px; }
.service-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 0 0 8px; color: var(--dark); }
.service-card-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* MODULAR CONTENT BLOCKS */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin: 36px 0; }
.content-block.reverse .block-img { order: 2; }
@media (max-width: 700px) { .content-block, .content-block.reverse .block-img { grid-template-columns: 1fr; order: initial; } .content-block { grid-template-columns: 1fr; } }
.block-img img { width: 100%; height: 220px; object-fit: cover; border-radius: 6px; }
.block-text h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.block-text p { margin-bottom: 0; }

/* INTERNAL LINK STRIP */
.related-services { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.related-services a { background: var(--gray-bg); border: 1px solid #e5e5e5; border-radius: 100px; padding: 8px 18px; font-size: 0.85rem; font-weight: 600; text-decoration: none; color: var(--dark); transition: background 0.2s, color 0.2s; }
.related-services a:hover { background: var(--red); color: #fff; }

/* CONTACT PAGE */
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.contact-info-list li { font-size: 1rem; }
.contact-info-list strong { color: var(--dark); }
