:root {
  --coral: #ff654c;
  --lime: #9bd36a;
  --sky: #57bee5;
  --sun: #ffc447;
  --ink: #252729;
  --muted: #6f7275;
  --line: #dcdedb;
  --paper: #f5f4ef;
  --white: #fff;
  --container: 1180px;
  --shadow: 0 16px 40px rgb(37 39 41 / 12%);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
p, h1, h2, h3, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: 10px; z-index: 1000; padding: 10px 16px; background: var(--ink); color: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
[hidden] { display: none !important; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow .icon { width: 18px; height: 18px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--ink); padding: 11px 18px; font-size: .91rem; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--coral); border-color: var(--coral); color: var(--white); }
.button--primary:hover { background: #e94e38; }
.button--ghost { background: transparent; color: var(--ink); }
.button--ghost:hover { background: var(--ink); color: var(--white); }
.button--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button--dark:hover { background: #000; }
.button--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: .9rem; }
.text-link .icon { width: 18px; transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

/* Header */
.utility-bar { background: var(--ink); color: #e4e5e2; font-size: .75rem; }
.utility-inner { min-height: 34px; display: flex; align-items: center; gap: 24px; }
.utility-inner > span { display: flex; align-items: center; gap: 7px; }
.utility-inner .icon { color: var(--sun); }
.utility-links { margin-left: auto; display: flex; gap: 22px; }
.utility-links a:hover { color: var(--white); }
.brand-row { min-height: 94px; display: grid; grid-template-columns: 245px 170px 1fr auto; align-items: center; gap: 24px; }
.brand { display: block; }
.brand img { width: 235px; height: auto; }
.brand > span { display: block; margin-top: -2px; color: var(--muted); font-size: .66rem; letter-spacing: .055em; text-transform: uppercase; }
.header-contact { display: grid; }
.header-contact > span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.header-contact a { font-weight: 850; font-size: .96rem; white-space: nowrap; }
.header-contact small { color: var(--muted); font-size: .7rem; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(15px, 2vw, 28px); }
.main-nav a { position: relative; font-size: .86rem; font-weight: 750; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--coral); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.header-cta { white-space: nowrap; }
.menu-toggle, .icon-button { min-width: 46px; min-height: 46px; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }
.icon-button { display: inline-flex; }

.category-nav { position: relative; z-index: 60; border-block: 1px solid var(--line); background: var(--white); }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.category-item { position: static; border-left: 1px solid var(--line); }
.category-item:last-child { border-right: 1px solid var(--line); }
.category-link { min-height: 66px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; padding: 8px 14px; font-size: .82rem; font-weight: 820; position: relative; }
.category-link::after { content: ""; position: absolute; height: 4px; left: -1px; right: -1px; bottom: -1px; background: var(--category); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.category-link:hover::after, .category-item.is-open .category-link::after, .category-item:focus-within .category-link::after { transform: scaleX(1); }
.category-icon { width: 34px; height: 34px; display: grid; place-items: center; background: color-mix(in srgb, var(--category) 20%, white); color: var(--ink); }
.category-count { color: var(--muted); font-size: .66rem; }
.mega-panel { position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .16s ease, transform .16s ease, visibility .16s; }
.category-item:hover .mega-panel, .category-item:focus-within .mega-panel, .category-item.is-open .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: 260px 1fr; gap: 45px; padding-block: 26px 32px; }
.mega-heading { border-left: 5px solid var(--category); padding-left: 20px; display: flex; flex-direction: column; align-items: flex-start; }
.mega-heading strong { font-size: 1.7rem; line-height: 1.1; margin: 5px 0 15px; }
.mega-heading a { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 800; }
.mega-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 22px; }
.service-link { min-height: 43px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); font-size: .86rem; font-weight: 700; }
.service-link:hover { color: #d94530; }
.service-link .icon { width: 16px; }

.mobile-drawer, .drawer-backdrop { display: none; }
.wordmark { font-size: 1.5rem; font-weight: 950; letter-spacing: -.04em; text-transform: uppercase; }
.wordmark--small { font-size: 1.1rem; }

/* Global sections */
.section { padding-block: 72px; }
.section-heading { margin-bottom: 32px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(260px, .75fr) auto; align-items: end; gap: 34px; }
.section-heading h2 { margin-top: 8px; max-width: 650px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: .98; letter-spacing: -.055em; }
.section-heading > p { color: var(--muted); max-width: 480px; }
.section-action { justify-self: end; }
.breadcrumbs { min-height: 45px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .75rem; }
.breadcrumbs a:hover { color: var(--ink); }
.page-intro { padding: 58px 0 62px; background: var(--paper); border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; }
.page-intro h1 { margin-top: 6px; font-size: clamp(3.3rem, 8vw, 6.4rem); line-height: .85; letter-spacing: -.075em; text-transform: uppercase; }
.page-intro p { max-width: 590px; font-size: 1.05rem; color: #575a5c; }
.page-intro--price { background: var(--sun); }
.page-intro--price .eyebrow, .page-intro--price p { color: #3e3524; }

/* Home hero */
.hero { min-height: 580px; display: flex; align-items: center; background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 58px; align-items: center; padding-block: 46px; }
.hero-eyebrow i { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgb(155 211 106 / 22%); }
.hero h1 { margin: 16px 0 22px; font-size: clamp(3.7rem, 6.2vw, 6.5rem); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 620px; color: #56595b; font-size: 1.08rem; }
.hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-facts { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfd1ce; }
.hero-facts > div { display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 15px 10px 0 0; }
.hero-facts dt { color: var(--coral); font-size: .7rem; font-weight: 900; }
.hero-facts dd { color: #505356; font-size: .78rem; line-height: 1.28; font-weight: 700; }
.hero-visual { position: relative; min-height: 490px; display: grid; grid-template-columns: 1.22fr .78fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.hero-image { position: relative; min-width: 0; overflow: hidden; background: #e5e5e5; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hero-image:hover img { transform: scale(1.035); }
.hero-image span { position: absolute; left: 12px; bottom: 12px; padding: 6px 9px; background: var(--white); font-size: .69rem; font-weight: 850; text-transform: uppercase; }
.hero-image--large { grid-row: 1 / 3; }
.hero-image--large span { background: var(--sun); }
.hero-image--top span { background: var(--coral); color: var(--white); }
.hero-image--bottom span { background: var(--lime); }
.hero-stamp { position: absolute; left: -34px; top: 44px; width: 103px; height: 103px; display: grid; place-content: center; text-align: center; color: var(--white); background: var(--ink); transform: rotate(-6deg); border: 4px solid var(--paper); }
.hero-stamp b, .hero-stamp span { font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-stamp strong { font-size: 1.45rem; line-height: 1; }

.section--categories { background: var(--white); }
.category-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { min-height: 265px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.category-card::before { content: ""; position: absolute; left: 0; top: 0; width: 6px; height: 100%; background: var(--category); transform: scaleY(.18); transform-origin: top; transition: transform .25s ease; }
.category-card:hover::before { transform: scaleY(1); }
.category-card__head { display: flex; justify-content: space-between; color: var(--muted); font-size: .7rem; text-transform: uppercase; font-weight: 850; letter-spacing: .08em; }
.category-card__head .icon { width: 28px; height: 28px; color: var(--ink); }
.category-card h3 { margin: 18px 0 15px; font-size: 1.65rem; line-height: 1; letter-spacing: -.04em; }
.category-card__links { display: flex; flex-wrap: wrap; gap: 5px 15px; }
.category-card__links a { color: var(--muted); font-size: .8rem; border-bottom: 1px solid transparent; }
.category-card__links a:hover { color: var(--ink); border-color: var(--category); }
.category-card__all { position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; font-weight: 850; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.services-grid--three { grid-template-columns: repeat(3, 1fr); }
.service-card { border: 1px solid var(--line); background: var(--white); min-width: 0; position: relative; transition: transform .22s ease, box-shadow .22s ease; }
.service-card::before { content: ""; position: absolute; left: -1px; top: -1px; width: calc(100% + 2px); height: 4px; background: var(--category); z-index: 1; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgb(37 39 41 / 11%); }
.service-card__image { display: block; aspect-ratio: 1.45; overflow: hidden; position: relative; background: var(--paper); }
.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.04); }
.service-card__image > span { position: absolute; top: 10px; right: 10px; min-width: 32px; height: 26px; display: grid; place-items: center; background: var(--white); font-size: .65rem; font-weight: 900; }
.service-card__body { padding: 18px 18px 20px; }
.service-card__group { color: var(--muted); font-size: .63rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.service-card h3 { margin: 6px 0 10px; font-size: 1.28rem; line-height: 1.05; letter-spacing: -.035em; }
.service-card p { min-height: 64px; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.service-card .text-link { margin-top: 18px; }

.section--works { background: var(--ink); color: var(--white); }
.section--works .eyebrow, .section--works .section-heading > p { color: #afb2b0; }
.work-strip { display: grid; grid-template-columns: 1.25fr .75fr 1fr 1fr; grid-template-rows: 210px 210px; gap: 8px; }
.work-tile { overflow: hidden; background: #36383a; }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .4s ease; }
.work-tile:hover img { transform: scale(1.04); }
.work-tile--0 { grid-row: span 2; }
.work-tile--3 { grid-column: 4; grid-row: span 2; }

.section--process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; }
.process-grid .section-heading { display: block; margin: 0; position: sticky; top: 24px; align-self: start; }
.process-grid .section-heading p { margin-top: 22px; }
.steps { list-style: none; border-top: 1px solid #cfd1ce; }
.steps li { display: grid; grid-template-columns: 65px 1fr; gap: 22px; padding: 23px 0; border-bottom: 1px solid #cfd1ce; }
.steps b { color: var(--coral); font-size: .72rem; }
.steps h3 { font-size: 1.25rem; letter-spacing: -.025em; }
.steps p { margin-top: 5px; color: var(--muted); font-size: .88rem; }

.section--price-teaser { background: var(--sun); }
.price-teaser { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.price-teaser h2 { margin: 10px 0 20px; font-size: clamp(2.4rem, 4.2vw, 4rem); line-height: .96; letter-spacing: -.06em; }
.price-teaser > div:first-child > p { max-width: 590px; }
.price-sample { background: var(--white); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); }
.price-sample__head { display: flex; justify-content: space-between; padding: 14px 18px; background: var(--ink); color: var(--white); font-size: .75rem; text-transform: uppercase; }
.price-sample ul { list-style: none; }
.price-sample li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: .86rem; }
.price-note { color: var(--muted); font-size: .72rem; }
.price-sample .price-note { padding: 14px 18px; }

.contact-band { background: var(--coral); color: var(--white); padding-block: 42px; }
.contact-band__grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 35px; }
.contact-band .eyebrow { color: #ffe1da; }
.contact-band h2 { margin-top: 6px; max-width: 550px; font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: .98; letter-spacing: -.05em; }
.contact-band__contacts { display: grid; gap: 9px; }
.contact-band__contacts a { display: flex; align-items: center; gap: 12px; }
.contact-band__contacts .icon { width: 25px; height: 25px; }
.contact-band__contacts span { display: grid; font-weight: 800; }
.contact-band__contacts small { color: #ffe1da; font-size: .66rem; font-weight: 650; text-transform: uppercase; }

/* Catalogue and service */
.section--catalog { padding-top: 42px; }
.catalog-group { scroll-margin-top: 20px; padding: 26px 0 62px; border-top: 1px solid var(--line); }
.catalog-group__head { margin-bottom: 24px; display: flex; align-items: center; gap: 18px; }
.catalog-group__head > .icon { width: 54px; height: 54px; padding: 13px; background: var(--category); }
.catalog-group__head span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.catalog-group__head h2 { font-size: 2.3rem; line-height: 1; letter-spacing: -.05em; }

.service-hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.service-hero__grid { min-height: 490px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: stretch; }
.service-hero__copy { padding: 50px 50px 50px 0; display: flex; flex-direction: column; justify-content: center; }
.service-hero__copy .eyebrow { color: var(--ink); }
.service-hero h1 { margin: 14px 0 22px; max-width: 720px; font-size: clamp(3.1rem, 6vw, 5.8rem); line-height: .88; letter-spacing: -.07em; }
.service-hero__copy > p { max-width: 580px; color: var(--muted); font-size: 1.03rem; }
.service-hero__media { position: relative; min-height: 490px; overflow: hidden; background: var(--category); }
.service-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.service-hero__media--double { display: grid; grid-template-columns: 1.25fr .75fr; gap: 6px; }
.service-hero__media--double img { min-height: 490px; }
.service-details { display: grid; grid-template-columns: 1fr .95fr; gap: 90px; align-items: start; }
.service-details h2 { margin: 10px 0 22px; max-width: 620px; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: .96; letter-spacing: -.055em; }
.service-details > div > p { max-width: 690px; margin-top: 13px; color: var(--muted); }
.fact-list { list-style: none; border-top: 1px solid var(--line); }
.fact-list li { min-height: 67px; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.fact-list b { color: var(--coral); font-size: .7rem; }
.fact-list span { font-weight: 750; }
.fact-list .icon { color: var(--lime); }
.availability-note { margin-top: 26px; padding: 16px; display: flex; gap: 12px; background: #fff4c9; border-left: 4px solid var(--sun); }
.availability-note p { margin: 0 !important; color: #5d4e25 !important; font-size: .86rem; }
.section--service-price { background: var(--paper); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 700px; font-size: .78rem; }
th, td { padding: 11px 12px; text-align: left; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
thead th { background: var(--ink); color: var(--white); font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; }
tbody th { min-width: 220px; }
tbody tr:nth-child(even) { background: #faf9f5; }
.section--service-price .price-note { margin-top: 13px; }

/* Gallery */
.section--gallery { padding-top: 38px; }
.filter-bar { margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter-bar button { min-height: 42px; padding: 8px 15px; border: 1px solid var(--line); background: var(--white); color: var(--ink); font-size: .8rem; font-weight: 800; }
.filter-bar button:hover, .filter-bar button.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; gap: 10px; }
.gallery-item { min-width: 0; position: relative; overflow: hidden; background: var(--paper); aspect-ratio: 1; }
.gallery-item--0, .gallery-item--7 { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption { position: absolute; left: 10px; bottom: 10px; padding: 5px 8px; background: var(--white); font-size: .65rem; font-weight: 850; text-transform: uppercase; }

/* Price */
.page-intro--price .button { margin-top: 22px; }
.section--price-list { padding-top: 36px; }
.price-accordion { border-top: 1px solid var(--ink); }
.price-accordion:last-child { border-bottom: 1px solid var(--ink); }
.price-accordion summary { min-height: 80px; display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 20px; cursor: pointer; list-style: none; }
.price-accordion summary::-webkit-details-marker { display: none; }
.price-accordion summary > span { color: var(--coral); font-size: .72rem; font-weight: 900; }
.price-accordion summary h2 { font-size: 1.7rem; letter-spacing: -.04em; }
.price-accordion summary b { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.price-accordion__body { padding: 0 0 24px 55px; }
.price-accordion .price-note { margin-top: 12px; }

/* Payment and contacts */
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.payment-grid article { min-height: 285px; padding: 24px; border-right: 1px solid var(--line); position: relative; }
.payment-grid article:last-child { border-right: 0; }
.payment-grid article > b { position: absolute; right: 20px; top: 18px; color: var(--muted); font-size: .68rem; }
.payment-grid article > .icon { width: 44px; height: 44px; padding: 10px; background: var(--sun); }
.payment-grid article:nth-child(2) > .icon { background: var(--sky); }
.payment-grid article:nth-child(3) > .icon { background: var(--lime); }
.payment-grid h2 { margin: 50px 0 10px; font-size: 1.7rem; }
.payment-grid p { color: var(--muted); }
.section--delivery { background: var(--paper); }
.delivery-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.delivery-grid img { width: 100%; max-height: 490px; object-fit: cover; object-position: top; border: 1px solid var(--line); }
.delivery-grid h2 { margin: 10px 0 20px; font-size: clamp(2.3rem, 4vw, 3.8rem); line-height: .96; letter-spacing: -.055em; }
.delivery-grid p { max-width: 620px; color: var(--muted); }
.delivery-grid .button { margin-top: 25px; }

.section--contact { padding-top: 40px; }
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 16px; }
.contact-card { border: 1px solid var(--line); }
.contact-card > div { display: grid; grid-template-columns: 32px 1fr; gap: 3px 15px; padding: 20px; border-bottom: 1px solid var(--line); }
.contact-card > div:last-child { border-bottom: 0; }
.contact-card .icon { grid-row: span 4; width: 28px; height: 28px; color: var(--coral); }
.contact-card span { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.contact-card strong, .contact-card a { font-weight: 800; }
.contact-card p { color: var(--muted); font-size: .78rem; margin-top: 4px; }
.map-card { position: relative; min-height: 530px; overflow: hidden; background: var(--paper); }
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.map-card .button { position: absolute; left: 16px; bottom: 16px; }
.section--legal { background: var(--ink); color: var(--white); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.legal-grid .eyebrow { color: #aeb1b0; }
.legal-grid h2 { margin-top: 8px; max-width: 620px; font-size: 2.3rem; line-height: 1; }
.legal-grid dl { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid #55585a; }
.legal-grid dl div { padding: 20px; border-right: 1px solid #55585a; }
.legal-grid dt { color: #aeb1b0; font-size: .7rem; text-transform: uppercase; }
.legal-grid dd { margin-top: 7px; font-weight: 850; }

/* Request */
.request-section { padding: 62px 0 76px; background: var(--paper); }
.request-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.request-copy { position: sticky; top: 24px; }
.request-copy h1 { margin: 12px 0 22px; font-size: clamp(3rem, 5vw, 5rem); line-height: .87; letter-spacing: -.07em; }
.request-copy > p { max-width: 520px; color: var(--muted); }
.request-copy ul { margin-top: 28px; display: grid; gap: 10px; list-style: none; }
.request-copy li { display: flex; align-items: center; gap: 10px; font-weight: 750; }
.request-copy li .icon { color: var(--lime); }
.request-fallback { margin-top: 34px; padding-top: 20px; border-top: 1px solid #cfd1ce; display: grid; align-items: start; }
.request-fallback span { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.request-fallback a { margin-top: 4px; font-size: 1.15rem; font-weight: 850; }
.request-form { padding: 28px; background: var(--white); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .75rem; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid #c7c9c7; border-radius: 0; background: var(--white); color: var(--ink); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); outline: 2px solid var(--sun); outline-offset: 1px; }
.form-note, .form-status { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; }
.form-submit { grid-column: 1 / -1; justify-self: start; }
.noscript-note { grid-column: 1 / -1; padding: 12px; background: #fff4c9; }

/* 404 */
.not-found { min-height: 590px; display: grid; align-items: center; background: var(--paper); overflow: hidden; }
.not-found__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.not-found h1 { margin: 12px 0 20px; font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: .85; letter-spacing: -.075em; }
.not-found p { max-width: 520px; color: var(--muted); }
.not-found__number { color: var(--coral); font-size: clamp(12rem, 27vw, 28rem); font-weight: 950; line-height: .7; letter-spacing: -.1em; transform: rotate(-6deg); }

/* Footer */
.site-footer { background: #18191a; color: var(--white); padding-top: 54px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-bottom: 46px; }
.footer-brand p { margin-top: 10px; max-width: 250px; color: #9fa2a1; font-size: .82rem; }
.footer-grid h2 { margin-bottom: 13px; color: #8e9190; font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-grid a, .footer-grid p { color: #d8d9d7; font-size: .82rem; }
.footer-grid a:hover { color: var(--sun); }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #383a3b; color: #8e9190; font-size: .7rem; }
.amg-credit { display: flex; align-items: center; gap: 8px; color: #d8d9d7; }
.amg-credit img { width: 24px; height: 24px; }
.amg-credit strong { color: var(--white); }

@media (max-width: 1080px) {
  .brand-row { grid-template-columns: 225px 1fr auto; }
  .header-contact { display: none; }
  .main-nav { justify-content: center; }
  .category-link { grid-template-columns: 32px 1fr; }
  .category-count { display: none; }
  .hero-grid { gap: 35px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .section-heading { grid-template-columns: 1fr .7fr; }
  .section-action { grid-column: 2; }
  .contact-band__grid { grid-template-columns: 1fr auto; }
  .contact-band .button { grid-column: 2; }
  .contact-band__contacts { grid-row: span 2; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-inner > span:first-child, .utility-links { display: none; }
  .utility-inner { justify-content: center; min-height: 30px; }
  .brand-row { min-height: 72px; grid-template-columns: 1fr auto auto; gap: 10px; }
  .brand img { width: 185px; }
  .brand > span { display: none; }
  .main-nav, .header-cta { display: none; }
  .js .menu-toggle { display: inline-flex; }
  .category-nav { display: none; }
  html:not(.js) .category-nav { display: block; overflow-x: auto; }
  html:not(.js) .category-grid { width: 850px; }
  html:not(.js) .mega-panel { display: none; }
  .mobile-drawer { display: flex; position: fixed; right: 0; top: 0; bottom: 0; z-index: 101; width: min(92vw, 430px); background: var(--white); flex-direction: column; transform: translateX(102%); visibility: hidden; transition: transform .24s ease, visibility .24s; }
  .mobile-drawer.is-open { transform: translateX(0); visibility: visible; }
  .drawer-backdrop { display: block; position: fixed; inset: 0; z-index: 100; background: rgb(0 0 0 / 55%); opacity: 0; transition: opacity .24s ease; }
  .drawer-backdrop.is-open { opacity: 1; }
  .drawer-head { min-height: 67px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .drawer-body { flex: 1; min-height: 0; overflow-y: auto; padding: 10px 14px 24px; }
  .drawer-main-link { min-height: 46px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-weight: 850; }
  .drawer-group { border-bottom: 1px solid var(--line); }
  .drawer-group summary { min-height: 54px; display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: center; list-style: none; font-weight: 850; }
  .drawer-group summary::-webkit-details-marker { display: none; }
  .drawer-group summary > .icon { padding: 5px; width: 28px; height: 28px; background: var(--category); }
  .drawer-group summary b { color: var(--muted); font-size: .68rem; }
  .drawer-submenu { padding: 0 0 10px 39px; }
  .drawer-contact { padding: 14px; background: var(--paper); display: grid; gap: 8px; }
  .drawer-contact > a, .drawer-contact > span { min-height: 44px; display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 750; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 38px; }
  .hero h1 { font-size: clamp(3.4rem, 13vw, 5.7rem); }
  .hero-visual { min-height: 440px; }
  .hero-stamp { left: auto; right: -8px; top: -20px; }
  .section { padding-block: 54px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 14px; }
  .section-action { margin-top: 16px; }
  .category-cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .services-grid--three { grid-template-columns: repeat(2, 1fr); }
  .work-strip { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 210px); }
  .work-tile--0, .work-tile--3 { grid-column: auto; grid-row: span 2; }
  .process-grid, .price-teaser, .intro-grid, .service-hero__grid, .service-details, .delivery-grid, .contact-layout, .legal-grid, .request-grid { grid-template-columns: 1fr; gap: 38px; }
  .process-grid .section-heading, .request-copy { position: static; }
  .price-sample { box-shadow: 7px 7px 0 var(--ink); }
  .contact-band__grid { grid-template-columns: 1fr; }
  .contact-band__contacts, .contact-band .button { grid-column: auto; grid-row: auto; }
  .page-intro { padding-block: 42px; }
  .page-intro h1 { font-size: clamp(3.4rem, 14vw, 6rem); }
  .service-hero__grid { min-height: 0; }
  .service-hero__copy { padding: 42px 0; }
  .service-hero__media { min-height: 420px; }
  .service-hero__media--double img { min-height: 420px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-grid { grid-template-columns: 1fr; }
  .payment-grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .payment-grid article:last-child { border-bottom: 0; }
  .map-card { min-height: 420px; }
  .request-form { padding: 20px; }
  .not-found__grid { grid-template-columns: 1fr; padding-block: 60px; }
  .not-found__number { position: absolute; right: -25px; opacity: .12; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand img { width: 166px; }
  .hero-grid { gap: 28px; padding-block: 30px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions .button { flex: 1 1 auto; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts > div:last-child { display: none; }
  .hero-visual { min-height: 340px; grid-template-columns: 1.25fr .75fr; }
  .section { padding-block: 46px; }
  .section-heading { margin-bottom: 24px; }
  .section-heading h2 { font-size: 2.25rem; }
  .category-cards, .services-grid, .services-grid--three { grid-template-columns: 1fr; }
  .category-card { min-height: 235px; }
  .service-card { display: grid; grid-template-columns: 118px 1fr; }
  .service-card__image { aspect-ratio: auto; }
  .service-card__body { padding: 16px; }
  .service-card p { min-height: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .service-card .text-link { margin-top: 12px; }
  .work-strip { grid-template-rows: repeat(4, 150px); }
  .price-teaser { gap: 38px; }
  .price-teaser h2 { font-size: 2.55rem; }
  .contact-band { padding-block: 34px; }
  .breadcrumbs { overflow-x: auto; white-space: nowrap; }
  .page-intro h1 { font-size: 3.75rem; }
  .service-hero h1 { font-size: 3.4rem; }
  .service-hero__media { min-height: 320px; }
  .service-hero__media--double { grid-template-columns: 1fr 1fr; }
  .service-hero__media--double img { min-height: 320px; }
  .service-details { gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--0, .gallery-item--7 { grid-column: span 2; grid-row: span 1; aspect-ratio: 2 / 1; }
  .price-accordion summary { grid-template-columns: 36px 1fr; gap: 10px; }
  .price-accordion summary b { display: none; }
  .price-accordion__body { padding-left: 0; }
  .delivery-grid img { max-height: 360px; }
  .legal-grid dl { grid-template-columns: 1fr; }
  .legal-grid dl div { border-bottom: 1px solid #55585a; }
  .request-form { grid-template-columns: 1fr; }
  .field, .field--full, .form-note, .form-status, .form-submit { grid-column: 1; }
  .request-copy h1 { font-size: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 18px; flex-direction: column; align-items: flex-start; }
  .amg-credit { flex-wrap: wrap; }
}

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