*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --red:         #d94f1e;
  --red-dark:    #b03c10;
  --red-light:   #fdf0eb;
  --red-mid:     #f5c8b4;
  --slate:       #1e2a35;
  --slate-mid:   #2e3f50;
  --slate-soft:  #3d5166;
  --text:        #1a2430;
  --text-soft:   #374a5c;
  --text-muted:  #6b7f93;
  --white:       #ffffff;
  --bg:          #f6f8fa;
  --bg-alt:      #edf1f5;
  --border:      #dde4ec;
  --border-dark: #b8c5d1;
  --nav-h:       62px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.65;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.nav-name {
  font-size: 15px; font-weight: 800;
  color: var(--text); line-height: 1.15;
}
.nav-name span { color: var(--red); }
.nav-tagline-small {
  font-size: 10.5px; color: var(--text-muted); font-weight: 400;
}

nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
nav ul li a {
  text-decoration: none; color: var(--text-soft);
  font-size: 13.5px; font-weight: 700;
  transition: color 0.18s; position: relative;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.22s;
}
nav ul li a:hover { color: var(--red); }
nav ul li a:hover::after { width: 100%; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.24s; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px 18px; z-index: 999;
  flex-direction: column; gap: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  text-decoration: none; color: var(--text-soft);
  font-size: 14px; font-weight: 700;
  padding: 11px 14px; border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.nav-drawer a:hover { background: var(--red-light); color: var(--red); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url(https://i1-e.pinimg.com/736x/f8/c6/d5/f8c6d5c6a4951e613205a378a8b8511a.jpg) center / cover no-repeat;
  animation: hZoom 22s ease-in-out infinite alternate;
}
@keyframes hZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,25,35,0.90) 0%,
    rgba(25,38,52,0.84) 55%,
    rgba(14,20,28,0.92) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 780px; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,79,30,0.18);
  border: 1px solid rgba(217,79,30,0.45);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 1px;
  color: #ffb49a;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
}

.hero h1 {
  font-size: 52px; font-weight: 800;
  color: var(--white); line-height: 1.1;
  margin-bottom: 10px;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero h1 span { color: #ff8c6a; }

.hero-sub {
  font-size: 14px; color: rgba(255,255,255,0.52);
  letter-spacing: 2px; font-weight: 400;
  margin-bottom: 16px;
  animation: fadeUp 0.5s 0.12s ease both;
}

.hero-desc {
  font-size: 15.5px; color: rgba(255,255,255,0.65);
  line-height: 1.82; font-weight: 400;
  max-width: 520px; margin: 0 auto 30px;
  animation: fadeUp 0.5s 0.16s ease both;
}

.hero-phones {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.5s 0.22s ease both;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red);
  border-radius: 10px;
  padding: 13px 22px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  box-shadow: 0 6px 22px rgba(217,79,30,0.4);
}
.hero-phone:hover { background: var(--red-dark); transform: translateY(-2px); }
.hp-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.hp-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }
.hp-num   { font-size: 18px; font-weight: 800; color: #ffffff; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px;
  justify-content: center;
  animation: fadeUp 0.5s 0.28s ease both;
}
.chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px; padding: 5px 13px;
  font-size: 12px; color: rgba(255,255,255,0.78); font-weight: 400;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION BASE ── */
.sec-wrap { max-width: 1100px; margin: auto; padding: 0 48px; }

.sec-kicker {
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.sec-title {
  font-size: 32px; font-weight: 800;
  color: var(--text); line-height: 1.2; margin-bottom: 8px;
}
.sec-rule {
  width: 40px; height: 3px;
  background: var(--red); border-radius: 2px;
  margin-bottom: 24px;
}

/* ── ABOUT ── */
.about-sec {
  padding: 80px 0; background: var(--white);
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: 12px; display: block;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
}
.about-badge {
  position: absolute; top: 20px; left: -14px;
  background: var(--red);
  color: var(--white); border-radius: 8px;
  padding: 12px 16px; text-align: center;
  box-shadow: 0 6px 20px rgba(217,79,30,0.38);
}
.ab-num  { font-size: 24px; font-weight: 800; line-height: 1; }
.ab-text { font-size: 10px; font-weight: 700; opacity: 0.88; margin-top: 2px; }

.about-text p {
  font-size: 15px; color: var(--text-soft); line-height: 1.82;
  margin-bottom: 14px;
}
.about-owner {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; margin-top: 20px;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-left: 4px solid var(--red);
  border-radius: 10px;
}
.ao-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ao-name { font-size: 15px; font-weight: 800; color: var(--text); }
.ao-role { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* ── SERVICES ── */
.services-sec {
  padding: 80px 0; background: var(--bg);
  border-top: 1px solid var(--border);
}
.services-header { text-align: center; margin-bottom: 44px; }
.services-header .sec-rule { margin: 0 auto 24px; }

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 12px; padding: 28px 22px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.svc-card:hover {
  box-shadow: 0 10px 32px rgba(217,79,30,0.11);
  transform: translateY(-4px);
}
.svc-num  { font-size: 11px; font-weight: 800; color: var(--red); letter-spacing: 1.5px; margin-bottom: 10px; }
.svc-icon { font-size: 30px; margin-bottom: 10px; }
.svc-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.svc-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.72; }

/* ── WHY US ── */
.why-sec {
  padding: 80px 0;
  background: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.why-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.why-header { text-align: center; margin-bottom: 44px; position: relative; z-index: 1; }
.why-header .sec-kicker { color: #ff8c6a; }
.why-header .sec-title  { color: var(--white); }
.why-header .sec-rule   { margin: 0 auto 24px; background: rgba(255,255,255,0.25); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; position: relative; z-index: 1; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 18px 20px;
  transition: background 0.18s;
}
.why-item:hover { background: rgba(217,79,30,0.1); }
.why-icon {
  width: 40px; height: 40px;
  background: rgba(217,79,30,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.why-item h4 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.why-item p  { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ── CONTACT ── */
.contact-sec {
  padding: 80px 0; background: var(--white);
  border-top: 1px solid var(--border);
}
.contact-header { text-align: center; margin-bottom: 44px; }
.contact-header .sec-rule { margin: 0 auto 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  gap: 16px; justify-content: center;
}
.c-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.c-card:hover {
  box-shadow: 0 8px 24px rgba(217,79,30,0.1);
  transform: translateY(-3px);
}
.c-icon {
  width: 44px; height: 44px;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.c-label { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.c-value  { font-size: 15.5px; font-weight: 800; color: var(--text); line-height: 1.3; }
.c-value small { display: block; font-size: 12.5px; color: var(--text-muted); font-weight: 400; margin-top: 2px; }

/* ── FOOTER ── */
footer {
  background: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.footer-copy {
  text-align: center; padding: 16px 20px;
  font-size: 12.5px; color: #7a8fa0;
}
.footer-copy a { color: #ff8c6a; text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 1024px) {
  nav         { padding: 0 28px; }
  .sec-wrap   { padding: 0 32px; }
  .about-grid { gap: 40px; }
  .svc-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  :root             { --nav-h: 56px; }
  nav               { padding: 0 16px; }
  nav ul            { display: none; }
  .nav-hamburger    { display: flex; }
  .nav-tagline-small { display: none; }

  .hero h1          { font-size: 30px; }
  .hero-desc        { font-size: 14px; }
  .hero-phones      { flex-direction: column; align-items: center; }
  .hero-phone       { width: 100%; max-width: 300px; justify-content: center; }

  .about-sec        { padding: 56px 0; }
  .sec-wrap         { padding: 0 18px; }
  .about-grid       { grid-template-columns: 1fr; gap: 28px; }
  .about-img-main   { height: 240px; }
  .about-badge      { left: 8px; top: 8px; }

  .services-sec     { padding: 56px 0; }
  .svc-grid         { grid-template-columns: 1fr; gap: 14px; }

  .why-sec          { padding: 56px 0; }
  .why-grid         { grid-template-columns: 1fr; gap: 12px; }

  .contact-sec      { padding: 56px 0; }
  .contact-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .sec-title        { font-size: 26px; }
  .hero h1          { font-size: 28px; }
}

@media (max-width: 420px) {
  .hero h1  { font-size: 24px; }
  .hp-num   { font-size: 15px; }
}