/* Safari Transport — styles.css
   Consolidated 2026-07: the cascade is ordered so component and breakpoint
   rules no longer depend on overrides. Verified against all 11
   pages at phone, tablet, laptop, and desktop widths, including scrolled and
   open-menu header states.

   Tuning note: --logo-nudge (in the max-width:1199px block near the end)
   shifts the header logo left to visually balance the animated GIF's empty
   left "run track". More negative = further left. Same value applies in
   closed / open / scrolled header states so the logo never jumps. */
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("../fonts/montserrat-vf.woff2") format("woff2"); }

@font-face { font-family: "Montserrat"; font-style: italic; font-weight: 100 900; font-display: swap; src: url("../fonts/montserrat-vf-italic.woff2") format("woff2"); }

* { box-sizing: border-box; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--yellow);
  color: #0d0d0d;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  transform: translateY(-250%);
  transition: transform .15s ease;
}

.skip-link:focus-visible { transform: translateY(0); }

body { margin: 0; font-family: "Montserrat", Arial, sans-serif; background: #fff; }

a { color: inherit; text-decoration: none; }

img, video { max-width: 100%; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; background: rgba(6, 20, 38, 0.42); border-bottom: 1px solid rgba(255,255,255,.18); color: #fff; }

.desktop-nav {
  align-items: center;
  justify-content: flex-end;
  gap: clamp(28px, 2.8vw, 54px);
  margin-left: auto;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .16em;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a { opacity: .9; }

.desktop-nav a:hover { color: var(--yellow); opacity: 1; }

.language-link img { object-fit: cover; }

.menu-toggle { position: relative; width: 44px; height: 44px; border: 0; padding: 0; background: transparent; color: #fff; cursor: pointer; }

.menu-icon--open, .menu-icon--open::before, .menu-icon--open::after {
  position: absolute;
  display: block;
  width: 28px;
  height: 4px;
  background: currentColor;
  content: "";
  left: 8px;
  border-radius: 2px;
}

.menu-icon--open { top: 20px; }

.menu-icon--open::before { top: -9px; left: 0; }

.menu-icon--open::after { top: 9px; left: 0; }

.menu-icon--close { display: none; position: absolute; inset: 0; }

.menu-icon--close::before, .menu-icon--close::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 28px;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
}

.menu-icon--close::before { transform: rotate(45deg); }

.menu-icon--close::after { transform: rotate(-45deg); }

.site-header.is-open .menu-icon--open { display: none; }

.site-header.is-open .menu-icon--close { display: block; }

.hero {
  position: relative;
  height: 660px;
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("../images/hero/safari-hero-first-frame.jpg");
  background-image: image-set(url("../images/hero/safari-hero-first-frame.avif") type("image/avif"), url("../images/hero/safari-hero-first-frame.webp") type("image/webp"), url("../images/hero/safari-hero-first-frame.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center center;
}

.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; background: transparent; }

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 13, 28, 0.44) 0%,
    rgba(3, 13, 28, 0.56) 32%,
    rgba(3, 13, 28, 0.58) 72%,
    rgba(3, 13, 28, 0.46) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  text-align: center;
}

.hero h1 { margin: 0; line-height: 1.05; letter-spacing: .11em; text-transform: uppercase; font-weight: 800; }

.hero-dots { margin: 26px 0 24px; color: var(--yellow); font-size: 22px; font-weight: 900; letter-spacing: .14em; }

.hero-contact { letter-spacing: .04em; font-weight: 900; text-transform: uppercase; }

.hero-contact p { margin: 0; }

.hero-contact a { color: var(--yellow); }

.emergency-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 0 36px;
  border-radius: 29px;
  background: var(--yellow);
  color: #0d0d0d;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
}

.section-heading { text-align: center; }

.section-heading p { margin: 0 0 20px; color: var(--yellow); font-size: 20px; line-height: 1; letter-spacing: .16em; font-weight: 900; text-transform: uppercase; }

.section-heading h2 { margin: 0; font-size: clamp(48px, 4.1vw, 70px); line-height: 1.12; letter-spacing: .12em; font-weight: 400; text-transform: uppercase; }

.services-section { background: var(--navy); padding: 120px 24px 120px; }

.services-grid { width: min(1070px, calc(100% - 64px)); margin: 82px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 34px; }

.service-card {
  height: 235px;
  border: 1px solid rgba(255,255,255,.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #fff;
  text-align: center;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.service-card:hover { background: rgba(255,255,255,.045); border-color: var(--yellow); transform: translateY(-1px); }

.service-card img { width: 96px; height: 96px; object-fit: contain; filter: brightness(0) invert(1); }

.service-card span { min-height: 42px; display: flex; align-items: center; justify-content: center; }

.staff-section { padding: 95px 24px 140px; }

.contact-overview {
  width: min(1080px, calc(100% - 80px));
  margin: 54px auto 0;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.contact-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-width: 0;
  padding: 0 clamp(24px, 3.5vw, 58px);
  text-align: center;
}

.contact-option + .contact-option::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--yellow);
  content: "";
}

.contact-label {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .12em;
  font-weight: 500;
  text-transform: uppercase;
}

.staff-section .contact-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-width: 190px;
  min-height: 46px;
  padding: 8px 24px;
  border: 2px solid #0a2c4e;
  border-radius: 999px;
  background: #0a2c4e;
  box-shadow: 0 5px 12px rgba(10, 44, 78, 0.26);
  color: var(--yellow);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: .02em;
  font-weight: 600;
  white-space: nowrap;
  transform-origin: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease, color 180ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1), font-weight 180ms ease;
  touch-action: manipulation;
}

.staff-section .contact-action:hover,
.staff-section .contact-action:focus-visible {
  background: #0a2c4e;
  border-color: #0a2c4e;
  box-shadow: 0 8px 18px rgba(10, 44, 78, 0.3);
  color: var(--yellow);
  font-weight: 650;
  transform: scale(1.06);
}

.staff-section .contact-action:focus-visible {
  outline: 3px solid rgba(246, 196, 0, 0.48);
  outline-offset: 3px;
}

.staff-section .contact-action:active {
  box-shadow: 0 3px 8px rgba(6, 20, 38, 0.24);
  transform: scale(.985);
}

.staff-grid { width: min(1280px, calc(100% - 100px)); margin: 105px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 95px; row-gap: 132px; }

.staff-card { text-align: center; }

.staff-photo { display: block; width: 170px; height: 170px; margin: 0 auto 34px; border-radius: 50%; overflow: hidden; background: #e6e6e6; }

.staff-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.staff-card h3 { margin: 0 0 18px; font-size: 30px; line-height: 1.18; letter-spacing: .10em; text-transform: uppercase; }

.staff-card .role { margin: 0; font-size: 18px; line-height: 1.35; }

.staff-line { display: block; width: 150px; height: 1px; margin: 34px auto 34px; background: var(--yellow); }

.contact-line { margin: 0 0 11px; font-size: 16px; line-height: 1.45; font-weight: 500; }

.service-card, .staff-card { min-width: 0; }

.footer-inner { width: min(1040px, calc(100% - 80px)); margin: 0 auto; display: grid; column-gap: 120px; }

.footer-brand, .footer-contact { min-width: 0; }

.footer-logo { margin: 0 0 28px 0; }

.footer-rule { background: var(--footer-line); margin: 0 0 26px; }

.footer-brand p, .footer-contact p { margin: 0 0 22px; font-size: 18px; line-height: 1.5; }

.facebook-link { margin-top: 4px; }

.contact-list { list-style: none; margin: 0 0 28px; padding: 0; font-size: 18px; line-height: 1.45; }

.contact-list li { display: flex; gap: 18px; margin-bottom: 18px; }

.contact-icon { width: 18px; flex: 0 0 18px; font-size: 17px; line-height: 1.35; }

.footer-contact h3 { font-size: 31px; line-height: 1.15; font-weight: 400; letter-spacing: .045em; }

.hero-contact a, .contact-line a, .contact-list a, .service-detail-copy a {
  position: relative;
  display: inline-block;
  transition: color 160ms ease, transform 160ms ease, text-shadow 160ms ease;
}

.hero-contact a:hover, .contact-line a:hover, .contact-list a:hover, .service-detail-copy a:hover, .service-detail-copy a:focus-visible {
  color: var(--yellow);
  transform: translateY(-1px);
  text-shadow: 0 0 12px rgba(246, 196, 0, 0.38);
}

.hero-contact a::after, .contact-line a::after, .contact-list a::after, .service-detail-copy a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 2px;
  background: var(--yellow);
  transition: right 180ms ease;
}

.hero-contact a:hover::after, .contact-line a:hover::after, .contact-list a:hover::after, .service-detail-copy a:hover::after, .service-detail-copy a:focus-visible::after { right: 0; }

.emergency-button:active { box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22); }

.staff-section .contact-line a::after { background: var(--yellow); }

.emergency-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  animation: emergencyPulse 2.6s ease-in-out infinite;
}

.emergency-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  z-index: -1;
  width: 55%;
  height: 100%;
  background: linear-gradient( 110deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100% );
  transform: skewX(-18deg);
}

.emergency-button:hover { transform: translateY(-3px) scale(1.035); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34), 0 0 0 4px rgba(246, 196, 0, 0.22); }

.emergency-button:hover::before { animation: emergencyShine 650ms ease forwards; }

.emergency-button:active { transform: translateY(0) scale(0.99); }

.subpage { background: var(--navy); }

.subpage .site-header { position: fixed; background: rgba(6, 20, 38, 0.96); }

.subpage .page-main { padding-top: 84px; }

.content-page { background: var(--navy); padding: 92px 24px 125px; }

.content-page.about-page { padding-top: 0; }

.page-container { width: min(960px, calc(100% - 80px)); margin: 0 auto; }

.page-title-block { margin-bottom: 46px; }

.about-page .page-title-block {
  box-sizing: border-box;
  margin-bottom: 0;
  padding-top: 90px;
  padding-bottom: 90px;
}

.page-title-block p { margin: 0 0 26px; font-size: 22px; line-height: 1; letter-spacing: 0.18em; font-weight: 500; text-transform: uppercase; }

.page-title-block h1 { margin: 0; font-size: 45px; line-height: 1.15; letter-spacing: 0.12em; font-weight: 400; text-transform: uppercase; }

.page-title-block span { display: block; width: 460px; max-width: 100%; height: 1px; margin-top: 34px; background: rgba(255, 255, 255, 0.38); }

.about-image { display: block; width: 100%; margin: 0 0 62px; }

.about-image img { display: block; width: 100%; height: auto; }

.page-copy { font-size: 16px; line-height: 1.62; font-weight: 500; }

.page-copy p { margin: 0 0 25px; }

.page-copy a { color: inherit; text-decoration: underline; text-underline-offset: 4px; }

.about-page .page-copy .about-phone-link {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
}

.about-page .page-copy .about-phone-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: var(--yellow);
  transition: right 180ms ease;
}

.about-page .page-copy .about-phone-link:hover::after,
.about-page .page-copy .about-phone-link:focus-visible::after {
  right: 0;
}

.about-service-list { margin: 54px 0 58px 28px; padding: 0; font-style: italic; font-weight: 600; }

.about-service-list li { margin-bottom: 7px; }

.service-page-container { width: min(1050px, calc(100% - 80px)); }

.service-detail-list { display: grid; gap: 26px; }

.service-detail { scroll-margin-top: 120px; display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 42px; align-items: center; }

.service-detail-icon { width: 200px; height: 200px; border: 1px solid rgba(255,255,255,.58); display: flex; align-items: center; justify-content: center; }

.service-detail-icon img { width: 105px; height: 105px; object-fit: contain; filter: brightness(0) invert(1); }

.service-detail-copy h2 { margin: 0 0 24px; font-size: 24px; }

.service-detail-copy p, .service-detail-copy address { margin: 0 0 18px; color: #fff; font-size: 15px; line-height: 1.62; font-style: normal; font-weight: 500; }

.service-detail-copy a { color: inherit; text-decoration: none; }

.service-detail-copy .service-inline-cta {
  color: var(--yellow);
  font-weight: 600;
  text-shadow: none;
  transform: none;
}

.service-detail-copy .service-inline-cta::after {
  right: 100%;
  bottom: -2px;
  height: 1px;
}

.services-page .service-detail-copy a[href="tel:+4546984699"] {
  color: var(--yellow);
  font-weight: 600;
}

.service-detail-copy .service-inline-cta:hover,
.service-detail-copy .service-inline-cta:focus-visible {
  color: #ffd84a;
  font-weight: 650;
  text-shadow: 0 0 10px rgba(246, 196, 0, 0.25);
  transform: none;
}

.service-detail-copy .service-inline-cta:focus-visible {
  outline: 2px solid rgba(246, 196, 0, 0.7);
  outline-offset: 4px;
  border-radius: 2px;
}

.services-page .page-title-block { margin-bottom: 34px; }

.services-page .page-title-block span { display: none; }

.service-jump-nav {
  position: relative;
  width: 100%;
  margin: 0 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.service-jump-list {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 8px;
  margin-block: -1px;
}

.service-jump-link {
  height: 78px;
  min-width: 0;
  padding: 11px 2px 7px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  display: grid;
  grid-template-rows: 31px minmax(20px, auto);
  align-items: center;
  justify-items: center;
  gap: 5px;
  color: #f7f9fb;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: color .16s ease, border-color .16s ease;
}

.service-jump-link img {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .16s ease, transform .16s ease;
}

/*
 * Render the compact service icons as solid-colour masks. CSS filter colour
 * conversion varies between browser engines (notably Safari on macOS), while
 * currentColor keeps the icon, label and active borders exactly in sync.
 */
.service-jump-link[href="#flogfrakt"],
.service-jump-link[href="#luftfragt"],
.service-jump-link[href="#air-freight"] { --service-jump-icon: url("../images/icons/services/icon-1-flogfrakt.svg"); }

.service-jump-link[href="#sjofrakt"],
.service-jump-link[href="#soefragt"],
.service-jump-link[href="#sea-freight"] { --service-jump-icon: url("../images/icons/services/icon-2-sjofrakt.svg"); }

.service-jump-link[href="#skundfrakt"],
.service-jump-link[href="#hastefragt"],
.service-jump-link[href="#urgent-freight"] { --service-jump-icon: url("../images/icons/services/icon-3-skundfrakt.svg"); }

.service-jump-link[href="#flytigods"],
.service-jump-link[href="#flyttegods"],
.service-jump-link[href="#moving-goods"] { --service-jump-icon: url("../images/icons/services/icon-4-flytigods.svg"); }

.service-jump-link[href="#vandamikil-evni"],
.service-jump-link[href="#farligt-gods"],
.service-jump-link[href="#dangerous-goods"] { --service-jump-icon: url("../images/icons/services/icon-5-vandamikil-evni.svg"); }

.service-jump-link[href="#lik"],
.service-jump-link[href="#afdoede"],
.service-jump-link[href="#human-remains"] { --service-jump-icon: url("../images/icons/services/icon-6-lik.svg"); }

.service-jump-link[href="#djor"],
.service-jump-link[href="#dyr"],
.service-jump-link[href="#animals"] { --service-jump-icon: url("../images/icons/services/icon-7-djor.svg"); }

.service-jump-link[href="#lagurhotell"],
.service-jump-link[href="#lager"],
.service-jump-link[href="#storage"] { --service-jump-icon: url("../images/icons/services/icon-8-lagurhotel.svg"); }

.service-jump-link[href="#avtalufrakt"],
.service-jump-link[href="#aftalefragt"],
.service-jump-link[href="#recurring-freight"] { --service-jump-icon: url("../images/icons/services/icon-9-avtalufrakt.svg"); }

.service-jump-link[href="#tollavgreidsla"],
.service-jump-link[href="#toldbehandling"],
.service-jump-link[href="#customs-clearance"] { --service-jump-icon: url("../images/icons/services/icon-10-tollavgreidsla.svg"); }

.service-jump-link[href="#innlatingarstadur"],
.service-jump-link[href="#leveringsadresse"],
.service-jump-link[href="#delivery-address"] { --service-jump-icon: url("../images/icons/services/icon-11-amazon-ikea.svg"); }

@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .service-jump-link img {
    display: none;
  }

  .service-jump-link::before {
    content: "";
    display: block;
    width: 29px;
    height: 29px;
    flex: 0 0 29px;
    background-color: currentColor;
    -webkit-mask-image: var(--service-jump-icon);
    mask-image: var(--service-jump-icon);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color .16s ease;
  }
}

.service-jump-link span {
  max-width: 100%;
  font-size: 8.5px;
  line-height: 1.14;
  letter-spacing: .035em;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-jump-link[href="#tollavgreidsla"] span,
.service-jump-link[href="#innlatingarstadur"] span,
.service-jump-link[href="#toldbehandling"] span,
.service-jump-link[href="#leveringsadresse"] span {
  white-space: nowrap;
  overflow-wrap: normal;
  letter-spacing: .02em;
}

.service-jump-link:focus-visible {
  color: var(--yellow);
  border-top-color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.service-jump-link:focus-visible img {
  filter: var(--service-icon-yellow-filter);
}

@media (hover: hover) {
  .service-jump-link:hover {
    color: var(--yellow);
    border-top-color: var(--yellow);
    border-bottom-color: var(--yellow);
  }

  .service-jump-link:hover img {
    filter: var(--service-icon-yellow-filter);
    transform: none;
  }
}

.service-jump-hint { display: none; }

.service-jump-nav.is-at-start .service-jump-hint--left,
.service-jump-nav.is-at-end .service-jump-hint--right { opacity: 0; }

#starvsfolk { scroll-margin-top: 90px; }

.brand { text-decoration: none; }

.brand-logo { display: block; }

.brand:hover .brand-logo { transform: scale(1.03); }

.subpage .site-footer { border-top: 1px solid rgba(255, 255, 255, 0.22); padding-top: 70px; }

html { scroll-behavior: smooth; }

html[lang="en"] .service-card span { overflow-wrap: normal; word-break: normal; hyphens: none; }

.privacy-page { background: #fff; color: #111; }

.privacy-page .site-header { position: fixed; background: rgba(6, 20, 38, 0.72); }

.privacy-hero { position: relative; min-height: 300px; padding-top: 84px; display: grid; place-items: center; overflow: hidden; background: var(--navy); }

.privacy-hero picture, .privacy-hero img { position: absolute; inset: 0; width: 100%; height: 100%; }

.privacy-hero img { object-fit: cover; object-position: center 47%; }

.privacy-hero-overlay { position: absolute; inset: 0; background: rgba(2, 15, 30, 0.58); }

.privacy-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 40px 20px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .42);
}

.privacy-content { background: #fff; padding: 74px 24px 96px; }

.privacy-container { width: min(980px, calc(100% - 40px)); margin: 0 auto; }

.privacy-section { margin: 0 0 58px; }

.privacy-section h2 { margin: 0 0 22px; font-size: clamp(25px, 2.2vw, 34px); line-height: 1.22; letter-spacing: -0.02em; font-weight: 400; }

.privacy-section p, .privacy-section li { font-size: 15px; line-height: 1.68; font-weight: 400; }

.privacy-section p { margin: 0 0 17px; }

.privacy-section ul { margin: 20px 0 0 26px; padding: 0; }

.privacy-section li { margin: 0 0 8px; }

.site-footer a { color: var(--yellow); text-underline-offset: 4px; }

.language-switcher .language-link { align-items: center; justify-content: center; }

.language-switcher img {
  display: block;
  width: clamp(28px, 2.4vw, 38px);
  height: auto;
  border-radius: 3px;
  transform-origin: center;
  transition: transform .24s cubic-bezier(.2, .7, .2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .language-switcher .language-link:hover img { transform: scale(1.1); }
}

.language-switcher .language-link:focus-visible img { transform: scale(1.1); }

html[lang="da"] .service-card span { overflow-wrap: normal; word-break: normal; hyphens: none; }

.service-detail#innlatingarstadur .service-detail-icon, .service-detail#delivery-address .service-detail-icon, .service-detail#leveringsadresse .service-detail-icon {
  display: grid;
  place-items: center;
  align-self: start;
  padding: 0;
}

.service-detail#innlatingarstadur .service-detail-icon img, .service-detail#delivery-address .service-detail-icon img, .service-detail#leveringsadresse .service-detail-icon img {
  display: block;
  width: 52%;
  max-width: 150px;
  height: auto;
  margin: auto;
  position: static;
  transform: none;
  object-fit: contain;
}

.site-footer a, .site-footer a[href^="tel:"], .site-footer a[href^="mailto:"] { text-decoration: none; }

.site-footer a:hover, .site-footer a:focus-visible, .site-footer a[href^="tel:"]:hover, .site-footer a[href^="mailto:"]:hover, .site-footer a[href^="tel:"]:focus-visible, .site-footer a[href^="mailto:"]:focus-visible {
  text-decoration: none;
}

.site-footer .footer-icon-svg {
  width: 1.08em;
  height: 1.08em;
  color: var(--yellow);
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.16em;
  margin-right: 0.72em;
}

.site-footer .footer-icon-svg path, .site-footer .footer-icon-svg circle { vector-effect: non-scaling-stroke; }

.site-footer a[href="/datuverndarkunning.html"] { color: var(--yellow); }

.site-footer .footer-facebook-link, .site-footer a[href="https://www.facebook.com/safari.fo"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  overflow: visible;
}

.site-footer img[src*="safari-transport-logo-vector-v2-white"] { max-height: none; aspect-ratio: auto; }

.site-header, header.site-header, body > header {
  transition: min-height .18s ease,height .18s ease,padding .18s ease,background-color .18s ease,box-shadow .18s ease;
}

.site-header .brand img, header .brand img { transition: max-height .18s ease,transform .18s ease; }

.site-header.is-scrolled, header.site-header.is-scrolled, body > header.is-scrolled {
  min-height: 58px;
  height: 58px;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.12);
}

.site-header.is-scrolled .brand img, header.is-scrolled .brand img { max-height: 38px; }

.site-footer a[href="/datuverndarkunning.html"] { text-decoration: none; }

.site-footer .footer-logo, .site-footer .footer-brand { --footer-logo-width: min(430px,76vw); }

.site-footer .footer-logo::after, .site-footer .footer-brand::after {
  height: 1px;
  margin: 34px 0 0;
  background: rgba(255,255,255,.42);
}

.site-footer .footer-facebook-link, .site-footer a[href="https://www.facebook.com/safari.fo"] {
  color: #fff;
  transform: none;
  transition: transform .18s ease,color .18s ease,filter .18s ease;
}

.site-footer .footer-facebook-link img, .site-footer a[href="https://www.facebook.com/safari.fo"] img {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
  min-width: 0;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  display: block;
  transform-origin: center;
  transform: none;
  filter: brightness(0) invert(1);
  transition: transform .18s ease,filter .18s ease;
}

.site-footer .footer-facebook-link:hover, .site-footer .footer-facebook-link:focus-visible, .site-footer a[href="https://www.facebook.com/safari.fo"]:hover, .site-footer a[href="https://www.facebook.com/safari.fo"]:focus-visible {
  transform: scale(1.12);
  color: var(--yellow);
}

.site-footer .footer-facebook-link:hover img, .site-footer .footer-facebook-link:focus-visible img, .site-footer a[href="https://www.facebook.com/safari.fo"]:hover img, .site-footer a[href="https://www.facebook.com/safari.fo"]:focus-visible img {
  transform: scale(1.02);
  filter: brightness(0) saturate(100%) invert(78%) sepia(86%) saturate(1580%) hue-rotate(359deg) brightness(102%) contrast(104%);
}

.site-footer .footer-logo { width: var(--footer-line-width); max-width: var(--footer-line-width); }

.site-footer .footer-brand img, .site-footer img[src*="safari-transport-logo-vector-v2-white"] {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.site-footer .footer-logo::after, .site-footer .footer-brand::after {
  width: var(--footer-line-width);
  max-width: var(--footer-line-width);
  margin-left: 0;
  margin-right: 0;
}

.service-card span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-shadow: 2px 2px 0 rgba(0,0,0,.42);
  font-size: clamp(15px, 1.25vw, 20px);
}

.service-detail h2, .service-detail-copy h2, .services-page .service-detail h2, .services-page .service-detail-copy h2 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  line-height: 1.12;
  text-shadow: 2px 2px 0 rgba(0,0,0,.42);
}

.site-footer { background: var(--navy); padding: 60px 24px 58px; --footer-line-width: min(360px,78vw); --footer-equal-line: min(584px, calc(100vw - 96px)); }

.site-footer .footer-brand::after, .site-footer .footer-logo::after { display: none; content: none; }

.site-footer .footer-rule {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 1px;
  margin-left: 0;
  margin-right: auto;
  box-sizing: border-box;
}

.site-footer .footer-phone-icon, .site-footer .footer-icon-svg.footer-phone-icon {
  width: 1.05em;
  height: 1.05em;
  color: var(--yellow, #ffcc00);
  stroke: currentColor;
  fill: none;
  display: inline-block;
  vertical-align: -0.12em;
}

.site-footer .footer-contact li { align-items: center; }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

.site-footer a.address-link { color: inherit; }

.site-footer a.address-link:hover, .site-footer a.address-link:focus-visible { color: var(--yellow); }

.privacy-section a.address-link { text-decoration: underline; text-underline-offset: 3px; }

.hero h1, .hero-contact, .hero-dots { text-shadow: 0 2px 5px rgba(0,0,0,.72), 0 0 22px rgba(0,0,0,.5); }

.site-header.is-scrolled, .site-header.is-open, header.site-header.is-scrolled, header.site-header.is-open { background: #061426; }

.mobile-title-break { display: none; }

.desktop-title-space { display: inline; }

html, body { overflow-x: hidden; background-color: var(--navy); }

.site-footer .footer-phone-icon, .site-footer .footer-phone-icon path {
  color: var(--yellow);
  fill: var(--yellow);
  stroke: var(--yellow);
}

.hero-contact a:hover { text-shadow: 0 0 12px rgba(0, 0, 0, 0.55); }

body, .site-footer, .subpage, .services-page, .about-page { color: var(--text-on-dark-soft); }

.site-footer, .site-footer p, .site-footer .contact-list, .site-footer .footer-contact p, .site-footer .footer-brand p, .service-detail, .service-detail p, .page-copy, .page-copy p, .about-page .page-copy, .about-page .page-copy p {
  color: var(--text-on-dark-soft);
}

h1, h2, h3, .service-card span, .service-detail h2, .site-footer .footer-contact h3 { color: #f7f9fb; }

.site-footer .contact-list span, .site-footer .contact-list li { color: var(--text-on-dark-soft); }

.staff-section .contact-line a:hover { transform: translateY(-1px); }

.staff-section { background: #ffffff; }

:root {
  --navy: #061426;
  --yellow: #f6c400;
  --service-icon-yellow-filter: brightness(0) saturate(100%) invert(77%) sepia(96%) saturate(1268%) hue-rotate(-17deg) brightness(88%) contrast(123%);
  --text: #0c0c0c;
  --white: #fff;
  --footer-line: rgba(255,255,255,.25);
  --text-on-dark: #eef2f6;
  --text-on-dark-soft: #e3e9ef;
  --text-on-dark-muted: #cbd4df;
  --safari-navy: #071625;
  --safari-yellow: #f6c400;
  --safari-text-light: #f2f5f8;
  --safari-text-soft: #e3e9ef;
  --safari-text-muted: #cbd4df;
  --safari-text-dark: #0c0c0c;
  --safari-text-dark-muted: #1f2933;
}

.hero, .services-section, .services-page, .about-page, .subpage, .service-detail, .site-footer { color: var(--safari-text-soft); }

.hero p, .services-page p, .about-page p, .subpage p, .service-detail p, .site-footer p, .site-footer li { color: var(--safari-text-soft); }

.hero h1, .services-section h2, .services-section .service-card span, .services-page h1, .services-page h2, .about-page h1, .service-detail h2, .site-footer h3 {
  color: var(--safari-text-light);
  text-shadow: none;
}

.staff-section, .privacy-page .privacy-content, .privacy-page .privacy-section, .privacy-page .privacy-container {
  background-color: #fff;
  color: var(--safari-text-dark);
}

.staff-section h2, .staff-section h3, .staff-section p, .staff-section a, .staff-section .staff-card h3, .staff-section .staff-card .role, .staff-section .contact-line, .staff-section .contact-line a, .privacy-page .privacy-content h2, .privacy-page .privacy-section h2, .privacy-page .privacy-section p, .privacy-page .privacy-section li {
  color: var(--safari-text-dark);
  text-shadow: none;
}

.privacy-page .privacy-section h2, .privacy-page .privacy-content h2 { color: var(--safari-text-dark-muted); }

.staff-section .contact-line a { color: var(--safari-text-dark); text-decoration: none; text-shadow: none; font-weight: inherit; }

.staff-section .contact-line a:hover, .staff-section .contact-line a:focus-visible {
  color: var(--safari-text-dark);
  font-weight: 700;
  text-decoration: none;
  text-shadow: none;
  outline: none;
}

a:focus-visible, button:focus-visible { outline: 2px solid var(--safari-yellow); outline-offset: 4px; }

.staff-section a:focus-visible, .privacy-page a:focus-visible { outline: 2px solid var(--safari-yellow); outline-offset: 3px; }

.service-card img[src$="icon-11-amazon-ikea.svg"], .services-page .service-detail-icon img[src$="icon-11-amazon-ikea.svg"], .service-detail#innlatingarstadur .service-detail-icon img[src$="icon-11-amazon-ikea.svg"], .service-detail#delivery-address .service-detail-icon img[src$="icon-11-amazon-ikea.svg"], .service-detail#leveringsadresse .service-detail-icon img[src$="icon-11-amazon-ikea.svg"] {
  filter: none;
  opacity: 1;
}

.service-card span { line-height: 1.18; }

.site-footer .footer-contact > .footer-rule { margin-bottom: 28px; }

.site-footer .footer-contact > .footer-rule + a, .site-footer .footer-contact > h3, .site-footer .footer-contact > p, .site-footer .footer-contact > p + a {
  display: block;
}

.site-footer .footer-contact > .footer-rule + a { margin: 0 0 26px; }

.site-footer .footer-contact > h3 { margin: 0 0 20px; }

.site-footer .footer-contact > p { margin: 0 0 24px; }

.site-footer .footer-contact > p + a { margin-top: 0; }

.staff-section .section-heading h2 { color: var(--text, #0c0c0c); text-shadow: none; opacity: 1; }

.staff-section .staff-card { display: flex; flex-direction: column; align-items: center; }

.staff-section .staff-card h3 {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 106px;
  width: 100%;
  margin-bottom: 10px;
}

.staff-section .staff-card .role {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  width: 100%;
}

@keyframes emergencyPulse {
0%, 100% {
    box-shadow:
      0 2px 10px rgba(0, 0, 0, 0.22),
      0 0 0 0 rgba(246, 196, 0, 0.34);
  }

  50% {
    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.28),
      0 0 0 8px rgba(246, 196, 0, 0);
  }
}

@keyframes emergencyShine {
from {
    left: -85%;
  }

  to {
    left: 130%;
  }
}

/* Footer logo sizing — keep the content column and divider unchanged. */
.site-footer .footer-brand .footer-logo {
  width: 320px;
  max-width: 100%;
}

/* Consolidated responsive breakpoints */

@media (min-width: 768px) {
  .service-detail#innlatingarstadur, .service-detail#delivery-address { align-items: start; }

  .hero-contact { line-height: 1.72; }
    .hero-contact p + p { margin-top: 14px; }
}

@media (min-width: 1024px) {
  .site-footer .footer-inner { align-items: stretch; }
    .site-footer .footer-brand .footer-logo, .site-footer .footer-brand .footer-rule, .site-footer .footer-brand p, .site-footer .footer-brand .facebook-link, .site-footer .footer-brand .footer-facebook-link {
      margin-top: 0;
      margin-bottom: 0;
    }

  .site-footer .footer-brand {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-self: stretch;
      min-height: 100%;
      gap: 34px;
    }
}

@media (min-width: 1025px) {
  .site-footer .footer-inner {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 380px));
      justify-content: center;
      column-gap: clamp(70px,8vw,150px);
    }

  .site-footer .footer-brand, .site-footer .footer-contact { width: 100%; }

  .site-footer {
      --footer-line-width: 360px;
      --footer-equal-line: 380px;
      --same-footer-line-width: 380px;
      --footer-divider-width: 380px;
    }
    .site-footer .footer-rule { width: 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: clamp(40px, 3.6vw, 62px); font-weight: 700; letter-spacing: 0.10em; }
    .hero-contact { font-size: clamp(18px, 1.35vw, 23px); font-weight: 800; }
    .emergency-button { min-height: 58px; padding: 0 32px; border-radius: 29px; font-size: clamp(17px, 1.1vw, 21px); }

  .desktop-nav { font-weight: 700; }

  .site-header { height: 72px; min-height: 72px; padding: 0; display: block; overflow: hidden; }
    .site-header .header-inner {
      width: min(1450px, calc(100% - 80px));
      height: 72px;
      min-height: 72px;
      margin: 0 auto;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 24px;
      overflow: hidden;
    }
    .site-header .brand { flex: 0 0 150px; margin: 0; }
    .site-header .brand-logo { max-height: 54px; object-fit: contain; }
    .site-header .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 1 1 auto;
      min-width: 0;
      margin-left: auto;
      gap: clamp(16px, 1.55vw, 30px);
      font-size: clamp(11px, .82vw, 14px);
      line-height: 1;
      letter-spacing: .15em;
      white-space: nowrap;
      overflow: hidden;
    }
    .site-header .desktop-nav a {
      display: inline-flex;
      align-items: center;
      flex: 0 1 auto;
      min-width: 0;
      width: auto;
      margin: 0;
      padding: 0;
      white-space: nowrap;
      line-height: 1;
    }
    .site-header .header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 16px; }
    .site-header .language-link { width: 34px; height: 23px; display: inline-flex; flex: 0 0 34px; }
    .site-header .menu-toggle { display: none; }
    .site-header .mobile-menu { display: none; opacity: 0; pointer-events: none; transform: translateY(-130%); }
    .site-header.is-scrolled { padding: 0; }
    .site-header.is-scrolled .header-inner { height: 58px; min-height: 58px; align-items: center; }

  .site-header .brand, header.site-header .brand, .site-header.is-scrolled .brand, header.site-header.is-scrolled .brand {
      width: 235px;
      min-width: 235px;
      height: 72px;
      margin-left: 0;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }
    .site-header .brand-logo, header.site-header .brand-logo, .site-header .brand img, header.site-header .brand img, .site-header.is-scrolled .brand-logo, header.site-header.is-scrolled .brand-logo, .site-header.is-scrolled .brand img, header.site-header.is-scrolled .brand img {
      width: 205px;
      max-width: 205px;
      height: auto;
      transform: none;
      margin: 0;
    }

  .site-header .header-actions { margin-left: 0; }
    .site-header .language-switcher {
      display: inline-flex;
      align-items: center;
      gap: clamp(20px, 1.35vw, 28px);
      margin: 0;
      padding: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1380px) {
  .site-header .header-inner { width: calc(100% - 56px); gap: 18px; }
    .site-header .brand { flex-basis: 138px; }
    .site-header .desktop-nav { gap: clamp(12px, 1.25vw, 20px); font-size: clamp(10px, .78vw, 12px); letter-spacing: .13em; }
    .site-header .header-actions, .site-header .language-switcher { gap: 12px; }
    .site-header .language-link { width: 30px; height: 20px; flex-basis: 30px; }

  /* The compact desktop header keeps the wider language-link spacing. */
    .site-header .language-switcher { gap: clamp(20px, 1.35vw, 28px); }
}

@media (width < 1200px) {
  .mobile-menu {
      position: fixed;
      left: 0;
      right: 0;
      display: grid;
      grid-auto-rows: 54px;
      transform: translateY(-120%);
      opacity: 0;
      pointer-events: none;
      transition: transform .18s ease, opacity .18s ease;
    }
    .site-header.is-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .mobile-menu a { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; text-transform: uppercase; }
    .hero { height: 520px; }
    .hero-content { padding-top: 58px; }
    .hero h1 { font-size: clamp(42px, 6.2vw, 58px); }
    .hero-contact { font-size: 22px; }
    .emergency-button { min-height: 58px; font-size: 19px; margin-top: 36px; }
    .services-section { padding: 92px 24px 100px; }
    .services-grid { width: min(850px, calc(100% - 48px)); gap: 24px; }
    .service-card { height: 190px; }
    .service-card img { width: 76px; height: 76px; }
    .staff-grid { width: min(760px, calc(100% - 64px)); grid-template-columns: repeat(2, 1fr); column-gap: 92px; row-gap: 105px; }
    .staff-photo { width: 180px; height: 180px; }
    .staff-card h3 { font-size: 28px; }
    .staff-card .role { font-size: 17px; }
    .contact-line { font-size: 15px; }

  .footer-inner { width: min(584px, 55vw); grid-template-columns: minmax(0, 1fr); row-gap: 38px; }
    .footer-logo { margin-inline: auto; }

  .subpage .page-main { padding-top: 68px; }
    .content-page { padding: 78px 24px 95px; }
    .page-container, .service-page-container { width: min(760px, calc(100% - 56px)); }
    .service-detail { grid-template-columns: 190px minmax(0, 1fr); gap: 36px; }
    .service-detail-icon { width: 190px; height: 190px; }

  .service-jump-nav { overflow: hidden; }
    .service-jump-list {
      display: flex;
      gap: 16px;
      padding-right: 34px;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-snap-type: inline proximity;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .service-jump-list::-webkit-scrollbar { display: none; }
    .service-jump-link { flex: 0 0 72px; scroll-snap-align: start; }
    .service-jump-hint {
      position: absolute;
      z-index: 2;
      top: 50%;
      width: 22px;
      height: 32px;
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.82);
      background: var(--navy);
      font-size: 25px;
      line-height: 1;
      pointer-events: none;
      transform: translateY(-50%);
      transition: opacity .16s ease;
    }
    .service-jump-hint--left { left: 2px; }
    .service-jump-hint--right { right: 2px; }

  .site-header { display: block; overflow: visible; }
    .site-header .header-inner { margin: 0 auto; justify-content: space-between; gap: 16px; }
    .site-header .desktop-nav { display: none; }
    .site-header .mobile-menu { border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
    .site-header .mobile-menu a {
      font-size: clamp(17px, 3vw, 23px);
      line-height: 1.35;
      padding: 20px 18px;
      letter-spacing: .16em;
    }

  .site-header .header-inner, header.site-header .header-inner { padding-top: 0; padding-bottom: 0; display: flex; }
    .site-header .header-actions, header.site-header .header-actions { gap: 17px; height: 64px; }
    .site-header .language-switcher, header.site-header .language-switcher {
      display: inline-flex;
      align-items: center;
      gap: 17px;
      height: 64px;
      margin: 0;
      padding: 0;
    }
    .site-header .language-link, header.site-header .language-link { flex: 0 0 32px; display: inline-flex; align-items: center; }
    .site-header .language-link img, header.site-header .language-link img { display: block; }
    .site-header.is-scrolled .header-inner, header.site-header.is-scrolled .header-inner {
      padding-top: 0;
      padding-bottom: 0;
      align-items: center;
    }
    .site-header.is-scrolled .header-actions, .site-header.is-scrolled .language-switcher, .site-header.is-scrolled .menu-toggle, header.site-header.is-scrolled .header-actions, header.site-header.is-scrolled .language-switcher, header.site-header.is-scrolled .menu-toggle {
      height: 56px;
      align-items: center;
      margin-top: 0;
      margin-bottom: 0;
    }

  .site-header .menu-toggle, header.site-header .menu-toggle { align-self: center; }
    .site-header .language-link, header.site-header .language-link, .site-header .language-link img, header.site-header .language-link img {
      width: 32px;
      height: 22px;
      flex-basis: 32px;
      object-fit: cover;
    }

  .site-header .header-inner, header.site-header .header-inner { align-items: center; }
    .site-header .header-actions, header.site-header .header-actions, .site-header.is-scrolled .header-actions, header.site-header.is-scrolled .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-left: auto;
      margin-top: 0;
      margin-bottom: 0;
    }
    .site-header .menu-toggle, header.site-header .menu-toggle, .site-header.is-scrolled .menu-toggle, header.site-header.is-scrolled .menu-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      min-height: 44px;
      padding: 0;
      margin: 0;
      top: auto;
      right: auto;
      bottom: auto;
      transform: none;
      line-height: 1;
    }
    .site-header .menu-icon--open, header.site-header .menu-icon--open, .site-header.is-scrolled .menu-icon--open, header.site-header.is-scrolled .menu-icon--open {
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }
    .site-header .menu-icon--open::before, header.site-header .menu-icon--open::before, .site-header.is-scrolled .menu-icon--open::before, header.site-header.is-scrolled .menu-icon--open::before, .site-header .menu-icon--open::after, header.site-header .menu-icon--open::after, .site-header.is-scrolled .menu-icon--open::after, header.site-header.is-scrolled .menu-icon--open::after {
      left: 0;
    }
    .site-header .menu-icon--close, header.site-header .menu-icon--close, .site-header.is-scrolled .menu-icon--close, header.site-header.is-scrolled .menu-icon--close {
      inset: 0;
    }
    .site-header .menu-icon--close::before, header.site-header .menu-icon--close::before, .site-header.is-scrolled .menu-icon--close::before, header.site-header.is-scrolled .menu-icon--close::before, .site-header .menu-icon--close::after, header.site-header .menu-icon--close::after, .site-header.is-scrolled .menu-icon--close::after, header.site-header.is-scrolled .menu-icon--close::after {
      left: 50%;
      top: 50%;
      margin-left: -14px;
      margin-top: -2px;
      transform-origin: center center;
    }
    .site-header .menu-icon--close::before, header.site-header .menu-icon--close::before, .site-header.is-scrolled .menu-icon--close::before, header.site-header.is-scrolled .menu-icon--close::before {
      transform: rotate(45deg);
    }
    .site-header .menu-icon--close::after, header.site-header .menu-icon--close::after, .site-header.is-scrolled .menu-icon--close::after, header.site-header.is-scrolled .menu-icon--close::after {
      transform: rotate(-45deg);
    }

  .site-header .brand-logo, header.site-header .brand-logo, .site-header.is-scrolled .brand-logo, header.site-header.is-scrolled .brand-logo {
      display: block;
      transform-origin: left center;
    }

  .site-header .brand, header.site-header .brand, .site-header.is-scrolled .brand, header.site-header.is-scrolled .brand {
      overflow: visible;
      justify-content: flex-start;
    }
    .site-header .brand-logo, header.site-header .brand-logo, .site-header .brand img, header.site-header .brand img, .site-header.is-scrolled .brand-logo, header.site-header.is-scrolled .brand-logo, .site-header.is-scrolled .brand img, header.site-header.is-scrolled .brand img {
      margin: 0;
    }

  .site-header .mobile-menu, header.site-header .mobile-menu { top: 56px; background: #061426; }

  .site-header, .site-header.is-scrolled, .site-header.is-open, header.site-header, header.site-header.is-scrolled, header.site-header.is-open {
      height: 64px;
      min-height: 64px;
      padding: 0;
      background: #061426;
    }
    .site-header .header-inner, .site-header.is-scrolled .header-inner, .site-header.is-open .header-inner, header.site-header .header-inner, header.site-header.is-scrolled .header-inner, header.site-header.is-open .header-inner {
      height: 64px;
      min-height: 64px;
    }
    .site-header .brand, .site-header.is-scrolled .brand, .site-header.is-open .brand, header.site-header .brand, header.site-header.is-scrolled .brand, header.site-header.is-open .brand {
      flex: 0 0 168px;
      min-width: 168px;
      width: 168px;
      height: 64px;
      display: flex;
      align-items: center;
    }
    .site-header .brand-logo, .site-header.is-scrolled .brand-logo, .site-header.is-open .brand-logo, .site-header .brand img, .site-header.is-scrolled .brand img, .site-header.is-open .brand img, header.site-header .brand-logo, header.site-header.is-scrolled .brand-logo, header.site-header.is-open .brand-logo, header.site-header .brand img, header.site-header.is-scrolled .brand img, header.site-header.is-open .brand img {
      width: 168px;
      max-width: 168px;
      max-height: 52px;
      height: auto;
      object-fit: contain;
      transform: none;
    }
    .site-header .mobile-menu, .site-header.is-scrolled .mobile-menu, .site-header.is-open .mobile-menu { top: 64px; }

  .staff-section .staff-card h3 { min-height: 100px; }

  .site-header.is-open .brand-logo, .site-header.is-open .brand img, header.site-header.is-open .brand-logo, header.site-header.is-open .brand img {
      transform: none;
    }
    .site-header .menu-toggle, header.site-header .menu-toggle, .site-header.is-open .menu-toggle, header.site-header.is-open .menu-toggle, .site-header.is-scrolled .menu-toggle, header.site-header.is-scrolled .menu-toggle {
      width: 48px;
      min-width: 48px;
      flex: 0 0 48px;
    }
    .site-header::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 100%; background: #061426; z-index: 1; pointer-events: none; }
    .site-header .header-inner, header.site-header .header-inner { position: relative; z-index: 3; }
    .site-header .mobile-menu, header.site-header .mobile-menu, .site-header.is-open .mobile-menu, .site-header.is-scrolled .mobile-menu { z-index: 0; }
    :root { --logo-nudge: -22px; }
    .site-header .header-inner, header.site-header .header-inner, .site-header.is-open .header-inner, header.site-header.is-open .header-inner, .site-header.is-scrolled .header-inner, header.site-header.is-scrolled .header-inner {
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      box-sizing: border-box;
      padding-left: 0;
      padding-right: 16px;
    }
    .site-header .brand, header.site-header .brand, .site-header.is-open .brand, header.site-header.is-open .brand, .site-header.is-scrolled .brand, header.site-header.is-scrolled .brand {
      margin-left: var(--logo-nudge);
      padding-left: 0;
    }

    /* Subpages use an opaque header at compact breakpoints. */
    .subpage .site-header { background: #061426; }

  .site-footer .footer-brand .footer-logo { width: 300px; }
}

@media (max-width: 1024px) {
  .site-footer .footer-logo, .site-footer .footer-brand { --footer-logo-width: min(390px,82vw); }
}

@media (max-width: 767px) {
  .mobile-menu { grid-auto-rows: 48px; }
    .emergency-button { min-height: 48px; padding-inline: 20px; border-radius: 26px; font-size: 15px; }
    .services-section { padding: 74px 24px 82px; }
    .section-heading p { margin-bottom: 20px; font-size: 18px; letter-spacing: .16em; }
    .section-heading h2 { font-size: 46px; letter-spacing: .11em; }
    .service-card span { min-height: 0; }
    .staff-section { padding: 70px 24px 95px; }
    .staff-section .section-heading h2 { font-size: 48px; letter-spacing: .055em; }

  .services-grid { width: min(545px, calc(100% - 28px)); margin-top: 50px; display: flex; flex-direction: column; gap: 14px; }
    .service-card { height: 112px; flex-direction: row; justify-content: flex-start; gap: clamp(22px, 7vw, 44px); padding: 0 clamp(24px, 8vw, 48px); overflow: hidden; }
    .service-card img { width: clamp(48px, 13vw, 68px); height: clamp(48px, 13vw, 68px); flex: 0 0 auto; }
    .service-card span { min-width: 0; max-width: 100%; justify-content: flex-start; text-align: left; }

  .footer-inner { width: min(420px, 100%); row-gap: 36px; }
    .footer-logo { margin: 0 auto 28px; }
    .footer-rule { margin-bottom: 24px; }
    .footer-brand p { margin-bottom: 22px; }
    .contact-list { margin-bottom: 26px; }
    .contact-list li { gap: 14px; margin-bottom: 16px; }
    .hero h1 { font-size: clamp(28px, 8vw, 34px); line-height: 1.12; letter-spacing: 0.055em; max-width: 92vw; white-space: normal; }

  .service-card span, .staff-card h3 { overflow-wrap: normal; word-break: normal; hyphens: none; }

  .subpage .page-main { padding-top: 62px; }
    .content-page { padding: 74px 0 82px; }
    .about-page .page-title-block { padding-top: 64px; padding-bottom: 64px; }
    .services-page { padding-top: 58px; }
    .page-container, .service-page-container { width: 100%; }
    .page-title-block { margin: 0 auto 54px; }
    .page-title-block p { font-size: 21px; letter-spacing: 0.18em; margin-bottom: 28px; }
    .page-title-block h1 { font-size: 42px; letter-spacing: 0.10em; }
    .page-title-block span { margin: 34px auto 0; }
    .about-image { margin-bottom: 42px; }
    .page-copy { width: calc(100% - 34px); margin: 0 auto; }
    .about-service-list { margin: 48px 0 48px 28px; }
    .service-detail-list { margin: 0 auto; }
    .service-detail { scroll-margin-top: 90px; }
    .service-detail-copy { text-align: left; }

  .services-page .page-title-block { margin-bottom: 50px; }
    .service-jump-nav {
      width: 100%;
      margin-bottom: 56px;
      padding-left: 26px;
      padding-right: 18px;
      box-sizing: border-box;
    }
    .service-jump-list { gap: 12px; padding-right: 28px; }
    .service-jump-link {
      flex-basis: 66px;
      height: 75px;
      grid-template-rows: 29px minmax(19px, auto);
    }
    .service-jump-link img, .service-jump-link::before { width: 27px; height: 27px; flex-basis: 27px; }
    .service-jump-link span { font-size: 8px; }
    .service-jump-hint--left { left: 1px; }
    .service-jump-hint--right { right: 1px; }

  html[lang="en"] .hero h1 { font-size: clamp(27px, 7.7vw, 33px); }

  .privacy-content { padding: 44px 0 70px; }
    .privacy-container { width: calc(100% - 34px); }
    .privacy-section { margin-bottom: 46px; }
    .privacy-section h2 { font-size: 24px; line-height: 1.18; margin-bottom: 18px; }
    .privacy-section p, .privacy-section li { font-size: 14px; line-height: 1.58; }
    .privacy-section ul { margin-left: 22px; }

  html[lang="da"] .hero h1 { font-size: clamp(27px, 7.7vw, 33px); }

  .hero-contact a[href^="tel:"] { margin-bottom: 8px; }

  .site-footer .footer-facebook-link, .site-footer a[href="https://www.facebook.com/safari.fo"], .site-footer .footer-facebook-link img, .site-footer a[href="https://www.facebook.com/safari.fo"] img {
      width: 42px;
      height: 42px;
      max-width: 42px;
      max-height: 42px;
    }

  .services-page .service-detail-list { display: grid; gap: 32px; }
    .services-page .service-detail::after, .services-page .service-detail::before { display: none; }
    .services-page .service-detail-icon {
      width: auto;
      height: auto;
      min-width: 0;
      border: 0;
      padding: 0;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .services-page .service-detail-icon img {
      width: clamp(92px, 24vw, 130px);
      height: auto;
      max-width: 130px;
      max-height: none;
      object-fit: contain;
      margin: 0 auto;
    }
    .services-page .service-detail-copy { width: 100%; display: block; }
    .services-page .service-detail-copy h2 { margin: 0 0 22px; color: var(--yellow); }
    .services-page .service-detail + .service-detail { border-top: 1px solid rgba(255, 255, 255, 0.62); }

  .site-footer .footer-logo, .site-footer .footer-brand { --footer-logo-width: min(520px,100%); }

  .site-footer .footer-logo { width: min(380px,72vw); max-width: min(380px,72vw); }

  .service-card span, html[lang="da"] .service-card span, html[lang="en"] .service-card span, html[lang="fo"] .service-card span {
      font-weight: 800;
      text-shadow: 2px 2px 0 rgba(0,0,0,.42);
    }

  .services-page .service-detail h2, .services-page .service-detail-copy h2 { font-weight: 900; text-align: center; }
    html, body { overflow-x: hidden; }
    .services-page .service-detail-list {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding-left: 26px;
      padding-right: 26px;
      overflow-x: hidden;
    }
    .services-page .service-detail {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid rgba(255,255,255,.65);
      padding: 46px clamp(24px,6vw,34px) 42px;
      margin: 0;
      gap: 22px;
      background: transparent;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
      overflow: hidden;
    }
    .services-page .service-detail-copy, .services-page .service-detail-copy p, .services-page .service-detail-copy address {
      min-width: 0;
      max-width: 100%;
      overflow-wrap: break-word;
      word-break: normal;
    }

  .site-footer { padding: 46px 24px 48px; --footer-line-width: min(450px,78vw); }

  .site-header .header-actions, .site-header .language-switcher, .site-header .menu-toggle, header.site-header .header-actions, header.site-header .language-switcher, header.site-header .menu-toggle {
      height: 62px;
    }

  .site-header .language-link, header.site-header .language-link, .site-header .language-link img, header.site-header .language-link img {
      width: 31px;
      height: 21px;
      flex-basis: 31px;
    }
    .section-heading {
      width: 100%;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .section-heading > * { align-self: center; text-align: center; margin-left: auto; margin-right: auto; }
    .section-heading h2 {
      display: block;
      width: auto;
      max-width: 100%;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      align-self: center;
    }
    .section-heading::after {
      display: block;
      width: min(62vw, 330px);
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      align-self: center;
    }

  .content-page .page-title-block, .about-page .page-title-block, .services-page .page-title-block {
      width: calc(100% - 34px);
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .content-page .page-title-block p, .content-page .page-title-block h1, .about-page .page-title-block p, .about-page .page-title-block h1, .services-page .page-title-block p, .services-page .page-title-block h1 {
      display: block;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .content-page .page-title-block span, .about-page .page-title-block span, .services-page .page-title-block span {
      display: block;
      width: min(62vw, 330px);
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .about-page .page-title-block span, .services-page .page-title-block span { display: none; }
    .services-page .service-detail-copy h2 { font-size: clamp(26px, 6.6vw, 36px); }

  .service-card[href*="innlatingarstadur"] span, .service-card[href*="delivery-address"] span, .service-card[href*="leveringsadresse"] span {
      row-gap: 6px;
    }
    .services-page .service-detail-copy p + p, .services-page .service-detail-copy p + address, .services-page .service-detail-copy address + p {
      margin-top: 1.05em;
    }
    .privacy-hero img { object-position: center center; }

  .site-header .brand, header.site-header .brand, .site-header.is-scrolled .brand, header.site-header.is-scrolled .brand { overflow: visible; }
    .site-header .brand-logo, header.site-header .brand-logo, .site-header .brand img, header.site-header .brand img, .site-header.is-scrolled .brand-logo, header.site-header.is-scrolled .brand-logo, .site-header.is-scrolled .brand img, header.site-header.is-scrolled .brand img {
      margin: 0;
    }
    .hero { height: auto; min-height: 535px; }
    .hero-content {
      width: calc(100% - 28px);
      padding-top: 94px;
      padding-bottom: 32px;
      height: auto;
      min-height: 535px;
      justify-content: center;
    }
    .hero-dots { margin: 24px 0 22px; font-size: 17px; }
    .emergency-button { margin-top: 34px; }
    .services-page .service-detail-copy p, .services-page .service-detail-copy address {
      text-align: left;
      font-size: clamp(18px, 4.45vw, 22px);
      line-height: 1.58;
      margin-left: 0;
      margin-right: 0;
      letter-spacing: .005em;
    }
    .services-page #innlatingarstadur .service-detail-copy p, .services-page #delivery-address .service-detail-copy p, .services-page #leveringsadresse .service-detail-copy p, .services-page #innlatingarstadur .service-detail-copy address, .services-page #delivery-address .service-detail-copy address, .services-page #leveringsadresse .service-detail-copy address {
      line-height: 1.66;
      margin-bottom: 1.05em;
      font-size: clamp(18px, 4.45vw, 22px);
    }
    .privacy-hero {
      min-height: 330px;
      place-items: end start;
      height: auto;
      display: flex;
      align-items: center;
      padding: 104px 26px 58px;
      overflow: hidden;
    }
    .privacy-hero h1 .privacy-title-rest { display: block; }

  .hero-contact { font-size: clamp(19px, 5.1vw, 23px); line-height: 1.62; gap: 12px; }
    .hero-contact p + p { margin-top: 10px; }
    .hero-contact a[href^="tel:"], .hero-contact a[href^="mailto:"] {
      display: inline-block;
      padding: 4px 0;
      padding-top: 3px;
      padding-bottom: 3px;
    }

  html[lang="da"] .staff-section .section-heading h2 {
      font-size: clamp(36px, 9vw, 48px);
      letter-spacing: .045em;
      line-height: 1.1;
      white-space: nowrap;
    }

  .services-page #innlatingarstadur .service-detail-copy h2, .services-page #delivery-address .service-detail-copy h2, .services-page #leveringsadresse .service-detail-copy h2 {
      white-space: normal;
      font-size: clamp(26px, 6.6vw, 36px);
      letter-spacing: .10em;
      line-height: 1.12;
    }
    .services-page #toldbehandling .service-detail-copy h2 {
      white-space: normal;
      overflow-wrap: anywhere;
      font-size: clamp(24px, 5.9vw, 32px);
      letter-spacing: .055em;
    }

  .site-header .mobile-menu, header.site-header .mobile-menu { top: 54px; }

  .services-page #innlatingarstadur .mobile-title-break, .services-page #leveringsadresse .mobile-title-break { display: block; }
    .services-page #innlatingarstadur .desktop-title-space, .services-page #leveringsadresse .desktop-title-space { display: none; }
    .privacy-hero h1 {
      font-size: clamp(30px, 8.2vw, 40px);
      text-align: center;
      padding: 28px 20px 26px;
      letter-spacing: .02em;
      max-width: calc(100vw - 36px);
      margin: 0 auto;
      line-height: 1.04;
      word-break: normal;
      overflow-wrap: normal;
      hyphens: none;
      width: 100%;
      white-space: normal;
    }

  .site-header, .site-header.is-scrolled, .site-header.is-open, header.site-header, header.site-header.is-scrolled, header.site-header.is-open {
      height: 62px;
      min-height: 62px;
    }
    .site-header .header-inner, .site-header.is-scrolled .header-inner, .site-header.is-open .header-inner, header.site-header .header-inner, header.site-header.is-scrolled .header-inner, header.site-header.is-open .header-inner {
      height: 62px;
      min-height: 62px;
    }
    .site-header .brand, .site-header.is-scrolled .brand, .site-header.is-open .brand, header.site-header .brand, header.site-header.is-scrolled .brand, header.site-header.is-open .brand {
      flex: 0 0 150px;
      min-width: 150px;
      width: 150px;
      height: 62px;
    }
    .site-header .brand-logo, .site-header.is-scrolled .brand-logo, .site-header.is-open .brand-logo, .site-header .brand img, .site-header.is-scrolled .brand img, .site-header.is-open .brand img, header.site-header .brand-logo, header.site-header.is-scrolled .brand-logo, header.site-header.is-open .brand-logo, header.site-header .brand img, header.site-header.is-scrolled .brand img, header.site-header.is-open .brand img {
      width: 150px;
      max-width: 150px;
      max-height: 50px;
      height: auto;
      transform: none;
    }
    .site-header .header-actions, .site-header.is-scrolled .header-actions, .site-header.is-open .header-actions, .site-header .language-switcher, .site-header.is-scrolled .language-switcher, .site-header.is-open .language-switcher, .site-header .menu-toggle, .site-header.is-scrolled .menu-toggle, .site-header.is-open .menu-toggle {
      height: 62px;
      min-height: 62px;
    }
    .site-header .mobile-menu, .site-header.is-scrolled .mobile-menu, .site-header.is-open .mobile-menu { top: 62px; }

  .site-header .header-actions, .site-header.is-scrolled .header-actions, .site-header.is-open .header-actions, header.site-header .header-actions, header.site-header.is-scrolled .header-actions, header.site-header.is-open .header-actions {
      gap: 8px;
    }
    .site-header .language-switcher, .site-header.is-scrolled .language-switcher, .site-header.is-open .language-switcher, header.site-header .language-switcher, header.site-header.is-scrolled .language-switcher, header.site-header.is-open .language-switcher {
      gap: 18px;
      margin-right: 0;
    }
    .site-header .menu-toggle, .site-header.is-scrolled .menu-toggle, .site-header.is-open .menu-toggle, header.site-header .menu-toggle, header.site-header.is-scrolled .menu-toggle, header.site-header.is-open .menu-toggle {
      margin-left: 0;
    }
    .services-section .service-card span, html[lang="fo"] .services-section .service-card span, html[lang="en"] .services-section .service-card span, html[lang="da"] .services-section .service-card span {
      font-size: clamp(20px, 5.15vw, 26px);
      letter-spacing: .03em;
    }
    .services-section .service-card[href*="tollavgreidsla"] span, .services-section .service-card[href*="customs"] span, .services-section .service-card[href*="toldbehandling"] span {
      white-space: nowrap;
    }

  .site-footer .footer-brand p, .site-footer .footer-contact p, .site-footer .contact-list, .site-footer .contact-list li, .site-footer .footer-contact a, .site-footer .footer-contact span {
      font-size: clamp(18px, 4.45vw, 22px);
      line-height: 1.48;
    }
    .site-footer .footer-contact > a[href="/datuverndarkunning.html"] { font-size: clamp(19px, 4.7vw, 23px); line-height: 1.35; }
    .contact-overview {
      width: min(390px, calc(100% - 24px));
      margin-top: 52px;
    }
    .contact-options {
      grid-template-columns: minmax(0, 1fr);
      gap: 46px;
    }
    .contact-option {
      gap: 14px;
      padding: 0;
    }
    .contact-option + .contact-option::before { display: none; }
    .contact-label { font-size: clamp(16px, 4.4vw, 19px); }
    .staff-section .contact-action {
      width: fit-content;
      min-width: 0;
      min-height: 48px;
      padding: 9px 26px;
      border-radius: 24px;
      font-size: clamp(17px, 4.6vw, 20px);
    }
    .staff-grid {
      width: min(390px, calc(100% - 24px));
      margin-top: 64px;
      grid-template-columns: minmax(0, 1fr);
      column-gap: 0;
      row-gap: 76px;
    }
    .staff-card { min-width: 0; overflow: visible; }
    .staff-photo { width: clamp(150px, 45vw, 180px); height: clamp(150px, 45vw, 180px); margin-bottom: 20px; }
    .staff-card h3 {
      font-size: clamp(16px, 4.15vw, 20px);
      line-height: 1.13;
      letter-spacing: .045em;
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }
    .staff-card .role { font-size: clamp(13px, 3.45vw, 16px); line-height: 1.24; }
    .staff-line { width: clamp(96px, 28vw, 138px); margin: 20px auto 16px; }

  .staff-section .contact-line {
      margin-bottom: 8px;
      font-size: clamp(13.5px, 3.55vw, 16px);
      line-height: 1.32;
      margin: 0 0 5px;
      letter-spacing: -.012em;
      white-space: nowrap;
      overflow-wrap: normal;
      word-break: normal;
    }
    .staff-section .contact-line a { display: inline-block; padding: 3px 0; line-height: 1.32; }

  .site-footer .footer-contact h3 { font-size: clamp(29px, 7vw, 38px); line-height: 1.12; letter-spacing: .035em; }

  .about-page .page-copy { font-size: clamp(18px, 4.55vw, 22px); line-height: 1.62; }
    .about-page .page-copy p { margin-bottom: 28px; }
    .about-page .about-service-list { margin-top: 50px; }
    .about-page .about-service-list li { margin-bottom: 13px; }

  .services-section .service-card span, html[lang="fo"] .services-section .service-card span, html[lang="en"] .services-section .service-card span, html[lang="da"] .services-section .service-card span {
      line-height: 1.20;
    }

  .staff-section .staff-card h3 { min-height: 72px; margin-bottom: 8px; }
    .staff-section .staff-card .role { min-height: 26px; }

  .site-footer .footer-brand .footer-logo { width: min(250px, 64vw); }

    /* Explicit final values for rules shared with the wider compact layout. */
    .site-header .menu-toggle, header.site-header .menu-toggle,
    .site-header.is-open .menu-toggle, header.site-header.is-open .menu-toggle,
    .site-header.is-scrolled .menu-toggle, header.site-header.is-scrolled .menu-toggle {
      height: 44px;
      min-height: 44px;
    }
    .site-footer .footer-facebook-link img,
    .site-footer a[href="https://www.facebook.com/safari.fo"] img {
      width: 38px;
      height: 38px;
      max-width: 38px;
      max-height: 38px;
    }
}

@media (max-width: 430px) {
  .privacy-hero h1 { font-size: clamp(28px, 7.7vw, 34px); letter-spacing: .012em; }
}

@media (max-width: 420px) {
  .services-section { padding-inline: 14px; }
    .section-heading h2 { font-size: 36px; }
    .staff-section .section-heading h2 { font-size: 36px; }

  .hero h1 { font-size: clamp(25px, 7.5vw, 30px); letter-spacing: 0.045em; }

  .service-card { gap: 24px; padding: 0 22px; }

  .content-page { padding-top: 62px; }
    .page-title-block h1 { font-size: 34px; }
    .page-title-block p { font-size: 17px; }

  html[lang="da"] .staff-section .section-heading h2 { font-size: clamp(30px, 8.2vw, 36px); letter-spacing: .035em; }

  .services-page #innlatingarstadur .service-detail-copy h2, .services-page #delivery-address .service-detail-copy h2, .services-page #leveringsadresse .service-detail-copy h2 {
      font-size: clamp(24px, 6.2vw, 31px);
      letter-spacing: .075em;
    }
    .services-page #toldbehandling .service-detail-copy h2 { font-size: clamp(22px, 5.6vw, 28px); letter-spacing: .035em; }

  .site-footer .footer-contact h3 { font-size: clamp(27px, 6.8vw, 34px); letter-spacing: .025em; }
}

@media (max-width: 380px) {
  .hero, .hero-content { min-height: 520px; }
    .hero-dots { margin: 20px 0 18px; }
    .emergency-button { margin-top: 28px; }

  .hero-contact { font-size: clamp(17px, 4.9vw, 19px); }
}

@media (max-width: 374px) {
  .site-header .brand, .site-header.is-scrolled .brand, .site-header.is-open .brand, header.site-header .brand, header.site-header.is-scrolled .brand, header.site-header.is-open .brand {
      flex-basis: 138px;
      min-width: 138px;
      width: 138px;
    }
    .site-header .brand-logo, .site-header.is-scrolled .brand-logo, .site-header.is-open .brand-logo, .site-header .brand img, .site-header.is-scrolled .brand img, .site-header.is-open .brand img, header.site-header .brand-logo, header.site-header.is-scrolled .brand-logo, header.site-header.is-open .brand-logo, header.site-header .brand img, header.site-header.is-scrolled .brand img, header.site-header.is-open .brand img {
      width: 138px;
      max-width: 138px;
      max-height: 47px;
    }

  .services-section .service-card span, html[lang="fo"] .services-section .service-card span, html[lang="en"] .services-section .service-card span, html[lang="da"] .services-section .service-card span {
      font-size: clamp(18px, 4.75vw, 21px);
    }

  .staff-grid { width: min(350px, calc(100% - 24px)); column-gap: 18px; row-gap: 60px; }
    .staff-photo { width: 112px; height: 112px; }
    .staff-card h3 { font-size: 15px; letter-spacing: .035em; }
    .staff-card .role { font-size: 12px; }

  .staff-section .contact-line { font-size: 12.5px; margin-bottom: 7px; letter-spacing: -.018em; line-height: 1.28; }
    .staff-section .contact-line a { padding: 2px 0; line-height: 1.28; }

  .staff-section .staff-card h3 { min-height: 54px; }
}

@media (max-width: 360px) {
  .privacy-hero h1 { font-size: 27px; letter-spacing: .006em; }
}

@media (prefers-reduced-motion: reduce) {
  .language-switcher img { transition: none; }
  .language-switcher .language-link:hover img,
  .language-switcher .language-link:focus-visible img { transform: none; }

  .service-card { transition: none; }

  .staff-section .contact-action { transition: none; }
  .staff-section .contact-action:hover,
  .staff-section .contact-action:focus-visible { transform: none; }
  .hero-contact a, .contact-line a, .contact-list a, .service-detail-copy a, .emergency-button { transition: none; }
    .hero-contact a:hover, .contact-line a:hover, .contact-list a:hover, .service-detail-copy a:hover, .service-detail-copy a:focus-visible, .emergency-button:hover { transform: none; }
  .hero-contact a::after, .contact-line a::after, .contact-list a::after, .service-detail-copy a::after { transition: none; }
  .about-page .page-copy .about-phone-link::after { transition: none; }

  .emergency-button { animation: none; }
    .emergency-button:hover::before { animation: none; }
}
