:root{
  --ivory:#F8F6F2;
  --warm-beige:#EFE8DC;
  --champagne:#E6D8B5;
  --gold:#D4AF37;
  --gold-deep:#A98622;
  --steel:#8FA1B3;
  --graphite:#3C424A;
  --graphite-strong:#262B31;
  --muted:#6B737B;
  --white:#FFFFFF;
  --line:#DDD5C8;
  --line-soft:#EAE4DA;
  --success:#426E5C;
  --danger:#8B3B3B;
  --shadow:0 22px 60px rgba(60,66,74,.07);
  --shadow-soft:0 10px 30px rgba(60,66,74,.055);
  --radius:20px;
  --radius-sm:12px;
  --serif:Georgia,"Times New Roman",Times,serif;
  --sans:Inter,Manrope,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--sans);color:var(--graphite);background:var(--ivory);line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
a{color:inherit}
img{max-width:100%}
button,input,textarea,select{font:inherit}
::selection{background:var(--champagne);color:var(--graphite-strong)}
.container{width:min(1180px,calc(100% - 48px));margin-inline:auto}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* Header / brand */
.site-header{position:sticky;top:0;z-index:50;background:rgba(248,246,242,.93);backdrop-filter:blur(18px);border-bottom:1px solid rgba(221,213,200,.72)}
.nav{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{display:flex;align-items:center;gap:13px;text-decoration:none;color:var(--graphite-strong)}
.brand-mark{position:relative;width:36px;height:42px;display:grid;place-items:center;font-size:0;color:transparent}
.brand-mark::before,.brand-mark::after{content:"";position:absolute;left:6px;border-left:2px solid var(--gold);border-top:2px solid var(--gold)}
.brand-mark::before{top:5px;width:24px;height:27px;box-shadow:5px 5px 0 -3px var(--ivory),5px 5px 0 -1px var(--gold)}
.brand-mark::after{top:12px;width:17px;height:19px}
.brand-word{display:inline-flex;align-items:baseline;font-size:1.08rem;font-weight:700;letter-spacing:.23em;line-height:1}
.brand-tech{color:var(--gold-deep)}
.nav-links{display:flex;gap:30px;align-items:center}
.nav-links a{text-decoration:none;font-size:.93rem;font-weight:650;color:#4A5158;position:relative}
.nav-links a:not(.nav-cta)::after{content:"";position:absolute;left:0;right:100%;bottom:-7px;height:1px;background:var(--gold);transition:right .2s ease}
.nav-links a:not(.nav-cta):hover::after{right:0}
.nav-cta,.home-phone{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;color:var(--graphite-strong)!important;border:1px solid rgba(169,134,34,.65);background:rgba(255,255,255,.72);padding:10px 17px;border-radius:9px;font-weight:700;font-size:.9rem;box-shadow:0 6px 18px rgba(60,66,74,.035);transition:.2s ease}
.nav-cta:hover,.home-phone:hover{border-color:var(--gold-deep);background:#fff;transform:translateY(-1px)}
.mobile-menu{display:none;border:1px solid var(--line);background:#fff;color:var(--graphite);font-size:23px;width:44px;height:42px;border-radius:10px;line-height:1}

/* Global typography and buttons */
.section-kicker{display:inline-block;font-size:.72rem;line-height:1.2;font-weight:800;text-transform:uppercase;letter-spacing:.19em;color:#8A6B1B}
h1,h2,h3{color:var(--graphite-strong)}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:43px;padding:11px 16px;border-radius:9px;border:1px solid transparent;text-decoration:none;font-weight:720;font-size:.91rem;line-height:1.2;cursor:pointer;transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease,color .18s ease}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--graphite-strong);border-color:var(--graphite-strong);color:#fff;box-shadow:0 10px 22px rgba(38,43,49,.10)}
.btn-primary:hover{background:#343A41;border-color:#343A41;box-shadow:0 13px 26px rgba(38,43,49,.14)}
.btn-secondary{background:transparent;color:var(--graphite-strong);border-color:#CDBD91}
.btn-secondary:hover{background:#fff;border-color:var(--gold-deep)}
.btn-gold{background:var(--gold);color:var(--graphite-strong)}
.phone-inline{font-weight:800;white-space:nowrap}

/* Generic pages (privacy, 404) */
.hero{padding:100px 0 82px;position:relative;overflow:hidden;background:linear-gradient(180deg,#fff 0%,var(--ivory) 100%)}
.hero::after{content:"";position:absolute;right:-120px;top:-180px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(230,216,181,.36),rgba(230,216,181,0) 67%);pointer-events:none}
.eyebrow{display:inline-flex;padding:7px 11px;border:1px solid var(--line);background:#fff;border-radius:999px;font-size:.82rem;font-weight:760;color:var(--muted)}
.hero h1,.section h1{font-family:var(--serif);font-weight:400;font-size:clamp(2.7rem,6vw,5.2rem);line-height:1.02;letter-spacing:-.035em;margin:20px 0 18px;max-width:920px}
.hero p{font-size:1.12rem;max-width:720px;color:var(--muted);margin:0 0 25px}
.hero-actions,.cta-row{display:flex;flex-wrap:wrap;gap:11px;margin-top:22px}
.section{padding:84px 0;background:var(--ivory)}
.section.soft{background:#fff}
.section.dark{background:var(--graphite-strong);color:#fff}
.section h2{font-family:var(--serif);font-weight:400;font-size:clamp(2.1rem,4vw,3.4rem);line-height:1.08;letter-spacing:-.025em;margin:9px 0 15px}
.section-copy{max-width:820px;color:#596169}
.section-copy p{margin:0 0 19px}
.section-copy a{color:#775D1D}

/* Homepage division router */
.home-routing{position:relative;padding:62px 0 74px;background:linear-gradient(180deg,#fff 0%,var(--ivory) 100%);overflow:hidden}
.home-routing::before{content:"";position:absolute;left:-45px;top:52px;width:370px;height:240px;opacity:.42;pointer-events:none;background-image:linear-gradient(90deg,transparent 0 15%,rgba(212,175,55,.22) 15% 15.4%,transparent 15.4% 100%),linear-gradient(0deg,transparent 0 33%,rgba(212,175,55,.18) 33% 33.5%,transparent 33.5% 100%);background-size:120px 92px;mask-image:linear-gradient(90deg,#000,transparent)}
.home-routing-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;align-items:stretch;position:relative;z-index:1}
.card,.home-routing-card{background:rgba(255,255,255,.89);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-soft);display:flex;flex-direction:column}
.home-routing-card{position:relative;min-height:548px;padding:31px 30px 28px;overflow:hidden;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.home-routing-card::before{content:"";position:absolute;left:30px;right:30px;top:0;height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);opacity:.58}
.home-routing-card::after{content:"";position:absolute;right:-70px;top:-75px;width:175px;height:175px;border-radius:50%;background:radial-gradient(circle,rgba(230,216,181,.44),rgba(230,216,181,0) 70%);pointer-events:none}
.home-routing-card:hover{transform:translateY(-4px);border-color:#CFC09A;box-shadow:var(--shadow)}
.home-routing-card .icon{width:54px;height:54px;margin-bottom:20px;border:1px solid #D9C995;border-radius:50%;display:grid;place-items:center;background:#FCFAF6;color:var(--graphite-strong);font-family:var(--sans);font-size:1.45rem;font-weight:500}
.home-routing-card .domain{display:none}
.home-routing-card h2{font-family:var(--serif);font-size:2rem;line-height:1.08;font-weight:400;letter-spacing:-.025em;margin:0 0 13px}
.home-routing-card p{font-size:.96rem;line-height:1.62;color:#626A72;margin:0 0 19px}
.home-routing-card ul{list-style:none;padding:0;margin:2px 0 24px}
.home-routing-card li{position:relative;padding-left:23px;margin:10px 0;color:#4E565E;font-size:.94rem}
.home-routing-card li::before{content:"";position:absolute;left:1px;top:.66em;width:8px;height:4px;border-left:1.5px solid var(--gold-deep);border-bottom:1.5px solid var(--gold-deep);transform:rotate(-45deg)}
.home-routing-card .btn{width:100%;margin-top:auto;background:transparent;color:var(--graphite-strong);border-color:#CDBD91;box-shadow:none}
.home-routing-card .btn:hover{background:var(--graphite-strong);border-color:var(--graphite-strong);color:#fff}

/* Compact division pages */
.compact-division{background:var(--ivory)}
.compact-services{position:relative;padding:66px 0 48px;background:linear-gradient(180deg,#fff 0%,var(--ivory) 24%,var(--ivory) 100%);overflow:hidden}
.compact-services::after{content:"";position:absolute;right:-150px;top:-150px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(230,216,181,.30),rgba(230,216,181,0) 68%);pointer-events:none}
.compact-head{position:relative;z-index:1;max-width:900px;margin-bottom:34px}
.compact-head::after{content:"";display:block;width:46px;height:1px;background:var(--gold);margin-top:24px}
.compact-head h1{font-family:var(--serif);font-weight:400;font-size:clamp(2.55rem,5.3vw,4.65rem);line-height:1.03;letter-spacing:-.038em;margin:11px 0 15px;max-width:850px}
.compact-head p{max-width:720px;margin:0;color:#687078;font-size:1rem;line-height:1.65}
.problem-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;position:relative;z-index:1}
.problem{position:relative;min-height:210px;padding:25px 25px 23px;border-radius:var(--radius);background:rgba(255,255,255,.86);border:1px solid var(--line);box-shadow:0 7px 24px rgba(60,66,74,.035);display:flex;flex-direction:column;overflow:hidden;transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease}
.problem::before{content:"";position:absolute;left:0;top:0;width:1px;height:64px;background:var(--gold);opacity:.75}
.problem:hover{transform:translateY(-2px);border-color:#D1C49F;box-shadow:var(--shadow-soft)}
.problem h2{font-family:var(--serif);font-size:1.42rem;line-height:1.18;font-weight:400;letter-spacing:-.015em;margin:0 0 9px;padding-right:10px}
.problem p{margin:0 0 20px;color:#6A727A;font-size:.93rem;line-height:1.58;max-width:660px}
.problem .btn{align-self:flex-start;margin-top:auto;background:transparent;color:var(--graphite-strong);border-color:#CDBD91;box-shadow:none}
.problem .btn:hover{background:var(--graphite-strong);border-color:var(--graphite-strong);color:#fff}

/* Service price row */
.service-price{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr 1.15fr;margin-top:22px;background:var(--warm-beige);border:1px solid #D9CEBA;border-radius:var(--radius);overflow:hidden}
.service-price>div{padding:25px 27px;min-height:178px;display:flex;flex-direction:column;justify-content:center}
.service-price>div+div{border-left:1px solid rgba(179,163,126,.42)}
.service-price strong{display:block;font-family:var(--serif);font-size:2.55rem;line-height:1;font-weight:400;letter-spacing:-.035em;color:var(--graphite-strong);margin:8px 0 10px}
.service-price p{margin:0;color:#666D73;font-size:.91rem;line-height:1.55}
.price-label{font-size:.72rem;line-height:1.2;font-weight:800;text-transform:uppercase;letter-spacing:.16em;color:#7D6A3D}
.service-stat{background:rgba(255,255,255,.45)}
.service-stat .btn{align-self:flex-start;margin-top:15px;background:var(--graphite-strong);border-color:var(--graphite-strong);color:#fff}

/* Systems and Business offer */
.simple-offer{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:30px;margin-top:22px;padding:27px 29px;background:var(--warm-beige);border:1px solid #D9CEBA;border-radius:var(--radius);overflow:hidden}
.simple-offer::after{content:"";position:absolute;right:-25px;bottom:-55px;width:180px;height:180px;border-radius:50%;border:1px solid rgba(212,175,55,.22);box-shadow:0 0 0 24px rgba(212,175,55,.035),0 0 0 48px rgba(212,175,55,.025);pointer-events:none}
.simple-offer>div,.simple-offer>.btn{position:relative;z-index:1}
.simple-offer strong{display:block;font-family:var(--serif);font-weight:400;font-size:clamp(2rem,3.6vw,3.1rem);line-height:1.05;letter-spacing:-.035em;color:var(--graphite-strong);margin:7px 0 8px}
.simple-offer p{color:#676E75;margin:0;font-size:.93rem;max-width:730px}
.simple-offer .section-kicker{color:#7C631F}
.simple-offer .btn{flex:0 0 auto;background:var(--graphite-strong);border-color:var(--graphite-strong);color:#fff}

/* Contact */
.compact-contact{padding:52px 0 64px;background:#fff;border-top:1px solid var(--line-soft)}
.compact-contact-head{display:flex;justify-content:space-between;gap:24px;align-items:end;max-width:900px;margin-bottom:22px}
.compact-contact-head h2{font-family:var(--serif);font-weight:400;font-size:clamp(2rem,4vw,3.2rem);line-height:1.08;letter-spacing:-.025em;margin:8px 0 7px}
.compact-contact-head p{margin:0;color:#697178}
.compact-contact-head a{font-weight:760;color:#755D20;text-decoration:none;white-space:nowrap}
.compact-form{max-width:900px;padding:28px;background:var(--ivory);border:1px solid var(--line);border-radius:var(--radius);box-shadow:none}
.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:13px}
.field label{font-size:.86rem;font-weight:730;color:#51585F}
.field input,.field textarea,.field select{width:100%;border:1px solid #CEC5B7;border-radius:9px;padding:12px 13px;background:#fff;color:var(--graphite-strong);font:inherit;transition:border-color .15s ease,box-shadow .15s ease}
.field textarea{min-height:112px;resize:vertical}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:#B99A42;box-shadow:0 0 0 3px rgba(212,175,55,.11)}
.optional{font-weight:500;color:#858A8F}
.form-submit{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:3px}
.form-submit .form-note{margin:0 0 0 4px;max-width:360px}
.form-note{font-size:.8rem;color:#787F85;line-height:1.45}
.status{padding:12px 14px;border-radius:9px;margin-bottom:15px;font-weight:700;font-size:.9rem}
.status.ok{background:#EAF2ED;color:#355A49}
.status.err{background:#F6E9E7;color:#7B3434}
.hp{position:absolute;left:-10000px;opacity:0}

/* Footer */
.footer{padding:34px 0 42px;border-top:1px solid var(--line);background:var(--ivory);color:#70777D}
.footer-inner{display:flex;justify-content:space-between;gap:28px;align-items:center}
.footer strong{color:var(--graphite-strong);font-weight:720;letter-spacing:.01em}
.footer a{text-decoration:none;transition:color .15s ease}
.footer a:hover{color:#7A6220}
.footer-links{display:flex;flex-wrap:wrap;gap:18px;font-size:.88rem}
.micro{font-size:.82rem;margin-top:3px}

/* Kept for backwards compatibility / unused site blocks */
.cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.card{padding:28px}
.card .icon,.feature-icon{width:54px;height:54px;border-radius:50%;border:1px solid #D9C995;background:#FCFAF6;display:grid;place-items:center;font-size:25px;margin-bottom:18px}
.card h3{font-family:var(--serif);font-size:1.55rem;font-weight:400;margin:0 0 8px}
.card p{color:#657078;margin:0 0 15px}
.domain{font-weight:760;color:#7A642A;font-size:.88rem}
.card ul,.checklist{padding:0;margin:8px 0 22px;list-style:none}
.card li,.checklist li{position:relative;padding-left:25px;margin:10px 0;color:#4F575F}
.card li::before,.checklist li::before{content:"✓";position:absolute;left:0;color:#957726;font-weight:800}
.card .btn{margin-top:auto}
.price-box{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center;background:var(--warm-beige);border:1px solid var(--line);border-radius:var(--radius);padding:34px}
.price{font-family:var(--serif);font-size:clamp(2.4rem,5vw,4.5rem);font-weight:400;color:var(--graphite-strong)}
.price small{font-family:var(--sans);font-size:1rem;color:#687078;font-weight:700}
.contact-wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:28px;align-items:start}
.contact-card{background:var(--warm-beige);border:1px solid var(--line);border-radius:var(--radius);padding:30px;position:sticky;top:104px}
.contact-card .big-phone{display:block;font-size:clamp(1.7rem,4vw,2.5rem);font-weight:800;text-decoration:none;margin:16px 0}
.visual-panel{min-height:390px;border-radius:var(--radius);background:linear-gradient(145deg,#fff,var(--warm-beige));border:1px solid var(--line);padding:28px;display:flex;flex-direction:column;justify-content:space-between}
.keyword-pills{display:flex;flex-wrap:wrap;gap:8px}.keyword-pill{padding:8px 10px;border-radius:999px;background:#fff;border:1px solid var(--line);font-size:.86rem;font-weight:700}
.cta-banner{background:var(--warm-beige);border:1px solid var(--line);border-radius:var(--radius);padding:34px;display:flex;justify-content:space-between;gap:24px;align-items:center}

@media(max-width:900px){
  .container{width:min(100% - 36px,1180px)}
  .nav{min-height:72px}
  .nav-links{display:none;position:absolute;top:72px;left:18px;right:18px;flex-direction:column;align-items:stretch;padding:14px;background:rgba(248,246,242,.98);border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow-soft)}
  .nav-links[data-open="1"]{display:flex}
  .nav-links a{padding:9px 7px}
  .nav-links a:not(.nav-cta)::after{display:none}
  .mobile-menu{display:grid;place-items:center}
  .home-routing{padding:40px 0 52px}
  .home-routing-cards,.cards{grid-template-columns:1fr}
  .home-routing-card{min-height:0}
  .problem-grid{grid-template-columns:1fr}
  .problem{min-height:185px}
  .service-price{grid-template-columns:1fr}
  .service-price>div+div{border-left:0;border-top:1px solid rgba(179,163,126,.42)}
  .simple-offer{align-items:flex-start;flex-direction:column}
  .compact-services{padding:48px 0 39px}
  .compact-contact{padding:44px 0 52px}
  .field-grid{grid-template-columns:1fr}
  .footer-inner{align-items:flex-start;flex-direction:column}
  .contact-wrap,.price-box{grid-template-columns:1fr}
  .contact-card{position:static}
  .cta-banner{align-items:flex-start;flex-direction:column}
}

@media(max-width:560px){
  .container{width:min(100% - 26px,1180px)}
  .nav{min-height:66px;gap:13px}
  .brand{gap:9px}
  .brand-mark{width:30px;height:36px}
  .brand-word{font-size:.9rem;letter-spacing:.18em}
  .home-phone{font-size:.78rem;padding:9px 11px}
  .nav-links{top:66px;left:13px;right:13px}
  .home-routing{padding:24px 0 32px}
  .home-routing-card{padding:24px 22px 22px;border-radius:17px}
  .home-routing-card h2{font-size:1.75rem}
  .compact-services{padding:34px 0 28px}
  .compact-head{margin-bottom:25px}
  .compact-head h1{font-size:2.45rem}
  .problem{min-height:0;padding:21px 20px;border-radius:16px}
  .problem h2{font-size:1.3rem}
  .problem .btn{width:auto}
  .service-price,.simple-offer{border-radius:16px}
  .service-price>div,.simple-offer{padding:20px}
  .service-price strong{font-size:2.3rem}
  .compact-contact{padding:34px 0 42px}
  .compact-contact-head h2{font-size:2.25rem}
  .compact-form{padding:20px;border-radius:16px}
  .form-submit .btn{width:100%}
  .form-submit .form-note{margin:4px 0 0}
  .hero{padding:70px 0 55px}
  .hero h1,.section h1{font-size:2.6rem}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none!important}
}

/* FARITECH v1.6 — readability & conversion pass */
:root{
  --muted:#596169;
  --line:#D8D0C3;
  --line-soft:#E5DED3;
}

body{font-size:18px;line-height:1.65;color:#394048}
.container{width:min(1240px,calc(100% - 56px))}

/* Header: readable without becoming visually heavy */
.nav{min-height:88px}
.brand-word{font-size:1.18rem;letter-spacing:.22em}
.nav-links{gap:34px}
.nav-links a{font-size:1rem;font-weight:700}
.nav-cta,.home-phone{min-height:48px;padding:12px 19px;font-size:1rem}

/* Stronger UI hierarchy */
.section-kicker{font-size:.82rem;letter-spacing:.17em;color:#725A18}
.btn{min-height:52px;padding:14px 20px;border-radius:10px;font-size:1rem;font-weight:760;letter-spacing:-.005em}

/* Homepage division router */
.home-routing{padding:72px 0 86px}
.home-routing-cards{gap:26px}
.home-routing-card{min-height:610px;padding:36px 34px 32px}
.home-routing-card::before{left:34px;right:34px}
.home-routing-card .icon{width:64px;height:64px;margin-bottom:18px;border:1px solid #D9C995;border-radius:50%;display:grid;place-items:center;background:#FCFAF6;color:var(--graphite-strong);box-shadow:0 8px 24px rgba(60,66,74,.06)}
.home-routing-card .icon svg{width:26px;height:26px;display:block}
.home-routing-card .icon svg path,.home-routing-card .icon svg rect{vector-effect:non-scaling-stroke}
.home-routing-card .domain{display:none}
.home-routing-card h2{font-size:1.95rem;line-height:1.12;margin-bottom:16px;letter-spacing:-.02em;white-space:nowrap}
.home-routing-card p{font-size:1.08rem;line-height:1.66;color:#535C64;margin-bottom:22px}
.home-routing-card ul{margin:3px 0 28px}
.home-routing-card li{padding-left:27px;margin:12px 0;font-size:1.06rem;line-height:1.5;color:#424A52}
.home-routing-card li::before{top:.62em;width:9px;height:5px;border-width:0 0 2px 2px}
.home-routing-card .btn{font-size:1.04rem;min-height:54px}

/* Division landing pages */
.compact-services{padding:78px 0 58px}
.compact-head{max-width:980px;margin-bottom:42px}
.compact-head::after{width:58px;margin-top:28px}
.compact-head h1{font-size:clamp(3rem,5.4vw,5rem);line-height:1.02;margin:13px 0 20px;max-width:930px}
.compact-head p{max-width:820px;font-size:1.16rem;line-height:1.68;color:#545D65}

.problem-grid{gap:22px}
.problem{min-height:248px;padding:31px 31px 29px;border-radius:22px}
.problem::before{height:78px}
.problem h2{font-size:1.72rem;line-height:1.18;margin-bottom:12px;color:#242A30}
.problem p{font-size:1.07rem;line-height:1.62;color:#566069;margin-bottom:25px}
.problem .btn{font-size:1rem;min-height:50px;padding-inline:18px}

/* Price / highlighted offer */
.service-price{margin-top:28px}
.service-price>div{padding:31px 32px;min-height:205px}
.service-price strong{font-size:3rem;margin:10px 0 13px}
.service-price p{font-size:1.03rem;line-height:1.6;color:#545D65}
.price-label{font-size:.96rem;font-weight:750;color:#575F66}
.service-stat .btn{margin-top:19px}

.simple-offer{margin-top:28px;padding:34px 35px;gap:36px}
.simple-offer strong{font-size:clamp(2.4rem,3.9vw,3.55rem);margin:8px 0 12px}
.simple-offer p{font-size:1.07rem;line-height:1.62;color:#545D65;max-width:780px}
.simple-offer .btn{min-width:210px}

/* Contact form — treat it as a conversion block, not legal fine print */
.compact-contact{padding:66px 0 82px}
.compact-contact-head{max-width:980px;margin-bottom:29px}
.compact-contact-head h2{font-size:clamp(2.6rem,4.4vw,3.8rem);line-height:1.06;margin:9px 0 11px}
.compact-contact-head p{font-size:1.08rem;line-height:1.6;color:#565F67}
.compact-contact-head a{font-size:1.08rem;color:#664E12}
.compact-form{max-width:980px;padding:34px;border-radius:22px}
.field-grid{gap:18px}
.field{gap:8px;margin-bottom:17px}
.field label{font-size:.98rem;font-weight:760;color:#414950}
.field input,.field textarea,.field select{font-size:1.04rem;line-height:1.45;border-radius:11px;padding:14px 15px}
.field input,.field select{min-height:54px}
.field textarea{min-height:145px}
.field input::placeholder,.field textarea::placeholder{color:#7B8288;opacity:1}
.form-submit{gap:13px;margin-top:7px}
.form-note{font-size:.9rem;line-height:1.5;color:#616970;max-width:430px}
.status{font-size:1rem;padding:14px 16px}

/* Footer */
.footer{padding:40px 0 48px;color:#5E666D}
.footer strong{font-size:1.02rem}
.footer-links{gap:22px;font-size:.96rem}
.micro{font-size:.92rem;line-height:1.5;margin-top:5px}

/* Generic pages */
.hero p{font-size:1.18rem;color:#545D65}
.section-copy{font-size:1.06rem;color:#505960}

@media(max-width:1100px){
  body{font-size:17px}
  .home-routing-card{padding:31px 28px 28px;min-height:595px}
  .home-routing-card h2{font-size:1.78rem;white-space:nowrap}
  .home-routing-card p{font-size:1.02rem}
  .home-routing-card li{font-size:1rem}
}

@media(max-width:900px){
  .container{width:min(100% - 40px,1240px)}
  .nav{min-height:76px}
  .nav-links{top:76px}
  .nav-links a{font-size:1.04rem;padding:11px 9px}
  .home-routing{padding:48px 0 60px}
  .home-routing-card{min-height:0;padding:34px 32px 30px}
  .home-routing-card h2{font-size:2.1rem;white-space:normal}
  .home-routing-card p{font-size:1.08rem}
  .home-routing-card li{font-size:1.05rem}
  .compact-services{padding:58px 0 44px}
  .compact-head{margin-bottom:34px}
  .compact-head p{font-size:1.1rem}
  .problem{min-height:215px;padding:28px 27px 26px}
  .problem h2{font-size:1.62rem}
  .problem p{font-size:1.04rem}
  .service-price>div{padding:27px 28px}
  .simple-offer{padding:30px}
  .compact-contact{padding:54px 0 66px}
}

@media(max-width:560px){
  body{font-size:17px;line-height:1.62}
  .container{width:min(100% - 28px,1240px)}
  .nav{min-height:70px}
  .brand-word{font-size:.98rem;letter-spacing:.17em}
  .home-phone{font-size:.88rem;min-height:44px;padding:10px 12px}
  .nav-links{top:70px;left:14px;right:14px}
  .home-routing{padding:30px 0 40px}
  .home-routing-card{padding:29px 25px 26px;border-radius:18px}
  .home-routing-card .icon{width:58px;height:58px;margin-bottom:16px}
  .home-routing-card .domain{display:none}
  .home-routing-card h2{font-size:1.82rem;margin-bottom:14px;white-space:normal}
  .home-routing-card p{font-size:1rem;line-height:1.62}
  .home-routing-card li{font-size:1rem;margin:11px 0}
  .home-routing-card .btn{width:100%;min-height:54px;font-size:1rem}
  .compact-services{padding:42px 0 34px}
  .compact-head{margin-bottom:29px}
  .compact-head h1{font-size:clamp(2.65rem,12vw,3.35rem);line-height:1.02;margin-bottom:17px}
  .compact-head p{font-size:1.06rem;line-height:1.62}
  .problem-grid{gap:15px}
  .problem{padding:25px 22px 23px;border-radius:17px;min-height:0}
  .problem h2{font-size:1.5rem;line-height:1.2}
  .problem p{font-size:1rem;line-height:1.58;margin-bottom:21px}
  .problem .btn{width:100%;min-height:52px;font-size:.98rem}
  .service-price>div{padding:24px 22px;min-height:0}
  .service-price strong{font-size:2.65rem}
  .service-price p{font-size:1rem}
  .simple-offer{padding:25px 22px;border-radius:17px;gap:22px}
  .simple-offer strong{font-size:2.55rem}
  .simple-offer p{font-size:1rem}
  .simple-offer .btn{width:100%;min-width:0}
  .compact-contact{padding:44px 0 54px}
  .compact-contact-head h2{font-size:2.5rem}
  .compact-contact-head p,.compact-contact-head a{font-size:1rem}
  .compact-form{padding:23px 20px;border-radius:17px}
  .field label{font-size:.96rem}
  .field input,.field textarea,.field select{font-size:1rem;padding:13px 14px}
  .form-submit .btn{width:100%;min-height:54px}
  .form-note{font-size:.86rem}
  .footer-links{font-size:.93rem}
}

/* FARITECH v1.7 — real brand assets, field imagery and concise production copy */
.brand-image{display:inline-flex;align-items:center;min-width:0}
.brand-image img{display:block;width:272px;height:auto;max-height:68px;object-fit:contain;object-position:left center}
.footer-brand{display:flex;flex-direction:column;align-items:flex-start;gap:4px}
.footer-brand img{display:block;width:210px;height:auto;max-height:58px;object-fit:contain;object-position:left center}

/* Selected real-world visuals live inside existing blocks; no extra content sections. */
.card-media{position:relative;height:142px;margin:0 0 22px;border-radius:15px;overflow:hidden;border:1px solid #DED6C9;background:linear-gradient(145deg,#FBFAF7,#EEE7DC)}
.card-media::after{content:"";position:absolute;inset:0;box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);pointer-events:none}
.card-media img{width:100%;height:100%;display:block;object-fit:cover;filter:saturate(.84) contrast(.96)}
.home-routing-card:first-child .card-media img{object-position:center 58%}
.home-routing-card:last-child .card-media img{object-position:center 45%}
.home-routing-card:nth-child(2) .card-media img{object-position:center center}
.home-routing-card:nth-child(3) .card-media img{object-position:center center}

.systems-card-visual{display:flex;align-items:center;justify-content:center;gap:11px;padding:18px;background:linear-gradient(135deg,#FAF7F0 0%,#F0E8DB 100%)}
.ui-window{position:relative;display:block;width:30%;height:88%;border:1px solid #D2C6B0;border-radius:8px;background:#fff;box-shadow:0 8px 18px rgba(55,60,66,.07)}
.ui-window::before{content:"";position:absolute;left:8px;right:8px;top:10px;height:7px;border-radius:99px;background:#E9E2D7}
.ui-window::after{content:"";position:absolute;left:8px;right:28%;top:26px;height:30px;border-radius:5px;background:linear-gradient(135deg,#EFE6D3,#F8F5EF);box-shadow:0 40px 0 -7px #ECE8E0}
.ui-one{transform:translateY(7px) rotate(-2deg)}
.ui-two{height:100%;z-index:2}
.ui-three{transform:translateY(8px) rotate(2deg)}

.division-intro{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(310px,.65fr);gap:48px;align-items:center;margin-bottom:42px}
.division-intro .compact-head{margin:0;max-width:none}
.division-visual{position:relative;margin:0;min-height:315px;border-radius:24px;border:1px solid #D7CEBF;overflow:hidden;background:linear-gradient(145deg,#fff,#EEE7DB);box-shadow:0 18px 45px rgba(60,66,74,.075)}
.division-visual::before{content:"";position:absolute;z-index:2;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);pointer-events:none}
.photo-visual img{width:100%;height:100%;min-height:315px;display:block;object-fit:cover;filter:saturate(.86) contrast(.96)}
.compact-division:has(.brand-strip) .photo-visual img{object-position:center 58%}

/* Development preview: intentionally illustrative, not presented as a client reference. */
.systems-mockup{display:block;overflow:visible;min-height:330px;background:linear-gradient(145deg,#FBF8F2,#ECE2D3)}
.systems-mockup::after{content:"";position:absolute;inset:28px;border-radius:18px;background:radial-gradient(circle at 80% 16%,rgba(212,175,55,.18),transparent 34%),linear-gradient(rgba(212,175,55,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(212,175,55,.08) 1px,transparent 1px);background-size:auto,30px 30px,30px 30px;opacity:.7}
.mock-window{position:absolute;z-index:3;border-radius:13px;border:1px solid #D5C8B2;background:#fff;box-shadow:0 18px 36px rgba(47,52,58,.11);overflow:hidden}
.mock-window i{display:block;height:25px;background:#F4F0E9;border-bottom:1px solid #E7E0D6}
.mock-window i::before{content:"";display:block;width:5px;height:5px;border-radius:50%;background:#C7B375;box-shadow:10px 0 #D9D1C4,20px 0 #D9D1C4;transform:translate(11px,10px)}
.mock-window b{display:block;width:44%;height:13px;margin:18px 14px 10px;border-radius:4px;background:#3C424A}
.mock-window span{display:block;height:8px;margin:8px 14px;border-radius:5px;background:#E7E2DA}
.mock-window span:nth-of-type(2){width:66%}
.mock-window em{display:block;width:38%;height:34px;margin:17px 14px;border-radius:7px;background:#E6D8B5}
.mock-window-back{width:48%;height:58%;left:7%;top:16%;transform:rotate(-4deg)}
.mock-window-mid{width:50%;height:63%;right:5%;top:10%;transform:rotate(4deg)}
.mock-window-front{width:57%;height:69%;left:22%;bottom:7%}

/* Required manufacturer coverage remains visually compact. */
.brand-strip{position:relative;z-index:1;display:grid;grid-template-columns:250px 1fr;gap:16px 30px;align-items:start;margin-top:28px;padding:28px 30px;background:rgba(255,255,255,.72);border:1px solid var(--line);border-radius:20px}
.brand-strip-title{display:flex;flex-direction:column;gap:7px}
.brand-strip-title strong{font-family:var(--serif);font-weight:400;font-size:1.55rem;line-height:1.12;color:var(--graphite-strong)}
.brand-strip p{margin:0;color:#505860;font-size:.96rem;line-height:1.8;font-weight:610}
.brand-strip small{grid-column:2;color:#6A7178;font-size:.87rem;line-height:1.45;margin-top:-7px}

/* Keep the content concise but make the richer descriptions effortless to scan. */
.problem p{max-width:58ch}
.home-routing-card{min-height:735px}
.home-routing-card p{min-height:86px}
.home-routing-card ul{margin-top:0}

@media(max-width:1050px){
  .brand-image img{width:235px;max-height:60px}
  .division-intro{grid-template-columns:minmax(0,1.15fr) minmax(285px,.85fr);gap:32px}
  .home-routing-card{min-height:720px}
}

@media(max-width:900px){
  .brand-image img{width:220px;max-height:56px}
  .division-intro{grid-template-columns:1fr;gap:26px;margin-bottom:34px}
  .division-visual{min-height:300px;max-height:420px}
  .photo-visual img{min-height:300px;max-height:420px}
  .systems-mockup{min-height:320px;max-height:360px}
  .brand-strip{grid-template-columns:1fr;padding:25px 26px}
  .brand-strip small{grid-column:1;margin-top:-3px}
  .home-routing-card{min-height:0}
  .home-routing-card p{min-height:0}
  .card-media{height:190px}
}

@media(max-width:560px){
  .brand-image img{width:166px;max-height:48px}
  .footer-brand img{width:180px;max-height:50px}
  .division-intro{gap:21px;margin-bottom:28px}
  .division-visual{min-height:235px;border-radius:18px}
  .photo-visual img{min-height:235px;max-height:300px}
  .systems-mockup{min-height:250px;max-height:270px}
  .mock-window-back{width:47%;height:58%}
  .mock-window-mid{width:49%;height:62%}
  .mock-window-front{width:58%;height:70%}
  .card-media{height:155px;margin-bottom:19px;border-radius:13px}
  .brand-strip{padding:22px 20px;border-radius:17px;gap:13px}
  .brand-strip-title strong{font-size:1.4rem}
  .brand-strip p{font-size:.92rem;line-height:1.72}
  .brand-strip small{font-size:.84rem}
}

/* FARITECH v2.0 — production shell: legal identity, consent UI and accessibility */
.skip-link{position:fixed;left:16px;top:12px;z-index:1000;transform:translateY(-160%);padding:10px 14px;border-radius:8px;background:var(--graphite-strong);color:#fff;text-decoration:none;font-weight:800;transition:transform .15s ease}
.skip-link:focus{transform:translateY(0)}

.footer{padding:40px 0 46px}
.footer-grid{display:grid;grid-template-columns:1.05fr 1.25fr .85fr;gap:40px;align-items:start}
.footer-company{display:flex;flex-direction:column;gap:3px;color:#697077;font-size:.86rem;line-height:1.55}
.footer-company strong{color:var(--graphite-strong);font-size:.95rem;margin-bottom:3px}
.footer-links{display:flex;flex-direction:column;align-items:flex-start;gap:6px;font-size:.9rem}
.footer-cookie-btn,.inline-cookie-btn{appearance:none;border:0;background:transparent;padding:0;color:#745E22;font:inherit;font-weight:700;cursor:pointer;text-decoration:underline;text-underline-offset:3px}
.footer-cookie-btn:hover,.inline-cookie-btn:hover{color:var(--graphite-strong)}

.legal-page .section-copy{max-width:880px}
.legal-page .section-copy h1{max-width:820px}
.legal-page .section-copy h2{font-family:var(--serif);font-weight:400;font-size:clamp(1.7rem,3vw,2.45rem);margin:34px 0 12px}
.legal-card{margin:26px 0 34px;padding:25px 27px;background:#fff;border:1px solid var(--line);border-radius:16px}
.legal-card strong{font-family:var(--serif);font-size:1.55rem;font-weight:400;color:var(--graphite-strong)}
.legal-card p:last-child{margin-bottom:0}
.form-note a{color:#735C1E;font-weight:700}

.cookie-banner[hidden],.cookie-modal[hidden]{display:none!important}
.cookie-banner{position:fixed;z-index:900;left:20px;right:20px;bottom:20px;display:flex;justify-content:center;pointer-events:none}
.cookie-banner-inner{pointer-events:auto;width:min(1120px,100%);display:flex;align-items:center;justify-content:space-between;gap:28px;padding:20px 22px 20px 25px;background:rgba(255,255,255,.97);border:1px solid #D8CEBC;border-radius:18px;box-shadow:0 22px 70px rgba(38,43,49,.16);backdrop-filter:blur(18px)}
.cookie-copy{max-width:650px}
.cookie-copy strong{display:block;font-family:var(--serif);font-size:1.38rem;font-weight:400;color:var(--graphite-strong);margin-bottom:3px}
.cookie-copy p{margin:0;color:#5B636A;font-size:.9rem;line-height:1.5}
.cookie-actions{display:flex;align-items:center;gap:9px;flex-wrap:wrap;justify-content:flex-end}
.cookie-actions .btn{min-height:43px;padding:10px 14px;font-size:.86rem}
.cookie-link-btn{border:0;background:transparent;padding:8px 5px;color:#735C1E;font-weight:750;cursor:pointer;text-decoration:underline;text-underline-offset:3px}

.cookie-modal{position:fixed;z-index:950;inset:0;display:grid;place-items:center;padding:20px}
.cookie-modal-backdrop{position:absolute;inset:0;background:rgba(31,35,39,.38);backdrop-filter:blur(4px)}
.cookie-dialog{position:relative;z-index:1;width:min(620px,100%);max-height:min(760px,calc(100vh - 40px));overflow:auto;padding:31px;background:#fff;border:1px solid #D8CEBC;border-radius:20px;box-shadow:0 26px 90px rgba(25,28,31,.22);outline:none}
.cookie-dialog h2{font-family:var(--serif);font-size:2.15rem;font-weight:400;line-height:1.1;margin:8px 0 10px;color:var(--graphite-strong)}
.cookie-dialog>p{margin:0 0 22px;color:#646C73;font-size:.92rem}
.cookie-close{position:absolute;right:18px;top:14px;width:38px;height:38px;border:0;border-radius:50%;background:var(--ivory);color:var(--graphite);font-size:26px;line-height:1;cursor:pointer}
.cookie-option{position:relative;display:flex;align-items:center;justify-content:space-between;gap:22px;padding:18px 0;border-top:1px solid var(--line-soft);cursor:pointer}
.cookie-option>div{display:flex;flex-direction:column;gap:3px}
.cookie-option strong{color:var(--graphite-strong);font-size:1rem}
.cookie-option small{color:#697178;font-size:.82rem;line-height:1.45;max-width:440px}
.cookie-required{flex:0 0 auto;color:#6B716F;font-size:.77rem;font-weight:800}
.cookie-option input{position:absolute;opacity:0;pointer-events:none}
.switch{position:relative;flex:0 0 auto;width:48px;height:27px;border-radius:99px;background:#D5D1CA;border:1px solid #C8C2B8;transition:.18s ease}
.switch::after{content:"";position:absolute;left:3px;top:3px;width:19px;height:19px;border-radius:50%;background:#fff;box-shadow:0 2px 5px rgba(0,0,0,.15);transition:.18s ease}
.cookie-option input:checked+.switch{background:#B59636;border-color:#A98927}
.cookie-option input:checked+.switch::after{transform:translateX(21px)}
.cookie-option input:focus-visible+.switch{outline:3px solid rgba(212,175,55,.22);outline-offset:2px}
.cookie-dialog-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
.cookie-legal{font-size:.8rem!important;margin:17px 0 0!important}
.cookie-legal a{color:#735C1E;font-weight:700}
.cookie-modal-open{overflow:hidden}

@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px 36px}
  .footer-links{grid-column:1/-1;flex-direction:row;flex-wrap:wrap;gap:9px 20px}
  .cookie-banner-inner{align-items:flex-start;flex-direction:column;gap:15px}
  .cookie-actions{justify-content:flex-start}
}
@media(max-width:560px){
  .footer-grid{grid-template-columns:1fr;gap:23px}
  .footer-links{grid-column:auto;flex-direction:column;gap:7px}
  .cookie-banner{left:10px;right:10px;bottom:10px}
  .cookie-banner-inner{padding:18px;border-radius:15px}
  .cookie-copy strong{font-size:1.25rem}
  .cookie-copy p{font-size:.84rem}
  .cookie-actions{width:100%}
  .cookie-actions .btn{flex:1 1 calc(50% - 6px)}
  .cookie-link-btn{width:100%;text-align:center}
  .cookie-dialog{padding:26px 20px 22px;border-radius:17px}
  .cookie-dialog h2{font-size:1.9rem;padding-right:32px}
  .cookie-option{gap:14px}
  .cookie-dialog-actions .btn{width:100%}
}

/* FARITECH v2.1 — prominent availability in the main header */
.site-header{background:rgba(250,248,244,.96)}
.nav{min-height:96px;gap:24px}
.header-actions{display:flex;align-items:center;justify-content:flex-end;gap:24px;min-width:0;flex:1}
.header-availability{display:flex;align-items:center;gap:14px;padding-left:27px;border-left:1px solid #DED5C8;white-space:nowrap;color:var(--graphite-strong)}
.header-icon{display:inline-grid;place-items:center;flex:0 0 auto;color:#C89E37}
.header-icon svg{display:block;width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.clock-icon svg{width:38px;height:38px}
.availability-copy{display:flex;flex-direction:column;line-height:1.15;gap:4px}
.availability-copy strong{font-size:.93rem;font-weight:780;letter-spacing:-.01em}
.availability-copy span{font-size:1.05rem;font-weight:720;color:#3A4046}
.availability-copy em,.mobile-nav-hours em{font-style:normal;color:#B88E2A}
.header-phone{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:50px;padding:11px 17px;border:1px solid rgba(169,134,34,.65);border-radius:9px;background:rgba(255,255,255,.78);color:var(--graphite-strong);text-decoration:none;font-size:1rem;font-weight:800;white-space:nowrap;box-shadow:0 5px 16px rgba(60,66,74,.03);transition:.18s ease}
.header-phone:hover{background:#fff;border-color:var(--gold-deep);transform:translateY(-1px)}
.header-phone .header-icon svg{width:24px;height:24px;stroke-width:1.7}
.desktop-nav{gap:20px}
.desktop-nav a{font-size:.9rem}
.desktop-nav .nav-cta{min-height:44px;padding:10px 14px}
.mobile-menu{position:relative;flex:0 0 auto;width:46px;height:44px;padding:0;border:0;background:transparent;border-radius:9px;display:none;place-content:center;gap:5px}
.mobile-menu span{display:block;width:27px;height:2px;background:#30353A;border-radius:2px;transition:transform .18s ease,opacity .18s ease}
.mobile-menu[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-menu[aria-expanded="true"] span:nth-child(2){opacity:0}
.mobile-menu[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-nav{display:none}

@media(max-width:1180px){
  .nav{gap:18px}
  .brand-image img{width:220px;max-height:58px}
  .header-actions{gap:16px}
  .header-availability{gap:10px;padding-left:18px}
  .clock-icon svg{width:32px;height:32px}
  .availability-copy strong{font-size:.84rem}
  .availability-copy span{font-size:.94rem}
  .header-phone{font-size:.9rem;padding:10px 13px}
  .desktop-nav{gap:13px}
  .desktop-nav a{font-size:.82rem}
  .desktop-nav .nav-cta{padding:9px 11px}
}

@media(max-width:980px){
  .nav{min-height:82px}
  .desktop-nav{display:none!important}
  .mobile-menu{display:grid}
  .brand-image img{width:205px;max-height:54px}
  .header-availability{padding-left:15px}
  .availability-copy strong{display:none}
  .availability-copy span{font-size:.91rem}
  .header-phone{min-height:46px}
  .mobile-nav{display:block;position:absolute;z-index:55;left:0;right:0;top:100%;background:rgba(250,248,244,.99);border-top:1px solid #E3DACC;border-bottom:1px solid #D8CEBC;box-shadow:0 20px 45px rgba(38,43,49,.12);opacity:0;visibility:hidden;transform:translateY(-8px);transition:opacity .18s ease,transform .18s ease,visibility .18s ease}
  .mobile-nav[data-open="1"]{opacity:1;visibility:visible;transform:translateY(0)}
  .mobile-nav-contact{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:19px max(24px,calc((100vw - min(1240px,calc(100vw - 56px)))/2));background:linear-gradient(90deg,#F7F2E8,#FBF9F5);border-bottom:1px solid #E4DBCE}
  .mobile-nav-hours{display:flex;align-items:center;gap:12px}
  .mobile-nav-hours>span:last-child{display:flex;flex-direction:column;line-height:1.2}
  .mobile-nav-hours strong{font-size:.94rem;color:var(--graphite-strong)}
  .mobile-nav-hours small{font-size:.94rem;font-weight:750;color:#3F454B}
  .mobile-nav-phone{display:inline-flex;align-items:center;gap:8px;min-height:44px;padding:9px 14px;border:1px solid #C8A550;border-radius:9px;background:#fff;color:var(--graphite-strong);text-decoration:none;font-weight:800;white-space:nowrap}
  .mobile-nav>a{display:flex;align-items:center;gap:12px;padding:15px max(24px,calc((100vw - min(1240px,calc(100vw - 56px)))/2));border-bottom:1px solid #E9E3D9;text-decoration:none;font-size:1rem;font-weight:720;color:var(--graphite-strong)}
  .mobile-nav>a:last-child{border-bottom:0}
  .mobile-nav>a>span:last-child{margin-left:auto;font-size:1.65rem;font-weight:400;line-height:1;color:#252A2F}
  .mobile-nav-symbol{display:inline-flex;align-items:center;justify-content:center;width:30px;color:#B98D25;font-weight:800}
}

@media(max-width:700px){
  .nav{min-height:74px;gap:10px}
  .brand-image img{width:172px;max-height:48px}
  .header-actions{gap:8px}
  .header-availability{padding-left:0;border-left:0;gap:6px}
  .clock-icon svg{width:25px;height:25px}
  .availability-copy span{font-size:.8rem}
  .header-phone{width:43px;min-width:43px;height:43px;min-height:43px;padding:0;border-radius:10px}
  .header-phone .phone-number{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
  .header-phone .header-icon svg{width:22px;height:22px}
  .mobile-menu{width:40px;height:40px}
  .mobile-menu span{width:24px}
  .mobile-nav-contact{padding:17px 18px;gap:12px}
  .mobile-nav-phone{font-size:.88rem;padding:8px 11px}
  .mobile-nav>a{padding:14px 18px}
}

@media(max-width:480px){
  .container{width:min(100% - 22px,1240px)}
  .nav{min-height:70px}
  .brand-image img{width:146px;max-height:43px}
  .header-actions{gap:5px}
  .header-availability{gap:4px}
  .clock-icon svg{width:22px;height:22px}
  .availability-copy span{font-size:.72rem;letter-spacing:-.01em}
  .header-phone{width:38px;min-width:38px;height:38px;min-height:38px}
  .mobile-menu{width:36px;height:38px}
  .mobile-menu span{width:22px}
  .mobile-nav-contact{align-items:stretch;flex-direction:column;padding:16px 14px}
  .mobile-nav-phone{justify-content:center;width:100%;min-height:45px}
  .mobile-nav-hours{justify-content:center}
  .mobile-nav-hours strong,.mobile-nav-hours small{text-align:left}
  .mobile-nav>a{padding:14px}
}

/* FARITECH v2.2 — Business hero polish */
.compact-head h1{text-wrap:balance}
.compact-head p{text-wrap:pretty}
.compact-division .division-intro .photo-visual img{object-position:center center}
@media(max-width:900px){.compact-head h1{text-wrap:balance}}

/* Production multi-domain navigation */
.nav-links a.is-active{color:var(--graphite-strong)}
.nav-links a.is-active::after{right:0!important}
