:root {
    --ink: #17212b;
    --ink-soft: #273544;
    --orange: #e85d24;
    --orange-dark: #c94715;
    --orange-soft: #fff1e9;
    --paper: #ffffff;
    --surface: #f5f7f8;
    --surface-2: #edf1f3;
    --line: #dde3e7;
    --muted: #5d6873;
    --white: #ffffff;
    --green: #168556;
    --max: 1240px;
    --shadow-sm: 0 8px 28px rgba(23, 33, 43, .07);
    --shadow-md: 0 22px 60px rgba(23, 33, 43, .11);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-weight: 760; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 5.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.65rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.75rem); }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
::selection { color: var(--white); background: var(--orange); }

.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section-pad, .content-section { padding-block: clamp(5rem, 8vw, 7.5rem); }
.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; left: 1rem; top: 1rem; padding: .8rem 1rem; border-radius: 6px; color: var(--white); background: var(--orange); font-weight: 800; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.eyebrow { margin-bottom: 1rem; color: var(--orange-dark); font-size: .75rem; font-weight: 800; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.eyebrow--light { color: var(--orange-dark); }
.section-number { color: var(--orange-dark); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }

.button {
    display: inline-flex;
    min-height: 48px;
    padding: .75rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: transparent;
    font-size: .91rem;
    font-weight: 760;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--orange { color: var(--white); background: var(--orange); border-color: var(--orange); box-shadow: 0 8px 22px rgba(232, 93, 36, .2); }
.button--orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.button--dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { background: var(--ink-soft); border-color: var(--ink-soft); }
.button--outline-light { color: var(--ink); background: var(--white); border-color: #bdc6cc; }
.button--outline-light:hover { color: var(--orange-dark); border-color: var(--orange); }
.button--whatsapp { color: var(--white); background: var(--green); border-color: var(--green); }
.button--text { min-height: 42px; padding-inline: .5rem; text-decoration: underline; text-underline-offset: .2em; }
.text-link { display: inline-flex; padding-block: .3rem; border-bottom: 1px solid var(--ink); align-items: center; gap: .7rem; font-weight: 760; line-height: 1.25; }
.text-link .icon { transition: transform .18s ease; }
.text-link:hover { color: var(--orange-dark); border-color: var(--orange); }
.text-link:hover .icon { transform: translateX(4px); }
.text-link--light { color: var(--white); border-bottom-color: rgba(255,255,255,.55); }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(221, 227, 231, .9); background: rgba(255, 255, 255, .98); box-shadow: 0 4px 18px rgba(23, 33, 43, .035); }
.header-shell { display: grid; width: min(calc(100% - 40px), var(--max)); height: 82px; margin-inline: auto; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem, 3vw, 3rem); }
.brand img { width: 142px; height: auto; }
.desktop-nav { display: flex; height: 100%; align-items: stretch; justify-content: center; gap: clamp(1.1rem, 2.2vw, 2.35rem); }
.desktop-nav > a, .services-menu > summary { position: relative; display: flex; height: 100%; align-items: center; color: #334150; font-size: .91rem; font-weight: 700; cursor: pointer; list-style: none; }
.desktop-nav > a::after, .services-menu > summary::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform .18s ease; }
.desktop-nav > a:hover, .desktop-nav > a[aria-current="page"], .services-menu > summary:hover, .services-menu > summary.is-active { color: var(--ink); }
.desktop-nav > a:hover::after, .desktop-nav > a[aria-current="page"]::after, .services-menu > summary:hover::after, .services-menu > summary.is-active::after { transform: scaleX(1); }
.services-menu { position: relative; height: 100%; }
.services-menu > summary { gap: .35rem; }
.services-menu > summary::-webkit-details-marker { display: none; }
.services-menu[open] > summary .icon { transform: rotate(180deg); }
.services-popover { position: absolute; top: 82px; left: 50%; width: min(640px, 82vw); padding: 1.45rem; border: 1px solid var(--line); border-radius: 0 0 12px 12px; background: var(--paper); box-shadow: var(--shadow-md); transform: translateX(-50%); }
.services-popover > p { margin-bottom: .8rem; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.services-popover ul { display: grid; margin: 0 0 1rem; padding: 0; grid-template-columns: repeat(2, 1fr); gap: 4px; list-style: none; }
.services-popover li a { display: block; padding: .68rem .75rem; border-radius: 5px; font-weight: 650; }
.services-popover li a:hover { color: var(--orange-dark); background: var(--orange-soft); }
.menu-all { display: inline-flex; align-items: center; gap: .65rem; font-weight: 760; }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.language-switch { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 7px; align-items: center; gap: 2px; background: var(--surface); }
.language-option { display: grid; width: 35px; height: 30px; border: 1px solid transparent; border-radius: 4px; place-items: center; transition: background-color .18s ease, border-color .18s ease, opacity .18s ease; }
.language-option img { width: 24px; height: 16px; border-radius: 1px; box-shadow: 0 0 0 1px rgba(23,33,43,.12); }
a.language-option:hover { border-color: #cbd3d8; background: var(--white); }
.language-option.is-current { background: var(--white); box-shadow: 0 1px 4px rgba(23,33,43,.09); }
.header-phone { display: flex; padding: .68rem .82rem; border-radius: 7px; align-items: center; gap: .52rem; color: var(--white); background: var(--ink); font-size: .82rem; font-weight: 750; }
.header-phone:hover { background: var(--orange); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 6px; background: var(--surface); place-items: center; cursor: pointer; }
.menu-toggle .icon { width: 26px; height: 26px; }
.menu-close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close-icon { display: inline; }
.mobile-navigation { position: fixed; z-index: 99; inset: 82px 0 0; overflow-y: auto; background: var(--paper); }
.mobile-navigation nav { width: min(calc(100% - 40px), 720px); margin-inline: auto; padding-block: 2rem 4rem; }
.mobile-navigation nav > a, .mobile-services-menu > summary { display: flex; padding: .85rem 0; border-bottom: 1px solid var(--line); align-items: center; justify-content: space-between; gap: 1rem; font-size: 1.35rem; font-weight: 730; }
.mobile-services-menu > summary { cursor: pointer; list-style: none; }
.mobile-services-menu > summary::-webkit-details-marker { display: none; }
.mobile-services-menu > summary .icon { transition: transform .18s ease; }
.mobile-services-menu[open] > summary { color: var(--orange-dark); }
.mobile-services-menu[open] > summary .icon { transform: rotate(180deg); }
.mobile-service-links { display: grid; padding-block: 1.25rem; grid-template-columns: repeat(2, 1fr); gap: 0 1rem; }
.mobile-service-links a { padding: .65rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 620; }
.mobile-contact { display: flex; margin-top: 1.25rem; gap: .75rem; }
.no-script-nav { display: flex; padding: .8rem 1rem; border-top: 1px solid var(--line); flex-wrap: wrap; justify-content: center; gap: .6rem 1.2rem; background: var(--paper); font-size: .86rem; font-weight: 700; }

.home-hero { display: grid; width: min(calc(100% - 48px), var(--max)); min-height: 660px; margin-inline: auto; padding-block: clamp(2.5rem, 5vw, 4.5rem); grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(2.5rem, 6vw, 6rem); background: var(--paper); }
.home-hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-brand { margin-bottom: .7rem; color: var(--orange-dark); font-size: .86rem; font-weight: 800; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
.home-hero h1 { max-width: 680px; margin-bottom: 1.4rem; font-size: clamp(3rem, 5vw, 5rem); }
.hero-lead { max-width: 640px; margin-bottom: 1.6rem; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.15rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-location { display: flex; margin-top: 1.4rem; align-items: center; gap: .55rem; color: var(--muted); font-size: .86rem; font-weight: 650; }
.hero-location:hover { color: var(--orange-dark); }
.home-hero-media { position: relative; min-height: 590px; overflow: hidden; border-radius: 16px; background: var(--surface-2); box-shadow: var(--shadow-md); }
.home-hero-media picture { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.home-hero-media img { width: 100%; height: 100%; }
.home-hero-media img { object-fit: cover; object-position: center 30%; }
.hero-photo-caption { position: absolute; bottom: 14px; left: 14px; display: inline-flex; padding: .72rem 1rem; border-radius: 7px; color: var(--white); background: rgba(23,33,43,.86); gap: 1rem; font-size: .68rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.hero-photo-caption span:last-child { display: none; }

.section-heading { max-width: 800px; margin-bottom: clamp(2.8rem, 5vw, 4.8rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading--split { display: grid; max-width: none; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 4rem; }
.section-heading--split p:last-child { margin-bottom: .35rem; font-size: 1.05rem; }
.home-services { background: var(--surface); }
.service-duo { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); align-items: stretch; gap: 24px; }
.automotive-panel, .agri-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); box-shadow: var(--shadow-sm); }
.automotive-panel { padding: clamp(2rem, 4vw, 3.5rem); }
.panel-title { display: grid; margin-bottom: 2rem; grid-template-columns: 42px 1fr; gap: 1rem; }
.panel-title > span, .agri-panel-content > span { color: var(--orange-dark); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.panel-title h3, .agri-panel h3 { margin-bottom: .8rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.editorial-service-list { margin: 0 0 2rem; padding: 0; list-style: none; }
.editorial-service-list a { display: grid; padding: .85rem 0; border-top: 1px solid var(--line); grid-template-columns: 38px 1fr auto; align-items: center; gap: .8rem; }
.editorial-service-list li:last-child a { border-bottom: 1px solid var(--line); }
.editorial-service-list a > span { color: #8a949c; font-size: .7rem; font-weight: 750; }
.editorial-service-list a > strong { font-size: 1.03rem; }
.editorial-service-list a:hover strong { color: var(--orange-dark); }
.editorial-service-list a:hover .icon { transform: translateX(4px); }
.agri-panel { display: flex; min-width: 0; flex-direction: column; }
.agri-panel > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.agri-panel-content { display: flex; padding: clamp(2rem, 4vw, 3.2rem); flex: 1; flex-direction: column; align-items: flex-start; }
.agri-panel-content h3 { margin-top: .7rem; }
.agri-panel-content p { flex: 1; }
.agri-panel-content .button { margin-top: 1rem; }

.home-about { overflow: hidden; background: var(--paper); }
.about-layout { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(340px, .82fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.about-media-stack { position: relative; min-height: 590px; }
.about-primary { width: min(82%, 650px); border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-sm); }
.about-secondary { position: absolute; right: 0; bottom: 0; width: 45%; border: 8px solid var(--paper); border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-md); }
.about-copy h2 { margin-bottom: 1.6rem; }
.about-copy > p:not(.eyebrow) { font-size: 1.04rem; }
.experience-line { display: flex; margin: 2rem 0; padding: 1.25rem 0; border-block: 1px solid var(--line); align-items: center; gap: 1.1rem; }
.experience-line strong { color: var(--orange-dark); font-size: 3.3rem; line-height: .85; }
.experience-line span { max-width: 260px; color: var(--muted); font-weight: 650; }

.work-method { background: var(--surface); }
.work-method h2 { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.method-grid article { padding: clamp(2rem, 3.5vw, 3rem); border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.method-grid article > span { color: var(--orange-dark); font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.method-grid h3 { margin: 2.4rem 0 .8rem; font-size: clamp(1.6rem, 2.5vw, 2.3rem); }

.faq-contact { background: var(--paper); }
.faq-contact-grid, .faq-related-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.faq-block > h2, .service-faq-related h2 { margin-bottom: 2.2rem; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; padding: 1.15rem .2rem; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 720; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { color: var(--orange-dark); }
.faq-list details[open] summary .icon { transform: rotate(180deg); }
.faq-list details p { max-width: 760px; margin: 0; padding: 0 .2rem 1.3rem; }
.contact-card { padding: clamp(2rem, 4vw, 3.3rem); border-radius: 12px; color: var(--white); background: var(--ink); box-shadow: var(--shadow-md); }
.contact-card h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 3.2rem); }
.contact-card > p:not(.eyebrow) { color: #c8d0d7; }
.contact-card .eyebrow { color: #ff9b70; }
.contact-card-line { display: flex; padding: .9rem 0; border-top: 1px solid #3a4855; align-items: center; gap: .9rem; font-size: 1.05rem; font-weight: 740; }
.contact-card-line:last-child { border-bottom: 1px solid #3a4855; }
.contact-card-line .icon { color: #ff8a57; font-size: 1.35rem; }
.contact-card-line span { display: flex; flex-direction: column; }
.contact-card-line small { color: #9da9b4; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

.page-hero { padding-block: clamp(5rem, 8vw, 7.5rem); border-bottom: 1px solid var(--line); background: var(--surface); }
.page-hero--ink { color: var(--ink); background: var(--surface); }
.page-hero-inner { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: clamp(3rem, 8vw, 8rem); }
.page-hero h1 { max-width: 880px; margin-bottom: 0; color: var(--ink); font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero-inner > p { margin-bottom: .5rem; color: var(--muted); font-size: 1.08rem; }
.breadcrumbs { display: flex; padding-block: 1rem; align-items: center; gap: .6rem; color: #74808a; font-size: .8rem; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: .2em; }
.breadcrumbs a:hover { color: var(--orange-dark); }

.service-index-grid { display: grid; grid-template-columns: .62fr 1.1fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.service-index-intro { position: sticky; top: 110px; }
.service-index-intro h2 { margin-bottom: 1.3rem; }
.service-index-intro p:last-child { font-size: 1.04rem; }
.service-index-list { margin: 0; padding: 0; list-style: none; }
.service-index-list > li { border-top: 1px solid var(--line); }
.service-index-list > li:last-child { border-bottom: 1px solid var(--line); }
.service-index-list a { display: grid; padding: 1.2rem .5rem; border-radius: 6px; grid-template-columns: 42px 1fr auto; align-items: center; gap: 1rem; }
.service-index-list a:hover { background: var(--orange-soft); }
.service-index-number { color: var(--orange-dark); font-size: .72rem; font-weight: 800; }
.service-index-name { display: flex; flex-direction: column; gap: .25rem; }
.service-index-name strong { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.service-index-name small { max-width: 760px; color: var(--muted); font-size: .86rem; line-height: 1.45; }
.agri-index, .workshop-agri { display: grid; grid-template-columns: 52% 48%; background: var(--surface); }
.agri-index-media img, .workshop-agri-image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.agri-index-copy, .workshop-agri-copy { display: flex; padding: clamp(3rem, 7vw, 7rem); flex-direction: column; align-items: flex-start; justify-content: center; }
.agri-index-copy h2, .workshop-agri-copy h2 { color: var(--ink); }
.agri-index-copy p:not(.eyebrow), .workshop-agri-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; }

.workshop-hero, .service-hero { display: grid; width: min(calc(100% - 48px), var(--max)); min-height: 620px; margin-inline: auto; padding-block: clamp(2.8rem, 5vw, 4.8rem); grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(2.5rem, 6vw, 6rem); background: var(--paper); }
.workshop-hero-copy, .service-hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.workshop-hero-copy h1, .service-hero h1 { margin-bottom: 1.5rem; color: var(--ink); font-size: clamp(3rem, 5.2vw, 5rem); }
.workshop-hero-copy > p:last-child, .service-hero-copy > p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.service-hero .hero-actions { margin-top: 1.15rem; }
.workshop-hero-media, .service-hero-media { position: relative; min-height: 520px; overflow: hidden; border-radius: 15px; background: var(--surface-2); box-shadow: var(--shadow-md); }
.workshop-hero-media img, .service-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.workshop-hero-media img { object-position: 50% 38%; }
.workshop-story-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(3rem, 7vw, 7rem); }
.workshop-story-grid h2 { margin-bottom: 0; }
.workshop-story-grid > div:last-child p { font-size: 1.04rem; }
.workshop-method { background: var(--surface); }
.workshop-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.workshop-points article { padding: clamp(2rem, 3.5vw, 3rem); border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.workshop-points span { color: var(--orange-dark); font-size: .74rem; font-weight: 800; }
.workshop-points h3 { margin: 2.2rem 0 .9rem; }

.service-intro-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.service-intro-grid h2 { margin-bottom: 1.6rem; }
.service-intro-grid p:not(.section-number) { font-size: 1.04rem; }
.service-intro-grid img { width: 100%; border-radius: 12px; aspect-ratio: 3 / 2; object-fit: cover; box-shadow: var(--shadow-sm); }
.service-signals, .service-work { background: var(--surface); }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.signal-grid article { padding: clamp(2rem, 3.5vw, 3rem); border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.signal-grid span { color: var(--orange-dark); font-size: .74rem; font-weight: 800; }
.signal-grid h3 { margin: 2.2rem 0 .8rem; }
.service-work-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(3rem, 7vw, 7rem); }
.service-work h2 { color: var(--ink); }
.service-work p:not(.section-number) { color: var(--muted); font-size: 1.04rem; }
.service-work ol { margin: 0; padding: 0; list-style: none; }
.service-work li { display: grid; padding: 1rem 0; border-top: 1px solid var(--line); grid-template-columns: 44px 1fr; gap: .75rem; color: var(--ink); font-weight: 680; }
.service-work li:last-child { border-bottom: 1px solid var(--line); }
.service-work li span { color: var(--orange-dark); font-size: .72rem; font-weight: 800; }
.service-note { padding-block: clamp(3rem, 5vw, 4.5rem); background: var(--orange-soft); border-block: 1px solid #ffd9c7; }
.service-note .shell { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 1.5rem; }
.service-note .shell > span { display: grid; width: 58px; height: 58px; border: 2px solid var(--orange); border-radius: 50%; place-items: center; color: var(--orange-dark); font-family: Georgia, serif; font-size: 2rem; font-weight: 900; }
.service-note h2 { margin-bottom: .55rem; font-size: clamp(1.8rem, 3vw, 3rem); }
.service-note p { max-width: 980px; margin-bottom: 0; color: #685249; }
.service-faq-related { background: var(--paper); }
.related-services { padding: 2.2rem; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.related-services h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.related-services ul { margin: 1.7rem 0 0; padding: 0; list-style: none; }
.related-services li { border-top: 1px solid var(--line); }
.related-services li:last-child { border-bottom: 1px solid var(--line); }
.related-services a { display: flex; padding: .9rem 0; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 700; }
.related-services a:hover { color: var(--orange-dark); }

.contact-strip { display: grid; padding: clamp(2.5rem, 5vw, 4.2rem); border: 1px solid var(--line); border-radius: 12px; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; background: var(--surface); }
.contact-strip h2 { margin-bottom: .8rem; color: var(--ink); }
.contact-strip p:not(.eyebrow) { max-width: 820px; margin-bottom: 0; color: var(--muted); }
.contact-strip-actions { display: grid; min-width: 230px; gap: .65rem; }
.contact-map { display: flex; padding: .5rem; align-items: center; justify-content: center; gap: .5rem; color: var(--muted); font-weight: 700; }

.legal-hero { padding-block: clamp(5rem, 8vw, 7rem); border-bottom: 1px solid var(--line); background: var(--surface); }
.legal-hero .shell { max-width: 1050px; }
.legal-hero h1 { color: var(--ink); }
.legal-hero p:not(.eyebrow) { max-width: 740px; color: var(--muted); font-size: 1.08rem; }
.legal-hero time { color: var(--orange-dark); font-size: .8rem; font-weight: 750; }
.legal-content { max-width: 1050px; padding-block: clamp(3rem, 7vw, 6rem); }
.legal-content > section { display: grid; padding-block: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--line); grid-template-columns: 58px 1fr; gap: 1.3rem; }
.legal-content > section > span { color: var(--orange-dark); font-size: .74rem; font-weight: 800; }
.legal-content h2 { font-size: clamp(1.8rem, 3.3vw, 3rem); }
.legal-content p { font-size: 1rem; }
.legal-date { padding-top: 1.4rem; border-top: 1px solid var(--line); font-weight: 700; }

.not-found { display: grid; min-height: 70vh; padding: clamp(3rem, 8vw, 7rem); grid-template-columns: .55fr 1fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); background: var(--surface); }
.not-found-gear { color: var(--orange); font-size: clamp(6rem, 18vw, 15rem); font-weight: 780; letter-spacing: -.08em; line-height: .7; }
.not-found h1 { color: var(--ink); }
.not-found p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.site-footer { color: var(--white); background: #17212b; }
.footer-main { display: grid; padding-block: clamp(4rem, 7vw, 6rem); grid-template-columns: 1.05fr .75fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
.footer-identity img { width: 160px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); }
.footer-identity h2 { margin-bottom: .7rem; color: var(--white); font-size: 2rem; }
.footer-identity > p { max-width: 460px; color: #b8c2ca; }
.footer-cta-row { display: flex; margin-top: 1.6rem; flex-wrap: wrap; gap: .65rem; }
.site-footer .button--outline-light { color: var(--white); background: transparent; border-color: #71808c; }
.site-footer .button--outline-light:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.footer-label { margin-bottom: 1.4rem; color: #ff9569; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-contact address { display: grid; gap: .9rem; font-style: normal; }
.footer-contact address a { display: flex; align-items: flex-start; gap: .75rem; color: #d3dae0; }
.footer-contact address a:hover { color: var(--white); }
.footer-contact .icon { margin-top: .15rem; color: #ff8a57; }
.footer-contact .text-link { margin-top: 1.3rem; }
.hours-season { padding: 1rem 0; border-top: 1px solid #3a4855; }
.hours-season h3 { margin-bottom: .65rem; color: var(--white); font-size: 1.08rem; }
.hours-season dl { margin: 0; }
.hours-season dl > div { display: grid; padding-block: .18rem; grid-template-columns: 1fr auto; gap: 1rem; color: #c5ced5; font-size: .82rem; }
.hours-season dd { margin: 0; font-variant-numeric: tabular-nums; }
.closed-note { margin: .5rem 0 0; color: #ff9b70; font-size: .8rem; font-weight: 700; }
.footer-bottom { display: grid; padding-block: 1.2rem; border-top: 1px solid #34424f; grid-template-columns: 1fr auto auto; align-items: center; gap: 1.4rem; }
.footer-bottom p, .footer-bottom small { margin: 0; color: #93a1ac; font-size: .73rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .9rem; }
.footer-bottom nav a, .footer-bottom nav button { padding: 0; border: 0; color: #b8c2ca; background: transparent; font-size: .73rem; cursor: pointer; }
.footer-bottom nav a:hover, .footer-bottom nav button:hover { color: var(--white); text-decoration: underline; }
.footer-bottom small a { color: #d5dce1; font-weight: 750; }
.floating-whatsapp { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: flex; min-height: 48px; padding: .65rem 1rem; border-radius: 28px; align-items: center; gap: .5rem; color: var(--white); background: var(--green); box-shadow: 0 10px 26px rgba(0,0,0,.18); font-size: .82rem; font-weight: 760; }
.floating-whatsapp:hover { background: #0f6e46; }
.cookie-banner-open .floating-whatsapp, .footer-visible .floating-whatsapp { opacity: 0; pointer-events: none; }

.cookie-banner { position: fixed; z-index: 300; right: 1rem; bottom: 1rem; left: 1rem; display: grid; width: min(calc(100% - 2rem), 1080px); margin-inline: auto; padding: 1.45rem; border: 1px solid var(--line); border-radius: 11px; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; color: var(--ink); background: var(--white); box-shadow: 0 20px 60px rgba(23,33,43,.2); }
.cookie-banner::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; border-radius: 11px 11px 0 0; background: var(--orange); content: ""; }
.cookie-banner[hidden], .cookie-modal[hidden] { display: none; }
.cookie-kicker { margin-bottom: .4rem; color: var(--orange-dark); font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cookie-banner h2 { margin-bottom: .35rem; color: var(--ink); font-size: 1.4rem; letter-spacing: -.025em; }
.cookie-banner p:not(.cookie-kicker) { margin-bottom: 0; color: var(--muted); font-size: .85rem; }
.cookie-banner a { color: var(--ink); text-decoration: underline; }
.cookie-actions { display: grid; grid-template-columns: repeat(2, auto); gap: .5rem; }
.cookie-actions .cookie-choice { min-width: 160px; color: var(--ink); background: var(--white); border-color: #aeb8c0; }
.cookie-actions .cookie-choice:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.cookie-actions .button--text { grid-column: 1 / -1; color: var(--muted); }
.cookie-modal { position: fixed; z-index: 400; inset: 0; display: grid; padding: 1rem; place-items: center; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(23,33,43,.68); }
.cookie-dialog { position: relative; z-index: 1; width: min(100%, 620px); max-height: calc(100vh - 2rem); padding: clamp(1.7rem, 4vw, 3rem); overflow-y: auto; border-radius: 12px; background: var(--paper); box-shadow: var(--shadow-md); }
.cookie-dialog h2 { margin-bottom: 1.8rem; font-size: clamp(1.9rem, 3.8vw, 3rem); }
.cookie-modal-close { position: absolute; top: 1rem; right: 1rem; display: grid; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line); border-radius: 6px; background: transparent; place-items: center; cursor: pointer; }
.cookie-option { display: grid; padding: 1.25rem 0; border-top: 1px solid var(--line); grid-template-columns: 1fr auto; align-items: center; gap: 1.4rem; }
.cookie-option h3 { margin-bottom: .4rem; font-size: 1.2rem; }
.cookie-option p { margin-bottom: 0; font-size: .86rem; }
.switch { position: relative; display: inline-flex; }
.switch input { position: absolute; opacity: 0; }
.switch > span:last-child { position: relative; width: 52px; height: 28px; border: 2px solid #7b8790; border-radius: 18px; background: #dfe4e7; cursor: pointer; }
.switch > span:last-child::after { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #66737d; content: ""; transition: transform .16s ease, background .16s ease; }
.switch input:checked + span { border-color: var(--orange); background: #ffd7c5; }
.switch input:checked + span::after { background: var(--orange-dark); transform: translateX(24px); }
.switch input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 3px; }
.switch input:disabled + span { opacity: .65; cursor: not-allowed; }
.cookie-save { width: 100%; margin-top: 1.4rem; }

@media (max-width: 1080px) {
    .desktop-nav { display: none; }
    .header-shell { grid-template-columns: auto 1fr; }
    .header-actions { justify-self: end; }
    .menu-toggle { display: grid; }
    .home-hero, .workshop-hero, .service-hero { gap: 3rem; }
    .service-duo { grid-template-columns: 1fr 1fr; }
    .about-media-stack { min-height: 500px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-hours { display: grid; grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
    .footer-hours .footer-label, .footer-hours .closed-note { grid-column: 1 / -1; }
    .footer-bottom { grid-template-columns: 1fr auto; }
    .footer-bottom small { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .shell { width: min(calc(100% - 36px), var(--max)); }
    .header-phone span { display: none; }
    .home-hero, .workshop-hero, .service-hero { width: min(calc(100% - 36px), var(--max)); min-height: auto; padding-block: 3.5rem 4.5rem; grid-template-columns: 1fr; gap: 2.5rem; }
    .home-hero-copy, .workshop-hero-copy, .service-hero-copy { order: 1; }
    .home-hero-media, .workshop-hero-media, .service-hero-media { min-height: min(65vh, 580px); order: 2; }
    .section-heading--split, .service-index-grid, .workshop-story-grid, .service-intro-grid, .service-work-grid, .faq-contact-grid, .faq-related-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .service-duo { grid-template-columns: 1fr; }
    .service-index-intro { position: static; }
    .about-layout { grid-template-columns: 1fr; }
    .about-media-stack { width: min(100%, 680px); min-height: 550px; }
    .method-grid, .workshop-points, .signal-grid { grid-template-columns: 1fr; }
    .page-hero-inner { grid-template-columns: 1fr; gap: 1.8rem; }
    .agri-index, .workshop-agri { grid-template-columns: 1fr; }
    .agri-index-media img, .workshop-agri-image img { min-height: 380px; }
    .contact-strip { grid-template-columns: 1fr; }
    .contact-strip-actions { width: min(100%, 350px); }
    .cookie-banner { grid-template-columns: 1fr; gap: 1rem; }
    .cookie-actions { grid-template-columns: repeat(3, 1fr); }
    .cookie-actions .cookie-choice { min-width: 0; }
    .cookie-actions .button--text { grid-column: auto; }
}

@media (max-width: 640px) {
    html { scroll-padding-top: 72px; }
    body { font-size: 15.5px; }
    .shell { width: min(calc(100% - 28px), var(--max)); }
    .section-pad, .content-section { padding-block: 4.25rem; }
    .header-shell { width: calc(100% - 20px); height: 72px; gap: .45rem; }
    .brand img { width: 108px; }
    .header-phone { width: 36px; height: 36px; padding: 0; justify-content: center; }
    .language-switch { padding: 2px; }
    .language-option { width: 31px; height: 29px; }
    .language-option img { width: 21px; height: 14px; }
    .menu-toggle { width: 38px; height: 38px; }
    .mobile-navigation { top: 72px; }
    .mobile-navigation nav { width: calc(100% - 28px); padding-top: 1.2rem; }
    .mobile-service-links { grid-template-columns: 1fr; }
    .mobile-contact { flex-direction: column; }
    .home-hero, .workshop-hero, .service-hero { width: calc(100% - 28px); padding-block: 3rem 3.8rem; }
    .home-hero h1, .workshop-hero-copy h1, .service-hero h1 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
    .hero-lead, .service-hero-copy > p:not(.eyebrow), .workshop-hero-copy > p:last-child { font-size: 1rem; }
    .hero-actions { width: 100%; }
    .hero-actions .button { width: 100%; }
    .home-hero-media, .workshop-hero-media, .service-hero-media { min-height: clamp(310px, 52vh, 440px); border-radius: 11px; }
    .hero-photo-caption { display: none; }
    .section-heading { margin-bottom: 2.7rem; }
    .automotive-panel, .agri-panel-content { padding: 1.4rem; }
    .panel-title { grid-template-columns: 1fr; }
    .editorial-service-list a { grid-template-columns: 30px 1fr auto; }
    .about-media-stack { min-height: 340px; }
    .about-primary { width: 88%; }
    .about-secondary { width: 49%; border-width: 6px; }
    .experience-line strong { font-size: 2.9rem; }
    .method-grid article, .workshop-points article, .signal-grid article { padding: 1.8rem; }
    .page-hero { padding-block: 4rem; }
    .page-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .service-index-list a { padding: 1rem .1rem; grid-template-columns: 30px 1fr auto; }
    .service-index-name small { display: none; }
    .agri-index-media img, .workshop-agri-image img { min-height: 290px; }
    .agri-index-copy, .workshop-agri-copy { padding: 3.2rem 1.1rem; }
    .service-note .shell { grid-template-columns: 1fr; }
    .related-services { padding: 1.4rem; }
    .contact-strip { padding: 2.2rem 1.2rem; }
    .legal-content > section { grid-template-columns: 1fr; gap: .4rem; }
    .not-found { grid-template-columns: 1fr; min-height: 72vh; padding: 4rem 1.2rem; }
    .not-found-gear { font-size: 7rem; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-hours { display: block; grid-column: auto; }
    .footer-bottom { grid-template-columns: 1fr; }
    .footer-bottom nav { gap: .7rem .9rem; }
    .footer-bottom small { grid-column: auto; }
    .floating-whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; padding: 0; border-radius: 50%; justify-content: center; }
    .floating-whatsapp .icon { width: 24px; height: 24px; }
    .floating-whatsapp span { display: none; }
    .cookie-banner { right: .5rem; bottom: .5rem; left: .5rem; width: calc(100% - 1rem); max-height: calc(100vh - 1rem); padding: 1.15rem; overflow-y: auto; }
    .cookie-actions { grid-template-columns: 1fr 1fr; }
    .cookie-actions .button { padding-inline: .6rem; font-size: .79rem; }
    .cookie-actions .button--text { grid-column: 1 / -1; }
}

@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; }
}
