/* FURO ENGINEERING — Beta CSS — Furo Engineering nettside */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

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

:root {
  --bg:        hsl(220,13%,7%);
  --bg-card:   hsl(220,13%,9%);
  --bg-muted:  hsl(220,13%,12%);
  --bg-topbar: hsl(220,13%,5%);
  --fg:        hsl(0,0%,96%);
  --fg-muted:  hsl(220,5%,60%);
  --primary:   hsl(0,75%,50%);
  --primary-fg:hsl(0,0%,100%);
  --border:    hsl(220,13%,16%);
  --radius:    0.25rem;
  --font:      'Inter', sans-serif;
  --font-head: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--fg); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }

/* TOPBAR */
.topbar { background: var(--bg-topbar); padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar-left, .topbar-right { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; color: var(--fg-muted); font-size: 0.8rem; transition: color 0.2s; }
.topbar-item:hover { color: var(--fg); }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: hsl(220,13%,7%,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 0.5rem; flex: 1; justify-content: center; }
.nav-link { padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); transition: all 0.2s; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; }
.nav-link:hover { color: var(--fg); background: hsl(220,13%,12%); }
.nav-link.active { color: var(--primary); }
.nav-chevron { font-size: 0.7rem; }
.btn-nav-cta { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 1.25rem; border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--fg); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; }
.btn-nav-cta:hover { border-color: var(--primary); color: var(--primary); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.7rem 1.5rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; border: 1px solid transparent; }
.btn-primary { background: transparent; color: var(--fg); border-color: hsl(220,13%,25%); }
.btn-primary:hover { border-color: var(--fg); }
.btn-primary .btn-arrow { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--fg); color: var(--bg); font-size: 0.8rem; margin-left: 0.25rem; transition: background 0.2s; }
.btn-primary:hover .btn-arrow { background: var(--primary); color: var(--primary-fg); }
.btn-secondary { background: transparent; color: var(--fg); border-color: hsl(220,13%,25%); }
.btn-secondary:hover { border-color: var(--fg); }
.btn-ghost { background: transparent; color: var(--fg-muted); border: none; padding: 0; font-size: 0.875rem; }
.btn-ghost:hover { color: var(--primary); }
.btn-full { width: 100%; justify-content: center; }
.inline-link { color: var(--primary); }

/* SECTION LABELS */
.section-label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 2.5rem; }
.section-label-num { font-variant-numeric: tabular-nums; }
.section-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.section-label-text { font-style: italic; }

/* HERO */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: flex-start; overflow: hidden; background: hsl(220,13%,4%); padding-bottom: 0; padding-top: 30vh; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,16,22,0.3) 0%, rgba(13,16,22,0.7) 70%, hsl(220,13%,7%) 100%); }
.hero-content-wrap { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.hero-eyebrow { display: none; }
.hero-title { font-family: var(--font-head); line-height: 0.9; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 1.5rem; }
.hero-title-line1 { display: block; font-size: clamp(2.5rem,5vw,4rem); font-weight: 300; }
.hero-title-line2 { display: block; font-size: clamp(4rem,11vw,9rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; }
.hero-highlight { color: var(--fg); }
.hero-subtitle { font-size: clamp(1rem,2vw,1.2rem); color: var(--fg-muted); font-style: italic; margin-bottom: 2.5rem; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-sidebanner { display: none; }

/* PAGE HEADER */
.page-header { background: var(--bg); min-height: 100vh; display: flex; align-items: center; border-bottom: 1px solid var(--border); position: relative; }
.page-header-title { font-family: var(--font-head); font-size: clamp(3rem,8vw,7rem); font-weight: 700; color: var(--fg); line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase; margin-bottom: 1rem; }
.page-header-subtitle { font-size: 1rem; color: var(--fg-muted); font-style: italic; max-width: 500px; }
.section-kicker { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 2rem; font-style: italic; }
.gallery-ledger { display: block; margin-top: 1rem; font-size: 0.8rem; color: var(--fg-muted); }

/* SECTION HEADINGS */
.section-heading { font-family: var(--font-head); font-size: clamp(2rem,5vw,4rem); font-weight: 300; line-height: 1.05; color: var(--fg); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.section-intro { font-size: 0.95rem; color: var(--fg-muted); max-width: 560px; margin-bottom: 3rem; line-height: 1.75; }
.heading-highlight { color: var(--primary); font-style: italic; }
.body-text { color: var(--fg-muted); margin-bottom: 1.25rem; line-height: 1.8; font-size: 0.95rem; }

/* ABOUT */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text { }
.about-image-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; }
.about-overlay-badges { position: absolute; bottom: 2rem; left: 2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.about-overlay-badges span { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--fg); line-height: 1; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.about-creds { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 2rem; }
.cred-item { background: var(--bg-card); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.cred-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.cred-value { font-family: var(--font-head); font-size: 0.95rem; color: var(--fg); font-weight: 500; line-height: 1.3; }
.cred-caption { font-size: 0.78rem; color: var(--fg-muted); }

/* SERVICES */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-card { display: grid; grid-template-columns: 48px 1fr auto 1fr; align-items: center; gap: 1.5rem; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--fg); transition: background 0.2s; }
.service-card:last-child { border-bottom: none; }
.service-card:hover { background: var(--bg-muted); }
.service-num { font-size: 0.78rem; color: var(--fg-muted); font-variant-numeric: tabular-nums; }
.service-title-line1 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 400; }
.service-title-line1 em { color: var(--fg-muted); font-style: italic; }
.service-tail { font-size: 0.8rem; color: var(--fg-muted); }
.service-overlay { font-size: 0.8rem; color: var(--primary); font-style: italic; text-align: right; }
.service-arrow { color: var(--fg-muted); font-size: 1rem; }

/* WHY */
.why-section { background: hsl(220,13%,11%); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.why-card { background: var(--bg-card); padding: 2.5rem 2rem; }
.why-title { display: flex; flex-direction: column; font-family: var(--font-head); font-size: 1.6rem; font-weight: 300; line-height: 1.1; margin-bottom: 1.25rem; color: var(--fg); }
.why-tail { color: var(--primary); font-style: italic; }
.why-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.75; }

/* EQUIPMENT TEASER */
.equipment-section { background: var(--bg); }
.equipment-brands { display: flex; flex-direction: column; gap: 2rem; }
.brand-group { }
.brand-name { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.brand-items { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.equip-chip { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding: 1.25rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); width: 150px; text-align: center; transition: border-color 0.2s; }
.equip-chip:hover { border-color: var(--primary); }
.equip-chip img { width: 72px; height: 54px; object-fit: contain; }
.equip-chip span { font-size: 0.78rem; font-weight: 500; color: var(--fg); line-height: 1.3; }
.equip-chip small { font-size: 0.7rem; color: var(--primary); }

/* GALLERY */
.gallery-section { background: var(--bg); overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.gallery-thumb { display: block; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.gallery-thumb:first-child { grid-row: span 2; aspect-ratio: auto; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.7); }
.gallery-thumb:hover img { transform: scale(1.05); filter: brightness(0.9); }
.gallery-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.gallery-item { display: block; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.75); }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.95); }

/* CTA */
.cta-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { text-align: center; }
.cta-title { font-family: var(--font-head); font-size: clamp(1.75rem,4vw,3rem); font-weight: 300; color: var(--fg); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.cta-subtitle { color: var(--fg-muted); margin-bottom: 2rem; font-size: 0.95rem; }

/* TJENESTER */
.services-list-section { background: var(--bg); }
.capabilities-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 0; }
.cap-tag { padding: 0.35rem 0.9rem; border: 1px solid var(--border); border-radius: 999px; font-size: 0.78rem; color: var(--fg-muted); background: var(--bg-card); }
.services-accordion { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-row { display: grid; grid-template-columns: 240px 1fr; align-items: start; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--bg-muted); }
.svc-left { overflow: hidden; aspect-ratio: 1; }
.svc-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); transition: filter 0.3s; }
.svc-row:hover .svc-img { filter: brightness(0.9); }
.svc-right { padding: 2rem; }
.svc-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.svc-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 400; color: var(--fg); margin-bottom: 0.75rem; line-height: 1.2; }
.svc-short { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.7; }
.svc-long { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.svc-long p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.75rem; }
.svc-suit { font-size: 0.82rem; color: var(--fg-muted); margin-top: 0.75rem; }
.svc-suit strong { color: var(--fg); }
.svc-list { padding-left: 1.5rem; color: var(--fg-muted); font-size: 0.9rem; line-height: 1.8; }
.svc-toggle { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; padding: 0.4rem 1rem; border: 1px solid var(--border); border-radius: 999px; background: none; cursor: pointer; font-size: 0.8rem; font-weight: 500; color: var(--fg-muted); transition: all 0.2s; }
.svc-toggle:hover { border-color: var(--primary); color: var(--primary); }
.hidden { display: none !important; }

/* EQUIPMENT PAGE */
.equipment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.equip-card { background: var(--bg-card); padding: 2rem; transition: background 0.2s; }
.equip-card:hover { background: var(--bg-muted); }
.equip-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.equip-card img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: var(--bg); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; filter: brightness(0.9); }
.equip-brand { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.4rem; }
.equip-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 400; color: var(--fg); margin-bottom: 0.25rem; }
.equip-descriptor { font-size: 0.8rem; color: var(--fg-muted); }
.equip-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.75; margin: 1.25rem 0; }
.equip-specs { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-row { display: flex; justify-content: space-between; padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--fg-muted); }
.spec-row span:last-child { font-weight: 600; color: var(--fg); }
.equipment-grid-single { grid-template-columns: 1fr 1fr; }

/* OM OSS */
.about-identity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-full { width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.8); }
.mission-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.mission-badges span { font-family: var(--font-head); font-size: 1.1rem; font-weight: 300; color: var(--primary); }
.leveranser-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.leveranse-card { background: var(--bg-card); padding: 2rem; }
.leveranse-card h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--fg); }
.leveranse-card p { font-size: 0.85rem; color: var(--fg-muted); }
.operasjon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.operasjon-quote { font-family: var(--font-head); font-size: 1.5rem; font-weight: 300; border-left: 2px solid var(--primary); padding-left: 1.5rem; margin: 2rem 0; color: var(--fg); line-height: 1.4; }
.uas-box { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); margin-top: 2rem; background: var(--bg-card); }
.uas-logo { width: 48px; height: auto; flex-shrink: 0; filter: brightness(0.8); }
.uas-box h4 { font-weight: 600; margin-bottom: 0.25rem; font-size: 0.9rem; }
.uas-box p { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 0.5rem; }
.operasjon-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.presse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.presse-card { background: var(--bg-card); padding: 2rem; }
.presse-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.presse-title { font-family: var(--font-head); font-size: 1rem; font-weight: 300; color: var(--fg); line-height: 1.5; }

/* KONTAKT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 2rem; }
.contact-detail-item { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); background: var(--bg-card); }
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }
.contact-detail-value { font-size: 0.95rem; color: var(--fg); transition: color 0.2s; }
a.contact-detail-value:hover { color: var(--primary); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--fg-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group textarea { padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font); font-size: 0.9rem; color: var(--fg); background: var(--bg-card); transition: border-color 0.2s; outline: none; width: 100%; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--fg-muted); text-align: center; margin-top: 0.5rem; }

/* FOOTER */
.site-footer { background: var(--bg-topbar); padding: 5rem 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); }
.footer-logo { height: 44px; width: auto; margin-bottom: 1.5rem; }
.footer-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 0.4rem; }
.footer-tagline-line { font-family: var(--font-head); font-size: 0.95rem; font-weight: 300; color: var(--fg-muted); display: block; }
.footer-tagline-hl { color: var(--primary); }
.footer-col-heading { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: hsl(220,5%,35%); margin-bottom: 1rem; }
.footer-nav-col, .footer-contact-col, .footer-region-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-col a, .footer-contact-col a, .footer-contact-col span { font-size: 0.875rem; color: var(--fg-muted); transition: color 0.2s; }
.footer-nav-col a:hover, .footer-contact-col a:hover { color: var(--fg); }
.footer-region-coords { font-family: var(--font-head); font-size: 1.5rem; font-weight: 300; color: hsl(220,13%,20%); letter-spacing: 0.05em; }
.footer-region-area { font-size: 0.8rem; color: hsl(220,5%,30%); margin-top: 0.35rem; }
.footer-bottom { padding: 1.5rem 2rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 1rem; border-top: 1px solid var(--border); }
.footer-bottom span { font-size: 0.78rem; color: hsl(220,5%,30%); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-creds { grid-template-columns: repeat(2,1fr); }
  .leveranser-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .service-card { grid-template-columns: 32px 1fr 1fr; }
  .service-card .service-overlay { display: none; }
}
@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  .about-grid, .about-identity-grid, .operasjon-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-creds { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-left { display: none; }
  .equip-card-featured { grid-template-columns: 1fr; }
  .presse-grid, .operasjon-creds { grid-template-columns: 1fr; }
  .hero-title-line2 { font-size: clamp(3rem,12vw,7rem); }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg-topbar); flex-direction: column; padding: 1rem 2rem 1.5rem; gap: 0.25rem; border-bottom: 1px solid var(--border); z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .services-grid, .gallery-grid, .gallery-full-grid, .equipment-grid { grid-template-columns: 1fr; }
  .about-creds, .leveranser-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .brand-items { gap: 0.6rem; }
  .equip-chip { width: 130px; }
  .service-card { grid-template-columns: 28px 1fr; }
}

/* TRANSPARENT TOPBAR + HEADER over hero */
body:not(.scrolled-page) .topbar {
  background: transparent;
  border-bottom: none;
}
body:not(.scrolled-page) .site-header {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}
body.scrolled-page .topbar {
  background: var(--bg-topbar);
  border-bottom: 1px solid var(--border);
}
body.scrolled-page .site-header {
  background: hsl(220,13%,7%,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Topbar + header stacked absolutely over hero */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; transition: background 0.4s, border-color 0.4s; }
.site-header { top: 40px; transition: background 0.4s, border-color 0.4s, box-shadow 0.3s; }

/* HERO TEXT — sentrert + reveal-animasjon */
.hero-content-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-subtitle { text-align: center; }
.hero-cta-group { justify-content: center; }

/* Clip-path reveal: tekst vises fra midten og ut */
@keyframes revealFromCenter {
  from { clip-path: inset(0 50% 0 50%); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0%);   opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title-line1 {
  animation: revealFromCenter 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-title-line2 {
  animation: revealFromCenter 1s cubic-bezier(0.16,1,0.3,1) 0.35s both;
}
.hero-subtitle {
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}
.hero-cta-group {
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.9s both;
}

/* TOPBAR SOCIAL + LANG */
.topbar-pin { flex-shrink: 0; color: var(--fg-muted); }
.topbar-social {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--fg-muted); transition: all 0.2s;
}
.topbar-social:hover { border-color: var(--primary); color: var(--primary); }

.topbar-lang {
  display: flex; align-items: center; gap: 0.35rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 0.2rem 0.6rem;
}
.lang-sep { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.lang-btn {
  display: flex; align-items: center; gap: 0.35rem;
  background: none; border: none; cursor: pointer;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--fg-muted); padding: 0; transition: color 0.2s;
  font-family: var(--font);
}
.lang-btn img { border-radius: 2px; display: block; }
.lang-btn:hover { color: var(--fg); }
.lang-btn.active { color: var(--fg); }

/* Page header med bakgrunnsbilde */
.page-header[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,16,22,0.1) 0%, rgba(13,16,22,0.55) 100%);
}
.page-header .container {
  position: relative;
  z-index: 1;
}

/* EQUIPMENT DETAIL — stort bilde venstre, tekst/specs høyre */
.equip-detail-section {
  padding: 4rem 0;
}
.equip-detail-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 4rem;
  align-items: start;
  position: relative;
}
.equip-detail-num {
  grid-column: 1; grid-row: 1;
  font-size: 0.78rem; color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
  margin-bottom: 1rem; display: block;
}
.equip-detail-img-wrap {
  grid-column: 1; grid-row: 2;
}
.equip-detail-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
}
.equip-detail-info {
  grid-column: 2; grid-row: 1 / span 2;
  padding-top: 2rem;
}
.equip-detail-brand {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 0.5rem;
}
.equip-detail-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--fg);
  line-height: 1.1; margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.equip-detail-desc {
  font-size: 0.95rem; color: var(--fg-muted);
  line-height: 1.75; margin-bottom: 3rem;
  max-width: 480px;
}
.equip-detail-specs {
  display: flex; flex-direction: column; gap: 0;
}
.equip-detail-spec {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.equip-detail-spec span:first-child { color: var(--fg-muted); }
.equip-detail-spec span:last-child { font-weight: 600; color: var(--fg); font-size: 1.1rem; }

@media (max-width: 768px) {
  .equip-detail-inner { grid-template-columns: 1fr; }
  .equip-detail-info { grid-column: 1; grid-row: 3; padding-top: 1.5rem; }
}

/* EQUIPMENT CHAPTER HEADER */
.equip-chapter-header {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
  border-bottom: none;
}
.equip-chapter-label {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; color: var(--fg-muted);
  margin-bottom: 1.5rem; font-style: italic;
}
.equip-chapter-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.equip-chapter-title-row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 2rem;
  margin-bottom: 1.25rem;
}
.equip-chapter-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; color: var(--fg);
  line-height: 1; letter-spacing: -0.03em;
}
.equip-chapter-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--bg-muted); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.5rem 1rem;
  font-size: 0.82rem; color: var(--fg-muted);
  white-space: nowrap; align-self: center;
}
.equip-chapter-badge-icon {
  font-size: 1rem; color: var(--primary);
}
.equip-chapter-desc {
  font-size: 0.95rem; color: var(--fg-muted);
  max-width: 560px; line-height: 1.7; font-style: italic;
}

/* PAGE HEADER — matcher hero-stil */
.page-header-label {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem; font-style: italic;
}
.page-header-num { font-variant-numeric: tabular-nums; }
.page-header-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.page-header-eyebrow { font-style: italic; }
.page-header-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300; color: #fff;
  line-height: 0.9; letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page-header-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  font-style: italic; max-width: 500px;
}

/* GALLERY INTRO */
.gallery-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 4rem;
}
.gallery-archive-label {
  font-size: 0.78rem; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; margin-bottom: 1rem;
}
.gallery-intro-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300; color: var(--fg);
  line-height: 1.1; letter-spacing: -0.02em;
}
.gallery-intro-sub {
  font-size: 1rem; color: var(--fg-muted);
  font-style: italic; line-height: 1.6;
  align-self: end;
}
.gallery-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 3rem;
}
.gallery-stat {
  background: var(--bg-card);
  padding: 1.75rem; display: flex;
  gap: 1.25rem; align-items: flex-start;
}
.gallery-stat-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.gallery-stat-content { display: flex; flex-direction: column; gap: 0.2rem; }
.gallery-stat-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-muted);
}
.gallery-stat-value {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 400; color: var(--fg); line-height: 1;
}
.gallery-stat-caption { font-size: 0.78rem; color: var(--fg-muted); }

@media (max-width: 768px) {
  .gallery-intro { grid-template-columns: 1fr; }
  .gallery-stats { grid-template-columns: 1fr; }
}

/* KONTAKT SIDE */
.contact-main-section { padding: 5rem 0; }
.contact-main-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-chapter-label {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; color: var(--fg-muted);
  margin-bottom: 2rem; font-style: italic;
}
.contact-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.contact-main-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--fg);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.contact-title-italic { font-style: italic; color: var(--fg-muted); }
.contact-main-desc {
  font-size: 0.95rem; color: var(--fg-muted);
  line-height: 1.75; margin-bottom: 2.5rem;
  max-width: 420px;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.contact-card {
  background: var(--bg-card); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-card-icon {
  width: 38px; height: 38px; border-radius: var(--radius);
  background: var(--primary); color: var(--primary-fg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-card-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-muted); margin-bottom: 0.35rem;
}
.contact-card-value {
  display: block; font-size: 0.875rem; color: var(--fg);
  transition: color 0.2s; text-decoration: none;
}
a.contact-card-value:hover { color: var(--primary); }

/* KONTAKT SKJEMA */
.contact-form-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
}
.contact-form-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-muted); margin-bottom: 0.5rem;
}
.contact-form-title {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 300; color: var(--fg); margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.btn-send {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 1rem 1.5rem;
  background: var(--bg-muted); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  font-family: var(--font); font-size: 0.9rem;
  color: var(--fg); transition: all 0.2s; margin-bottom: 1rem;
}
.btn-send:hover { border-color: var(--primary); color: var(--primary); }
.btn-send-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--fg); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: background 0.2s;
}
.btn-send:hover .btn-send-icon { background: var(--primary); }

/* KART */
.contact-map-section { border-top: 1px solid var(--border); }

@media (max-width: 768px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* PAGE HEADER MED VIDEO */
.page-header-video { overflow: hidden; }
.page-header-video-el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4; z-index: 0;
}
.page-header-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,16,22,0.1) 0%, rgba(13,16,22,0.55) 100%);
}
.page-header-video .container { position: relative; z-index: 2; }

/* CRED ICON */
.cred-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-fg);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

/* SERVICES INTERACTIVE */
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 3rem;
}
.services-header-desc {
  font-size: 0.95rem; color: var(--fg-muted);
  line-height: 1.75; align-self: end;
}
.services-interactive {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
  margin-top: 0;
}
.services-list-left { display: flex; flex-direction: column; }
.svc-list-row {
  display: grid; grid-template-columns: 32px 40px 1fr 24px;
  align-items: center; gap: 1rem;
  padding: 1.25rem 1rem; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--fg-muted);
  transition: all 0.2s; cursor: pointer;
}
.svc-list-row:first-child { border-top: 1px solid var(--border); }
.svc-list-row:hover, .svc-list-row.active {
  color: var(--fg); background: rgba(255,255,255,0.03);
}
.svc-list-num {
  font-size: 0.75rem; color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}
.svc-list-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--bg-muted); display: flex;
  align-items: center; justify-content: center;
  color: var(--fg-muted); transition: all 0.2s;
}
.svc-list-row:hover .svc-list-icon,
.svc-list-row.active .svc-list-icon {
  background: var(--primary); color: var(--primary-fg);
}
.svc-list-name {
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 400; color: inherit;
}
.svc-list-name em { font-style: italic; color: var(--fg-muted); }
.svc-list-row:hover .svc-list-name em,
.svc-list-row.active .svc-list-name em { color: var(--primary); }
.svc-list-arrow { color: var(--fg-muted); font-size: 0.9rem; }

.services-img-right {
  position: sticky; top: 100px;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  align-self: flex-start;
  margin-top: 0;
}
.services-img-counter {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  z-index: 2; background: rgba(0,0,0,0.4);
  padding: 0.25rem 0.75rem; border-radius: 999px;
}
.services-preview-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block;
  transition: opacity 0.3s;
  filter: brightness(0.75);
}
.services-img-label {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 300; color: var(--primary);
}
.services-img-right { position: relative; }

@media (max-width: 768px) {
  .services-header { grid-template-columns: 1fr; }
  .services-interactive { grid-template-columns: 1fr; }
  .services-img-right { display: none; }
}

/* SERVICES GRID BAKGRUNN */
.services-section {
  background-color: var(--bg);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(220,13%,16%) 1px, transparent 1px),
    linear-gradient(90deg, hsl(220,13%,16%) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.services-section > .container { position: relative; z-index: 1; }

/* PROSJEKTER */
.projects-filter {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 999px;
  border: 1px solid var(--border); background: none;
  font-family: var(--font); font-size: 0.82rem;
  font-weight: 500; color: var(--fg-muted);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary); color: var(--primary);
  background: rgba(204,31,31,0.05);
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.project-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-card);
  transition: all 0.25s;
}
.project-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.project-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.project-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s; filter: brightness(0.8);
}
.project-card:hover .project-img { transform: scale(1.04); filter: brightness(0.95); }
.project-cat {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 999px;
}
.project-info { padding: 1.5rem; }
.project-title {
  font-family: var(--font-head); font-size: 1.1rem;
  font-weight: 400; color: var(--fg); margin-bottom: 0.5rem;
}
.project-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 1rem; }
.project-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-muted);
}
.projects-instagram {
  text-align: center; margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.projects-instagram p { font-size: 0.9rem; color: var(--fg-muted); }

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* GALLERI AUTO-SCROLL */
.gallery-scroll-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gallery-scroll-track {
  display: flex;
  gap: 1rem;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}
.gallery-scroll-track:hover { animation-play-state: paused; }
.gallery-scroll-item {
  flex-shrink: 0;
  width: 320px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-scroll-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: brightness(0.8);
}
.gallery-scroll-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* GALLERY SCROLL FULL WIDTH */
.gallery-scroll-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 0;
}
.gallery-scroll-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
.gallery-scroll-track {
  display: flex;
  gap: 0.75rem;
  animation: galleryScroll 25s linear infinite;
  width: max-content;
  padding: 0;
}
.gallery-scroll-item {
  flex-shrink: 0;
  width: 380px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.gallery-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s;
}
.gallery-scroll-item:hover img { filter: brightness(1); }
