/* ============ TOKENS ============ */
:root {
  --bg:        #0c0d10;
  --bg-2:      #121419;
  --bg-3:      #181b22;
  --card:      #1b1f27;
  --card-2:    #20242d;
  --line:      #2a2f3a;
  --gold:      #d9a441;
  --gold-2:    #e8be6a;
  --gold-soft: rgba(217,164,65,.12);
  --text:      #eef1f6;
  --muted:     #9aa3b2;
  --radius:    14px;
  --shadow:    0 18px 40px rgba(0,0,0,.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1180px, 92%); margin: 0 auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Oswald', sans-serif; font-weight: 700; line-height: 1.05; letter-spacing: .5px; }

.accent { color: var(--gold); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,13,16,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 0; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 30px;
  color: var(--gold); letter-spacing: 1px;
  border: 2px solid var(--gold); padding: 2px 8px; border-radius: 6px;
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 2px; }
.logo-text em { font-style: normal; font-size: 10px; color: var(--gold); letter-spacing: 3px; }

.nav { margin-left: auto; display: flex; gap: 30px; }
.nav a { font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--gold); }

.btn-phone {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--gold); color: #1a1205; font-weight: 700; font-size: 14px;
  padding: 10px 18px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(217,164,65,.3);
  transition: transform .15s, box-shadow .2s;
}
.btn-phone:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(217,164,65,.45); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  --hero-img: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80');
  background:
    linear-gradient(110deg, rgba(8,9,12,.92) 0%, rgba(8,9,12,.55) 55%, rgba(8,9,12,.25) 100%),
    var(--hero-img) center/cover;
  min-height: 600px;
  display: flex; align-items: center;
  padding: 70px 0 90px;
}
.hero-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

.hero h1 { font-size: clamp(44px, 7vw, 86px); font-weight: 700; }
.hero h1 .accent { display: block; }
.hero-tag { font-size: clamp(13px, 2vw, 17px); letter-spacing: 4px; color: var(--text); margin: 10px 0 26px; font-weight: 600; }

.hero-list { list-style: none; display: grid; gap: 10px; }
.hero-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }

.hero-sub { margin-top: 26px; font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 2px; }

.hero-cta { padding-top: 10px; }
.phone-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(27,31,39,.7); border: 1px solid var(--gold);
  padding: 16px 26px; border-radius: 999px; box-shadow: var(--shadow);
}
.phone-pill .ico-phone { width: 26px; height: 26px; }
.phone-pill strong { display: block; font-family: 'Oswald', sans-serif; font-size: 26px; color: var(--gold); letter-spacing: 1px; }
.phone-pill small { color: var(--muted); letter-spacing: 2px; font-size: 11px; }

/* ============ FEATURES ============ */
.features { background: var(--bg-2); padding: 56px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: left; transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.feature-ico { display: block; width: 42px; height: 42px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; color: var(--gold); margin-bottom: 10px; letter-spacing: 1px; }
.feature-card p { font-size: 13.5px; color: var(--muted); }

/* ============ PROMISE ============ */
.promise { background: var(--bg); padding: 30px 0 56px; }
.promise-inner {
  background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--gold); border-radius: 18px;
  padding: 34px 38px; display: grid;
  grid-template-columns: auto 1fr auto; gap: 36px; align-items: center;
  box-shadow: var(--shadow);
}
.promise-head { display: flex; align-items: center; gap: 18px; }
.shield-ico { width: 64px; height: 64px; flex-shrink: 0; }
.promise-head h2 { font-size: 28px; }
.promise-head p { font-family: 'Oswald', sans-serif; letter-spacing: 1px; color: var(--muted); margin-top: 6px; }

.promise-list { list-style: none; display: grid; gap: 9px; }
.promise-list li { position: relative; padding-left: 28px; font-size: 14px; color: var(--text); }
.promise-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.promise-badge { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.badge-247 {
  font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700; color: #1a1205;
  background: var(--gold); width: 84px; height: 84px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--gold-soft);
}
.promise-badge span:last-child { font-family: 'Oswald', sans-serif; font-size: 14px; color: var(--gold); letter-spacing: 1px; }

/* ============ SERVICES ============ */
.services { background: var(--bg-2); padding: 60px 0 70px; }
.section-title { text-align: center; font-size: 34px; margin-bottom: 40px; }
.section-title::after { content: ""; display: block; width: 70px; height: 3px; background: var(--gold); margin: 14px auto 0; border-radius: 2px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, border-color .2s;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.service-img { height: 150px; background-size: cover; background-position: center; position: relative; }
.service-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,16,.1), rgba(27,31,39,.85)); }
.service-body { padding: 22px; position: relative; }
.service-ico { display: block; width: 36px; height: 36px; margin-bottom: 12px; }
.service-card h3 { font-size: 18px; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; }
.service-card p { font-size: 13.5px; color: var(--muted); }

/* ============ CONTACT ============ */
.contact { background: var(--bg); padding: 56px 0 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 30px; align-items: center; }
.contact-van img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover; border-radius: var(--radius); display: block; }
.contact-cta { text-align: center; }
.contact-cta h2 { font-size: 24px; margin-bottom: 18px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: #1a1205; font-family: 'Oswald', sans-serif;
  font-size: 30px; font-weight: 700; padding: 14px 32px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(217,164,65,.35); transition: transform .15s;
}
.cta-phone:hover { transform: translateY(-3px); }
.cta-phone .ico-phone { width: 26px; height: 26px; }
.cta-note { margin-top: 16px; color: var(--gold); font-weight: 600; font-size: 13px; letter-spacing: 1px; }

.contact-info { display: grid; gap: 16px; }
.info-row { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.info-row span[class^="ico"] { width: 24px; height: 24px; flex-shrink: 0; }

.footer-bar { margin-top: 50px; border-top: 1px solid var(--line); background: var(--bg-2); padding: 22px 0; text-align: center; }
.footer-bar p { color: var(--gold-2); font-style: italic; font-size: 14px; }
.footer-bar small { display: block; color: var(--muted); margin-top: 8px; font-size: 12px; }

/* ============ ICONS (inline mask via SVG data-uri) ============ */
[class^="ico-"], [class*=" ico-"] {
  display: inline-block; background: var(--gold);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.ico { width: 22px; height: 22px; }
.ico-phone { width: 18px; height: 18px; background: currentColor; }
.btn-phone .ico-phone { background: #1a1205; }
.cta-phone .ico-phone { background: #1a1205; }

.ico-phone   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }

.ico-door, .ico-door-lg { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 4h3a2 2 0 0 1 2 2v14M2 20h3M13 20h9M10 12v.01M13 4.8v14.4a.6.6 0 0 1-.7.6l-6-1.2A.6.6 0 0 1 6 18V5.6a.6.6 0 0 1 .43-.58l6-1.8A.6.6 0 0 1 13 3.8z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 4h3a2 2 0 0 1 2 2v14M2 20h3M13 20h9M10 12v.01M13 4.8v14.4a.6.6 0 0 1-.7.6l-6-1.2A.6.6 0 0 1 6 18V5.6a.6.6 0 0 1 .43-.58l6-1.8A.6.6 0 0 1 13 3.8z'/%3E%3C/svg%3E"); }

.ico-car, .ico-car-lg { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 17h2l-1.5-7.5a2 2 0 0 0-2-1.5h-9a2 2 0 0 0-2 1.5L3 17h2M5 17h14M7 17v2M17 17v2'/%3E%3Ccircle cx='7.5' cy='14.5' r='1.5'/%3E%3Ccircle cx='16.5' cy='14.5' r='1.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 17h2l-1.5-7.5a2 2 0 0 0-2-1.5h-9a2 2 0 0 0-2 1.5L3 17h2M5 17h14M7 17v2M17 17v2'/%3E%3Ccircle cx='7.5' cy='14.5' r='1.5'/%3E%3Ccircle cx='16.5' cy='14.5' r='1.5'/%3E%3C/svg%3E"); }

.ico-clock, .ico-247 { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }

.ico-tag, .ico-tag-lg { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 3.82V8h-4.18L3 11.82l9.59 9.59a2 2 0 0 0 2.82 0l5.18-5.18a2 2 0 0 0 0-2.82z'/%3E%3Ccircle cx='7.5' cy='7.5' r='1.2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41 11 3.82V8h-4.18L3 11.82l9.59 9.59a2 2 0 0 0 2.82 0l5.18-5.18a2 2 0 0 0 0-2.82z'/%3E%3Ccircle cx='7.5' cy='7.5' r='1.2'/%3E%3C/svg%3E"); }

.ico-plane { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5a2.12 2.12 0 0 0-3-3L13 8 4.8 6.2c-.5-.1-.9.4-.6.8L8 11l-2 3-3-1-1 1 4 2 2 4 1-1-1-3 3-2 3.4 3.8c.4.3.9-.1.8-.6z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5a2.12 2.12 0 0 0-3-3L13 8 4.8 6.2c-.5-.1-.9.4-.6.8L8 11l-2 3-3-1-1 1 4 2 2 4 1-1-1-3 3-2 3.4 3.8c.4.3.9-.1.8-.6z'/%3E%3C/svg%3E"); }

.ico-hotel { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M8 7h2M14 7h2M8 11h2M14 11h2M10 21v-3a2 2 0 0 1 4 0v3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='1'/%3E%3Cpath d='M8 7h2M14 7h2M8 11h2M14 11h2M10 21v-3a2 2 0 0 1 4 0v3'/%3E%3C/svg%3E"); }

.ico-pin { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

.ico-city { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18M5 21V8l5-3v16M14 21V11l5 3v7M8 9v.01M8 13v.01M8 17v.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18M5 21V8l5-3v16M14 21V11l5 3v7M8 9v.01M8 13v.01M8 17v.01'/%3E%3C/svg%3E"); }

.ico-road { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21 8 3M20 21 16 3M12 5v2M12 11v2M12 17v2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21 8 3M20 21 16 3M12 5v2M12 11v2M12 17v2'/%3E%3C/svg%3E"); }

.ico-route { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Cpath d='M9 19h6a3 3 0 0 0 3-3V8M6 16V8a3 3 0 0 1 3-3h6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Cpath d='M9 19h6a3 3 0 0 0 3-3V8M6 16V8a3 3 0 0 1 3-3h6'/%3E%3C/svg%3E"); }

.shield-ico { background: var(--gold); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }

.ico-wa { background: var(--gold); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm0 18.13a8.2 8.2 0 0 1-4.18-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.2 8.2 0 0 1-1.26-4.36c0-4.54 3.7-8.23 8.24-8.23 2.2 0 4.27.86 5.82 2.42a8.18 8.18 0 0 1 2.41 5.82c0 4.54-3.7 8.23-8.24 8.23zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.13-.16.25-.64.81-.79.97-.14.17-.29.18-.54.06-.25-.12-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.01-.38.11-.51.11-.11.25-.29.37-.43.13-.15.17-.25.25-.42.08-.17.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.22.25-.86.85-.86 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.14-1.18-.06-.1-.22-.16-.47-.28z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2z'/%3E%3C/svg%3E"); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }

.ico-ig { background: var(--gold); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1'/%3E%3C/svg%3E"); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .promise-head { justify-content: center; }
  .promise-list { text-align: left; }
  .contact-inner { grid-template-columns: 1fr; text-align: center; }
  .contact-info { justify-items: center; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 10px 0; margin: 0; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-inner { gap: 10px; }
  .btn-phone { padding: 8px 12px; font-size: 12px; }
  .logo-mark { font-size: 24px; padding: 2px 6px; }
  .logo-text strong { font-size: 13px; letter-spacing: 1px; }
  .logo-text em { font-size: 9px; letter-spacing: 2px; }
  .hero { min-height: auto; }
  .hero-cta { width: 100%; }
  .phone-pill { width: 100%; justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}
