*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--red:       #CC0000;
--red-lt:    #E00000;
--red-pale:  #FFF0F0;
--red-dark:  #AA0000;
--dark:      #0F0F0F;
--dark2:     #161616;
--dark3:     #1E1E1E;
--charcoal:  #2A2A2A;
--steel:     #3D3D3D;
--mid:       #6B6B6B;
--silver:    #A8A8A8;
--light:     #F4F2EF;
--white:     #FFFFFF;
--fd:        'Bebas Neue', sans-serif;
--fb:        'Outfit', sans-serif;
--r:         4px;
--nav-h:     72px;
--sp:        100px 0;
}
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body { font-family: var(--fb); font-size: 16px; line-height: 1.7; color: var(--dark); background: var(--white); }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; } .container    { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 40px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--fb); font-weight: 600; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; padding: 14px 32px; border: none; cursor: pointer; border-radius: var(--r); white-space: nowrap; transition: all .2s; }
.btn-primary        { background: var(--red); color: #fff; }
.btn-primary:hover  { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,.35); color: #fff; }
.btn-outline-dark   { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-outline-light  { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-white          { background: #fff; color: var(--red); }
.btn-white:hover    { background: var(--dark); color: #fff; }
.btn-sm  { padding: 10px 22px; font-size: 13px; }
.btn-lg  { padding: 17px 40px; font-size: 16px; }
.label-tag       { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); padding: 6px 14px; border: 1px solid var(--red); border-radius: 2px; margin-bottom: 18px; }
.label-tag-light { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); padding: 6px 14px; border: 1px solid var(--steel); border-radius: 2px; margin-bottom: 18px; }
.section-title { font-family: var(--fd); font-size: clamp(38px,5vw,62px); line-height: .95; letter-spacing: .03em; margin-bottom: 14px; }
.section-title span { color: var(--red); }
.section-desc  { font-size: 17px; color: var(--mid); font-weight: 300; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }
.divider   { width: 56px; height: 3px; background: var(--red); margin: 18px 0 26px; }
.divider-c { margin: 18px auto 26px; } .topbar { background: var(--red); color: #fff; font-size: 13px; font-weight: 500; text-align: center; padding: 9px 24px; letter-spacing: .03em; }
.topbar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; } .site-nav { position: sticky; top: 0; z-index: 1000; background: var(--dark); border-bottom: 1px solid var(--steel); transition: box-shadow .3s; }
.site-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }
.logo-wrap { display: flex; flex-direction: column; gap: 1px; flex-shrink: 0; }
.logo-main { font-family: var(--fd); font-size: 26px; color: #fff; line-height: 1; letter-spacing: .04em; }
.logo-main em { color: var(--red); font-style: normal; }
.logo-sub  { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver); font-weight: 500; } .nav-menu,
#primary-menu { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; list-style: none; margin: 0; padding: 0; }
.nav-menu li,
#primary-menu li { position: relative; }
.nav-menu > li > a,
#primary-menu > li > a { display: block; padding: 8px 14px; color: var(--silver); font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; border-radius: 4px; transition: color .2s, background .2s; }
.nav-menu > li > a:hover,
#primary-menu > li > a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-page-ancestor > a,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-page-ancestor > a { color: var(--red-lt); background: rgba(204,0,0,.12); } .nav-menu li ul,
#primary-menu li ul { position: absolute; top: calc(100% + 8px); left: 0; background: var(--dark3); border: 1px solid var(--steel); border-radius: 8px; min-width: 230px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 100; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.nav-menu li:hover > ul,
#primary-menu li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu li ul li a,
#primary-menu li ul li a { display: block; padding: 9px 14px; color: var(--silver); font-size: 13.5px; border-radius: 5px; transition: color .15s, background .15s; }
.nav-menu li ul li a:hover,
#primary-menu li ul li a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-cta   { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 17px; font-weight: 700; }
.nav-phone:hover { color: var(--red-lt); }
.nav-phone svg { fill: var(--red); flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--dark); overflow-y: auto; z-index: 999; padding: 20px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li a { display: block; padding: 14px 16px; color: var(--silver); font-size: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1px solid var(--steel); border-radius: 6px; }
.mobile-nav ul li a:hover,
.mobile-nav ul li.current-menu-item a { color: #fff; background: rgba(255,255,255,.06); }
.mobile-nav ul li ul { padding-left: 14px; }
.mobile-nav ul li ul li a { font-size: 14px; text-transform: none; border-bottom: none; }
.mobile-nav-footer { margin-top: 24px; background: var(--red); border-radius: 10px; padding: 18px 20px; display: flex; align-items: center; gap: 12px; color: #fff; font-size: 20px; font-weight: 700; } .logo-wrap--img { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap--img img,
.logo-wrap--img .custom-logo,
.custom-logo { max-height: 52px !important; width: auto !important; display: block; }
@media (min-width: 1600px) {
.logo-wrap--img img,
.logo-wrap--img .custom-logo,
.custom-logo { max-height: 62px !important; }
}
@media (max-width: 640px) {
.logo-wrap--img img,
.logo-wrap--img .custom-logo,
.custom-logo { max-height: 58px !important; }
} .page-banner { background: var(--dark2); position: relative; overflow: hidden; padding: 72px 0 60px; }
.page-banner::before { content: ''; position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 1px, transparent 60px); }
.page-banner-glow { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; border-radius: 50%; background: var(--red); opacity: .06; pointer-events: none; }
.page-banner-inner { position: relative; z-index: 2; }
.page-banner h1 { font-family: var(--fd); font-size: clamp(42px,6vw,76px); line-height: .95; color: #fff; letter-spacing: .03em; margin-bottom: 12px; }
.page-banner h1 span { color: var(--red); }
.page-banner p { font-size: 17px; color: var(--silver); font-weight: 300; max-width: 580px; margin-top: 16px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mid); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: var(--silver); transition: color .2s; }
.breadcrumb a:hover { color: var(--red-lt); }
.breadcrumb .sep { color: var(--steel); }
.breadcrumb .current { color: var(--red-lt); } .trust-bar { background: var(--red); }
.trust-bar-inner { display: flex; align-items: stretch; }
.trust-item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 22px 16px; border-right: 1px solid rgba(0,0,0,.15); }
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; }
.trust-item-text strong { display: block; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2; }
.trust-item-text span   { font-size: 11.5px; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .07em; } .assoc-bar { background: var(--light); border-top: 3px solid var(--red); border-bottom: 1px solid #e0ddd9; padding: 28px 0; }
.assoc-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.assoc-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); white-space: nowrap; }
.assoc-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.assoc-logo-item { display: flex; align-items: center; opacity: .85; transition: opacity .2s, transform .2s; }
.assoc-logo-item:hover { opacity: 1; transform: translateY(-2px); }
.assoc-logo-item img { height: 60px; width: auto; object-fit: contain; display: block; } .hero { background: var(--dark2); position: relative; overflow: hidden; min-height: 88vh; display: flex; align-items: center; }
.hero-bg      { position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 1px, transparent 60px); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-glow    { position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; border-radius: 50%; background: var(--red); opacity: .06; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 0; }
.hero-eyebrow { font-family: var(--fb); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin: 0 0 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: var(--red); flex-shrink: 0; }
.hero .hero-title { font-family: var(--fd); font-size: clamp(54px,7vw,90px); line-height: .95; color: #fff; letter-spacing: .02em; margin-bottom: 28px; }
.hero .hero-title .hl { color: var(--red); }
.hero-desc { font-size: 17px; font-weight: 300; color: var(--silver); line-height: 1.75; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--steel); }
.hero-stat { padding: 0 24px; border-right: 1px solid var(--steel); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.stat-num   { font-family: var(--fd); font-size: 48px; line-height: 1; color: #fff; }
.stat-num span { color: var(--red); }
.stat-label { font-size: 12px; color: var(--silver); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; } .hero-cards { display: flex; flex-direction: column; gap: 16px; }
.hcard { background: var(--dark3); border: 1px solid var(--steel); border-radius: 10px; padding: 22px; }
.hcard-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.hcard-icon { width: 38px; height: 38px; border-radius: 6px; background: rgba(204,0,0,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hcard-icon svg { fill: var(--red); }
.hcard-title { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; }
.hcard-sub   { font-size: 11.5px; color: var(--silver); }
.hours-grid  { display: grid; grid-template-columns: 1fr auto; gap: 3px 16px; font-size: 13px; }
.hg-day    { color: var(--silver); }
.hg-time   { color: #fff; font-weight: 500; }
.hg-closed { color: var(--mid); }
.hcard-body  { font-size: 14px; color: var(--silver); line-height: 1.6; }
.badge-row   { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.hbadge { font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; background: rgba(255,255,255,.05); border: 1px solid var(--steel); border-radius: 3px; color: var(--silver); }
.hcard-cta { background: var(--red) !important; border-color: var(--red) !important; }
.hcard-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.hcard-cta-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.8); margin-bottom: 3px; }
.hcard-cta-num   { font-family: var(--fd); font-size: 28px; color: #fff; letter-spacing: .04em; }
.hcard-cta-btn   { background: #fff; color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 10px 18px; border-radius: 4px; white-space: nowrap; }
.hcard-cta-btn:hover { background: var(--dark); color: #fff; } .services-section { padding: var(--sp); background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid #E2DFDA; border-radius: 10px; padding: 32px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; text-decoration: none; display: block; color: inherit; }
.service-card::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 0; background: var(--red); border-radius: 4px 0 0 4px; transition: height .3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.service-card:hover::before { height: 100%; }
.service-card:hover .sc-link { gap: 10px; }
.sc-num  { font-family: var(--fd); font-size: 56px; color: #F0EDE8; position: absolute; right: 18px; top: 14px; line-height: 1; pointer-events: none; user-select: none; }
.sc-icon { width: 54px; height: 54px; border-radius: 8px; background: var(--red-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sc-icon svg { fill: var(--red); }
.sc-price { display: inline-block; background: var(--red-pale); color: var(--red); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 3px; letter-spacing: .05em; margin-bottom: 12px; }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.25; }
.service-card p  { font-size: 14px; color: var(--mid); line-height: 1.65; }
.sc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--red); transition: gap .2s; }
.service-card.featured { background: var(--dark); border-color: var(--dark); }
.service-card.featured .sc-num  { color: rgba(255,255,255,.04); }
.service-card.featured .sc-icon { background: rgba(204,0,0,.18); }
.service-card.featured h3 { color: #fff; }
.service-card.featured p  { color: var(--silver); }
.service-card.featured .sc-price { background: rgba(204,0,0,.2); }
.service-card.featured .sc-link  { color: var(--red-lt); }
.service-card.featured::before   { background: var(--red-lt); } .about-section { padding: var(--sp); }
.about-dark { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img  { position: relative; border-radius: 12px; overflow: hidden; background: var(--dark3); border: 1px solid var(--steel); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.about-img svg { opacity: .35; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.est-badge { position: absolute; bottom: -16px; right: -16px; width: 110px; height: 110px; border-radius: 50%; background: var(--red); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.est-yr    { font-family: var(--fd); font-size: 32px; line-height: 1; color: #fff; }
.est-since { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.about-copy h2 { font-family: var(--fd); font-size: clamp(36px,4vw,54px); line-height: .95; color: var(--dark); margin-bottom: 20px; }
.about-dark .about-copy h2 { color: #fff; }
.about-dark .about-copy h2 span { color: var(--red); }
.about-copy p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; font-weight: 300; }
.about-dark .about-copy p { color: var(--silver); }
.creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.cred-item  { display: flex; align-items: flex-start; gap: 12px; background: var(--dark3); border: 1px solid var(--steel); border-radius: 6px; padding: 14px 16px; }
.cred-item.light { background: var(--light); border-color: #E2DFDA; }
.cred-check { width: 20px; height: 20px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.cred-check svg { fill: #fff; }
.cred-text  { font-size: 13px; font-weight: 500; color: var(--silver); line-height: 1.4; }
.cred-item.light .cred-text { color: #2A2A2A; } .why-section { padding: var(--sp); background: #fff; }
.why-inner   { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.why-left h2 { font-family: var(--fd); font-size: clamp(36px,4vw,54px); line-height: .95; color: var(--dark); margin-bottom: 20px; }
.why-left h2 span { color: var(--red); }
.why-left p  { font-size: 16px; color: var(--mid); line-height: 1.8; font-weight: 300; }
.features-list { display: flex; flex-direction: column; gap: 0; }
.feature-item  { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid #F0EDE8; }
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child  { border-bottom: none; }
.f-num   { font-family: var(--fd); font-size: 40px; color: #EBEBEB; line-height: 1; }
.f-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.f-desc  { font-size: 14.5px; color: var(--mid); line-height: 1.65; } .reviews-section { padding: var(--sp); background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.review-card  { background: var(--dark3); border: 1px solid var(--steel); border-radius: 10px; padding: 28px; }
.review-stars { display: flex; gap: 4px; margin-bottom: 14px; font-size: 18px; color: #F59E0B; }
.review-text  { font-size: 15px; color: var(--silver); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.review-author{ font-size: 14px; font-weight: 700; color: #fff; }
.review-suburb{ font-size: 12px; color: var(--mid); margin-top: 2px; } .suburbs-section { padding: 56px 0; background: var(--light); border-top: 1px solid #E2DFDA; }
.suburbs-section h3 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 20px; text-align: center; }
.suburb-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.suburb-tag  { font-size: 13px; font-weight: 500; color: #2A2A2A; background: #fff; border: 1px solid #E2DFDA; padding: 6px 16px; border-radius: 20px; cursor: default; transition: all .15s; }
.suburb-tag:hover { background: var(--red); color: #fff; border-color: var(--red); } .cta-section { padding: var(--sp); background: var(--dark2); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; left: 50%; top: -200px; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: var(--red); opacity: .06; pointer-events: none; }
.cta-section h2 { font-family: var(--fd); font-size: clamp(44px,6vw,80px); line-height: .95; color: #fff; letter-spacing: .02em; margin-bottom: 18px; position: relative; }
.cta-section h2 span { color: var(--red); }
.cta-section > div > p { font-size: 18px; color: var(--silver); max-width: 520px; margin: 0 auto 40px; font-weight: 300; line-height: 1.7; position: relative; }
.cta-phone-big { font-family: var(--fd); font-size: clamp(40px,6vw,64px); color: #fff; letter-spacing: .05em; display: block; margin: 0 auto 36px; position: relative; }
.cta-phone-big span { color: var(--red); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; } .cta-strip { background: var(--red); padding: 40px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-strip h3 { font-family: var(--fd); font-size: 36px; color: #fff; letter-spacing: .03em; line-height: 1; }
.cta-strip p  { font-size: 15px; color: rgba(255,255,255,.85); margin-top: 6px; }
.cta-strip .cta-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; } .contact-section { padding: var(--sp); background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--fd); font-size: clamp(36px,4vw,52px); line-height: .95; color: var(--dark); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid #E2DFDA; }
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child  { border-bottom: none; }
.c-icon  { width: 42px; height: 42px; border-radius: 6px; background: var(--red-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { fill: var(--red); }
.c-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); margin-bottom: 3px; }
.c-value { font-size: 16px; font-weight: 600; color: var(--dark); }
.c-value a { color: var(--dark); }
.c-value a:hover { color: var(--red); }
.contact-map { border-radius: 12px; overflow: hidden; border: 1px solid #E2DFDA; margin-top: 28px; }
.contact-map iframe { display: block; width: 100%; height: 260px; border: none; }
.contact-map-placeholder { background: var(--dark3); height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.contact-map-placeholder svg { fill: #555; }
.contact-map-placeholder p { font-size: 13px; color: var(--mid); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; } .form-wrap { background: #fff; border: 1px solid #E2DFDA; border-radius: 12px; padding: 40px; }
.form-wrap h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { font-family: var(--fb); font-size: 15px; color: var(--dark); background: var(--light); border: 1.5px solid #E2DFDA; border-radius: 6px; padding: 12px 16px; outline: none; transition: border-color .2s, background .2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%236B6B6B' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; cursor: pointer; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; margin-top: 8px; }
.form-feedback { display: none; padding: 13px 16px; border-radius: 6px; font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.form-feedback.success { background: #EAF3DE; color: #3B6D11; border: 1px solid #C0DD97; display: block; }
.form-feedback.error   { background: #FCEBEB; color: #A32D2D; border: 1px solid #F09595; display: block; }
.form-success-panel { text-align: center; padding: 48px 32px; }
.form-success-panel .fsp-icon { width: 64px; height: 64px; border-radius: 50%; background: #3B6D11; color: #fff; font-size: 32px; line-height: 64px; margin: 0 auto 24px; }
.form-success-panel h3 { font-family: var(--fd); font-size: 36px; color: var(--dark); margin-bottom: 12px; }
.form-success-panel p { font-size: 16px; color: var(--mid); margin-bottom: 8px; }
.form-success-panel .fsp-sub { font-size: 14px; }
.form-success-panel .fsp-sub a { color: var(--red); font-weight: 600; } .single-layout { padding: 64px 0 100px; }
.single-grid   { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.single-content h2 { font-size: 26px; font-weight: 700; color: var(--dark); margin: 32px 0 14px; }
.single-content h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.single-content p  { font-size: 16px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.single-content ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.single-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--mid); line-height: 1.6; }
.single-content ul li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 8px; }
.sidebar { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border: 1px solid #E2DFDA; border-radius: 10px; padding: 28px; }
.sidebar-card.dark { background: var(--dark); border-color: var(--dark); }
.sidebar-card h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; color: var(--dark); }
.sidebar-card.dark h4 { color: #fff; }
.sidebar-phone { font-family: var(--fd); font-size: 28px; color: #fff; letter-spacing: .04em; display: block; margin-bottom: 14px; }
.sidebar-phone:hover { color: var(--red-lt); }
.other-services { display: flex; flex-direction: column; gap: 8px; }
.other-service-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: var(--light); border: 1px solid #E2DFDA; border-radius: 6px; font-size: 13.5px; font-weight: 500; color: var(--dark); transition: all .15s; }
.other-service-link:hover { background: var(--red-pale); border-color: var(--red); color: var(--red); }
.other-service-link .arr { color: var(--red); font-size: 16px; }
.trust-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid #E2DFDA; font-size: 13.5px; color: #2A2A2A; }
.trust-list li:last-child { border-bottom: none; }
.trust-list li::before { content: '✓'; color: var(--red); font-size: 15px; flex-shrink: 0; font-weight: 700; } .value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.value-item { display: flex; gap: 18px; align-items: flex-start; }
.v-icon  { width: 48px; height: 48px; border-radius: 8px; background: var(--red-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v-icon svg { fill: var(--red); }
.v-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.v-desc  { font-size: 14.5px; color: var(--mid); line-height: 1.65; } .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--dark3); border: 1px solid var(--steel); border-radius: 10px; overflow: hidden; }
.team-card-img  { background: var(--charcoal); height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-info { padding: 24px; }
.team-card-info h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-card-info span { font-size: 12px; color: var(--red-lt); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.team-card-info p { font-size: 13.5px; color: var(--silver); margin-top: 10px; line-height: 1.6; } .error-page { padding: 120px 0; text-align: center; background: var(--dark2); min-height: 70vh; display: flex; align-items: center; }
.error-code  { font-family: var(--fd); font-size: clamp(100px,20vw,200px); line-height: .9; color: rgba(255,255,255,.05); display: block; margin-bottom: -20px; }
.error-page h1 { font-family: var(--fd); font-size: clamp(32px,5vw,56px); color: #fff; margin-bottom: 16px; }
.error-page > div > p { font-size: 17px; color: var(--silver); max-width: 480px; margin: 0 auto 36px; font-weight: 300; line-height: 1.7; }
.error-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; } .page-section       { padding: var(--sp); }
.page-section.light { background: var(--light); }
.page-section.dark  { background: var(--dark); } .tips-intro-text { max-width: 720px; margin: 0 auto; font-size: 17px; color: var(--charcoal); line-height: 1.8; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 48px 0 0; }
.tip-card { background: var(--white); border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.tip-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-3px); }
.tip-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--dark3); }
.tip-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.tip-card:hover .tip-card-img img { transform: scale(1.04); }
.tip-card-img--placeholder { display: flex; align-items: center; justify-content: center; }
.tip-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tip-card-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--mid); margin-bottom: 10px; }
.tip-category { background: var(--red-pale); color: var(--red); padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.tip-card-title { font-family: var(--fd); font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.tip-card-title a { color: var(--dark); text-decoration: none; }
.tip-card-title a:hover { color: var(--red); }
.tip-card-excerpt { font-size: 14px; color: var(--mid); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.tip-read-more { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; text-transform: uppercase; letter-spacing: .04em; }
.tip-read-more:hover { gap: 8px; }
.tips-empty { text-align: center; padding: 80px 20px; color: var(--mid); }
.tips-empty h3 { font-family: var(--fd); font-size: 28px; margin: 20px 0 10px; color: var(--dark); }
.tips-empty p { margin-bottom: 28px; } .single .entry-content { font-size: 17px; line-height: 1.85; }
.single .entry-content h2, .single .entry-content h3 { font-family: var(--fd); font-size: clamp(22px,3vw,32px); color: var(--dark); margin: 36px 0 12px; }
.single .entry-content p { margin-bottom: 20px; }
.single .entry-content ul, .single .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.single .entry-content li { margin-bottom: 8px; }
.single .entry-content strong { color: var(--dark); font-weight: 700; }
@media (max-width: 1100px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tips-grid { grid-template-columns: 1fr; gap: 20px; } } .site-footer { background: var(--dark); border-top: 1px solid var(--steel); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid var(--steel); }
.footer-logo-main  { font-family: var(--fd); font-size: 28px; color: #fff; letter-spacing: .04em; line-height: 1; }
.footer-logo-main em { color: var(--red); font-style: normal; }
.footer-logo-sub   { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--silver); margin-top: 2px; display: block; margin-bottom: 14px; }
.footer-brand p    { font-size: 14px; color: var(--mid); line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer-col h4     { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); margin-bottom: 18px; }
.footer-col ul     { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-col ul li a { font-size: 14px; color: var(--mid); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list span { font-size: 13.5px; color: var(--mid); line-height: 1.5; }
.footer-contact-list a { color: var(--red-lt); }
.footer-contact-list a:hover { color: #fff; }
.footer-bottom  { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--mid); }
.footer-badges  { display: flex; gap: 8px; }
.f-badge { background: var(--dark3); border: 1px solid var(--steel); border-radius: 4px; padding: 5px 12px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--silver); } .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; } @media (max-width: 1100px) {
.services-grid { grid-template-columns: repeat(2,1fr); }
.hero-stats { grid-template-columns: repeat(2,1fr); gap: 20px; }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
.single-grid { grid-template-columns: 1fr 300px; gap: 40px; }
.team-grid   { grid-template-columns: repeat(2,1fr); }
.value-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
:root { --sp: 72px 0; }
.container, .container-sm { padding: 0 24px; }
.nav-menu, #primary-menu, .nav-phone { display: none !important; }
.nav-phone-group { display: none !important; }
.hamburger { display: flex !important; flex-shrink: 0; }
.nav-cta { flex-shrink: 1; gap: 8px; }
.hero-inner { flex-direction: column; gap: 32px; }
.hero-cards { display: none; }
.hero-stats { grid-template-columns: repeat(2,1fr); }
.trust-bar-inner { flex-wrap: wrap; }
.trust-item { min-width: 50%; border-bottom: 1px solid rgba(0,0,0,.1); }
.assoc-inner { flex-direction: column; gap: 16px; text-align: center; }
.assoc-logos { gap: 24px; }
.services-grid { grid-template-columns: 1fr; }
.about-grid { grid-template-columns: 1fr; }
.about-left { display: none; }
.why-inner  { grid-template-columns: 1fr; gap: 48px; }
.contact-grid { grid-template-columns: 1fr; }
.reviews-grid { grid-template-columns: 1fr; }
.value-grid  { grid-template-columns: 1fr; }
.team-grid   { grid-template-columns: 1fr; }
.single-grid { grid-template-columns: 1fr; }
.sidebar { position: static; }
.cta-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
:root { --sp: 56px 0; --nav-h: 64px; } .nav-cta { display: none !important; }
.hamburger { display: flex !important; flex-shrink: 0; }
.form-row-2 { grid-template-columns: 1fr; }
.creds-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; text-align: center; }
.cta-phone-big { font-size: 36px; }
.form-wrap { padding: 24px 20px; } .topbar { font-size: 11px; padding: 7px 16px; line-height: 1.6; }
} @media (min-width: 1600px) {
:root { --sp: 120px 0; }
.container { max-width: 1560px; padding: 0 60px; }
.container-sm { max-width: 1000px; }
body { font-size: 17px; }
.nav-inner { height: 84px; }
.logo-main { font-size: 30px; }
.nav-phone { font-size: 19px; }
.hero-inner { gap: 100px; padding: 100px 0; }
.about-grid { gap: 100px; }
.why-inner  { gap: 100px; }
.footer-grid { gap: 72px; }
.section-header { margin-bottom: 80px; }
.services-grid { gap: 32px; }
.trust-item { padding: 28px 20px; }
.trust-item-text strong { font-size: 16px; }
}
@media (min-width: 1920px) {
:root { --sp: 140px 0; }
.container { max-width: 1800px; padding: 0 80px; }
body { font-size: 18px; }
}