:root {
    --navy-950: #061733;
    --navy-900: #08285f;
    --navy-800: #0b397c;
    --blue-600: #0d63d8;
    --blue-500: #287ce1;
    --red-600: #cf2432;
    --green-600: #159447;
    --green-700: #0d7c39;
    --ink: #102342;
    --muted: #5f6f85;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --surface-blue: #edf4fd;
    --line: #dce5f0;
    --shadow-sm: 0 8px 24px rgba(8, 40, 95, .08);
    --shadow-lg: 0 22px 60px rgba(8, 40, 95, .15);
    --radius: 18px;
    --wrap: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 148px; }
body { margin: 0; color: var(--ink); background: var(--surface-soft); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: 10px 14px; color: #fff; background: var(--navy-950); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.service-strip { color: #fff; background: var(--navy-950); font-size: .78rem; }
.service-strip-inner { min-height: 38px; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.service-strip-inner > * { position: relative; text-decoration: none; white-space: nowrap; }
.service-strip-inner > * + *::before { content: ""; position: absolute; top: 50%; left: -12px; width: 1px; height: 16px; background: rgba(255,255,255,.25); transform: translateY(-50%); }
.service-strip a span { color: #9dc9ff; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.service-guarantee { color: #d8e9ff; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); box-shadow: 0 4px 18px rgba(8,40,95,.05); }
.header-main { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand-link { display: inline-flex; align-items: center; color: var(--navy-900); text-decoration: none; }
.logo-lockup { display: inline-flex; align-items: center; gap: 12px; }
.logo-image { width: auto; max-width: 230px; height: 58px; object-fit: contain; }
.logo-placeholder { width: 50px; height: 50px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--navy-900), var(--blue-600)); border: 3px solid #dceafd; border-radius: 14px 4px 14px 4px; font-weight: 900; letter-spacing: -.08em; box-shadow: inset 0 -5px 10px rgba(0,0,0,.12); }
.logo-copy { display: flex; flex-direction: column; line-height: 1.05; }
.logo-copy strong { font-size: 1.45rem; letter-spacing: -.04em; text-transform: uppercase; }
.logo-copy small { margin-top: 5px; color: var(--red-600); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 22px; }
.header-contact { display: flex; flex-direction: column; color: var(--navy-900); text-align: right; text-decoration: none; line-height: 1.25; }
.header-contact strong { font-size: 1.05rem; }
.contact-kicker { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.primary-navigation { border-top: 1px solid #edf1f6; }
.nav-inner { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav-inner a { position: relative; color: #213751; font-size: .82rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.nav-inner a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--blue-600); transform: scaleX(0); transition: transform .2s ease; }
.nav-inner a:hover::after, .nav-inner a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy-900); transition: transform .2s, opacity .2s; }
.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); }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 1px solid transparent; border-radius: 11px; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(40,124,225,.35); outline-offset: 3px; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue-600), var(--navy-800)); box-shadow: 0 10px 24px rgba(13,99,216,.22); }
.button-whatsapp { color: #fff; background: linear-gradient(135deg, var(--green-600), var(--green-700)); box-shadow: 0 10px 24px rgba(21,148,71,.22); }
.button-compact { min-height: 42px; padding: 10px 18px; font-size: .84rem; }
.button-outline { color: var(--navy-900); border-color: #b9cbe0; background: #fff; }
.button-light { color: var(--navy-900); background: #fff; }
.button-light-outline { color: #fff; border-color: rgba(255,255,255,.38); background: transparent; }

.hero { overflow: hidden; background: radial-gradient(circle at 75% 5%, #dcecff 0, transparent 36%), linear-gradient(120deg, #f7faff 0%, #eaf2fb 100%); border-bottom: 1px solid var(--line); }
.hero-layout { min-height: 540px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); align-items: center; gap: 42px; padding-block: 58px 44px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 10px; color: var(--blue-600); font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { max-width: 690px; margin: 0; color: var(--navy-950); font-size: clamp(2.45rem, 5vw, 4.35rem); line-height: 1.03; letter-spacing: -.055em; }
.hero-lead { max-width: 620px; margin: 22px 0; color: #455b75; font-size: 1.1rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 24px 0 28px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.hero-badges i { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; background: var(--blue-600); border-radius: 50%; font-size: .72rem; font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-location { margin: 18px 0 0; color: var(--muted); font-size: .8rem; font-weight: 700; }
.hero-visual { position: relative; height: 430px; overflow: hidden; border: 7px solid rgba(255,255,255,.88); border-radius: 28px 8px 28px 8px; box-shadow: var(--shadow-lg); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.28), transparent 38%); pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 67% center; }
.hero-call-card { position: absolute; right: 20px; bottom: 20px; z-index: 2; display: flex; flex-direction: column; padding: 14px 18px; color: #fff; background: rgba(6,23,51,.91); border: 1px solid rgba(255,255,255,.22); border-radius: 13px; backdrop-filter: blur(8px); }
.hero-call-card span { color: #bcd7f5; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.hero-call-card a { font-size: 1.05rem; font-weight: 900; text-decoration: none; }
.trust-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: -36px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-grid article { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 18px 24px; }
.trust-grid article + article { border-left: 1px solid var(--line); }
.trust-grid strong { color: var(--navy-900); font-size: 1.12rem; }
.trust-grid span { color: var(--muted); font-size: .76rem; }

.section { padding: 92px 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 520px); align-items: end; gap: 40px; margin-bottom: 34px; }
.section-heading h2, .region-copy h2, .contact-copy h2 { margin: 0; color: var(--navy-950); font-size: clamp(1.9rem, 3.4vw, 2.85rem); line-height: 1.1; letter-spacing: -.04em; }
.section-heading > p, .region-copy > p, .contact-copy > p { margin: 0; color: var(--muted); }
.centered-heading { max-width: 760px; display: block; margin-inline: auto; text-align: center; }
.centered-heading > p { margin-top: 14px; }
.section-action { display: flex; justify-content: center; margin-top: 32px; }

.services-section { padding-top: 118px; background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 228px; padding: 28px; overflow: hidden; background: linear-gradient(150deg, #fff, #f4f8fd); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 22px rgba(8,40,95,.05); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-4px); border-color: #b9d4f4; box-shadow: var(--shadow-sm); }
.card-number { display: inline-grid; width: 38px; height: 38px; place-items: center; color: var(--blue-600); background: #e5f0ff; border-radius: 10px; font-size: .72rem; font-weight: 900; }
.service-card h3 { margin: 22px 0 8px; color: var(--navy-900); font-size: 1.14rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.text-link { display: block; margin-top: 18px; color: var(--blue-600); font-size: .72rem; font-weight: 800; }

.used-section { color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.light-heading h2, .light-heading .eyebrow { color: #fff; }
.light-heading > p { color: #c4d5e9; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { overflow: hidden; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.product-image { height: 220px; display: grid; place-items: center; overflow: hidden; color: #8192a8; background: linear-gradient(145deg, #e8eef5, #f9fbfd); font-size: .8rem; font-weight: 800; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-body { display: flex; flex-direction: column; align-items: flex-start; padding: 22px; }
.product-body h3 { margin: 12px 0 4px; color: var(--navy-900); }
.product-body p { margin: 0 0 12px; color: var(--muted); }
.product-body small { margin-top: 9px; color: var(--muted); }
.status-pill { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.status-used { color: #8a202a; background: #ffeaed; }
.status-new { color: #086233; background: #e2f8eb; }
.empty-showcase { min-height: 190px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px; background: #fff; border: 1px dashed #b7c9de; border-radius: var(--radius); }
.empty-showcase h3 { margin: 6px 0; color: var(--navy-900); }
.empty-showcase p { margin: 0; color: var(--muted); }
.empty-icon { color: var(--blue-600); font-size: 1.6rem; font-weight: 900; }
.empty-showcase-dark { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.28); }
.empty-showcase-dark h3 { color: #fff; }
.empty-showcase-dark p { color: #c4d5e9; }
.empty-showcase-dark .empty-icon { color: #8dc1ff; }

.new-products-section { background: var(--surface-blue); }
.brands-section { background: #fff; }
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; margin-top: 34px; }
.brand-card { min-height: 104px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 6px 18px rgba(8,40,95,.05); text-align: center; }
.brand-card strong { color: var(--navy-900); font-size: 1.05rem; }
.brand-card span { margin-top: 5px; color: var(--muted); font-size: .64rem; font-weight: 800; text-transform: uppercase; }

.regions-section { background: linear-gradient(120deg, #edf5ff, #f8fbff); border-block: 1px solid var(--line); }
.region-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 72px; }
.region-copy > p { margin: 16px 0 24px; }
.region-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.region-list span { min-height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; color: var(--navy-900); background: #fff; border: 1px solid var(--line); border-radius: 13px; font-weight: 800; box-shadow: 0 6px 14px rgba(8,40,95,.04); }
.region-list i { color: var(--blue-600); font-style: normal; }

.works-section { background: #fff; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.work-card img { width: 100%; height: 240px; object-fit: cover; }
.work-card div { padding: 20px; }
.work-card h3 { margin: 0 0 6px; }
.work-card p { margin: 0; color: var(--muted); }
.work-placeholder { min-height: 240px; display: grid; place-items: center; padding: 30px; color: var(--muted); background: repeating-linear-gradient(135deg, #f7f9fc, #f7f9fc 16px, #f1f5f9 16px, #f1f5f9 32px); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.announcement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.announcement-grid article { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }

.contact-section { color: #fff; background: linear-gradient(135deg, #071d44, #0c3f84); }
.contact-layout { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 70px; }
.contact-copy .eyebrow { color: #8fc4ff; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { margin: 18px 0 26px; color: #c7d7ea; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 24px; color: #d9e8f8; font-size: .82rem; font-weight: 700; }
.contact-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; min-height: 310px; justify-content: center; padding: 40px; overflow: hidden; color: var(--ink); background: radial-gradient(circle at 85% 20%, #d9eaff, transparent 26%), #fff; border-radius: 24px 8px 24px 8px; box-shadow: var(--shadow-lg); }
.contact-card::after { content: ""; position: absolute; right: -55px; bottom: -55px; width: 180px; height: 180px; border: 28px solid #edf4fd; border-radius: 50%; }
.contact-card > * { position: relative; z-index: 1; }
.map-pin { width: 36px; height: 36px; display: grid; place-items: center; color: var(--red-600); background: #ffeaed; border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); }
.map-pin::first-letter { transform: rotate(45deg); }
.contact-card h3 { margin: 18px 0 6px; color: var(--navy-900); font-size: 1.35rem; }
.contact-card address { max-width: 390px; margin-bottom: 14px; color: var(--muted); font-style: normal; }
.contact-card > a { color: var(--navy-900); font-weight: 800; text-decoration: none; }
.contact-card .direction-link { margin-top: 20px; color: var(--blue-600); }

.site-footer { padding: 62px 0 0; color: #c8d5e6; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .9fr 1.1fr; gap: 52px; }
.brand-link-footer { color: #fff; }
.brand-link-footer .logo-placeholder { border-color: rgba(255,255,255,.22); }
.brand-link-footer .logo-copy small { color: #ff8690; }
.footer-brand > p { max-width: 330px; margin: 20px 0 0; }
.footer-brand .footer-trust { color: #87b9f1; font-size: .78rem; font-weight: 800; }
.site-footer h2 { margin: 6px 0 18px; color: #fff; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: 8px; }
.site-footer a { display: block; color: #c8d5e6; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer address { margin-bottom: 12px; font-style: normal; }
.social-placeholders { display: flex; gap: 8px; margin-top: 18px; }
.social-placeholders span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 7px; font-size: .65rem; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; }
.footer-bottom div { display: flex; gap: 18px; }
.mobile-contact-bar { display: none; }

.error-shell { min-height: 63vh; display: grid; place-items: center; padding: 80px 0; background: radial-gradient(circle at 50% 0, #e4effc, #f7f9fc 58%); }
.error-card { max-width: 760px; padding: 54px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); text-align: center; }
.error-code { display: block; color: #d8e6f7; font-size: 5.5rem; font-weight: 950; line-height: 1; letter-spacing: -.07em; }
.error-card h1 { margin: 8px 0 14px; color: var(--navy-950); line-height: 1.16; }
.error-card p:not(.eyebrow) { color: var(--muted); }
.error-card .hero-actions { justify-content: center; margin-top: 24px; }

@media (max-width: 1080px) {
    .service-strip-inner { justify-content: center; }
    .service-strip-inner > a span { display: none; }
    .nav-inner { gap: 12px; overflow-x: auto; }
    .nav-inner a { font-size: .74rem; }
    .hero-layout { grid-template-columns: 1fr 1fr; }
    .hero-visual { height: 390px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
    html { scroll-padding-top: 86px; }
    .wrap { width: min(100% - 28px, var(--wrap)); }
    .service-strip { display: none; }
    .site-header { top: 0; }
    .header-main { min-height: 72px; }
    .header-actions { display: none; }
    .menu-toggle { display: block; }
    .logo-placeholder { width: 44px; height: 44px; }
    .logo-copy strong { font-size: 1.12rem; }
    .logo-copy small { font-size: .52rem; }
    .primary-navigation { position: fixed; inset: 72px 0 auto; max-height: calc(100vh - 72px); overflow-y: auto; background: #fff; box-shadow: 0 18px 28px rgba(6,23,51,.18); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .2s, transform .2s, visibility .2s; }
    .primary-navigation.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav-inner { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding-block: 10px 20px; overflow: visible; }
    .nav-inner a { padding: 12px 8px; border-bottom: 1px solid #eef2f7; font-size: .9rem; }
    .nav-inner a::after { display: none; }
    .hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 34px; padding-block: 48px 28px; }
    .hero h1 { max-width: 640px; }
    .hero-visual { height: 360px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); margin-bottom: -28px; }
    .trust-grid article { min-height: 82px; }
    .trust-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
    .trust-grid article:nth-child(4) { border-top: 1px solid var(--line); }
    .section { padding: 72px 0; }
    .services-section { padding-top: 96px; }
    .section-heading { grid-template-columns: 1fr; gap: 14px; }
    .product-grid, .work-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-grid { grid-template-columns: repeat(3, 1fr); }
    .region-layout, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .mobile-contact-bar { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 50; display: grid; grid-template-columns: 1fr 1fr; padding: 5px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 14px 40px rgba(6,23,51,.23); }
    .mobile-contact-bar a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; background: var(--blue-600); border-radius: 11px; font-size: .8rem; font-weight: 900; text-decoration: none; }
    .mobile-contact-bar .mobile-whatsapp { background: var(--green-600); }
    .mobile-action-icon { font-size: 1rem; }
    .site-footer { padding-bottom: 86px; }
}

@media (max-width: 560px) {
    .wrap { width: min(100% - 22px, var(--wrap)); }
    .logo-copy small { max-width: 150px; }
    .hero-layout { padding-top: 38px; }
    .hero h1 { font-size: 2.45rem; }
    .hero-lead { font-size: 1rem; }
    .hero-actions .button { flex: 1; }
    .hero-visual { height: 290px; border-width: 5px; }
    .hero-call-card { right: 12px; bottom: 12px; }
    .trust-grid article { padding: 14px; }
    .trust-grid span { font-size: .68rem; }
    .section { padding: 60px 0; }
    .services-section { padding-top: 88px; }
    .service-grid, .product-grid, .work-grid, .announcement-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 205px; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .region-list { grid-template-columns: 1fr; }
    .empty-showcase { align-items: flex-start; flex-direction: column; padding: 26px; }
    .empty-showcase .button { width: 100%; }
    .contact-card { min-height: 290px; padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
    .footer-bottom div { flex-wrap: wrap; }
    .error-card { padding: 36px 22px; }
}

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

/* Aşama 2: liste, detay, arama ve galeri sayfaları */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.header-search { width: 104px; display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: #fff; flex: 0 0 auto; }
.header-search input { width: 66px; min-width: 0; padding: 7px 0 7px 9px; border: 0; outline: 0; color: var(--ink); font-size: .72rem; }
.header-search button { width: 36px; height: 34px; border: 0; color: var(--blue-600); background: transparent; font-size: 1.15rem; cursor: pointer; }
.nav-inner > form { margin-left: auto; }
.service-card h3 a, .product-card h3 a, .brand-card { color: inherit; text-decoration: none; }
.text-link { text-decoration: none; }
.brand-card { transition: transform .2s, border-color .2s, box-shadow .2s; }
.brand-card:hover { transform: translateY(-3px); border-color: #bad3f0; box-shadow: var(--shadow-sm); }
.region-list a { min-height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; color: var(--navy-900); background: #fff; border: 1px solid var(--line); border-radius: 13px; font-weight: 800; text-decoration: none; box-shadow: 0 6px 14px rgba(8,40,95,.04); }
.region-list a:hover { border-color: #aac8ec; }
.region-list a i { color: var(--blue-600); font-style: normal; }

.inner-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 85% 15%, rgba(57,134,222,.5), transparent 28%), linear-gradient(125deg, var(--navy-950), var(--navy-800)); }
.inner-hero::after { content: ""; position: absolute; right: -80px; bottom: -150px; width: 420px; height: 420px; border: 70px solid rgba(255,255,255,.04); border-radius: 50%; }
.inner-hero-content { position: relative; z-index: 1; min-height: 330px; display: flex; flex-direction: column; justify-content: center; padding-block: 62px; }
.inner-hero .eyebrow { color: #91c6ff; }
.inner-hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: 1.03; letter-spacing: -.055em; }
.inner-hero-content > p:last-child { max-width: 720px; margin: 20px 0 0; color: #ccdaea; font-size: 1.04rem; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #aac5e3; font-size: .75rem; }
.breadcrumbs a { color: #fff; text-decoration: none; }

.content-list-section, .brand-list-section, .works-archive-section, .full-contact-section, .search-results-section { background: var(--surface-soft); }
.content-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.content-card { min-height: 290px; display: grid; grid-template-columns: 190px 1fr; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.content-card-visual { min-height: 100%; display: grid; place-items: center; overflow: hidden; color: #fff; background: linear-gradient(145deg, var(--blue-600), var(--navy-900)); text-decoration: none; }
.content-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.content-card-visual span { color: rgba(255,255,255,.86); font-size: 3rem; font-weight: 950; }
.content-card-body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 28px; }
.content-card-body h2 { margin: 0 0 8px; color: var(--navy-900); font-size: 1.35rem; line-height: 1.2; }
.content-card-body h2 a { text-decoration: none; }
.content-card-body > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: .88rem; }
.text-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--blue-600); font-size: .78rem; font-weight: 900; text-decoration: none; }

.detail-content-section { background: #fff; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 70px; }
.detail-main { min-width: 0; }
.prose h2 { margin: 0 0 14px; color: var(--navy-950); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.18; letter-spacing: -.035em; }
.prose h2:not(:first-child) { margin-top: 42px; }
.prose p { color: #4f6178; font-size: 1rem; line-height: 1.8; }
.detail-cover { width: 100%; max-height: 480px; margin-bottom: 36px; object-fit: cover; border-radius: var(--radius); }
.process-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0; counter-reset: process; list-style: none; }
.process-list li { position: relative; min-height: 130px; display: flex; flex-direction: column; justify-content: center; padding: 20px 20px 20px 62px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 13px; counter-increment: process; }
.process-list li::before { content: counter(process); position: absolute; left: 18px; width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: var(--blue-600); border-radius: 9px; font-size: .75rem; font-weight: 900; }
.process-list span { color: var(--muted); font-size: .8rem; }
.service-guarantee-box, .region-availability, .ethics-notice, .catalog-notice { margin-top: 30px; padding: 22px 24px; background: #edf5ff; border: 1px solid #cfe0f3; border-left: 5px solid var(--blue-600); border-radius: 12px; }
.service-guarantee-box { display: flex; flex-direction: column; }
.service-guarantee-box span, .ethics-notice p, .region-availability p, .catalog-notice p { margin: 4px 0 0; color: var(--muted); }
.detail-sidebar { position: relative; }
.sticky-contact-card { position: sticky; top: 160px; display: flex; flex-direction: column; align-items: stretch; padding: 28px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.sticky-contact-card h2 { margin: 0 0 18px; color: var(--navy-950); font-size: 1.45rem; }
.sticky-contact-card .button + .button { margin-top: 10px; }
.sticky-contact-card > span { margin-top: 18px; color: var(--muted); font-size: .78rem; font-weight: 800; text-align: center; }
.back-link { display: inline-flex; margin-top: 18px; color: var(--blue-600); font-size: .8rem; font-weight: 800; text-decoration: none; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 14px 12px 40px; color: var(--navy-900); background: var(--surface-soft); border-radius: 10px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 14px; color: var(--green-600); }

.detail-cta { padding: 62px 0; color: #fff; background: linear-gradient(125deg, var(--navy-950), var(--blue-600)); }
.detail-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.detail-cta .eyebrow { color: #9dceff; }
.detail-cta h2 { max-width: 730px; margin: 0; font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.15; }
.detail-cta p { margin: 10px 0 4px; color: #d3e2f3; }
.detail-cta div > span { color: #a9c9ea; font-size: .76rem; font-weight: 800; }
.detail-cta-actions { display: flex; gap: 10px; flex: 0 0 auto; }

.catalog-section { background: var(--surface-soft); }
.catalog-filters { display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)) auto auto; align-items: end; gap: 14px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.catalog-filters > div { display: flex; flex-direction: column; gap: 6px; }
.catalog-filters label, .search-form-large label { color: var(--navy-900); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.catalog-filters select, .search-form-large input { min-height: 46px; padding: 10px 12px; color: var(--ink); background: #fff; border: 1px solid #bdcde0; border-radius: 9px; }
.catalog-filters select:focus, .search-form-large input:focus { outline: 3px solid rgba(40,124,225,.22); border-color: var(--blue-600); }
.filter-reset { min-height: 48px; display: inline-flex; align-items: center; padding: 0 8px; color: var(--muted); font-size: .8rem; font-weight: 800; text-decoration: none; }
.catalog-summary, .search-summary { margin: 26px 0 14px; color: var(--muted); font-size: .82rem; }
.catalog-summary strong, .search-summary strong { color: var(--navy-900); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.catalog-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.catalog-image { position: relative; height: 250px; display: grid; place-items: center; overflow: hidden; color: #8a9bb0; background: linear-gradient(145deg, #e7edf4, #fafcfe); text-decoration: none; }
.catalog-image img { width: 100%; height: 100%; object-fit: cover; }
.catalog-image > span:not(.status-pill) { font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.catalog-image .status-pill { position: absolute; top: 14px; left: 14px; }
.catalog-card-body { padding: 22px; }
.catalog-meta { margin: 0; color: var(--blue-600); font-size: .66rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.catalog-card h2 { margin: 7px 0 5px; color: var(--navy-900); font-size: 1.15rem; line-height: 1.25; }
.catalog-card h2 a { text-decoration: none; }
.catalog-card-body > p:not(.catalog-meta) { margin: 0; color: var(--muted); font-size: .82rem; }
.catalog-card-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.catalog-card-footer strong { color: var(--navy-950); font-size: .88rem; }
.catalog-card-footer .text-arrow { margin: 0; flex: 0 0 auto; }
.catalog-empty { min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; background: #fff; border: 1px dashed #b8c9dc; border-radius: var(--radius); text-align: center; }
.catalog-empty > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue-600); background: #e6f1ff; border-radius: 50%; font-size: 1.4rem; font-weight: 900; }
.catalog-empty h2 { margin: 18px 0 6px; color: var(--navy-900); font-size: 1.35rem; }
.catalog-empty p { max-width: 580px; margin: 0 0 20px; color: var(--muted); }
.catalog-empty div { display: flex; gap: 10px; }
.catalog-notice { margin-top: 32px; }

.product-detail-header { padding: 20px 0; background: #f1f5fa; border-bottom: 1px solid var(--line); }
.product-breadcrumbs { margin-bottom: 0; color: var(--muted); }
.product-breadcrumbs a { color: var(--navy-900); }
.product-detail-section { background: #fff; }
.product-detail-layout { display: grid; grid-template-columns: 1.08fr .92fr; align-items: start; gap: 56px; }
.product-gallery { min-width: 0; }
.product-main-image { position: relative; width: 100%; height: 520px; padding: 0; display: grid; place-items: center; overflow: hidden; color: var(--muted); background: #edf2f7; border: 1px solid var(--line); border-radius: var(--radius); cursor: zoom-in; }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; }
.product-main-image > span:last-child:not(:only-child) { position: absolute; right: 14px; bottom: 14px; padding: 7px 10px; color: #fff; background: rgba(6,23,51,.78); border-radius: 8px; font-size: .68rem; font-weight: 800; }
.product-image-empty { cursor: default; }
.product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.product-thumbnails button { aspect-ratio: 1; padding: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 9px; cursor: zoom-in; }
.product-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 158px; }
.product-info .eyebrow { margin-top: 20px; }
.product-info h1 { margin: 0; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.06; letter-spacing: -.05em; }
.product-brand-model { margin: 12px 0; color: var(--muted); font-size: 1rem; }
.product-price { margin: 24px 0; padding: 18px; color: var(--navy-900); background: var(--surface-blue); border-radius: 12px; font-size: 1.25rem; font-weight: 900; }
.product-specs { margin: 0; border-block: 1px solid var(--line); }
.product-specs div { display: grid; grid-template-columns: 145px 1fr; gap: 16px; padding: 11px 0; }
.product-specs div + div { border-top: 1px solid #edf1f6; }
.product-specs dt { color: var(--muted); font-size: .78rem; }
.product-specs dd { margin: 0; color: var(--ink); font-size: .84rem; font-weight: 700; }
.product-specs a { color: var(--blue-600); }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.product-actions .button:last-child { grid-column: 1 / -1; }
.service-warranty-note { margin: 18px 0 0; color: var(--muted); font-size: .72rem; }
.product-description-section { background: var(--surface-soft); border-top: 1px solid var(--line); }
.narrow-content { max-width: 860px; }

.service-status { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: .65rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.service-status.private { color: #8b4d08; background: #fff2d8; }
.service-status.authorized { color: #086037; background: #e2f7eb; }
.brand-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.brand-detail-card { min-height: 250px; display: grid; grid-template-columns: 180px 1fr; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.brand-detail-logo { display: grid; place-items: center; padding: 20px; color: var(--navy-900); background: linear-gradient(145deg, #edf4fd, #fff); text-decoration: none; }
.brand-detail-logo img { max-width: 130px; max-height: 90px; object-fit: contain; }
.brand-detail-logo strong { font-size: 1.35rem; }
.brand-detail-card > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 25px; }
.brand-detail-card h2 { margin: 10px 0 5px; color: var(--navy-900); }
.brand-detail-card h2 a { text-decoration: none; }
.brand-detail-card p { margin: 0; color: var(--muted); font-size: .83rem; }
.related-products-section { background: var(--surface-soft); }

.region-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.region-detail-card { min-height: 220px; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.region-detail-card > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--red-600); background: #ffeaed; border-radius: 50% 50% 50% 10px; }
.region-detail-card h2 { margin: 0; color: var(--navy-900); }
.region-detail-card h2 a { text-decoration: none; }
.region-detail-card p:not(.eyebrow) { margin: 6px 0 0; color: var(--muted); font-size: .85rem; }
.compact-service-list { display: grid; gap: 10px; }
.compact-service-list a { display: grid; grid-template-columns: 1fr auto; padding: 16px; color: var(--ink); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 11px; text-decoration: none; }
.compact-service-list a span { grid-column: 1; color: var(--muted); font-size: .78rem; }
.compact-service-list a i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--blue-600); font-style: normal; }

.works-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.archive-work-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.archive-work-image, .video-frame { width: 100%; height: 260px; padding: 0; overflow: hidden; background: #e8eef5; border: 0; }
button.archive-work-image { position: relative; cursor: zoom-in; }
.archive-work-image img, .video-frame iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.archive-work-image > span:last-child:not(:only-child) { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; color: #fff; background: rgba(6,23,51,.8); border-radius: 7px; font-size: .65rem; font-weight: 800; }
.work-media-empty { display: grid; place-items: center; color: var(--muted); }
.archive-work-body { padding: 22px; }
.archive-work-body h2 { margin: 0 0 6px; color: var(--navy-900); font-size: 1.2rem; }
.archive-work-body p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: .84rem; }

.lightbox { width: min(94vw, 1180px); max-width: none; height: min(90vh, 820px); max-height: none; padding: 0; overflow: hidden; background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(3,12,28,.92); backdrop-filter: blur(6px); }
.lightbox-shell { position: relative; width: 100%; height: 100%; display: grid; place-items: center; padding: 56px 72px 62px; color: #fff; background: rgba(5,20,45,.88); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; }
.lightbox figure { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; }
.lightbox figure img { max-width: 100%; max-height: calc(100% - 72px); object-fit: contain; border-radius: 8px; }
.lightbox figcaption { min-height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 12px; text-align: center; }
.lightbox figcaption span { color: #bbcadc; font-size: .78rem; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; cursor: pointer; }
.lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 1.6rem; }
.lightbox-nav { top: 50%; width: 46px; height: 46px; font-size: 2rem; transform: translateY(-50%); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-count { position: absolute; bottom: 16px; color: #aebed1; font-size: .72rem; }

.about-section { background: #fff; }
.about-layout { display: grid; grid-template-columns: 1.1fr .9fr; align-items: start; gap: 70px; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.about-values article { min-height: 160px; display: flex; flex-direction: column; justify-content: center; padding: 24px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.about-values strong { color: var(--navy-900); font-size: 1.7rem; }
.about-values span { color: var(--muted); font-size: .78rem; }

.full-contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; }
.contact-information { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-information article { display: flex; align-items: flex-start; gap: 14px; min-height: 145px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-symbol { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--blue-600); border-radius: 12px; font-size: .82rem; font-weight: 900; flex: 0 0 auto; }
.whatsapp-symbol { background: var(--green-600); }
.contact-information article p { margin: 0; color: var(--muted); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.contact-information article a, .contact-information article strong { color: var(--navy-900); font-size: .92rem; font-weight: 900; text-decoration: none; }
.contact-information address { color: var(--ink); font-size: .84rem; font-style: normal; }
.contact-information small { display: block; margin-top: 6px; color: var(--muted); font-size: .68rem; }
.contact-page-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 5px; }
.map-card { min-height: 480px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; height: 370px; border: 0; }
.map-card > div { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; padding: 20px; }
.map-card > div span { color: var(--muted); font-size: .78rem; }
.map-card > div a { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--blue-600); font-size: .8rem; font-weight: 900; text-decoration: none; }

.search-wrap { max-width: 940px; }
.search-form-large { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.search-form-large > div { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 7px; }
.search-guidance { padding: 54px 0; text-align: center; }
.search-guidance h2 { margin: 0; color: var(--navy-900); }
.search-guidance p { color: var(--muted); }
.search-results { display: grid; gap: 12px; }
.search-results article { padding: 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.search-results article > span { color: var(--blue-600); font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.search-results h2 { margin: 5px 0; color: var(--navy-900); font-size: 1.2rem; }
.search-results h2 a { text-decoration: none; }
.search-results p { margin: 0; color: var(--muted); font-size: .83rem; }

@media (max-width: 1100px) {
    .header-search { display: none; }
    .catalog-grid, .works-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-filters { grid-template-columns: repeat(3, 1fr); }
    .catalog-filters .button, .filter-reset { justify-content: center; }
    .detail-layout { gap: 40px; }
}

@media (max-width: 820px) {
    .header-search { width: 100%; display: flex; margin: 14px 0 0 !important; }
    .header-search input { width: 100%; min-height: 44px; }
    .inner-hero-content { min-height: 290px; }
    .content-card-grid, .brand-detail-grid, .region-card-grid { grid-template-columns: 1fr; }
    .detail-layout, .product-detail-layout, .about-layout, .full-contact-layout { grid-template-columns: 1fr; }
    .detail-sidebar, .product-info { position: static; }
    .sticky-contact-card { position: static; }
    .detail-cta-inner { align-items: flex-start; flex-direction: column; }
    .catalog-filters { grid-template-columns: repeat(2, 1fr); }
    .product-main-image { height: 460px; }
    .full-contact-layout { gap: 22px; }
}

@media (max-width: 560px) {
    .inner-hero-content { min-height: 260px; padding-block: 42px; }
    .inner-hero h1 { font-size: 2.45rem; }
    .content-card { grid-template-columns: 1fr; }
    .content-card-visual { min-height: 160px; }
    .process-list, .check-list, .catalog-grid, .works-archive-grid, .brand-detail-grid, .region-card-grid, .about-values, .contact-information { grid-template-columns: 1fr; }
    .detail-cta-actions, .catalog-empty div { width: 100%; flex-direction: column; }
    .detail-cta-actions .button, .catalog-empty div .button { width: 100%; }
    .catalog-filters { grid-template-columns: 1fr; }
    .catalog-filters .button, .filter-reset { width: 100%; }
    .brand-detail-card { grid-template-columns: 1fr; }
    .brand-detail-logo { min-height: 130px; }
    .product-main-image { height: 340px; }
    .product-thumbnails { grid-template-columns: repeat(4, 1fr); }
    .product-actions { grid-template-columns: 1fr; }
    .product-actions .button:last-child { grid-column: auto; }
    .product-specs div { grid-template-columns: 112px 1fr; }
    .archive-work-image, .video-frame { height: 240px; }
    .lightbox-shell { padding: 54px 14px 58px; }
    .lightbox-nav { top: auto; bottom: 12px; }
    .lightbox-prev { left: 14px; }
    .lightbox-next { right: 14px; }
    .map-card { min-height: 420px; }
    .map-card iframe { height: 310px; }
    .map-card > div { grid-template-columns: 1fr; }
    .map-card > div a { grid-column: 1; grid-row: auto; margin-top: 8px; }
    .search-form-large > div { grid-template-columns: 1fr; }
}
