@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Barlow"; src: url("../fonts/barlow-latin-700-normal.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Oswald"; src: url("../fonts/oswald-latin-500-normal.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Oswald"; src: url("../fonts/oswald-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Libre Baskerville"; src: url("../fonts/libre-baskerville-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Libre Baskerville"; src: url("../fonts/libre-baskerville-latin-700-normal.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("../fonts/source-sans-3-latin-700-normal.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin-600-normal.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin-700-normal.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }

*, *::before, *::after { box-sizing: border-box; }

:root {
    --paper: #f4f1eb;
    --paper-deep: #e9e3d9;
    --ink-soft: #25292c;
    --silver: #aeb5b8;
    --muted: #6f7475;
    --line: rgba(22, 24, 26, .14);
    --white: #fff;
    --container: 1180px;
    --shadow: 0 30px 80px rgba(11, 13, 14, .14);
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body, "Barlow", "Segoe UI", Arial, sans-serif);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.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; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--white); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }
h1, h2 { font-family: var(--font-heading, Georgia, "Times New Roman", serif); font-weight: 500; letter-spacing: -.035em; }
h2 { margin-bottom: 0; font-size: clamp(2.6rem, 5vw, 5rem); }
h3 { margin-bottom: 12px; font-size: 1.25rem; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow > span { width: 40px; height: 1px; background: var(--accent); }
.eyebrow-light { color: rgba(255,255,255,.58); }
.section-heading { max-width: 760px; }
.section-heading-row { display: grid; grid-template-columns: 1.45fr .55fr; gap: 80px; align-items: end; max-width: none; margin-bottom: 70px; }
.section-heading-row > p, .product-heading > p { margin-bottom: 7px; color: var(--muted); }
.section-heading-row > p { max-width: 390px; }
.section-dark { overflow: hidden; background: var(--ink); color: var(--white); }
.section-dark .section-heading-row > p { color: rgba(255,255,255,.57); }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: rgba(18, 20, 21, .94); box-shadow: 0 12px 40px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark { display: block; width: 48px; height: 48px; flex: 0 0 48px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-family: var(--font-heading, Georgia, serif); font-size: 1.2rem; font-weight: 600; letter-spacing: .01em; }
.brand-copy small { color: rgba(255,255,255,.55); font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.site-nav > a { position: relative; padding: 12px 0; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.4); transition: background .2s, color .2s; }
.site-nav .nav-cta:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px 8px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; display: flex; min-height: max(860px, 104svh); height: auto; align-items: center; overflow: hidden; padding: 178px 0 96px; background: #17191a; color: var(--white); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,10,.80) 0%, rgba(8,9,10,.65) 42%, rgba(8,9,10,.10) 72%, rgba(8,9,10,.04)), linear-gradient(0deg, rgba(8,9,10,.34), transparent 52%); }
.hero-content { position: relative; z-index: 2; max-width: 1180px; padding-top: 24px; }
.hero-eyebrow { color: rgba(255,255,255,.58); }
.hero h1 { max-width: 760px; margin-bottom: 30px; font-size: clamp(4.4rem, 7.6vw, 7.5rem); line-height: .93; text-wrap: balance; }
.hero-lead { max-width: 580px; margin-bottom: 38px; color: rgba(255,255,255,.76); font-size: 1.1rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 18px; padding: 14px 24px; border: 1px solid transparent; border-radius: 0; cursor: pointer; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #161616; }
.button-primary:hover { background: #ebad54; }
.button-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.hero-trust { display: flex; gap: 38px; margin-top: 58px; padding-bottom: 8px; }
.hero-trust > div { display: flex; align-items: center; gap: 12px; }
.hero-trust strong { color: var(--accent); font-family: var(--font-heading, Georgia, serif); font-size: 1.5rem; font-weight: 600; }
.hero-trust span { color: rgba(255,255,255,.56); font-size: .72rem; letter-spacing: .06em; line-height: 1.45; text-transform: uppercase; }
.hero-scroll { position: absolute; z-index: 3; right: 4vw; bottom: 48px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right center; }
.hero-scroll span { display: block; width: 44px; height: 1px; background: rgba(255,255,255,.4); }

.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: start; }
.intro-copy { padding-top: 57px; }
.intro-copy > p { margin-bottom: 44px; color: #505557; font-size: 1.08rem; }
.quality-line { display: flex; align-items: center; gap: 20px; padding-top: 30px; border-top: 1px solid var(--line); }
.quality-line p { margin: 0; color: var(--muted); font-size: .88rem; }
.quality-line p strong { color: var(--ink); }
.quality-icon { display: grid; flex: 0 0 54px; height: 54px; place-items: center; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-family: var(--font-heading, Georgia, serif); font-size: .8rem; }

.services { position: relative; }
.services::before { position: absolute; top: -230px; right: -180px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; content: ""; box-shadow: 0 0 0 90px rgba(255,255,255,.015), 0 0 0 180px rgba(255,255,255,.01); }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.13); }
.service-card { display: grid; grid-template-columns: 64px 1fr; gap: 22px; min-height: 220px; padding: 43px 48px 40px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.service-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.13); }
.service-card:nth-child(even) { padding-left: 48px; }
.service-number { color: var(--accent); font-family: var(--font-heading, Georgia, serif); font-size: 1.2rem; }
.service-card h3 { font-family: var(--font-heading, Georgia, serif); font-size: 1.78rem; font-weight: 600; }
.service-card p { margin: 0; color: rgba(255,255,255,.55); }

.product-heading { max-width: 720px; margin-bottom: 65px; }
.product-heading > p:last-child { max-width: 550px; margin-top: 25px; }
.product-list { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 28px; }
.product-card { grid-column: span 4; background: var(--white); box-shadow: 0 15px 45px rgba(19,21,22,.07); transition: transform .3s, box-shadow .3s; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image-wrap { position: relative; aspect-ratio: 1 / .82; overflow: hidden; background: #d7d7d6; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover img { transform: scale(1.045); }
.product-image-wrap > span { position: absolute; right: 0; bottom: 0; display: grid; width: 58px; height: 58px; place-items: center; background: var(--accent); font-family: var(--font-heading, Georgia, serif); }
.product-copy { padding: 30px 32px 34px; }
.product-copy h3 { font-family: var(--font-heading, Georgia, serif); font-size: 1.65rem; font-weight: 600; }
.product-copy p { min-height: 78px; color: var(--muted); font-size: .9rem; }
.product-copy a { display: inline-flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-copy a span { color: var(--accent); font-size: 1.1rem; transition: transform .2s; }
.product-copy a:hover span { transform: translateX(5px); }

.section-warm { background: var(--paper-deep); }
.process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 75px 1fr; gap: 24px; padding: 0 0 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.process-steps li:last-child { margin-bottom: 0; }
.process-steps li > span { color: var(--accent); font-family: var(--font-heading, Georgia, serif); font-size: 1.6rem; }
.process-steps h3 { margin-bottom: 8px; font-family: var(--font-heading, Georgia, serif); font-size: 1.72rem; font-weight: 600; }
.process-steps p { margin: 0; color: var(--muted); }

.gallery { background: #f8f6f2; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.gallery-item { position: relative; min-width: 0; grid-column: span 4; aspect-ratio: 1/.78; padding: 0; overflow: hidden; border: 0; background: #ddd; cursor: zoom-in; text-align: left; }
.gallery-item:first-child { grid-column: span 7; grid-row: span 2; aspect-ratio: auto; min-height: 560px; }
.gallery-item:not(:first-child) { grid-column: span 5; min-height: 270px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .3s; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.78); }
.gallery-item > span { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: linear-gradient(transparent, rgba(0,0,0,.75)); color: var(--white); font-family: var(--font-heading, Georgia, serif); font-size: 1.22rem; font-weight: 600; transform: translateY(8px); transition: transform .3s; }
.gallery-item:hover > span { transform: none; }
.gallery-item small { color: var(--accent); font-family: var(--font-body, "Barlow", sans-serif); font-size: .68rem; }

@media (min-width: 701px) {
    .gallery-item:nth-child(4):nth-last-child(2), .gallery-item:nth-child(5):last-child { grid-column: span 6; }
}

.lightbox { width: min(1100px, calc(100% - 30px)); max-height: 90vh; padding: 0; overflow: visible; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(7,8,8,.92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox button { position: absolute; z-index: 2; top: -42px; right: 0; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; font-size: 1.4rem; line-height: 1; }

.contact-heading { margin-bottom: 55px; }
.notice { margin-bottom: 28px; padding: 16px 20px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.07); color: rgba(255,255,255,.86); }
.notice-error { border-color: #e06a5f; }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; }
.contact-form { position: relative; display: grid; gap: 22px; padding: 42px; background: #202326; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 8px; color: rgba(255,255,255,.8); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.contact-form label span { color: var(--accent); }
.contact-form label small { color: rgba(255,255,255,.42); font-size: .65rem; font-weight: 400; text-transform: none; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); outline: 0; background: transparent; color: var(--white); font-size: 1rem; letter-spacing: 0; text-transform: none; transition: border .2s; }
.contact-form input { height: 48px; }
.contact-form textarea { padding: 12px 0; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea::placeholder { color: rgba(255,255,255,.28); }
.button-wide { width: 100%; margin-top: 6px; border: 0; }
.form-note { margin: -8px 0 0; color: rgba(255,255,255,.36); font-size: .72rem; text-align: center; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-details { padding-top: 12px; }
.contact-details h3 { margin-bottom: 30px; font-family: var(--font-heading, Georgia, serif); font-size: 1.9rem; font-weight: 600; }
.contact-list { margin: 0 0 30px; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 16px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-list li > span { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--accent); font-family: var(--font-heading, Georgia, serif); }
.contact-list li div { display: grid; }
.contact-list strong { font-size: .86rem; }
.contact-list a { color: rgba(255,255,255,.55); font-size: .85rem; }
.contact-list a:hover { color: var(--accent); }
.whatsapp-link { display: flex; align-items: center; gap: 12px; margin-bottom: 35px; color: #83d49a; font-size: .84rem; font-weight: 700; }
.whatsapp-link > span { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.address-block { display: grid; gap: 7px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.address-block small { color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.address-block strong { font-family: var(--font-heading, Georgia, serif); font-size: 1.25rem; font-weight: 600; }
.address-block p { margin: 1px 0 8px; color: rgba(255,255,255,.55); font-size: .78rem; }
.address-block a { color: var(--accent); font-size: .78rem; }
.map-wrap { position: relative; margin-top: 80px; overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(1) contrast(.95); }
.map-label { position: absolute; right: 25px; bottom: 25px; display: grid; gap: 4px; max-width: calc(100% - 50px); padding: 18px 22px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.map-label span { color: var(--accent); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.map-label strong { font-family: var(--font-heading, Georgia, serif); font-weight: 600; }

.site-footer { padding: 70px 0 22px; background: #0c0d0e; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 70px; padding-bottom: 52px; }
.brand-footer { margin-bottom: 22px; }
.footer-grid > div:first-child > p { max-width: 390px; color: rgba(255,255,255,.64); font-size: .84rem; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact small { margin-bottom: 8px; color: var(--accent); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-contact p, .footer-contact a { margin: 0; color: rgba(255,255,255,.68); font-size: .8rem; }
.footer-contact p strong { display: block; color: rgba(255,255,255,.8); font-weight: 600; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.62); font-size: .68rem; }
.footer-bottom a:hover { color: var(--accent); }
.mobile-actions { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .section { padding: 92px 0; }
    .menu-toggle { z-index: 102; display: block; color: var(--white); }
    .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); }
    .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; padding: 100px 9vw; background: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .25s, transform .25s, visibility .25s; }
    .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .site-nav > a { font-family: var(--font-heading, Georgia, serif); font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 600; letter-spacing: -.02em; }
    .site-nav .nav-cta { margin-top: 14px; padding: 11px 18px; font-family: var(--font-body, "Barlow", sans-serif); font-size: .78rem; }
    .hero { min-height: max(800px, 102svh); padding: 154px 0 84px; }
    .hero-image { object-position: 59% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(8,9,10,.90), rgba(8,9,10,.58) 72%, rgba(8,9,10,.22)), linear-gradient(0deg, rgba(8,9,10,.46), transparent); }
    .hero h1 { max-width: 680px; }
    .hero-scroll { display: none; }
    .intro-grid, .process-grid { grid-template-columns: 1fr; gap: 45px; }
    .intro-copy { max-width: 700px; padding-top: 0; }
    .section-heading-row { grid-template-columns: 1fr; gap: 28px; }
    .product-list { gap: 20px; }
    .product-card { grid-column: span 6; }
    .product-card:last-child { grid-column: 4 / span 6; }
    .product-copy p { min-height: auto; }
    .gallery-item:first-child { min-height: 460px; }
    .gallery-item:not(:first-child) { aspect-ratio: auto; }
    .contact-grid { gap: 45px; }
    .contact-form { padding: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    body { padding-bottom: 58px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 74px 0; }
    h2 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
    .header-inner { min-height: 74px; }
    .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
    .brand-copy strong { font-size: 1rem; }
    .brand-copy small { display: none; }
    .hero { min-height: max(760px, 100svh); height: auto; padding: 150px 0 72px; }
    .hero-image { object-position: 66% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(8,9,10,.96), rgba(8,9,10,.72)), linear-gradient(0deg, rgba(8,9,10,.92) 0%, transparent 55%); }
    .hero-content { padding-top: 12px; }
    .hero h1 { font-size: clamp(3.6rem, 16vw, 5.2rem); }
    .hero-lead { font-size: .98rem; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .hero-trust { gap: 14px; justify-content: space-between; margin-top: 45px; }
    .hero-trust > div { display: grid; gap: 3px; }
    .hero-trust strong { font-size: 1.2rem; }
    .hero-trust span { font-size: .59rem; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card, .service-card:nth-child(even) { min-height: auto; padding: 32px 0; border-right: 0; }
    .product-list { display: grid; grid-template-columns: 1fr; }
    .product-card, .product-card:last-child { grid-column: 1; }
    .product-copy { padding: 26px 25px 30px; }
    .process-steps li { grid-template-columns: 55px 1fr; }
    .gallery-grid { display: grid; grid-template-columns: 1fr; }
    .gallery-item:first-child, .gallery-item:not(:first-child) { grid-column: 1; min-height: 270px; aspect-ratio: 1/.78; }
    .contact-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .contact-form { padding: 26px 20px; }
    .map-wrap { margin-top: 55px; }
    .map-wrap iframe { height: 370px; }
    .map-label { right: 12px; bottom: 12px; left: 12px; max-width: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .mobile-actions { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 58px; background: var(--ink); box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
    .mobile-actions a { display: grid; place-items: center; color: var(--white); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .mobile-actions a:last-child { background: var(--accent); color: #151515; }
}

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

@media print {
    .site-header, .mobile-actions, .hero-scroll { display: none !important; }
    body { padding: 0; background: white; }
}
