:root {
  --ink: #101111;
  --ink-soft: #1a1b1b;
  --paper: #f4f0e8;
  --cream: #e9e2d5;
  --white: #fffdf8;
  --red: #dc1f2e;
  --red-dark: #b50d1c;
  --muted: #797773;
  --line: rgba(16, 17, 17, 0.14);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --shell: min(1280px, calc(100% - 64px));
  --header: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--red); color: white; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; background: var(--red); color: white; padding: 12px 18px; transition: top .2s; }
.skip-link:focus { top: 20px; }
.page-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 140px 0; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header); color: white; border-bottom: 1px solid rgba(255,255,255,.17); transition: background .25s, height .25s, box-shadow .25s; }
.site-header.scrolled, .site-header.inner-header { background: rgba(12,13,13,.96); backdrop-filter: blur(14px); height: 72px; box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.header-shell { width: var(--shell); height: 100%; margin: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 42px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-symbol { position: relative; width: 41px; height: 25px; border-top: 3px solid var(--red); border-radius: 50% 50% 0 0; }
.brand-symbol::before, .brand-symbol::after { content: ""; position: absolute; top: 7px; width: 7px; height: 7px; border: 2px solid currentColor; border-radius: 50%; }
.brand-symbol::before { left: 4px; } .brand-symbol::after { right: 4px; }
.brand-symbol i { position: absolute; inset: 2px 9px auto; height: 9px; border-top: 2px solid currentColor; transform: skew(-20deg); }
.brand-name { display: grid; line-height: 1; text-transform: uppercase; }
.brand-name strong { font-size: 14px; letter-spacing: .16em; }
.brand-name small { margin-top: 5px; color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .35em; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 29px; }
.main-nav a { position: relative; font-size: 11px; font-weight: 600; letter-spacing: .055em; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--red); transition: right .2s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 18px; border-left: 1px solid rgba(255,255,255,.25); padding-left: 28px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.header-cta span { color: var(--red); font-size: 18px; }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 6px; background: currentColor; }

.hero { position: relative; min-height: 800px; height: 100svh; color: white; background: #090a0a; overflow: hidden; }
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; filter: saturate(.7) contrast(1.08); transform: scale(1.015); animation: heroIn 1.7s cubic-bezier(.2,.8,.2,1) both; }
.hero-shade { background: linear-gradient(90deg, rgba(5,6,6,.92) 0%, rgba(5,6,6,.77) 37%, rgba(5,6,6,.14) 74%), linear-gradient(0deg, rgba(5,6,6,.66), transparent 48%); }
.hero-grid { opacity: .15; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 10vw 100%, 100% 10vw; mask-image: linear-gradient(90deg, black, transparent 65%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 1fr 310px; align-items: center; padding-top: 70px; }
.hero-copy { max-width: 790px; }
.kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.kicker > span { width: 31px; height: 1px; background: currentColor; }
.kicker-light { color: #f1c5c8; }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
h1 { max-width: 760px; font-size: clamp(4.4rem, 7.3vw, 7.5rem); }
h1 em, h2 em { color: var(--red); font-weight: 500; }
.hero-lead { max-width: 650px; margin: 31px 0 39px; color: rgba(255,255,255,.73); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 37px; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 0 25px; border: 1px solid transparent; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-red { background: var(--red); color: white; }
.button-red:hover { background: var(--red-dark); }
.button-outline { border-color: rgba(255,255,255,.45); color: white; }
.button-outline:hover { border-color: white; }
.text-link { display: inline-flex; gap: 18px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.text-link.light { color: rgba(255,255,255,.85); }
.hero-proof { align-self: end; margin-bottom: 122px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 17px; padding: 20px 0 20px 20px; border-left: 2px solid var(--red); background: linear-gradient(90deg, rgba(5,6,6,.65), transparent); }
.proof-number { font-family: var(--display); font-size: 40px; }
.hero-proof div { display: grid; gap: 5px; }
.hero-proof strong { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.hero-proof small { color: rgba(255,255,255,.55); font-size: 10px; }
.hero-proof > a { color: var(--red); font-size: 20px; }
.hero-footer { position: absolute; z-index: 2; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }

.statement-grid { display: grid; grid-template-columns: 200px 1fr; gap: 7vw; }
.section-index { display: flex; align-items: flex-start; gap: 21px; color: var(--muted); }
.section-index span { font-family: var(--display); font-size: 60px; line-height: 1; color: rgba(16,17,17,.16); }
.section-index p { margin: 8px 0 0; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }
.statement-copy h2, .section-top h2, .operation-copy h2, .location-heading h2 { max-width: 930px; font-size: clamp(3.3rem, 5.1vw, 5.4rem); }
.statement-body { max-width: 880px; margin: 55px 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; color: #555450; font-size: 15px; line-height: 1.82; }
.statement-body p { margin: 0; }
.statement-body strong { color: var(--ink); }

.services { background: var(--ink); color: white; }
.section-top { display: grid; grid-template-columns: 1fr 330px; gap: 80px; align-items: end; margin-bottom: 80px; }
.section-top > p { margin: 0 0 7px; color: rgba(255,255,255,.52); font-size: 14px; line-height: 1.75; }
.service-list { border-top: 1px solid rgba(255,255,255,.14); }
.service-item { min-height: 185px; display: grid; grid-template-columns: 50px 115px 1fr 40px; align-items: center; gap: 36px; border-bottom: 1px solid rgba(255,255,255,.14); transition: background .3s, padding .3s; }
.service-item:hover { padding-inline: 20px; background: rgba(255,255,255,.035); }
.service-count { align-self: start; margin-top: 30px; color: var(--red); font-size: 10px; }
.service-icon { width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.service-icon svg { width: 47px; fill: none; stroke: #e5e0d7; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-item > div:nth-child(3) { display: grid; grid-template-columns: minmax(300px, .9fr) 1fr; align-items: center; gap: 70px; }
.service-item h3 { margin: 0; font-family: var(--display); font-size: 30px; font-weight: 600; }
.service-item p { max-width: 540px; margin: 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.75; }
.service-arrow { color: var(--red); font-size: 20px; }

.operation { overflow: hidden; }
.operation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: center; }
.operation-visual { position: relative; min-height: 680px; }
.photo-main { width: 80%; height: 590px; overflow: hidden; }
.photo-main img, .photo-small img { width: 100%; height: 100%; object-fit: cover; }
.photo-small { position: absolute; right: 0; bottom: 0; width: 41%; height: 300px; padding: 11px; background: var(--paper); }
.photo-tag { position: absolute; top: 43px; right: 8px; width: 135px; height: 135px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: white; text-align: center; font-family: var(--display); font-style: italic; font-size: 15px; transform: rotate(8deg); }
.operation-copy > p:not(.kicker) { max-width: 590px; margin: 33px 0 44px; color: #5e5c58; line-height: 1.8; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.pillars > div { padding: 27px 24px 25px 0; border-bottom: 1px solid var(--line); }
.pillars > div:nth-child(odd) { border-right: 1px solid var(--line); }
.pillars > div:nth-child(even) { padding-left: 30px; }
.pillars span { color: var(--red); font-size: 9px; }
.pillars strong { display: block; margin: 11px 0 7px; font-family: var(--display); font-size: 21px; }
.pillars p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.iso-teaser { position: relative; overflow: hidden; background: var(--red); color: white; }
.iso-watermark { position: absolute; left: -4vw; bottom: -13vw; color: rgba(0,0,0,.08); font-family: var(--display); font-size: 37vw; font-weight: 600; line-height: 1; }
.iso-grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 11vw; align-items: center; }
.iso-seal { justify-self: center; width: 330px; height: 330px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; box-shadow: 0 0 0 24px rgba(255,255,255,.07), 0 0 0 25px rgba(255,255,255,.18); }
.iso-seal span { font-size: 26px; letter-spacing: .35em; transform: translateX(.18em); }
.iso-seal strong { font-family: var(--display); font-size: 97px; line-height: .95; }
.iso-seal small { font-size: 16px; letter-spacing: .3em; transform: translateX(.15em); }
.iso-copy .kicker { color: white; }
.iso-copy h2 { max-width: 600px; font-size: clamp(3.6rem, 5vw, 5.6rem); }
.iso-copy h2::first-line { color: inherit; }
.iso-copy > p:not(.kicker) { max-width: 590px; margin: 30px 0 36px; color: rgba(255,255,255,.77); line-height: 1.8; }
.iso-data { display: flex; gap: 55px; margin-bottom: 40px; }
.iso-data div { display: grid; gap: 8px; }
.iso-data span { color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.iso-data strong { font-size: 14px; letter-spacing: .08em; }

.locations .section-top > p, .location-heading > p { color: var(--muted); }
.location-layout { display: grid; grid-template-columns: 43% 57%; min-height: 610px; border: 1px solid var(--line); }
.location-list { display: grid; }
.location-card { width: 100%; display: grid; grid-template-columns: 38px 1fr auto; gap: 20px; align-items: center; padding: 27px 31px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background .2s, color .2s; }
.location-card:last-child { border-bottom: 0; }
.location-card > span { color: var(--red); font-size: 9px; align-self: start; }
.location-card strong { display: block; margin-bottom: 10px; font-family: var(--display); font-size: 20px; }
.location-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.location-card i { color: var(--red); font-style: normal; }
.location-card.active { background: var(--ink); color: white; }
.location-card.active p { color: rgba(255,255,255,.5); }
.map-wrap { position: relative; min-height: 610px; background: #dedbd4; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 610px; border: 0; filter: grayscale(1) contrast(.9); }
.map-wrap > a { position: absolute; right: 22px; bottom: 22px; display: flex; gap: 16px; align-items: center; padding: 16px 20px; background: var(--red); color: white; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

.gallery-section { background: var(--ink-soft); color: white; overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 280px 280px; gap: 14px; }
.gallery-grid a { position: relative; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .7s, filter .5s; }
.gallery-grid a:hover img { transform: scale(1.045); filter: saturate(1); }
.gallery-grid a > span { position: absolute; inset: auto 17px 17px; display: flex; justify-content: space-between; padding: 14px 16px; background: rgba(8,9,9,.78); backdrop-filter: blur(7px); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.gallery-grid i { color: var(--red); font-style: normal; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 10px; }
.gallery-strip img { width: 100%; height: 110px; object-fit: cover; opacity: .52; transition: opacity .2s; }
.gallery-strip img:hover { opacity: 1; }

.contact { position: relative; overflow: hidden; background: #0c0d0d; color: white; }
.contact-arc { position: absolute; right: -25vw; top: -20vw; width: 70vw; height: 70vw; border: 1px solid rgba(220,31,46,.2); border-radius: 50%; box-shadow: 0 0 0 10vw rgba(220,31,46,.025), 0 0 0 20vw rgba(220,31,46,.018); }
.contact-grid { position: relative; display: grid; grid-template-columns: .84fr 1.16fr; gap: 9vw; }
.contact-copy h2 { max-width: 520px; font-size: clamp(3.6rem, 5.2vw, 5.8rem); }
.contact-copy > p:not(.kicker) { max-width: 510px; margin: 34px 0 50px; color: rgba(255,255,255,.55); line-height: 1.8; }
.direct-contact { display: grid; gap: 9px; }
.direct-contact span { margin-bottom: 7px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.direct-contact a { width: max-content; font-family: var(--display); font-size: 20px; border-bottom: 1px solid rgba(255,255,255,.23); }
.contact-form { display: grid; gap: 25px; padding: 48px; background: var(--white); color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.contact-form label { display: grid; gap: 9px; }
.contact-form label > span:first-child { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid rgba(16,17,17,.25); border-radius: 0; background: transparent; padding: 10px 0 13px; outline: 0; color: var(--ink); font-size: 12px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--red); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aaa69f; }
.hidden-field { position: absolute; left: -9999px; }
.contact-form .consent { grid-template-columns: 17px 1fr; align-items: start; color: #706e69; font-size: 9px; line-height: 1.6; }
.contact-form .consent input { width: 14px; margin-top: 2px; accent-color: var(--red); }
.contact-form .consent a { color: var(--ink); text-decoration: underline; }
.form-submit { justify-self: start; border: 0; cursor: pointer; }

.site-footer { background: #070808; color: white; }
.footer-top { min-height: 175px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-brand { color: white; }
.footer-top > p { max-width: 300px; margin: 0; color: rgba(255,255,255,.42); font-family: var(--display); font-style: italic; font-size: 19px; }
.back-top { color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 70px; padding: 65px 0; }
.footer-main > div { display: grid; align-content: start; justify-items: start; gap: 11px; }
.footer-main span { margin-bottom: 10px; color: var(--red); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-main a, .footer-main p { margin: 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.7; }
.footer-main a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.28); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.lightbox { width: min(1000px, 92vw); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.lightbox img { max-height: 86vh; width: 100%; object-fit: contain; }
.lightbox button { position: absolute; top: -45px; right: 0; border: 0; background: none; color: white; font-size: 32px; cursor: pointer; }

.inner-main { padding-top: 72px; }
.inner-hero { position: relative; min-height: 700px; display: grid; align-items: center; overflow: hidden; background: var(--ink); color: white; }
.inner-hero::before { content: "9001"; position: absolute; right: -3vw; bottom: -10vw; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 39vw; line-height: 1; }
.inner-hero .page-shell { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 970px; }
.inner-hero p:last-child { max-width: 650px; margin-top: 32px; color: rgba(255,255,255,.58); line-height: 1.8; }
.breadcrumb { margin-bottom: 60px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.breadcrumb a { color: white; }
.cert-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.cert-sidebar { position: sticky; top: 110px; align-self: start; padding: 38px; background: var(--red); color: white; }
.cert-sidebar strong { display: block; font-family: var(--display); font-size: 38px; }
.cert-sidebar dl { margin: 32px 0 0; }
.cert-sidebar div { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.3); }
.cert-sidebar dt { color: rgba(255,255,255,.6); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.cert-sidebar dd { margin: 8px 0 0; font-size: 12px; }
.cert-copy h2 { font-size: clamp(3.2rem, 4.7vw, 5rem); }
.cert-copy > p { color: #5f5d59; line-height: 1.85; }
.cert-copy h3 { margin: 50px 0 18px; font-family: var(--display); font-size: 28px; }
.quality-principles { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 35px; background: var(--line); border: 1px solid var(--line); }
.quality-principles div { padding: 30px; background: var(--paper); }
.quality-principles span { color: var(--red); font-size: 9px; }
.quality-principles strong { display: block; margin: 12px 0 8px; font-family: var(--display); font-size: 21px; }
.quality-principles p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.legal-page { min-height: 70vh; padding: 150px 0 110px; }
.legal-copy { max-width: 850px; }
.legal-copy h1 { color: var(--ink); font-size: clamp(3.4rem, 6vw, 6rem); }
.legal-copy h2 { margin-top: 50px; font-size: 28px; }
.legal-copy p, .legal-copy li { color: #5e5c57; line-height: 1.8; }
.thanks { min-height: 100vh; display: grid; place-items: center; padding: 100px 0; background: var(--ink); color: white; text-align: center; }
.thanks .brand { margin: 0 auto 60px; }
.thanks h1 { max-width: 800px; font-size: clamp(4rem, 8vw, 8rem); }
.thanks p { max-width: 540px; margin: 30px auto; color: rgba(255,255,255,.56); line-height: 1.8; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; } .delay-2 { transition-delay: .24s; }
@keyframes heroIn { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 44px, 1100px); }
  .main-nav { gap: 18px; }
  .header-cta { display: none; }
  .header-shell { grid-template-columns: auto 1fr; }
  .hero-content { grid-template-columns: 1fr 250px; }
  .service-item > div:nth-child(3) { gap: 30px; }
  .operation-grid { gap: 6vw; }
  .contact-grid { gap: 5vw; }
}

@media (max-width: 960px) {
  :root { --header: 72px; }
  .section-pad { padding: 100px 0; }
  .header-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 72px 0 0; display: grid; place-content: center; gap: 0; background: #0a0b0b; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 14px; font-family: var(--display); font-size: 28px; text-align: center; }
  .hero { min-height: 720px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-proof { display: none; }
  .statement-grid { grid-template-columns: 1fr; }
  .section-index { display: none; }
  .service-item { grid-template-columns: 35px 90px 1fr 20px; gap: 20px; }
  .service-item > div:nth-child(3) { grid-template-columns: 1fr; gap: 12px; }
  .operation-grid, .iso-grid, .contact-grid, .cert-content { grid-template-columns: 1fr; }
  .operation-copy { max-width: 700px; }
  .iso-grid { gap: 80px; }
  .iso-seal { width: 260px; height: 260px; justify-self: start; }
  .iso-seal strong { font-size: 75px; }
  .location-layout { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: 1fr 1fr; }
  .location-card:nth-child(3) { border-bottom: 0; }
  .map-wrap, .map-wrap iframe { min-height: 470px; }
  .cert-sidebar { position: static; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); }
  .section-pad { padding: 78px 0; }
  .hero { min-height: 700px; height: 100svh; }
  .hero-media img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,6,6,.92), rgba(5,6,6,.52)), linear-gradient(0deg, rgba(5,6,6,.8), transparent 60%); }
  h1 { font-size: clamp(3.8rem, 17vw, 5.1rem); }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 28px; }
  .hero-footer p:last-child { display: none; }
  .statement-copy h2, .section-top h2, .operation-copy h2, .location-heading h2, .iso-copy h2, .contact-copy h2 { font-size: clamp(3rem, 13vw, 4.1rem); }
  .statement-body, .section-top { grid-template-columns: 1fr; gap: 25px; }
  .section-top { margin-bottom: 50px; }
  .service-item { grid-template-columns: 28px 1fr 18px; padding: 30px 0; }
  .service-icon { display: none; }
  .service-item > div:nth-child(3) { display: block; }
  .service-item h3 { font-size: 23px; }
  .service-item p { margin-top: 12px; }
  .service-count { margin-top: 4px; }
  .operation-visual { min-height: 500px; }
  .photo-main { height: 450px; }
  .photo-small { height: 210px; }
  .photo-tag { width: 100px; height: 100px; right: 0; font-size: 12px; }
  .pillars { grid-template-columns: 1fr; }
  .pillars > div:nth-child(odd) { border-right: 0; }
  .pillars > div:nth-child(even) { padding-left: 0; }
  .iso-seal { width: 210px; height: 210px; }
  .iso-seal strong { font-size: 62px; }
  .iso-data { gap: 25px; }
  .location-list { grid-template-columns: 1fr; }
  .location-card:nth-child(3) { border-bottom: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 220px 220px; }
  .gallery-tall { grid-row: auto; grid-column: span 2; }
  .gallery-wide { grid-column: span 2; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip img { height: 85px; }
  .contact-form { padding: 28px 21px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 50px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-main > div:last-child { grid-column: span 2; }
  .footer-bottom { display: grid; gap: 8px; }
  .quality-principles { grid-template-columns: 1fr; }
  .inner-hero { min-height: 650px; }
}

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