/* =========================================================================
   Vest Betongsaging og Kjerneboring AS — stylesheet
   Brand: violet #6B2F85 (structure/trust) + orange #EF7F1A (action).
   Type:  Barlow Semi Condensed (headings) + Barlow (body) — one superfamily.
   ========================================================================= */

:root {
  --violet:      #6B2F85;
  --violet-700:  #57266c;
  --violet-900:  #2c1339;
  --violet-050:  #f4eef7;
  --orange:      #ef7f1a;
  --orange-600:  #d96d0c;

  --ink:    #1c1822;
  --slate:  #5a5566;
  --concrete: #f5f4f2;
  --concrete-200: #ecebe8;
  --line:   #e3e0e6;
  --white:  #ffffff;

  --maxw: 1160px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(28,24,34,.06), 0 2px 8px rgba(28,24,34,.05);
  --shadow-md: 0 10px 30px rgba(28,24,34,.10);
  --shadow-lg: 0 24px 60px rgba(44,19,57,.18);

  --ff-head: "Barlow Semi Condensed", "Barlow", system-ui, sans-serif;
  --ff-body: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: .6rem; left: .6rem; width: auto; height: auto; clip: auto;
  background: var(--violet); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 200;
}

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 3.5rem); }
.section--concrete { background: var(--concrete); }
.section--violet { background: var(--violet); color: #fff; }
.section-head { max-width: 60ch; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: none; } /* intentionally unused — no chapter labels */

.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section-intro { color: var(--slate); font-size: 1.08rem; margin-top: .85rem; }
.section--violet .section-intro { color: rgba(255,255,255,.82); }

/* a quiet "saw-cut" tick under headings — the one decorative nod, used sparingly */
.cut::after {
  content: ""; display: block; width: 54px; height: 4px; margin-top: 1rem;
  background: var(--orange); border-radius: 2px;
  transform: skewX(-24deg);
}
.section-head.center .cut::after { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-head); font-weight: 600; font-size: 1.02rem;
  padding: .85rem 1.4rem; border-radius: 10px; letter-spacing: .005em;
  transition: transform .15s var(--ease), background-color .15s var(--ease), box-shadow .15s var(--ease), color .15s;
  white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(239,127,26,.28); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--violet); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--violet); transform: translateY(-2px); }
.btn-violet { background: var(--violet); color: #fff; }
.btn-violet:hover { background: var(--violet-700); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--violet); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-on-violet-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.45); }
.btn-on-violet-ghost:hover { box-shadow: inset 0 0 0 2px #fff; transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .35rem; font-weight: 600;
  color: var(--violet); font-family: var(--ff-head);
}
.textlink::after { content: "→"; transition: transform .15s var(--ease); }
.textlink:hover::after { transform: translateX(4px); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.site-header[data-scrolled] { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }
.brand img { height: 34px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav-list { display: flex; align-items: center; gap: clamp(.6rem, 2vw, 1.7rem); }
.nav-link {
  font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
  padding: .4rem 0; position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .18s var(--ease);
}
.nav-link:hover::after, .nav-item.is-current > .nav-link::after { width: 100%; }

/* services dropdown (desktop) */
.nav-item.has-sub { position: relative; }
.sub-toggle { display: none; }
.sub-list {
  position: absolute; top: calc(100% + .5rem); left: -.6rem; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: .4rem; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.nav-item.has-sub:hover .sub-list,
.nav-item.has-sub:focus-within .sub-list { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-list a {
  display: block; padding: .6rem .8rem; border-radius: 8px; font-weight: 500; color: var(--ink);
}
.sub-list a:hover { background: var(--violet-050); color: var(--violet); }

.btn-phone { background: var(--violet); color: #fff; padding: .62rem 1.05rem; border-radius: 10px; }
.btn-phone:hover { background: var(--violet-700); }

.nav-toggle { display: none; width: 46px; height: 44px; border-radius: 9px; align-items: center; justify-content: center; }
.nav-toggle-bars { position: relative; width: 24px; height: 16px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 2.4px; border-radius: 2px; background: var(--ink);
  transition: transform .2s var(--ease), opacity .2s;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 7px; }
.nav-toggle-bars span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { background: var(--white); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; padding-block: clamp(2.6rem, 6vw, 4.6rem);
}
.hero-title { font-size: clamp(2.2rem, 5.4vw, 3.7rem); letter-spacing: -.02em; }
.hero-title .accent { color: var(--violet); }
.hero-lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--slate); margin-top: 1.1rem; max-width: 46ch; }
.hero-cta { margin-top: 1.7rem; }
.hero-note { margin-top: 1.1rem; color: var(--slate); font-size: .98rem; display: flex; align-items: center; gap: .5rem; }
.hero-note strong { color: var(--ink); font-weight: 600; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 5/5.2; object-fit: cover; border-radius: 18px;
  /* the "saw-cut" angled edge — the page signature, kept subtle */
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  box-shadow: var(--shadow-lg);
}
.hero-media::after {
  content: ""; position: absolute; left: -14px; bottom: 30px; width: 64%; height: 64%;
  border-left: 4px solid var(--orange); border-bottom: 4px solid var(--orange);
  border-radius: 0 0 0 18px; z-index: -1; opacity: .5;
}

/* ---------- trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--white); }
.trust-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
}
.trust-item {
  background: #fff; display: flex; align-items: center; gap: .7rem;
  padding: 1.1rem clamp(.8rem, 2vw, 1.4rem); font-weight: 500;
}
.trust-item svg { width: 26px; height: 26px; flex: none; fill: none; stroke: var(--violet); stroke-width: 1.7; }
.trust-item span { font-size: .98rem; line-height: 1.25; }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--concrete-200); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--concrete-200); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.5rem; }
.card-text { color: var(--slate); margin-top: .55rem; font-size: 1rem; flex: 1; }
.card-foot { margin-top: 1.1rem; }

/* tag chips for materials */
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.chip {
  font-size: .86rem; font-weight: 500; color: var(--violet);
  background: var(--violet-050); padding: .3rem .7rem; border-radius: 999px;
}

/* ---------- split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.lead-text { font-size: 1.12rem; color: var(--slate); }
.lead-text p + p { margin-top: 1rem; }
.facts { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 1.6rem; }
.fact { }
.fact dt { font-size: .9rem; color: var(--slate); }
.fact dd { font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); }

/* ---------- materials grid (bulleted, diamond bullets) ---------- */
.matgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem clamp(1.4rem, 3vw, 2.6rem); }
.matcol h3 { font-size: 1.2rem; color: var(--violet); margin-bottom: .6rem; }
.matlist li { position: relative; padding-left: 1.4rem; padding-block: .28rem; color: var(--ink); }
.matlist li::before {
  content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px;
  background: var(--orange); transform: translateY(-50%) rotate(45deg); border-radius: 1px;
}

/* ---------- why-choose-us ---------- */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.reason { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.reason-ico {
  width: 46px; height: 46px; border-radius: 11px; background: var(--violet-050);
  display: flex; align-items: center; justify-content: center; margin-bottom: .9rem;
}
.reason-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--violet); stroke-width: 1.8; }
.reason h3 { font-size: 1.22rem; }
.reason p { color: var(--slate); margin-top: .4rem; font-size: 1rem; }

/* ---------- gallery ---------- */
.gallery {
  columns: 4; column-gap: 14px;
}
.gallery a { display: block; margin-bottom: 14px; break-inside: avoid; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; transition: transform .35s var(--ease), filter .2s; }
.gallery a:hover img { transform: scale(1.04); filter: saturate(1.05); }
.gallery--preview { columns: 4; }

/* ---------- contact band ---------- */
.cta-band { background: linear-gradient(135deg, var(--violet) 0%, var(--violet-900) 130%); color: #fff; }
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem;
  flex-wrap: wrap; padding-block: clamp(2.4rem, 5vw, 3.4rem);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band p { color: rgba(255,255,255,.82); margin-top: .5rem; max-width: 46ch; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.contact-cards { display: grid; gap: .9rem; }
.contact-card {
  display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem 1.2rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.contact-card .ci {
  width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--violet-050);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ci svg { width: 22px; height: 22px; fill: none; stroke: var(--violet); stroke-width: 1.8; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card a, .contact-card p { color: var(--slate); font-size: 1rem; }
.contact-card a:hover { color: var(--violet); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.form .field { margin-bottom: 1.05rem; }
.form label { display: block; font-weight: 600; font-family: var(--ff-head); margin-bottom: .35rem; }
.form .req { color: var(--orange); }
.form input, .form select, .form textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--concrete);
  border: 1px solid var(--line); border-radius: 10px; padding: .72rem .85rem;
  transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 3px var(--violet-050);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .form-note { font-size: .9rem; color: var(--slate); margin-top: .4rem; }
.form-status { display: none; margin-top: 1rem; padding: .85rem 1rem; border-radius: 10px; background: var(--violet-050); color: var(--violet-700); font-weight: 500; }
.form-status.is-visible { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--concrete); border-bottom: 1px solid var(--line); }
.page-hero-inner { padding-block: clamp(2.2rem, 5vw, 3.4rem); }
.breadcrumb { font-size: .95rem; color: var(--slate); margin-bottom: .7rem; }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb span { color: var(--ink); }
.page-title { font-size: clamp(2rem, 4.6vw, 3rem); }
.page-lead { color: var(--slate); font-size: 1.12rem; margin-top: .8rem; max-width: 60ch; }

/* service page layout */
.svc-layout { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.svc-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 16/11; object-fit: cover; }
.svc-aside { position: sticky; top: 92px; background: var(--violet); color: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-md); }
.svc-aside h3 { font-size: 1.35rem; }
.svc-aside p { color: rgba(255,255,255,.84); margin-top: .5rem; font-size: 1rem; }
.svc-aside .btn-row { margin-top: 1.2rem; flex-direction: column; align-items: stretch; }
.svc-aside .btn { justify-content: center; }
.svc-aside .aside-contact { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.18); font-size: .98rem; }
.svc-aside .aside-contact a { color: #fff; font-weight: 600; }

.typed-list li { position: relative; padding-left: 1.7rem; padding-block: .42rem; border-bottom: 1px solid var(--line); }
.typed-list li:last-child { border-bottom: none; }
.typed-list li::before {
  content: ""; position: absolute; left: .15rem; top: 1.05em; width: 9px; height: 9px;
  background: var(--orange); transform: translateY(-50%) rotate(45deg); border-radius: 1px;
}

.note-list { display: grid; gap: .8rem; margin-top: 1rem; }
.note-item { display: flex; gap: .7rem; align-items: flex-start; color: var(--slate); }
.note-item svg { width: 22px; height: 22px; flex: none; stroke: var(--violet); fill: none; stroke-width: 1.8; margin-top: .15rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem .2rem; text-align: left; font-family: var(--ff-head); font-weight: 600; font-size: 1.18rem;
}
.faq-q .pm { position: relative; width: 20px; height: 20px; flex: none; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-q .pm::before { width: 16px; height: 2.6px; }
.faq-q .pm::after  { width: 2.6px; height: 16px; transition: transform .2s var(--ease); }
.faq-q[aria-expanded="true"] .pm::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height .25s var(--ease); }
.faq-a-inner { padding: 0 .2rem 1.2rem; color: var(--slate); max-width: 70ch; }

/* ---------- footer ---------- */
.site-footer { background: var(--violet-900); color: rgba(255,255,255,.82); padding-top: clamp(2.6rem, 5vw, 4rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.4rem; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-tag { max-width: 30ch; }
.footer-org { margin-top: 1rem; font-size: .95rem; }
.footer-h { font-family: var(--ff-head); font-size: 1.05rem; color: #fff; margin-bottom: .9rem; text-transform: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a:hover { color: #fff; }
.footer-addr { color: rgba(255,255,255,.7); }
.footer-hours { max-width: 26ch; }
.social { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.social a {
  font-size: .85rem; padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
}
.social a:hover { background: rgba(255,255,255,.1); color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.13); padding-block: 1.3rem; font-size: .9rem;
}
.footer-bottom a { text-decoration: underline; }
.muted { color: rgba(255,255,255,.55); }
.site-footer .muted a { color: rgba(255,255,255,.7); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vw;
  background: rgba(28,19,33,.86); backdrop-filter: blur(3px);
}
.lightbox.is-open { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.2rem; width: 48px; height: 48px;
  color: #fff; font-size: 2rem; line-height: 1; border-radius: 10px;
}
.lightbox-close:hover { background: rgba(255,255,255,.12); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
  .gallery, .gallery--preview { columns: 3; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .6rem var(--gutter) 1.4rem; max-height: calc(100dvh - 70px); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
  }
  .primary-nav[data-open] { transform: none; opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link { display: block; padding: .95rem .2rem; font-size: 1.18rem; }
  .nav-link::after { display: none; }
  .nav-item.has-sub { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .sub-toggle {
    display: block; width: 48px; height: 48px; position: relative;
  }
  .sub-toggle::before, .sub-toggle::after {
    content: ""; position: absolute; top: 50%; left: 50%; background: var(--violet); border-radius: 2px;
    transform: translate(-50%,-50%);
  }
  .sub-toggle::before { width: 14px; height: 2.4px; }
  .sub-toggle::after { width: 2.4px; height: 14px; transition: transform .2s; }
  .sub-toggle[aria-expanded="true"]::after { transform: translate(-50%,-50%) scaleY(0); }
  .sub-list {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-radius: 0; min-width: 0; padding: 0 0 .4rem .6rem; grid-column: 1 / -1;
    display: none;
  }
  .sub-list[data-open] { display: block; }
  .sub-list a { padding: .7rem .6rem; font-size: 1.05rem; }
  .nav-cta { margin-top: 1rem; justify-content: center; font-size: 1.1rem; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .trust-list { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .matgrid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .trust-list { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; }
  .matgrid { grid-template-columns: 1fr; }
  .gallery, .gallery--preview { columns: 2; column-gap: 10px; }
  .gallery a { margin-bottom: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .btn-row .btn { width: auto; }
  .hero-cta.btn-row .btn, .cta-band .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
