:root {
  --green: #0b563e;
  --green-dark: #073a2c;
  --green-deep: #06271f;
  --yellow: #f6b900;
  --yellow-hover: #ffc92d;
  --ink: #0e211b;
  --body: #40534c;
  --muted: #5c6b66;
  --paper: #f5f8f6;
  --white: #ffffff;
  --line: #dbe4df;
  --soft-green: #eaf3ef;
  --shadow: 0 16px 40px rgba(10, 48, 36, .10);
  --radius: 14px;
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }

.skip-link { position: fixed; z-index: 9999; left: 1rem; top: 1rem; transform: translateY(-180%); padding: .8rem 1rem; background: var(--ink); color: #fff; border-radius: 10px; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section-pad { padding: 84px 0; }
.eyebrow { margin: 0 0 .7rem; color: var(--green); font-size: .72rem; line-height: 1.2; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 5.4vw, 5.4rem); margin-bottom: 1.35rem; }
h2 { font-size: clamp(2.2rem, 3.7vw, 3.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.16rem; margin-bottom: .55rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(11,86,62,.1); box-shadow: 0 5px 24px rgba(8,45,33,.05); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand-full { display: inline-flex; align-items: center; }
.brand-logo-mark { width: 62px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.68rem; letter-spacing: .025em; font-weight: 950; color: var(--ink); }
.brand-copy small { margin-top: 5px; font-size: .61rem; font-weight: 900; letter-spacing: .08em; color: var(--ink); white-space: nowrap; text-transform: uppercase; }

.brand-full { gap: 0; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; padding: 28px 0 25px; font-weight: 800; font-size: .91rem; text-decoration: none; color: #17231f; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 16px; height: 2px; background: var(--yellow); transition: right .18s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--green); }
.site-nav a:hover::after, .site-nav a.is-active::after { right: 0; }
.header-contact { display: flex; align-items: center; gap: 18px; margin-left: 18px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 900; font-size: .92rem; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .58rem; min-height: 48px; padding: .8rem 1.2rem; border-radius: 10px; border: 1px solid transparent; text-decoration: none; font-weight: 900; line-height: 1.1; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease; }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow); color: #0e211b; box-shadow: 0 10px 24px rgba(246,185,0,.18); }
.button-primary:hover { background: var(--yellow-hover); box-shadow: 0 12px 30px rgba(246,185,0,.24); }
.button-outline { border-color: var(--green); color: var(--green); background: rgba(255,255,255,.55); }
.button-outline:hover { background: #fff; }
.button-light { background: #fff; color: var(--green-dark); }
.button-dark { background: var(--green-deep); color: #fff; }
.button-outline-dark { border-color: rgba(6,39,31,.4); color: var(--green-deep); background: transparent; }
.button-large { min-height: 54px; padding: .95rem 1.45rem; }
.button-full { width: 100%; }

/* Hero */
.hero-showcase { position: relative; min-height: 540px; overflow: hidden; background: linear-gradient(90deg, #eff6f4 0%, #eef6f4 46%, #e5f0ec 100%); border-bottom: 1px solid var(--line); }
.hero-inner { min-height: 540px; display: flex; align-items: center; position: relative; z-index: 2; }
.hero-copy { width: 53%; padding: 56px 0 58px; }
.hero-kicker { margin: 0 0 .8rem; color: var(--green); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .24em; }
.hero-copy h1 { max-width: 10.8ch; }
.hero-lead { max-width: 650px; margin-bottom: 1.55rem; color: #253a33; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.5rem; }
.hero-location { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: #4c635b; font-size: .93rem; }
.hero-location svg { width: 20px; height: 20px; margin-right: 2px; fill: none; stroke: var(--green); stroke-width: 2; }
.hero-location b { color: #93a39d; font-weight: 600; }
.hero-art { position: absolute; z-index: 1; right: 0; top: 0; bottom: 0; width: 53%; overflow: hidden; }
.hero-art::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, #eef6f4 0%, rgba(238,246,244,.82) 10%, rgba(238,246,244,.14) 31%, transparent 50%); pointer-events: none; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 53% 62%; }

/* Trust strip */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(9,52,38,.035); }
.trust-grid { min-height: 102px; display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 15px; padding: 18px 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--soft-green); color: var(--green); }
.trust-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-item > div { display: grid; gap: 2px; }
.trust-item strong { font-size: .98rem; line-height: 1.2; }
.trust-item span:not(.trust-icon) { color: var(--muted); font-size: .82rem; line-height: 1.35; }

/* headings */
.section-heading { margin-bottom: 30px; }
.compact-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; }
.compact-heading h2 { font-size: clamp(2.25rem, 3vw, 3.25rem); margin-bottom: .55rem; }
.compact-heading > p { width: min(440px, 40%); color: var(--body); margin: 0 0 .4rem; }
.heading-rule { display: block; width: 58px; height: 4px; background: var(--yellow); border-radius: 999px; }
.centered-heading { text-align: center; max-width: 760px; margin-inline: auto; }
.centered-heading > p:last-child { color: var(--body); }

/* services */
.services-section { background: #fbfcfb; }
.services-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.service-card { min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 7px 20px rgba(7,58,44,.045); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(11,86,62,.25); }
.service-media { position: relative; height: 165px; background: var(--green-deep); overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.service-card:hover .service-media img { transform: scale(1.035); }
.service-badge { position: absolute; left: 14px; bottom: 14px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--yellow); border: 3px solid #fff; box-shadow: 0 5px 14px rgba(0,0,0,.13); }
.service-badge svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-body { padding: 30px 14px 16px; }
.service-body h3 { font-size: 1.02rem; letter-spacing: -.02em; }
.service-body p { min-height: 95px; margin-bottom: .85rem; color: #52655e; font-size: .8rem; line-height: 1.5; }
.service-body a { display: inline-flex; gap: 7px; align-items: center; color: #c98d00; font-weight: 900; font-size: .8rem; text-decoration: none; }
.service-body a span { font-size: 1rem; transition: transform .18s ease; }
.service-body a:hover span { transform: translateX(3px); }

/* experience */
.experience-band { background: var(--green-deep); color: #fff; }
.experience-grid { min-height: 250px; display: grid; grid-template-columns: 1.05fr 1.95fr; align-items: stretch; }
.experience-intro { display: flex; flex-direction: column; justify-content: center; padding: 42px 54px 42px 0; border-right: 1px solid rgba(255,255,255,.12); }
.experience-intro .eyebrow { color: var(--yellow); }
.experience-intro h2 { font-size: clamp(2rem, 3vw, 3rem); max-width: 12ch; margin-bottom: .8rem; }
.experience-intro p:last-child { color: rgba(255,255,255,.68); margin: 0; max-width: 540px; }
.experience-points { display: grid; grid-template-columns: repeat(3,1fr); }
.experience-points article { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.experience-points article:last-child { border-right: 0; }
.experience-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--yellow); margin-bottom: 12px; }
.experience-icon svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.experience-points strong { color: var(--yellow); font-size: .93rem; margin-bottom: .45rem; }
.experience-points p { color: rgba(255,255,255,.72); font-size: .82rem; margin: 0; max-width: 190px; }

/* works */
.work-section { background: var(--paper); }
.work-heading { max-width: 820px; }
.work-heading h2 { max-width: 13ch; }
.work-heading > p:last-child { color: var(--body); max-width: 720px; }
.work-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 270px; gap: 12px; }
.work-item { position: relative; padding: 0; overflow: hidden; border: 0; border-radius: 12px; background: var(--green-deep); cursor: zoom-in; }
.work-item-wide { grid-column: span 2; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.work-item:hover img { transform: scale(1.035); }
.work-item::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(3,23,17,.88)); }
.work-item > span { position: absolute; z-index: 2; left: 18px; bottom: 16px; color: #fff; font-size: 1rem; font-weight: 850; text-align: left; }
.work-item small { display: block; color: var(--yellow); font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 2px; }

/* process */
.process-section { background: #fff; }
.process-list { list-style: none; padding: 0; margin: 38px 0 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; counter-reset: none; }
.process-list li { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(7,58,44,.04); }
.process-list li > span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 20px; border-radius: 50%; background: var(--soft-green); color: var(--green); font-weight: 950; font-size: .78rem; }
.process-list strong { font-size: 1.03rem; }
.process-list p { margin: .45rem 0 0; color: var(--body); font-size: .87rem; }
.process-action { text-align: center; margin-top: 25px; }
.text-link { color: var(--green); font-weight: 900; text-underline-offset: 4px; }

/* area */
.area-section { overflow: hidden; position: relative; background: var(--green); color: #fff; }
.area-section::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; right: -110px; top: -220px; background: rgba(246,185,0,.11); filter: blur(15px); }
.area-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.area-copy .eyebrow { color: var(--yellow); }
.area-copy h2 { max-width: 11ch; }
.area-copy p { max-width: 630px; color: rgba(255,255,255,.76); }
.area-cards { display: grid; gap: 10px; }
.area-cards article { display: grid; grid-template-columns: 52px 1fr; align-items: center; column-gap: 14px; padding: 1.15rem 1.3rem; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.06); }
.area-cards article span { grid-row: span 2; color: var(--yellow); font-weight: 950; }
.area-cards article strong { font-size: 1.08rem; }
.area-cards article small { color: rgba(255,255,255,.62); }

/* CTA */
.cta-band { background: var(--yellow); color: var(--green-deep); }
.cta-band-inner { min-height: 235px; display: flex; justify-content: space-between; align-items: center; gap: 55px; }
.cta-band .eyebrow { color: rgba(6,39,31,.68); }
.cta-band h2 { max-width: 800px; font-size: clamp(2.25rem, 4vw, 3.8rem); margin: 0; }
.cta-band-actions { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }

/* contact */
.contact-section { background: #fbfcfb; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { max-width: 9ch; }
.contact-copy > p:not(.eyebrow) { color: var(--body); max-width: 520px; }
.contact-cards { display: grid; gap: 10px; margin-top: 1.7rem; }
.contact-cards a { text-decoration: none; padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 10px; display: grid; background: #fff; }
.contact-cards small { color: var(--muted); }
.contact-cards strong { font-size: 1.12rem; }
.contact-cards span { color: var(--green); font-size: .8rem; font-weight: 800; }
.contact-form { padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-size: .84rem; font-weight: 850; margin-bottom: 14px; }
.contact-form label > span { font-weight: 600; color: var(--muted); }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #ccd9d3; border-radius: 9px; background: #fbfdfc; padding: .88rem .95rem; outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(11,86,62,.10); }
.contact-form textarea { resize: vertical; min-height: 145px; }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 600 !important; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.form-note { text-align: center; color: var(--muted); font-size: .77rem; margin: .75rem 0 0; }
.hidden-field { position: absolute; left: -9999px; }

/* footer */
.site-footer { background: var(--green-deep); color: #fff; padding: 68px 0 24px; }
.brand-footer { align-items: flex-start; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3,.75fr); gap: 40px; }
.footer-grid > div { display: grid; align-content: start; gap: 8px; }
.footer-grid p { color: rgba(255,255,255,.58); max-width: 390px; font-size: .88rem; margin: 8px 0 0; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.68); text-decoration: none; font-size: .86rem; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 20px; color: rgba(255,255,255,.45); font-size: .76rem; }
.footer-bottom a { color: rgba(255,255,255,.76); }

.mobile-contact-bar { display: none; }
.lightbox { width: min(1100px,92vw); max-width: none; padding: 0; border: 0; border-radius: 14px; background: #061c15; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox::backdrop { background: rgba(0,0,0,.82); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; right: 10px; top: 10px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(0,0,0,.65); color: #fff; font-size: 1.7rem; cursor: pointer; }

/* policy pages */
.policy-page { min-height: 100vh; background: #fff; }
.policy-hero { padding: 72px 0 42px; border-bottom: 1px solid var(--line); background: var(--paper); }
.policy-hero h1 { max-width: 12ch; font-size: clamp(3rem, 6vw, 5.2rem); }
.policy-content { width: min(calc(100% - 40px), 820px); margin: 0 auto; padding: 64px 0 100px; }
.policy-content h2 { font-size: 1.9rem; margin-top: 2.2rem; }
.policy-content h3 { font-size: 1.3rem; margin-top: 1.8rem; }
.policy-content p, .policy-content li { color: #4f625b; }
.policy-back { display: inline-flex; margin-top: 20px; font-weight: 850; color: var(--green); }

@media (max-width: 1240px) {
  .site-nav { gap: 18px; }
  .header-phone span { display: none; }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .service-media { height: 205px; }
  .service-body p { min-height: 72px; }
}

@media (max-width: 1020px) {
  .header-call, .header-phone { display: none; }
  .hero-copy { width: 57%; }
  .hero-art { width: 50%; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-intro { padding-right: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .work-grid { grid-template-columns: repeat(2,1fr); }
  .process-list { grid-template-columns: repeat(2,1fr); }
  .contact-grid, .area-grid { gap: 46px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  body { padding-bottom: 64px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 68px 0; }
  .header-inner { min-height: 70px; }
    .brand-logo-mark { width: 52px; height: 40px; }
  .brand-copy strong { font-size: 1.45rem; }
  .brand-copy small { display: none; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; display: none; left: 14px; right: 14px; top: 72px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: .8rem .7rem; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-nav a:last-child { border-bottom: 0; }
  .header-contact { display: none; }
  .hero-showcase, .hero-inner { min-height: 0; }
  .hero-inner { display: block; }
  .hero-copy { width: 100%; padding: 58px 0 40px; }
  .hero-copy h1 { max-width: 12ch; font-size: clamp(3rem, 12vw, 5.1rem); }
  .hero-art { position: relative; width: 100%; height: 370px; }
  .hero-art::before { background: linear-gradient(180deg, #eef6f4 0%, rgba(238,246,244,.4) 14%, transparent 34%); }
  .hero-art img { object-position: 50% 58%; }
  .compact-heading { display: block; }
  .compact-heading > p { width: auto; max-width: 600px; margin-top: 18px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-body p { min-height: 0; }
  .experience-points { grid-template-columns: 1fr; }
  .experience-points article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .experience-points article:last-child { border-bottom: 0; }
  .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .cta-band-inner { min-height: 0; padding: 58px 0; display: grid; }
  .cta-band-actions { flex-direction: row; min-width: 0; }
  .cta-band-actions .button { flex: 1; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-contact-bar { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; height: 64px; display: grid; grid-template-columns: 1fr 1fr; background: var(--green-deep); border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 -10px 35px rgba(0,0,0,.18); }
  .mobile-contact-bar a { display: grid; place-items: center; color: #fff; text-decoration: none; font-weight: 950; text-transform: uppercase; letter-spacing: .04em; }
  .mobile-contact-bar a:last-child { background: var(--yellow); color: var(--green-deep); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  h2 { font-size: 2.35rem; }
  .hero-copy { padding-top: 44px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-art { height: 310px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0 !important; border-bottom: 1px solid var(--line); padding-inline: 4px; }
  .trust-item:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-media { height: 220px; }
  .service-body { padding: 30px 18px 18px; }
  .service-body h3 { font-size: 1.12rem; }
  .service-body p { font-size: .88rem; }
  .experience-intro { padding: 40px 0; }
  .experience-points article { padding: 28px 10px; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 235px; }
  .work-item-wide { grid-column: span 1; }
  .process-list { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; }
  .contact-form { padding: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
}

/* V4: stvarne fotografije i video */

.work-grid { grid-auto-flow: dense; grid-auto-rows: 185px; }
  
.video-section { background: #fff; border-top: 1px solid var(--line); }
.video-heading { align-items: end; }
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: start; }
.video-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 28px rgba(7,58,44,.055); }
.video-frame { position: relative; width: 100%; aspect-ratio: 9 / 13; overflow: hidden; background: #071e17; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; background: #071e17; }
.video-copy { display: grid; gap: 4px; padding: 18px 18px 20px; }
.video-copy small { color: #8a6100; font-size: .69rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.video-copy strong { font-size: 1.08rem; line-height: 1.2; }
.video-copy span { color: var(--muted); font-size: .84rem; }

@media (max-width: 1020px) {
  .work-grid { grid-auto-rows: 210px; }
  .video-grid { grid-template-columns: repeat(3,1fr); gap: 14px; }
}

@media (max-width: 820px) {
  .video-grid { grid-template-columns: repeat(2,1fr); }
  .video-card:first-child { grid-column: 1 / -1; }
  .video-card:first-child .video-frame { aspect-ratio: 16 / 10; }
  .video-card:first-child .video-frame video { object-fit: contain; }
}

@media (max-width: 560px) {
  .work-grid { grid-auto-rows: auto; }
  .work-item,
  .work-item-wide,
  .work-item-tall { grid-column: span 1; grid-row: span 1; min-height: 0; aspect-ratio: 4 / 3; }
  .work-item-tall { aspect-ratio: 4 / 5; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card:first-child { grid-column: auto; }
  .video-card:first-child .video-frame,
  .video-frame { aspect-ratio: 9 / 13; }
  .video-card:first-child .video-frame video { object-fit: cover; }
}

/* V5: cjelovitiji hero, jasnije ikone i ujednačena galerija */
.hero-showcase {
  min-height: 560px;
  background:
    radial-gradient(circle at 82% 28%, rgba(246,185,0,.10), transparent 23%),
    linear-gradient(90deg, #eff6f4 0%, #eef6f4 49%, #e7f1ed 100%);
}
.hero-inner { min-height: 560px; }
.hero-copy { width: 49%; padding: 62px 0; }
.hero-art {
  top: 50%;
  bottom: auto;
  right: 0;
  width: min(52vw, 890px);
  height: auto;
  transform: translateY(-50%);
  overflow: visible;
  padding: 0 0 0 28px;
}
.hero-art::before {
  inset: -30px 0 -30px -30px;
  background: linear-gradient(90deg, #eef6f4 0%, rgba(238,246,244,.92) 8%, rgba(238,246,244,.18) 24%, transparent 42%);
  border-radius: 36px 0 0 36px;
}
.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1.986 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 26px 0 0 26px;
  box-shadow: 0 24px 60px rgba(6,39,31,.16);
}

/* Ikone su potpuno vidljive unutar fotografije, bez rezanja na rubu kartice. */
.service-media::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(transparent, rgba(4,31,23,.22));
  pointer-events: none;
}
.service-badge {
  z-index: 2;
  left: 14px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.96);
  box-shadow: 0 7px 18px rgba(0,0,0,.20);
}
.service-badge svg { width: 23px; height: 23px; stroke-width: 1.95; }
.service-body { padding-top: 18px; }

/* Kontrolirani mozaik: 17 fotografija + tri široke kartice popunjavaju točno 20 grid mjesta. */
.work-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  gap: 14px;
}
.work-item,
.work-item-tall { grid-row: span 1; min-height: 0; }
.work-item-wide { grid-column: span 2; }
.work-item img,
 { object-position: center; }

/* Lightbox je sada pravi slider. */
.lightbox {
  width: min(1180px, 94vw);
  overflow: visible;
  background: #041712;
}
.lightbox-figure { margin: 0; }
.lightbox-stage {
  display: grid;
  place-items: center;
  min-height: min(72vh, 760px);
  padding: 18px 72px 0;
}
.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity .14s ease, transform .14s ease;
}
.lightbox img.is-changing { opacity: .35; transform: scale(.992); }
.lightbox-caption {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 76px 16px;
  color: #fff;
}
.lightbox-title { font-weight: 800; }
.lightbox-counter { color: rgba(255,255,255,.65); font-size: .84rem; white-space: nowrap; }
.lightbox-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(0,0,0,.46);
  color: #fff;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}
.lightbox-nav:hover { background: rgba(11,86,62,.92); transform: translateY(-50%) scale(1.03); }
.lightbox-nav span { font-size: 2.6rem; line-height: 1; margin-top: -4px; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-close { right: 12px; top: 12px; }

@media (max-width: 1240px) {
  .hero-art { width: 50vw; }
  .hero-copy { width: 52%; }
}

@media (max-width: 1020px) {
  .hero-showcase, .hero-inner { min-height: 525px; }
  .hero-copy { width: 52%; }
  .hero-art { width: 49vw; padding-left: 18px; }
  .work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 245px; }
}

@media (max-width: 820px) {
  .hero-showcase { min-height: 0; }
  .hero-inner { min-height: 0; }
  .hero-copy { width: 100%; padding-bottom: 34px; }
  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
    padding: 0 14px 26px;
  }
  .hero-art::before { display: none; }
  .hero-art img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.986 / 1;
    border-radius: 18px;
  }
  .lightbox-stage { min-height: 58vh; padding: 56px 54px 0; }
  .lightbox-caption { padding-inline: 58px; }
  .lightbox-nav { width: 44px; height: 62px; }
}

@media (max-width: 560px) {
  .hero-art { height: auto; padding-inline: 0; }
  .hero-art img { aspect-ratio: 16 / 9; object-fit: cover; }
  .service-body { padding-top: 18px; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 12px; }
  .work-item,
  .work-item-wide,
  .work-item-tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 4 / 3; }
  .lightbox { width: 96vw; }
  .lightbox-stage { min-height: 55vh; padding: 54px 42px 0; }
  .lightbox-caption { padding: 10px 46px 14px; align-items: flex-start; }
  .lightbox-title { font-size: .86rem; }
  .lightbox-nav { width: 38px; height: 56px; border-radius: 10px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* V6: full-bleed hero, legal footer and cookie notice */
.hero-showcase {
  min-height: clamp(610px, 45vw, 860px);
  background: #dceee9;
  isolation: isolate;
}
.hero-inner { min-height: clamp(610px, 45vw, 860px); }
.hero-copy {
  width: min(54%, 730px);
  padding: 72px 0;
  position: relative;
  z-index: 4;
}
.hero-copy h1 { max-width: 10.9ch; text-wrap: balance; }
.hero-lead { color: #253a33; max-width: 620px; }
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  padding: 0;
  overflow: hidden;
  background: #dceee9 url("hero-krk-bager.webp") center 30% / cover no-repeat;
}
.hero-art::before { display: none; }
.hero-art::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(247,250,249,.99) 0%,
      rgba(247,250,249,.97) 22%,
      rgba(247,250,249,.91) 37%,
      rgba(247,250,249,.68) 49%,
      rgba(247,250,249,.22) 65%,
      rgba(247,250,249,.03) 82%),
    linear-gradient(180deg, rgba(5,35,26,.02) 0%, transparent 72%, rgba(5,35,26,.10) 100%);
  pointer-events: none;
}
.hero-art img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: right center;
  border-radius: 0;
  box-shadow: none;
}
.hero-actions .button-outline {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
}
.hero-location {
  display: inline-flex;
  padding: .62rem .85rem;
  border: 1px solid rgba(11,86,62,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(8px);
}
.hero-visual-note {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(4,31,23,.72);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .03em;
  backdrop-filter: blur(10px);
}
.hero-visual-note:hover { background: var(--green-deep); color: #fff; }
.hero-visual-note span { color: var(--yellow); }

.footer-link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: rgba(255,255,255,.68);
  text-align: left;
  font-size: .86rem;
  cursor: pointer;
}
.footer-link-button:hover { color: var(--yellow); }
.footer-business-id {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.58);
  font-size: .76rem;
  line-height: 1.45;
}
.footer-business-id strong { color: rgba(255,255,255,.82); }
.footer-bottom { margin-top: 20px; }

.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  z-index: 300;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-banner-inner {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 17px;
  border: 1px solid rgba(11,86,62,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 22px 70px rgba(4,31,23,.23);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}
.cookie-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-green);
  color: var(--green);
}
.cookie-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cookie-copy { min-width: 0; }
.cookie-copy strong { display: block; margin-bottom: 3px; font-size: .94rem; }
.cookie-copy p { margin: 0; color: #53655f; font-size: .79rem; line-height: 1.45; }
.cookie-copy a { display: inline-block; margin-top: 3px; color: var(--green); font-size: .76rem; font-weight: 850; }
.cookie-actions .button { min-height: 42px; padding: .68rem 1.05rem; white-space: nowrap; }

.policy-footer {
  background: var(--green-deep);
  color: #fff;
  padding: 30px 0;
}
.policy-footer-inner { display: grid; gap: 7px; color: rgba(255,255,255,.64); font-size: .78rem; }
.policy-footer-inner strong { color: #fff; }
.policy-footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 8px; }
.policy-footer a, .policy-footer button { color: rgba(255,255,255,.72); }
.policy-footer a:hover, .policy-footer button:hover { color: var(--yellow); }

.source-list { display: grid; gap: 16px; margin: 28px 0 0; }
.source-card { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.source-card h2 { font-size: 1.35rem; margin: 0 0 8px; }
.source-card p { margin-bottom: 0; }
.source-tag { display: inline-flex; margin-bottom: 9px; padding: 5px 8px; border-radius: 999px; background: var(--soft-green); color: var(--green); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 1020px) {
  .hero-copy { width: 58%; }
  .hero-art::after {
    background: linear-gradient(90deg, rgba(247,250,249,.99) 0%, rgba(247,250,249,.96) 31%, rgba(247,250,249,.78) 48%, rgba(247,250,249,.20) 72%, rgba(247,250,249,.04) 100%);
  }
}

@media (max-width: 820px) {
  .hero-showcase, .hero-inner { min-height: 710px; }
  .hero-inner { display: flex; align-items: flex-start; }
  .hero-copy { width: 100%; padding: 54px 0 230px; }
  .hero-copy h1 { max-width: 10ch; }
  .hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background-position: 68% center;
  }
  .hero-art img { display: none; }
  .hero-art::after {
    display: block;
    background: linear-gradient(180deg, rgba(247,250,249,.99) 0%, rgba(247,250,249,.97) 38%, rgba(247,250,249,.78) 54%, rgba(247,250,249,.20) 72%, rgba(247,250,249,.06) 100%);
  }
  .hero-visual-note { right: 12px; bottom: 12px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 74px; }
  .cookie-banner-inner { grid-template-columns: auto 1fr; }
  .cookie-actions { grid-column: 1 / -1; }
  .cookie-actions .button { width: 100%; }
  .footer-business-id { display: grid; }
}

@media (max-width: 560px) {
  .hero-showcase, .hero-inner { min-height: 720px; }
  .hero-copy { padding: 44px 0 255px; }
  .hero-location { border-radius: 14px; }
  .cookie-icon { display: none; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 10px; padding: 14px; }
}

/* V7: jedan hero vizual bez ponavljanja + poravnati CTA linkovi u uslugama */
.hero-showcase {
  min-height: clamp(610px, 43vw, 760px);
  background: linear-gradient(180deg, #d9edf7 0%, #e9f3ef 55%, #d8d5c3 100%);
}
.hero-inner { min-height: clamp(610px, 43vw, 760px); }
.hero-art {
  background: linear-gradient(180deg, #d9edf7 0%, #e9f3ef 55%, #d8d5c3 100%);
}
.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
.hero-art::after {
  background:
    linear-gradient(90deg,
      rgba(247,250,249,.99) 0%,
      rgba(247,250,249,.97) 22%,
      rgba(247,250,249,.91) 37%,
      rgba(247,250,249,.70) 49%,
      rgba(247,250,249,.27) 64%,
      rgba(247,250,249,.04) 80%,
      rgba(247,250,249,0) 100%),
    linear-gradient(180deg, rgba(5,35,26,.02) 0%, transparent 74%, rgba(5,35,26,.08) 100%);
}

.service-card {
  display: flex;
  flex-direction: column;
}
.service-media { flex: 0 0 165px; }
.service-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
.service-body p {
  min-height: 0;
}
.service-body > a {
  margin-top: auto;
  padding-top: .45rem;
}

@media (min-width: 1700px) {
  .hero-showcase,
  .hero-inner { min-height: 690px; }
  .hero-art img {
    width: min(100%, 1560px);
    margin-left: auto;
    object-fit: contain;
    object-position: right center;
  }
  .hero-art::after {
    background:
      linear-gradient(90deg,
        rgba(247,250,249,.99) 0%,
        rgba(247,250,249,.98) 24%,
        rgba(247,250,249,.92) 36%,
        rgba(247,250,249,.70) 48%,
        rgba(247,250,249,.18) 64%,
        rgba(247,250,249,0) 78%);
  }
}

@media (max-width: 820px) {
  .hero-showcase,
  .hero-inner { min-height: 710px; }
  .hero-art { background: #dceee9; }
  .hero-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 67% bottom; }
}

@media (max-width: 560px) {
  .hero-showcase,
  .hero-inner { min-height: 720px; }
  .hero-art img { object-position: 70% bottom; }
}

/* V8: bolja čitljivost hero teksta na mobitelu */
@media (max-width: 820px) {
  .hero-art::after {
    display: block;
    background:
      linear-gradient(180deg,
        rgba(247,250,249,.995) 0%,
        rgba(247,250,249,.985) 34%,
        rgba(247,250,249,.965) 58%,
        rgba(247,250,249,.92) 70%,
        rgba(247,250,249,.72) 80%,
        rgba(247,250,249,.30) 90%,
        rgba(247,250,249,.05) 100%);
  }
  .hero-lead {
    color: #182b24;
    max-width: 34rem;
  }
}

@media (max-width: 560px) {
  .hero-art::after {
    background:
      linear-gradient(180deg,
        rgba(247,250,249,.998) 0%,
        rgba(247,250,249,.99) 38%,
        rgba(247,250,249,.975) 60%,
        rgba(247,250,249,.94) 72%,
        rgba(247,250,249,.76) 82%,
        rgba(247,250,249,.34) 91%,
        rgba(247,250,249,.06) 100%);
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.62;
  }
}

/* V9: mobile hero — sadržaj gore, cijela ilustracija ispod bez cropanja */
@media (max-width: 820px) {
  .hero-showcase {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: #f7faf9;
  }

  .hero-inner {
    order: 1;
    width: 100%;
    min-height: 0;
    display: block;
    background: #f7faf9;
  }

  .hero-copy {
    width: 100%;
    padding: 46px 0 34px;
  }

  .hero-art {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: #dceee9;
  }

  .hero-art img {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: center;
  }

  .hero-art::after {
    display: none;
  }

  .hero-lead {
    max-width: 38rem;
    color: #182b24;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding: 38px 0 28px;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
  }

  .hero-actions {
    margin-bottom: 1.15rem;
  }

  .hero-location {
    margin-bottom: 0;
  }
}

/* V12 cleaned PNG logos */
.brand-full { align-items: center; }

/* V13 logo integration overrides */
.brand.brand-full { gap: 0; }
.brand-footer { align-items: flex-start; }

/* V14 logo swap overrides */
.brand.brand-full{gap:0;}

/* V15 compact logo sizing */

/* ============================================================
   V16 ispravci: pristupačnost, sidrene poveznice, smanjena animacija
   ============================================================ */

/* Sidra ispod ljepljivog headera (78px + zrak) */
:target,
#top, #usluge, #radovi, #video, #podrucje, #kontakt { scroll-margin-top: 96px; }

/* Vidljiv fokus za tipkovnicu na svim interaktivnim elementima */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
.work-item:focus-visible { outline-offset: -3px; }

/* Poštovanje postavke "smanji animacije" */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Ispis stranice (klijenti često printaju kontakt) */
@media print {
  .site-header, .mobile-contact-bar, .cookie-banner, .hero-art, .lightbox { display: none !important; }
  body { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}


/* ============================================================
   V17 — logotipi, kartice usluga, galerija, podnožje
   ============================================================ */

/* ---- Logotipi: jedno mjesto istine, bez !important ---- */
.brand-logo-full { display: block; width: 236px; max-width: 100%; height: auto; object-fit: contain; }
.brand-logo-footer { width: 210px; }
.brand-footer-card { display: inline-flex; align-items: center; padding: 0; background: transparent; border-radius: 0; box-shadow: none; }
@media (max-width: 1020px) { .brand-logo-full { width: 210px; } }
@media (max-width: 820px)  { .brand-logo-full { width: 196px; } .brand-logo-footer { width: 196px; } }
@media (max-width: 560px)  { .brand-logo-full { width: 172px; } .brand-logo-footer { width: 182px; } }

/* ---- Kartice usluga ---- */
/* Ikona sjedi cijela unutar fotografije, odmaknuta od donjeg ruba. */
.service-media { overflow: hidden; }
.service-badge { bottom: 18px; z-index: 3; }

/* Svih šest CTA poveznica u istoj liniji, bez obzira na duljinu teksta. */
.services-grid { align-items: stretch; }
.service-card { height: 100%; }
.service-body { display: flex; flex: 1 1 auto; flex-direction: column; padding-bottom: 18px; }
.service-body p { min-height: 0; margin-bottom: 1rem; }
.service-body > a { margin-top: auto; padding-top: 0; }

/* ---- Galerija: mozaik bez rupa ---- */
/* 17 fotografija + 3 široke kartice = 20 mjesta = točno 5 redova po 4 stupca.
   Sve kartice su jednake visine, pa zadnji red ne može ostati krnj. */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 14px;
}
.work-item,
.work-item-tall,
.work-item-wide { grid-row: span 1; min-height: 0; aspect-ratio: auto; }
.work-item-wide { grid-column: span 2; }
.work-item img { object-position: center; }

@media (max-width: 1020px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 230px; }
  .work-item-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .work-item,
  .work-item-tall,
  .work-item-wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ---- Podnožje: kompaktnije i uredno poravnato ---- */
.site-footer { padding: 48px 0 20px; }
.footer-grid { grid-template-columns: 1.6fr .9fr .9fr 1.1fr; gap: 28px 36px; }
.footer-grid > div { gap: 7px; }
.footer-grid strong { margin-bottom: 3px; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.92); }
.footer-grid p { margin: 10px 0 0; max-width: 320px; font-size: .84rem; line-height: 1.5; }
.footer-grid a, .footer-grid span { font-size: .84rem; line-height: 1.45; }
.footer-brand { align-content: start; }

/* Gumb za kolačiće mora izgledati kao ostale poveznice, bez sive podloge. */
.footer-link-button {
  appearance: none;
  -webkit-appearance: none;
  justify-self: start;
  width: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
  color: rgba(255,255,255,.68);
  text-align: left;
  font: inherit;
  font-size: .84rem;
  line-height: 1.45;
  cursor: pointer;
}
.footer-link-button:hover { color: var(--yellow); background: transparent; }

.footer-business-id { margin-top: 26px; padding-top: 16px; gap: 5px 18px; font-size: .74rem; }
.footer-bottom { margin-top: 16px; padding-top: 14px; font-size: .74rem; }

@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .site-footer { padding: 38px 0 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Isti tretman gumba i u podnožju pravnih stranica */
.policy-footer-links .footer-link-button { color: rgba(255,255,255,.68); }

/* ---- Galerija: povlacenje fotografije ---- */
.lightbox-stage { cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.lightbox-stage:active { cursor: grabbing; }
.lightbox-stage img { -webkit-user-drag: none; pointer-events: none; }
