:root {
  --red: #f51f39;
  --red-dark: #af0b1d;
  --wine: #35050b;
  --ink: #171719;
  --copy: #666166;
  --line: #e9e6e7;
  --mist: #f5f6f6;
  --white: #fff;
  --container: 1080px;
  --shadow-sm: 0 10px 30px rgba(52, 5, 12, .08);
  --shadow-lg: 0 25px 65px rgba(52, 5, 12, .13);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font: 500 15px/1.55 "Golos Text", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.skip-link { position: fixed; z-index: 1000; top: -60px; left: 15px; padding: 9px 16px; color: white; background: var(--wine); border-radius: 8px; }
.skip-link:focus { top: 15px; }
.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; }

h1, h2, h3 {
  margin: 0;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.028em;
  text-shadow: none;
}
p { margin: 0; }
.eyebrow {
  margin-bottom: 14px;
  color: var(--red);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 100px;
  color: white;
  background: var(--red);
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(245,31,57,.2);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 16px 32px rgba(245,31,57,.28); }
:focus-visible { outline: 3px solid rgba(245,31,57,.35); outline-offset: 4px; }

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 66px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(40,30,32,.05);
  transition: box-shadow .25s, background .25s;
}
.site-header.scrolled { background: rgba(255,255,255,.93); box-shadow: 0 8px 30px rgba(45,4,10,.09); backdrop-filter: blur(16px); }
.nav-row { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; }
.logo-frame { position: relative; display: block; flex: 0 0 auto; overflow: hidden; }
.logo-frame img { position: absolute; max-width: none; height: auto; }
.logo-frame-header { width: 94px; height: 48px; }
.logo-frame-header img { left: -19px; top: -18px; width: 136px; }
.logo-frame-panel { width: 160px; height: 68px; }
.logo-frame-panel img { left: -32px; top: -28px; width: 230px; }
.logo-frame-footer { width: 138px; height: 61px; }
.logo-frame-footer img { left: -27px; top: -25px; width: 197px; }
.main-nav { display: flex; align-items: center; gap: 35px; margin-left: auto; }
.main-nav a { position: relative; padding: 23px 0 21px; color: #272327; font-size: .79rem; font-weight: 600; transition: color .2s, transform .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a:hover { transform: translateY(-1px); }
.main-nav a.has-menu { margin-right: 8px; }
.main-nav a.has-menu::before {
  position: absolute;
  content: "";
  right: -16px;
  top: 30px;
  width: 0;
  height: 0;
  border: 3.5px solid transparent;
  border-top-color: currentColor;
}
.menu-toggle { display: none; margin-left: auto; width: 42px; height: 42px; padding: 10px; border: 0; border-radius: 50%; background: #fff0f2; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--wine); transition: .2s; }

/* Hero */
.hero {
  position: relative;
  min-height: 580px;
  padding: 130px 0 58px;
  overflow: hidden;
  background: #f3f1ef url("assets/images/dustbusters-team-hero.png") center 47% / cover no-repeat;
}
.hero .container, .site-header .container { width: min(calc(100% - 40px), 1180px); }
.hero::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, rgba(34,13,17,.08));
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250,249,248,.97) 0%, rgba(250,249,248,.91) 25%, rgba(250,249,248,.64) 43%, rgba(250,249,248,.08) 65%, transparent 100%);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 730px; font-size: clamp(3.35rem, 4.25vw, 4.75rem); line-height: 1.14; }
.hero-copy > p { margin-top: 16px; color: #747074; font-size: .93rem; font-weight: 500; }
.hero-features { display: flex; margin-top: 28px; }
.hero-features article {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 20px;
  border-left: 1px solid rgba(35,28,30,.18);
}
.hero-features article:first-child { padding-left: 0; border-left: 0; }
.hero-features span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--red); box-shadow: 0 8px 18px rgba(245,31,57,.24); }
.hero-features img { width: 24px; height: 24px; object-fit: contain; }
.hero-features b { min-width: 43px; font-size: .67rem; line-height: 1.15; letter-spacing: -.01em; text-align: center; }

/* Intro */
.intro-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #f7f8f8 url("assets/images/dustbusters-commercial-clean.png") center 48% / cover no-repeat;
}
.intro-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.97) 0 24%, rgba(255,255,255,.63) 35%, rgba(255,255,255,.03) 54%, rgba(255,255,255,.48) 100%); }
.intro-layout { position: relative; z-index: 2; display: grid; min-height: 520px; grid-template-columns: .92fr 1.35fr .92fr; align-items: center; gap: 24px; padding-block: 48px; }
.intro-copy { padding: 26px 0; }
.intro-copy h2 { font-size: clamp(2.25rem, 3vw, 3rem); line-height: 1.08; }
.intro-copy h2 span { color: var(--red); }
.intro-copy > p { max-width: 350px; margin-top: 16px; color: #302d2f; font-size: .8rem; font-weight: 500; line-height: 1.48; }
.service-list { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; list-style: none; font-size: .74rem; font-weight: 700; }
.service-list span { display: inline-grid; width: 22px; height: 22px; margin-right: 8px; place-items: center; border-radius: 50%; color: white; background: var(--red); font-size: .58rem; }
.intro-panel {
  padding: 29px 26px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.experience-badge { display: inline-flex; margin-bottom: 20px; padding: 10px 12px; flex-direction: column; color: white; background: var(--red); line-height: 1; box-shadow: 0 10px 22px rgba(245,31,57,.21); }
.experience-badge strong { font: 700 1.85rem "IBM Plex Sans"; }
.experience-badge small { margin-top: 5px; font-size: .48rem; text-transform: uppercase; }
.intro-panel h3 { max-width: 320px; font-size: 1.38rem; line-height: 1.18; }
.intro-panel > p { max-width: 330px; margin-top: 12px; color: #302d2f; font-size: .76rem; font-weight: 500; line-height: 1.45; }
.phone-card { display: flex; width: 100%; max-width: 350px; align-items: center; gap: 13px; margin-top: 18px; padding: 9px 13px; border: 1px solid rgba(25,20,22,.08); border-radius: 7px; background: rgba(255,255,255,.94); box-shadow: 0 6px 16px rgba(28,18,21,.18); font-size: 1.35rem; }
.phone-card span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: white; background: var(--red); font-size: .85rem; }
.panel-brand { width: fit-content; margin-top: 12px; }
.intro-cta { min-height: 40px; margin-top: 22px; padding-inline: 18px; font-size: .7rem; box-shadow: none; }
.intro-cta b { font-size: 1.05rem; }

/* About */
.about-banner {
  position: relative;
  display: grid;
  min-height: 118px;
  place-items: center;
  overflow: hidden;
  color: white;
  background: url("assets/images/dustbusters-commercial-clean.png") center 74% / cover;
}
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(39,4,9,.88) 0%, rgba(39,4,9,.67) 42%, rgba(77,9,15,.42) 66%, rgba(39,4,9,.88) 100%),
    linear-gradient(180deg, rgba(36,3,8,.15), rgba(36,3,8,.55));
}
.about-banner h2 { position: relative; z-index: 2; font-size: 1.55rem; letter-spacing: -.02em; }
.company-section { padding: 78px 0 94px; }
.company-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.company-copy { display: grid; gap: 15px; color: #656065; font-size: .8rem; font-weight: 500; line-height: 1.42; }
.company-copy p:first-child { color: #514c50; font-weight: 600; }
.company-collage { position: relative; height: 350px; }
.collage-shape { position: absolute; overflow: hidden; box-shadow: var(--shadow-sm); }
.collage-shape img { width: 100%; height: 100%; object-fit: cover; }
.shape-one { inset: 0 0 0 28%; border-radius: 180px 12px 180px 12px; }
.shape-one img { object-position: 58% center; }
.shape-two { left: 3%; top: 28%; width: 48%; height: 55%; border: 8px solid white; border-radius: 120px 10px 10px 10px; }
.shape-two img { object-position: 50% 35%; }
.collage-badge { position: absolute; z-index: 3; left: 4%; bottom: 9%; display: flex; padding: 13px 14px; flex-direction: column; color: white; background: var(--red); box-shadow: var(--shadow-lg); }
.collage-badge strong { font: 700 1.75rem "IBM Plex Sans"; line-height: 1; }
.collage-badge small { margin-top: 5px; font-size: .48rem; text-transform: uppercase; }

/* Services */
.service-categories { padding-top: 86px; }
.center-heading { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.center-heading h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); line-height: 1.1; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-grid article {
  position: relative;
  min-height: 228px;
  padding: 31px 25px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: white;
  background: linear-gradient(145deg, #fb263f, #f01832);
  text-align: center;
  box-shadow: 0 14px 34px rgba(245,31,57,.15);
  transition: transform .25s, box-shadow .25s;
}
.category-grid article::after { position: absolute; content: ""; inset: 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 4px; pointer-events: none; }
.category-grid article.active { background: linear-gradient(145deg, #bd0d21, #990914); }
.category-grid article:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(84,4,14,.2); }
.category-grid img { width: 43px; height: 43px; margin: 0 auto 18px; object-fit: contain; }
.category-grid h3 { font-size: 1rem; letter-spacing: -.015em; }
.category-grid p { max-width: 260px; margin: 11px auto 0; color: rgba(255,255,255,.8); font-size: .68rem; line-height: 1.43; }
.photo-service-grid { display: grid; max-width: 650px; grid-template-columns: 1fr 1fr; gap: 18px; margin: 38px auto 0; padding-bottom: 86px; }
.photo-service-card { position: relative; min-width: 0; transition: transform .25s; }
.photo-service-card:hover { transform: translateY(-5px); }
.photo-service-image { height: 265px; overflow: hidden; border-radius: 7px; box-shadow: var(--shadow-sm); }
.photo-service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.photo-service-card:hover .photo-service-image img { transform: scale(1.035); }
.photo-service-card:nth-child(2) .photo-service-image img { object-position: center 35%; }
.photo-service-info { position: absolute; z-index: 2; left: 16px; right: 16px; top: 220px; min-height: 145px; padding: 19px 22px 16px; border-radius: 5px; background: white; box-shadow: 0 16px 35px rgba(47,7,12,.12); }
.photo-service-info h3 { font: 600 .95rem/1.2 "Golos Text"; letter-spacing: 0; }
.photo-service-info ul { margin: 9px 0 0; padding: 0; color: #8e898d; font-size: .61rem; line-height: 1.42; list-style: none; }
.photo-service-info li::before { content: "* "; color: #a39ea1; }
.service-card-icon { position: absolute; right: 16px; top: -25px; display: grid; width: 43px; height: 43px; place-items: center; border: 5px solid white; border-radius: 8px; background: var(--red); box-shadow: 0 6px 15px rgba(245,31,57,.22); }
.service-card-icon img { width: 23px; height: 23px; object-fit: contain; }

/* Why choose */
.contact-ribbon { display: flex; min-height: 36px; align-items: center; justify-content: center; gap: 8px; color: var(--red); background: #eff1f1; font-size: .63rem; font-weight: 800; }
.contact-ribbon a:hover { text-decoration: underline; }
.choice-section { padding: 90px 0 82px; }
.choice-grid { display: grid; max-width: 850px; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 45px; }
.choice-image { position: relative; height: 340px; overflow: hidden; border-radius: 7px; box-shadow: var(--shadow-sm); }
.choice-image::after { position: absolute; content: ""; inset: 0; border: 1px solid rgba(255,255,255,.35); border-radius: inherit; }
.choice-image img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.choice-lead { max-width: 520px; margin: 5px 0 24px; font: 700 .9rem/1.42 "Golos Text"; letter-spacing: -.01em; }
.choice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-cards article {
  display: grid;
  min-height: 100px;
  grid-template-columns: 28px 1fr;
  padding: 14px;
  border: 1px solid #ece9ea;
  border-radius: 7px;
  background: linear-gradient(145deg, #f7f8f8, #eff1f1);
  transition: transform .24s, box-shadow .24s;
}
.choice-cards article:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.choice-cards article.active { color: white; border-color: var(--red); background: linear-gradient(145deg, #fb263f, #ee1831); }
.choice-cards article > span { grid-row: 1 / 3; color: var(--red); font-size: 1.05rem; }
.choice-cards article.active > span { color: white; }
.choice-cards h3 { font-size: .73rem; letter-spacing: -.01em; }
.choice-cards p { margin-top: 7px; color: #969195; font-size: .59rem; line-height: 1.35; }
.choice-cards article.active p { color: rgba(255,255,255,.82); }

/* Contact */
.contact-section { padding: 78px 0 104px; background: linear-gradient(180deg, #fff, #fdfcfc); }
.contact-grid { display: grid; max-width: 850px; grid-template-columns: 1fr 1fr; align-items: start; gap: 45px; }
.contact-card { padding: 29px; border: 1px solid #f0edee; border-radius: 8px; background: linear-gradient(180deg, #fff, #fffefe); box-shadow: var(--shadow-lg); }
.contact-card h2, .location-copy h2 { font-size: clamp(1.65rem, 2.4vw, 2rem); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 5px; }
.contact-form label > span { font-size: .62rem; font-weight: 800; }
.contact-form .full { grid-column: 1 / -1; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
input, textarea { width: 100%; border: 1px solid rgba(245,31,57,.68); border-radius: 6px; outline: 0; background: white; transition: border .2s, box-shadow .2s; }
input { height: 34px; padding: 0 10px; }
textarea { min-height: 72px; padding: 10px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #aaa5a8; font-size: .75rem; }
input:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(245,31,57,.1); }
.contact-form .button { min-height: 34px; font-size: .7rem; }
.contact-form .button span { font-size: .75rem; }
.contact-form .button:disabled { cursor: wait; opacity: .72; transform: none; }
.form-status { display: none; color: var(--red-dark); font-size: .74rem; font-weight: 800; }
.form-status.visible { display: block; }
.form-status.error { color: #a70b1c; }
.location-copy { padding-top: 29px; }
.location-copy > p:not(.eyebrow) { margin: 17px 0 25px; color: #938e92; font-size: .74rem; line-height: 1.5; }
.map-card { position: relative; min-height: 220px; overflow: hidden; border: 1px solid #e3e8e5; border-radius: 10px; background: #edf3ef; box-shadow: 0 18px 40px rgba(25, 23, 24, .1); }
.map-card iframe { display: block; width: 100%; height: 220px; border: 0; filter: saturate(.82) contrast(1.03); }
.map-link { position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 9px 13px; border: 1px solid rgba(255,255,255,.85); border-radius: 999px; color: #191718; background: rgba(255,255,255,.94); box-shadow: 0 5px 16px rgba(25,23,24,.16); font-size: .67rem; font-weight: 800; backdrop-filter: blur(8px); }
.map-link:hover { color: white; background: var(--red); transform: translateY(-1px); }

/* Footer */
.site-footer { color: rgba(255,255,255,.66); background: var(--wine); }
.footer-main { display: grid; grid-template-columns: .75fr 1fr 1fr; align-items: center; gap: 54px; padding: 45px 0 35px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-message h3 { color: white; font-size: 1.12rem; letter-spacing: -.025em; }
.footer-message p { margin-top: 6px; font-size: .7rem; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; }
.newsletter-form input { border: 0; border-radius: 5px 0 0 5px; }
.newsletter-form button { border: 0; padding: 0 17px; color: white; background: var(--red); font-weight: 800; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px; padding: 36px 0; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-links h3 { margin-bottom: 8px; color: white; font-size: .78rem; letter-spacing: 0; }
.footer-links a, .footer-links p { font-size: .68rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.09); font-size: .62rem; }
.footer-bottom > span:last-child { display: flex; gap: 18px; }

/* Motion */
.hero-copy h1, .hero-copy > p, .hero-features { animation: hero-in .65s both ease-out; }
.hero-copy > p { animation-delay: .08s; }
.hero-features { animation-delay: .16s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero { min-height: 570px; background-position: 68% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(250,249,248,.99), rgba(250,249,248,.91) 45%, rgba(250,249,248,.34) 67%, rgba(250,249,248,.05) 92%); }
  .intro-layout { grid-template-columns: .95fr 1.05fr .9fr; gap: 18px; }
  .company-grid, .choice-grid { gap: 48px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 800px) {
  .section { padding: 74px 0; }
  .site-header { height: 70px; }
  .menu-toggle { position: relative; z-index: 3; display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 76px 16px auto; display: flex; max-height: 0; flex-direction: column; align-items: stretch; gap: 0; overflow: hidden; border: 1px solid #efe9eb; border-radius: 10px; background: white; box-shadow: var(--shadow-lg); opacity: 0; transition: .25s; }
  .main-nav.open { max-height: 350px; padding: 10px; opacity: 1; }
  .main-nav a { padding: 11px 13px; }
  .main-nav a.has-menu::before { display: none; }
  .hero-copy h1 { max-width: 490px; font-size: 3rem; }
  .intro-layout, .company-grid, .choice-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-section { background-position: 54% center; }
  .intro-layout { gap: 22px; padding-block: 55px; }
  .intro-spacer { display: none; }
  .intro-copy { max-width: 480px; }
  .intro-panel { max-width: 410px; justify-self: end; border: 1px solid rgba(255,255,255,.75); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
  .company-collage, .choice-image { max-width: 620px; width: 100%; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid article { min-height: auto; }
  .choice-grid { align-items: start; }
  .choice-image { height: 440px; }
  .contact-card { max-width: 620px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .newsletter-form { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .logo-frame-header { width: 99px; height: 49px; }
  .logo-frame-header img { left: -20px; top: -19px; width: 143px; }
  .hero { min-height: 580px; padding: 118px 0 50px; background-position: 62% center; }
  .hero::after { height: 90px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(250,249,248,.98), rgba(250,249,248,.88) 59%, rgba(250,249,248,.25)); }
  .hero-copy h1 { max-width: 345px; font-size: clamp(2.35rem, 11.5vw, 3rem); }
  .hero-copy > p { font-size: .77rem; }
  .hero-features { margin-top: 23px; }
  .hero-features article { min-width: 0; flex: 1; align-items: flex-start; gap: 7px; padding-inline: 12px; }
  .hero-features article:first-child { padding-left: 0; }
  .hero-features span { width: 38px; height: 38px; }
  .hero-features img { width: 21px; height: 21px; }
  .hero-features b { font-size: .59rem; }
  .intro-section { background-position: 57% center; }
  .intro-bg { background: linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.68) 50%, rgba(255,255,255,.32)); }
  .intro-layout { min-height: 760px; align-content: space-between; padding-block: 43px; }
  .intro-copy h2 { font-size: 2.25rem; }
  .intro-copy > p { max-width: 335px; font-size: .73rem; }
  .intro-panel { width: 100%; margin-top: 150px; padding: 23px; justify-self: stretch; }
  .company-section { padding-block: 66px 78px; }
  .company-grid { gap: 45px; }
  .company-collage { height: 320px; }
  .service-categories { padding-top: 66px; }
  .center-heading { margin-bottom: 31px; }
  .center-heading h2 { font-size: 1.9rem; }
  .photo-service-grid { max-width: 420px; grid-template-columns: 1fr; gap: 112px; padding-bottom: 92px; }
  .photo-service-image { height: 255px; }
  .photo-service-info { top: 210px; }
  .choice-section { padding-block: 68px 54px; }
  .choice-image { height: 390px; }
  .choice-cards { grid-template-columns: 1fr; }
  .contact-section { padding-block: 54px 84px; }
  .contact-card { padding: 24px 20px; }
  .contact-card h2, .location-copy h2 { font-size: 2rem; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .location-copy { padding-top: 28px; }
  .map-card, .map-card iframe { min-height: 300px; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-form { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* 2026 visual refresh: consistent scale, alignment and responsive rhythm */
:root {
  --red: #ee2039;
  --red-dark: #b50f25;
  --wine: #25070c;
  --ink: #181518;
  --copy: #5f5a5e;
  --mist: #f7f6f6;
  --container: 1180px;
  --radius: 18px;
  --shadow-sm: 0 16px 45px rgba(37, 7, 12, .09);
  --shadow-lg: 0 28px 80px rgba(37, 7, 12, .14);
}

body { font-size: 16px; line-height: 1.65; }
.container { width: min(calc(100% - 56px), var(--container)); }
.section { padding: 112px 0; }
.eyebrow { margin-bottom: 16px; font-size: .72rem; letter-spacing: .18em; }
.button { min-height: 52px; padding: 0 26px; }

/* Header */
.site-header { height: 80px; }
.nav-row { gap: 44px; }
.logo-frame-header { width: 116px; height: 59px; }
.logo-frame-header img { left: -23px; top: -22px; width: 168px; }
.main-nav { gap: 40px; }
.main-nav a { padding: 29px 0 25px; font-size: .86rem; }
.main-nav a.has-menu { margin-right: 0; }
.main-nav a.has-menu::before { display: none; }
.main-nav a::after { position: absolute; content: ""; left: 0; right: 100%; bottom: 17px; height: 2px; border-radius: 2px; background: var(--red); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

/* Hero */
.hero { min-height: 720px; padding: 174px 0 76px; background-position: center 44%; }
.hero .container, .site-header .container { width: min(calc(100% - 56px), var(--container)); }
.hero-overlay { background: linear-gradient(90deg, #faf9f8 0%, rgba(250,249,248,.96) 31%, rgba(250,249,248,.65) 48%, rgba(250,249,248,.08) 69%, transparent 100%); }
.hero::after { height: 110px; background: linear-gradient(transparent, rgba(37,7,12,.07)); }
.hero-copy h1 { max-width: 680px; font-size: clamp(3.7rem, 5.2vw, 5rem); line-height: 1.03; letter-spacing: -.045em; }
.hero-copy > p { max-width: 530px; margin-top: 22px; color: var(--copy); font-size: 1.05rem; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.hero-actions .button { box-shadow: 0 16px 35px rgba(238,32,57,.24); }
.hero-phone { display: flex; flex-direction: column; padding-left: 22px; border-left: 1px solid rgba(37,7,12,.18); line-height: 1.3; }
.hero-phone small { color: #7a7478; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-phone strong { margin-top: 4px; font-size: 1.05rem; }
.hero-features { gap: 0; margin-top: 38px; }
.hero-features article { min-width: 145px; flex-direction: row; align-items: center; gap: 12px; padding: 0 22px; }
.hero-features span { flex: 0 0 auto; width: 46px; height: 46px; }
.hero-features b { min-width: 0; font-size: .72rem; line-height: 1.25; text-align: left; }

/* Intro */
.intro-section { min-height: 650px; background-position: center 50%; }
.intro-bg { background: linear-gradient(90deg, #fff 0 25%, rgba(255,255,255,.85) 36%, rgba(255,255,255,.02) 56%, rgba(255,255,255,.35) 73%, rgba(255,255,255,.94) 100%); }
.intro-layout { min-height: 650px; grid-template-columns: 1fr 1.25fr .9fr; gap: 44px; padding-block: 72px; }
.intro-copy { padding: 0; }
.intro-copy h2 { font-size: clamp(2.8rem, 3.6vw, 3.6rem); }
.intro-copy > p { max-width: 390px; margin-top: 22px; color: var(--copy); font-size: .9rem; line-height: 1.65; }
.service-list { gap: 11px; margin-top: 24px; font-size: .82rem; }
.intro-panel { padding: 32px; border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius); background: rgba(255,255,255,.88); box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.experience-badge { margin-bottom: 24px; border-radius: 8px; }
.intro-panel h3 { font-size: 1.6rem; }
.intro-panel > p { margin-top: 14px; color: var(--copy); font-size: .82rem; line-height: 1.6; }
.phone-card { margin-top: 22px; font-size: 1.1rem; }
.panel-brand { margin-top: 18px; }

/* About and services */
.about-banner { min-height: 150px; }
.about-banner h2 { font-size: 2.1rem; }
.company-section { padding: 110px 0 118px; }
.company-grid { grid-template-columns: .88fr 1.12fr; gap: 110px; }
.company-copy { gap: 20px; font-size: .94rem; line-height: 1.7; }
.company-collage { height: 430px; }
.service-categories { padding-top: 120px; }
.center-heading { max-width: 850px; margin-bottom: 48px; }
.center-heading h2 { font-size: clamp(2.35rem, 3.5vw, 3.3rem); }
.category-grid { gap: 22px; }
.category-grid article { min-height: 265px; padding: 42px 32px; border-radius: 14px; text-align: left; }
.category-grid article::after { inset: 12px; border-radius: 9px; }
.category-grid img { width: 48px; height: 48px; margin: 0 0 24px; }
.category-grid h3 { font-size: 1.25rem; }
.category-grid p { max-width: none; margin-top: 13px; font-size: .82rem; line-height: 1.6; }
.photo-service-grid { max-width: none; gap: 28px; margin-top: 36px; padding-bottom: 75px; }
.photo-service-image { height: 390px; border-radius: 16px; }
.photo-service-info { left: 28px; right: 28px; top: 300px; min-height: 230px; padding: 30px 32px 26px; border-radius: 12px; }
.photo-service-info h3 { font-size: 1.25rem; }
.photo-service-info ul { margin-top: 14px; font-size: .76rem; line-height: 1.55; columns: 2; column-gap: 25px; }
.service-card-icon { right: 24px; top: -27px; width: 54px; height: 54px; border-radius: 12px; }

/* Why choose */
.contact-ribbon { min-height: 52px; gap: 14px; font-size: .72rem; }
.choice-section { padding: 118px 0; }
.choice-grid { max-width: var(--container); grid-template-columns: .9fr 1.1fr; gap: 80px; }
.choice-image { height: 550px; border-radius: var(--radius); }
.choice-lead { max-width: 650px; margin: 7px 0 32px; font-size: 1.12rem; line-height: 1.55; }
.choice-cards { gap: 16px; }
.choice-cards article { min-height: 150px; grid-template-columns: 36px 1fr; padding: 24px; border-radius: 12px; }
.choice-cards article > span { font-size: 1.25rem; }
.choice-cards h3 { font-size: .92rem; }
.choice-cards p { margin-top: 9px; font-size: .72rem; line-height: 1.5; }

/* Contact */
.contact-section { padding: 110px 0 130px; background: #f8f7f7; }
.contact-grid { max-width: var(--container); grid-template-columns: 1.06fr .94fr; gap: 70px; }
.contact-card { padding: 42px; border-radius: var(--radius); }
.contact-card h2, .location-copy h2 { font-size: clamp(2.25rem, 3vw, 3rem); }
.contact-form { gap: 16px; margin-top: 28px; }
.contact-form label { gap: 7px; }
.contact-form label > span { font-size: .72rem; }
input { height: 46px; padding: 0 14px; }
textarea { min-height: 120px; padding: 14px; }
.contact-form .button { min-height: 48px; font-size: .8rem; }
.location-copy { padding-top: 40px; }
.location-copy > p:not(.eyebrow) { margin: 22px 0 32px; font-size: .92rem; }
.map-card, .map-card iframe { height: 365px; }
.map-card {
  border-radius: var(--radius);
  background-color: #e9f0ec;
  background-image:
    linear-gradient(32deg, transparent 48%, rgba(255,255,255,.72) 49% 51%, transparent 52%),
    linear-gradient(122deg, transparent 44%, rgba(255,255,255,.55) 45% 47%, transparent 48%),
    radial-gradient(circle at 64% 34%, rgba(238,32,57,.12), transparent 32%);
  background-size: 96px 96px, 130px 130px, 100% 100%;
}
.map-location { position: absolute; z-index: 2; left: 22px; bottom: 22px; display: flex; align-items: center; gap: 12px; max-width: calc(100% - 150px); padding: 14px 17px; border: 1px solid rgba(255,255,255,.78); border-radius: 12px; background: rgba(255,255,255,.93); box-shadow: 0 9px 25px rgba(25,23,24,.14); backdrop-filter: blur(9px); }
.map-location > span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; background: var(--red); font-size: .72rem; box-shadow: 0 6px 14px rgba(238,32,57,.24); }
.map-location div { display: flex; min-width: 0; flex-direction: column; line-height: 1.35; }
.map-location strong { font-size: .78rem; }
.map-location small { margin-top: 3px; overflow: hidden; color: #777176; font-size: .63rem; text-overflow: ellipsis; white-space: nowrap; }

/* Footer */
.footer-main { grid-template-columns: .72fr 1fr 1.15fr; gap: 64px; padding: 58px 0 44px; }
.footer-message h3 { font-size: 1.35rem; }
.footer-message p { font-size: .78rem; }
.newsletter-form input { height: 46px; }
.footer-links { gap: 70px; padding: 48px 0; }
.footer-links h3 { font-size: .88rem; }
.footer-links a, .footer-links p { font-size: .76rem; }
.footer-bottom { padding: 22px 0; font-size: .7rem; }

@media (max-width: 980px) {
  .hero { min-height: 680px; background-position: 62% center; }
  .hero-copy h1 { max-width: 570px; font-size: 3.7rem; }
  .intro-layout { grid-template-columns: 1fr .7fr 1fr; gap: 25px; }
  .company-grid, .choice-grid { gap: 55px; }
  .photo-service-info ul { columns: 1; }
  .contact-grid { gap: 38px; }
}

@media (max-width: 800px) {
  .site-header { height: 72px; }
  .section { padding: 82px 0; }
  .main-nav { inset: 80px 20px auto; }
  .main-nav a::after { display: none; }
  .hero { min-height: 700px; padding-top: 138px; }
  .hero-copy h1 { font-size: 3.25rem; }
  .intro-section { background-position: 38% center; }
  .intro-bg { background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.83) 53%, rgba(255,255,255,.3)); }
  .intro-layout { grid-template-columns: 1fr 1fr; align-items: end; }
  .intro-spacer { display: none; }
  .intro-panel { align-self: end; justify-self: stretch; }
  .company-grid, .choice-grid, .contact-grid { grid-template-columns: 1fr; }
  .company-collage { max-width: none; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid article { min-height: auto; }
  .photo-service-grid { grid-template-columns: 1fr; gap: 145px; max-width: 620px; }
  .choice-image { height: 500px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container, .hero .container, .site-header .container { width: min(calc(100% - 36px), var(--container)); }
  .logo-frame-header { width: 106px; height: 53px; }
  .logo-frame-header img { left: -21px; top: -20px; width: 153px; }
  .hero { min-height: 690px; padding: 116px 0 50px; background-position: 59% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(250,249,248,.99), rgba(250,249,248,.91) 60%, rgba(250,249,248,.3)); }
  .hero-copy h1 { max-width: 340px; font-size: clamp(2.55rem, 12vw, 3.15rem); line-height: 1.02; }
  .hero-copy > p { max-width: 325px; margin-top: 18px; font-size: .9rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 24px; }
  .hero-actions .button { min-height: 48px; }
  .hero-phone { padding-left: 0; border-left: 0; }
  .hero-features { margin-top: 28px; }
  .hero-features article { flex-direction: column; align-items: flex-start; gap: 8px; padding-inline: 10px; }
  .hero-features span { width: 39px; height: 39px; }
  .hero-features b { font-size: .62rem; }
  .intro-section { min-height: 0; background-position: 43% center; }
  .intro-layout { min-height: 0; grid-template-columns: 1fr; align-content: start; gap: 260px; padding-block: 58px; }
  .intro-copy h2 { font-size: 2.55rem; }
  .intro-copy > p { font-size: .86rem; }
  .intro-panel { margin-top: 0; padding: 26px; }
  .about-banner { min-height: 120px; }
  .about-banner h2 { font-size: 1.65rem; }
  .company-section { padding-block: 76px 88px; }
  .company-grid { gap: 52px; }
  .company-copy { font-size: .88rem; }
  .company-collage { height: 340px; }
  .service-categories { padding-top: 84px; }
  .center-heading h2 { font-size: 2.15rem; }
  .category-grid article { padding: 34px 28px; }
  .photo-service-grid { gap: 150px; padding-bottom: 105px; }
  .photo-service-image { height: 300px; }
  .photo-service-info { left: 14px; right: 14px; top: 235px; min-height: 245px; padding: 28px 24px 22px; }
  .photo-service-info ul { font-size: .72rem; }
  .choice-section { padding-block: 82px; }
  .choice-image { height: 390px; }
  .choice-lead { font-size: 1rem; }
  .choice-cards { grid-template-columns: 1fr; }
  .choice-cards article { min-height: 132px; }
  .contact-section { padding-block: 76px 90px; }
  .contact-card { padding: 28px 22px; }
  .contact-card h2, .location-copy h2 { font-size: 2.15rem; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
  .location-copy { padding-top: 20px; }
  .map-card, .map-card iframe { height: 330px; }
  .map-location { left: 14px; bottom: 14px; max-width: calc(100% - 28px); }
  .map-link { top: 12px; bottom: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { gap: 34px 24px; }
}
