@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #202124;
  --dark: #222426;
  --dark-soft: #303337;
  --orange: #f59e4e;
  --orange-deep: #e98836;
  --cream: #fff7ee;
  --blue: #163453;
  --blue-soft: #375879;
  --muted: #686b70;
  --line: #e5e4e1;
  --white: #fff;
  --shadow: 0 18px 45px rgba(16, 29, 41, .14);
  --radius: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 400 16px/1.65 "Outfit", "Avenir Next", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(2.65rem, 5vw, 4.85rem); font-weight: 800; margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); font-weight: 800; margin-bottom: 1.2rem; }
h3 { font-size: 1.42rem; font-weight: 700; margin-bottom: .65rem; }
p { margin-bottom: 1.1rem; }
ul { padding-left: 1.2rem; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 48px), 820px); margin: 0 auto; }
.sr-only { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; top: -5rem; left: 1rem; background: var(--dark); color: var(--white); padding: .75rem 1rem; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }
.eyebrow { display: flex; align-items: center; gap: .5rem; margin: 0 0 .75rem; color: var(--orange-deep); font-size: .78rem; font-weight: 800; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--light { color: var(--white); }
.eyebrow--orange { color: var(--orange); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .58rem; min-height: 50px; padding: .78rem 1.15rem; border: 1px solid transparent; border-radius: 10px; font-weight: 800; line-height: 1; transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--orange); color: var(--white); }
.button--primary:hover { background: var(--orange-deep); }
.button--small { min-height: 42px; padding: .65rem .9rem; font-size: .92rem; }
.button--outline { color: var(--white); border-color: rgba(255,255,255,.86); background: rgba(255,255,255,.07); }
.button--outline:hover { color: var(--ink); background: var(--white); }
.button--dark { background: var(--dark); color: var(--white); }
.button--dark:hover { background: var(--blue); }
.button--light { background: var(--white); color: var(--orange-deep); }
.button--light:hover { background: var(--cream); }
.button--outline-light { display: inline-flex; align-items: center; gap: .6rem; min-height: 50px; padding: .78rem 1.15rem; border: 1px solid rgba(255,255,255,.75); color: var(--white); border-radius: 10px; font-weight: 800; }
.button--outline-light:hover { color: var(--ink); background: var(--white); }

/* Header */
.site-notice { background: var(--orange); color: var(--white); font-size: .88rem; font-weight: 600; }
.site-notice__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 39px; }
.site-notice__inner > span { display: flex; align-items: center; gap: .45rem; }
.site-notice__phones { gap: 1rem !important; }
.site-notice a:hover { text-decoration: underline; }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.97); box-shadow: 0 1px 0 rgba(0,0,0,.08); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 25px rgba(25, 34, 43, .1); }
.header-inner { display: flex; min-height: 94px; align-items: center; gap: clamp(1rem, 2.5vw, 2.6rem); }
.brand { flex: 0 0 auto; }
.brand img { width: 156px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(.65rem, 1.7vw, 1.8rem); margin-left: auto; }
.site-nav a { position: relative; padding: .55rem 0; font-size: .98rem; font-weight: 600; white-space: nowrap; }
.site-nav a::after { position: absolute; right: 0; bottom: .2rem; left: 0; height: 2px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-nav a.is-active { color: var(--orange-deep); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: flex; align-items: center; gap: .55rem; font-weight: 800; white-space: nowrap; }
.header-phone > i { color: var(--orange-deep); font-size: 1.1rem; }
.header-phone span { display: grid; line-height: 1.2; }
.header-phone small { color: var(--muted); font-size: .69rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.menu-toggle { display: none; margin-left: auto; padding: .45rem; border: 0; background: transparent; color: var(--ink); font-size: 1.65rem; }

/* Hero */
.hero { position: relative; overflow: hidden; min-height: 600px; color: var(--white); background: var(--blue); isolation: isolate; }
.hero__texture { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(9,30,51,.94) 0%, rgba(18,48,79,.83) 52%, rgba(11,37,63,.43) 100%), url('../images/ice-texture.jpg') center/cover; }
.hero::after { position: absolute; z-index: -1; inset: 0; content: ""; opacity: .45; background: radial-gradient(circle at 72% 20%, rgba(245,158,78,.4), transparent 20rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(400px, .72fr); min-height: 600px; align-items: center; }
.hero__content { position: relative; z-index: 2; max-width: 675px; padding: 5.4rem 0 4.65rem; }
.hero h1 { max-width: 680px; color: var(--white); }
.hero__copy { max-width: 640px; margin-bottom: 1.75rem; color: rgba(255,255,255,.89); font-size: clamp(1rem, 1.45vw, 1.2rem); }
.hero__reassurance { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.45rem; color: rgba(255,255,255,.92); font-size: .9rem; font-weight: 600; }
.hero__reassurance i { color: var(--orange); }
.hero__visual { position: relative; align-self: end; min-height: 580px; }
.hero__glow { position: absolute; right: -5%; bottom: 4%; width: min(41vw, 540px); aspect-ratio: 1; border-radius: 50%; opacity: .94; background: radial-gradient(circle, rgba(245,158,78,.8) 0, rgba(245,158,78,.2) 38%, transparent 69%); }
.hero__engineer { position: absolute; z-index: 1; right: -3%; bottom: 0; width: min(31vw, 390px); max-width: none; filter: drop-shadow(-18px 11px 22px rgba(0,0,0,.23)); }
.hero__uniform-logo { position: absolute; z-index: 2; right: 20%; bottom: 52.5%; width: min(4vw, 52px); height: auto; mix-blend-mode: screen; opacity: .93; transform: rotate(-1deg); }
.hero__quote-card { position: absolute; z-index: 4; right: 3%; bottom: 3.15rem; width: min(300px, 28vw); padding: 1.3rem 1.4rem; border-radius: var(--radius); background: var(--orange); color: var(--white); box-shadow: var(--shadow); }
.hero__quote-card span { display: block; margin-bottom: .22rem; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero__quote-card strong { display: block; margin-bottom: .9rem; font-size: 1.16rem; line-height: 1.15; }
.hero__quote-card a { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 800; }
.hero__quote-card a:hover { text-decoration: underline; }
.stats-bar { position: relative; z-index: 5; background: var(--white); box-shadow: 0 10px 24px rgba(10, 30, 45, .06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 105px; }
.stats-grid > div { display: grid; align-content: center; min-height: 100%; padding: 1.3rem clamp(.9rem, 2vw, 2.35rem); border-right: 1px solid var(--line); }
.stats-grid > div:first-child { border-left: 1px solid var(--line); }
.stats-grid strong { color: var(--orange-deep); font-size: clamp(1.7rem, 2.4vw, 2.55rem); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.stats-grid span { color: var(--muted); font-size: .86rem; font-weight: 600; }
.stats-note { margin: 0; padding: .7rem clamp(.9rem, 2vw, 2.35rem) 1rem; color: var(--muted); font-size: .73rem; line-height: 1.45; }

/* General sections */
.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section--cream { background: var(--cream); }
.section--dark { color: rgba(255,255,255,.78); background: var(--dark); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); align-items: center; gap: clamp(3rem, 7vw, 8.5rem); }
.split--reverse > :first-child { order: 2; }
.split__content { max-width: 590px; }
.split__content p { color: var(--muted); }
.photo-frame { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 380px; box-shadow: var(--shadow); background: var(--blue); }
.photo-frame img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.photo-frame--team img { object-position: 56% center; }
.photo-frame--service img { filter: saturate(.83) contrast(1.04); }
.photo-frame__badge { position: absolute; right: -1rem; bottom: 1.7rem; display: grid; width: 155px; height: 155px; place-content: center; padding: 1rem; border: 7px solid var(--white); border-radius: 50%; background: var(--orange); color: var(--white); text-align: center; box-shadow: var(--shadow); font-weight: 700; line-height: 1.1; }
.photo-frame__badge strong { display: block; font-size: 2.85rem; letter-spacing: -.08em; }
.check-list { display: grid; gap: .7rem; margin: 1.55rem 0 1.8rem; padding: 0; list-style: none; color: var(--ink); font-weight: 600; }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before { position: absolute; top: .26rem; left: 0; display: grid; width: 1.05rem; height: 1.05rem; place-items: center; border-radius: 50%; content: "✓"; background: var(--orange); color: var(--white); font-size: .7rem; }
.section-heading { margin-bottom: 2.8rem; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .65fr); align-items: end; gap: 3rem; }
.section-heading--split h2 { max-width: 620px; margin-bottom: 0; }
.section-heading--split > p { max-width: 460px; margin-bottom: .25rem; color: var(--muted); }
.section-heading--center { max-width: 780px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p:not(.eyebrow) { color: var(--muted); }

/* Cards and services */
.services-section { background: var(--dark); }
.services-section .section-heading h2 { color: var(--white); }
.services-section .section-heading > p { color: rgba(255,255,255,.68); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card { display: flex; flex-direction: column; overflow: hidden; min-height: 410px; border: 1px solid transparent; border-radius: 13px; background: var(--orange); color: #292725; transition: transform .23s ease, box-shadow .23s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 17px 25px rgba(0,0,0,.17); }
.service-card__image { display: block; height: 160px; overflow: hidden; background: var(--blue); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.45rem 1.55rem 1.6rem; background: var(--orange); }
.service-card__icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: .95rem; border-radius: 10px; background: var(--dark); color: var(--orange); font-size: 1.45rem; }
.service-card__title { display: block; margin-bottom: .55rem; color: var(--dark); font-size: 1.35rem; font-weight: 800; line-height: 1.18; }
.service-card__lead { display: block; min-height: 48px; margin-bottom: .75rem; color: var(--dark); font-size: .93rem; font-weight: 700; line-height: 1.5; }
.service-card__copy { display: block; margin-bottom: .85rem; color: rgba(25,25,25,.83); font-size: .92rem; line-height: 1.55; }
.service-card .text-link { display: flex; align-items: center; gap: .45rem; margin-top: auto; color: var(--dark); font-size: .9rem; font-weight: 800; }
.services-grid--light .service-card { border-color: #f0d0af; background: var(--cream); }
.services-grid--light .service-card__body { background: var(--cream); }
.services-grid--light .service-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.services-grid--light .service-card:hover .service-card__body { background: #fff; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--white); box-shadow: 0 9px 23px rgba(23,37,51,.06); transition: transform .22s ease, box-shadow .22s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-card img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; }
.team-card div { padding: 1.1rem 1.2rem 1.2rem; border-top: 3px solid var(--orange); }
.team-card h3 { margin-bottom: .13rem; font-size: 1.28rem; }
.team-card p { margin: 0; color: var(--muted); font-size: .93rem; font-weight: 700; }

.sectors-section { background: #f7f8f8; }
.sector-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.7rem; }
.sector-tags span { padding: .48rem .75rem; border-radius: 999px; background: var(--white); color: var(--blue); box-shadow: 0 3px 13px rgba(22,52,83,.07); font-size: .9rem; font-weight: 700; }
.equipment-panel { position: relative; overflow: hidden; min-height: 430px; border-radius: var(--radius); background: var(--blue); box-shadow: var(--shadow); }
.equipment-panel__image { position: absolute; inset: 0; }
.equipment-panel__image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(135deg, rgba(10,33,53,.75), rgba(12,37,60,.25)); }
.equipment-panel__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.equipment-panel__list { position: absolute; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.equipment-panel__list span { display: flex; align-items: center; gap: .55rem; padding: .85rem .75rem; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: rgba(17,40,59,.82); color: var(--white); font-size: .9rem; font-weight: 700; backdrop-filter: blur(5px); }
.equipment-panel__list i { color: var(--orange); }

/* Trust, testimonial, FAQ */
.trust-section { color: rgba(255,255,255,.78); background: var(--dark); }
.trust-grid { display: grid; grid-template-columns: minmax(230px, .7fr) repeat(2, minmax(220px, 1fr)); align-items: center; gap: 1.4rem; }
.trust-copy h2 { color: var(--white); }
.trust-copy p { max-width: 360px; }
.testimonial { min-height: 258px; padding: 1.7rem; border-radius: 12px; background: var(--white); color: var(--ink); }
.testimonial .stars { margin-bottom: .8rem; color: var(--orange); font-size: .82rem; letter-spacing: .1rem; }
.testimonial blockquote { margin: 0 0 1.2rem; color: #61646a; font-size: 1rem; line-height: 1.7; }
.testimonial p { margin: 0; line-height: 1.3; }
.testimonial p strong { font-size: 1.04rem; }
.testimonial p span { color: var(--muted); font-size: .88rem; }
.testimonial--light { border: 1px solid var(--line); box-shadow: 0 9px 23px rgba(23,37,51,.06); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.faq-section { background: #f7f8f8; }
.faq-list { display: grid; gap: .75rem; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.3rem; color: var(--ink); cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--orange-deep); transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 1.3rem 1.3rem; color: var(--muted); }
.final-cta { color: var(--white); background: linear-gradient(100deg, #e98836, #f6a65b); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(3.1rem, 6vw, 5.5rem) 0; }
.final-cta h2 { max-width: 740px; margin-bottom: .65rem; color: var(--white); }
.final-cta p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.87); }

/* Inner pages */
.page-hero { position: relative; overflow: hidden; padding: clamp(4.8rem, 8vw, 7.5rem) 0; color: var(--white); background: linear-gradient(110deg, rgba(11,37,60,.96), rgba(24,59,93,.81)), url('../images/ice-texture.jpg') center/cover; }
.page-hero::after { position: absolute; top: -6rem; right: 7%; width: 20rem; height: 20rem; border: 2.6rem solid rgba(245,158,78,.2); border-radius: 50%; content: ""; }
.page-hero .container { position: relative; z-index: 1; max-width: 890px; margin-left: max(24px, calc((100% - var(--container)) / 2)); }
.page-hero h1 { max-width: 880px; color: var(--white); }
.page-hero p:not(.eyebrow) { max-width: 730px; margin-bottom: 0; color: rgba(255,255,255,.85); font-size: clamp(1.02rem, 1.5vw, 1.2rem); }
.page-hero--service { background-image: linear-gradient(110deg, rgba(11,37,60,.96), rgba(24,59,93,.73)), var(--page-hero-image, url('../images/kitchen-equipment.jpg')); }
.page-hero--service .button-row { margin-top: 1.6rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-grid article { padding: 1.5rem; border-radius: 12px; background: var(--white); box-shadow: 0 8px 22px rgba(23,37,51,.07); }
.feature-grid article > i { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 1.2rem; border-radius: 9px; background: var(--orange); color: var(--white); font-size: 1.25rem; }
.feature-grid article p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }
.mini-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.mini-services a { display: flex; align-items: center; gap: .65rem; min-height: 69px; padding: .8rem 1rem; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; background: rgba(255,255,255,.05); color: var(--white); font-size: .95rem; font-weight: 700; transition: border .2s ease, background .2s ease; }
.mini-services a:hover { border-color: var(--orange); background: rgba(245,158,78,.12); }
.mini-services a > :first-child { color: var(--orange); }
.mini-services a > :last-child { margin-left: auto; font-size: .8rem; }

/* Contact */
.contact-section { background: #f7f8f8; }
.contact-grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact-details { padding: 2.2rem; border-radius: var(--radius); background: var(--dark); color: rgba(255,255,255,.76); }
.contact-details h2 { color: var(--white); font-size: clamp(1.9rem, 3vw, 2.6rem); }
.contact-detail { display: flex; align-items: center; gap: .9rem; padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.contact-detail > i { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 8px; background: var(--orange); color: var(--white); }
.contact-detail span { display: grid; line-height: 1.22; }
.contact-detail small { color: rgba(255,255,255,.58); font-size: .75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.contact-detail strong { color: var(--white); }
.coverage { display: flex; gap: .7rem; margin-top: 1.35rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.13); }
.coverage > i { color: var(--orange); padding-top: .35rem; }
.coverage p { margin: 0; font-size: .94rem; }
.coverage strong { color: var(--white); }
.contact-form-wrap { padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.contact-form-wrap h2 { margin-bottom: .55rem; }
.form-intro { color: var(--muted); }
.contact-form { display: grid; gap: 1rem; margin-top: 1.65rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .43rem; color: var(--ink); font-size: .9rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: .75rem .85rem; border: 1px solid #d9dcdf; border-radius: 7px; outline: none; background: var(--white); color: var(--ink); font-weight: 400; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange-deep); box-shadow: 0 0 0 3px rgba(245,158,78,.18); }
.contact-form .consent { grid-template-columns: 1.1rem 1fr; align-items: start; gap: .65rem; color: var(--muted); font-size: .84rem; font-weight: 500; }
.contact-form .consent input { width: 1.05rem; height: 1.05rem; margin-top: .18rem; accent-color: var(--orange-deep); }
.contact-form button { width: fit-content; }
.consent a { color: var(--orange-deep); text-decoration: underline; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin: 1rem 0; padding: .8rem 1rem; border-radius: 8px; font-weight: 600; }
.form-message--success { border: 1px solid #9ed9b2; background: #edfbf1; color: #226137; }
.form-message--error { border: 1px solid #efafa9; background: #fff0ee; color: #a3342c; }

/* Footer */
.site-footer { color: rgba(255,255,255,.72); background: #1d1f21; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1.05fr 1.08fr; gap: 2rem; padding: 4.7rem 0 3.6rem; }
.footer-brand img { width: 178px; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 330px; font-size: .94rem; }
.site-footer h2 { margin-bottom: 1.1rem; color: var(--white); font-size: 1.15rem; letter-spacing: -.025em; }
.site-footer ul { display: grid; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.site-footer li { font-size: .91rem; }
.site-footer a:hover { color: var(--orange); }
.social-links { display: flex; gap: .55rem; margin-top: 1.2rem; }
.social-links a { display: grid; width: 33px; height: 33px; place-items: center; border-radius: 6px; background: var(--orange); color: var(--white); }
.social-links a:hover { background: var(--white); color: var(--orange-deep); }
.footer-contact li { display: flex; align-items: start; gap: .55rem; }
.footer-contact i { width: 1rem; margin-top: .3rem; color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.63); font-size: .85rem; }
.floating-call { position: fixed; z-index: 30; right: 1.15rem; bottom: 1.15rem; display: flex; align-items: center; gap: .55rem; padding: .7rem .95rem; border-radius: 999px; background: var(--orange); color: var(--white); box-shadow: 0 9px 22px rgba(0,0,0,.24); font-size: .87rem; font-weight: 800; transition: transform .2s ease; }
.floating-call:hover { transform: translateY(-3px); }
.legal-copy h2 { margin-top: 2.5rem; font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { color: var(--muted); }
.legal-copy a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }

@media (max-width: 1100px) {
  .header-inner { gap: 1.1rem; }
  .brand img { width: 137px; }
  .site-nav { gap: .9rem; }
  .site-nav a { font-size: .91rem; }
  .header-phone { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .66fr); }
  .hero__engineer { width: min(35vw, 390px); right: -5%; }
  .hero__uniform-logo { right: 20%; bottom: 52.5%; }
  .hero__quote-card { right: .2rem; width: min(285px, 29vw); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr 1fr 1.25fr; }
  .footer-brand { grid-column: span 3; }
  .footer-brand p { max-width: 500px; }
}

@media (max-width: 820px) {
  .container, .narrow { width: min(calc(100% - 36px), var(--container)); }
  .site-notice__inner { justify-content: center; min-height: 36px; font-size: .76rem; text-align: center; }
  .site-notice__phones { display: none !important; }
  .header-inner { position: relative; min-height: 78px; }
  .brand img { width: 140px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: -18px; left: -18px; display: grid; gap: 0; padding: .7rem 18px 1rem; visibility: hidden; border-top: 1px solid var(--line); background: var(--white); opacity: 0; box-shadow: 0 14px 24px rgba(23,37,51,.13); transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: .74rem 0; font-size: 1rem; }
  .site-nav a::after { display: none; }
  .header-actions { display: none; }
  .hero { min-height: 650px; }
  .hero__grid { display: block; min-height: 0; }
  .hero__content { max-width: 640px; padding: 4.5rem 0 0; }
  .hero__visual { min-height: 400px; margin-top: -1.3rem; }
  .hero__engineer { right: 3%; width: min(57vw, 430px); }
  .hero__uniform-logo { right: 20%; bottom: 52.5%; width: 48px; }
  .hero__quote-card { right: auto; bottom: 1.8rem; left: 0; width: min(280px, 57vw); padding: 1.1rem; }
  .hero__quote-card strong { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { min-height: 89px; border-top: 1px solid var(--line); }
  .stats-grid > div:nth-child(3), .stats-grid > div:nth-child(4) { border-bottom: 1px solid var(--line); }
  .stats-grid > div:nth-child(2n + 1) { border-left: 1px solid var(--line); }
  .stats-grid > div:first-child { border-left: 1px solid var(--line); }
  .split, .section-heading--split, .trust-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse > :first-child { order: 0; }
  .photo-frame { min-height: 350px; }
  .photo-frame__badge { right: 1rem; bottom: 1rem; width: 128px; height: 128px; border-width: 5px; }
  .photo-frame__badge strong { font-size: 2.3rem; }
  .section-heading--split > p { max-width: 580px; }
  .equipment-panel { min-height: 380px; }
  .trust-copy { max-width: 530px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-copy { grid-column: span 2; }
  .final-cta__inner { display: grid; }
  .page-hero .container { width: min(calc(100% - 36px), 890px); margin: 0 auto; }
  .mini-services { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  h1 { font-size: clamp(2.38rem, 11vw, 3.2rem); line-height: 1.02; }
  h2 { font-size: clamp(1.9rem, 9vw, 2.45rem); }
  .hero { min-height: 0; }
  .hero__texture { background-position: 61% center; }
  .hero__content { padding-top: 3.7rem; }
  .hero__content .eyebrow { font-size: .67rem; }
  .hero__copy { font-size: 1rem; line-height: 1.6; }
  .hero__reassurance { display: none; }
  .button-row { gap: .65rem; }
  .button { min-height: 48px; padding-right: .95rem; padding-left: .95rem; font-size: .9rem; }
  .hero__visual { min-height: 403px; margin-top: -.85rem; }
  .hero__glow { right: -13%; bottom: -2%; width: 310px; }
  .hero__engineer { right: -3%; width: min(78vw, 400px); }
  .hero__uniform-logo { right: 20%; bottom: 52.5%; width: 42px; }
  .hero__quote-card { bottom: 1rem; width: min(208px, 57vw); padding: .9rem; border-radius: 11px; }
  .hero__quote-card span { font-size: .62rem; }
  .hero__quote-card strong { font-size: .85rem; }
  .hero__quote-card a { font-size: .75rem; }
  .stats-grid strong { font-size: 1.7rem; }
  .stats-grid span { font-size: .75rem; }
  .stats-grid > div { padding: 1rem; }
  .section { padding: 3.75rem 0; }
  .services-grid, .trust-grid, .testimonials-grid, .feature-grid, .mini-services { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .team-card div { padding: .9rem; }
  .service-card { min-height: 0; }
  .service-card__image { height: 172px; }
  .service-card__body { padding: 1.35rem; }
  .service-card__lead { min-height: 0; }
  .service-card p { margin-bottom: .75rem; }
  .service-card .text-link { margin-top: .4rem; }
  .equipment-panel__list { grid-template-columns: 1fr; }
  .equipment-panel { min-height: 425px; }
  .trust-copy { grid-column: span 1; }
  .testimonial { min-height: 0; }
  .page-hero { padding: 4.4rem 0; }
  .page-hero h1 { font-size: clamp(2.35rem, 10vw, 3.1rem); }
  .page-hero p:not(.eyebrow) { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-details, .contact-form-wrap { padding: 1.45rem; }
  .footer-grid { grid-template-columns: 1fr; padding: 3.5rem 0 2.7rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { display: grid; }
  .floating-call { right: .8rem; bottom: .8rem; padding: .82rem; }
  .floating-call span { display: none; }
}
