:root {
  --bg: #f4f5ef;
  --bg-soft: #eaeee6;
  --surface: #ffffff;
  --text: #183029;
  --muted: #66756f;
  --line: rgba(24, 48, 41, .14);
  --accent: #5e7d68;
  --accent-soft: #dce7dc;
  --gold: #c7ad78;
  --header-bg: rgba(244, 245, 239, .82);
  --shadow: 0 28px 70px rgba(28, 47, 39, .12);
  --container: min(1240px, calc(100vw - 48px));
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-latin: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-arabic: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

html[data-theme="dark"] {
  --bg: #101713;
  --bg-soft: #18211c;
  --surface: #1a241f;
  --text: #eef4ef;
  --muted: #a9b6ae;
  --line: rgba(238, 244, 239, .13);
  --accent: #9bb4a1;
  --accent-soft: #26342b;
  --gold: #d9c08d;
  --header-bg: rgba(16, 23, 19, .82);
  --shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-latin);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .35s ease, color .35s ease;
}
html[lang="ar"] body { font-family: var(--font-arabic); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 132px 0; position: relative; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 86px;
  display: flex;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  color: #fff;
  transition: background-color .3s ease, color .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header.scrolled,
.site-header.menu-open {
  height: 74px;
  background: var(--header-bg);
  color: var(--text);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 188px;
  position: relative;
  z-index: 1002;
}
.brand-mark { width: 37px; height: 37px; }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark svg circle:last-child { fill: currentColor; stroke: none; }
.brand-text { display: grid; line-height: 1; gap: 4px; letter-spacing: .08em; }
.brand-text strong { font-size: .84rem; font-weight: 700; }
.brand-text small { font-size: .56rem; font-weight: 600; letter-spacing: .38em; opacity: .72; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-inline: auto; }
.desktop-nav a { font-size: .82rem; font-weight: 600; position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; min-width: 188px; justify-content: flex-end; position: relative; z-index: 1002; }
.utility-button,
.menu-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  opacity: .92;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.utility-button:hover,
.menu-toggle:hover { background: currentColor; color: var(--bg); transform: translateY(-1px); }
.language-switch { font-family: var(--font-arabic); font-weight: 700; font-size: 1rem; }
.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-sun { display: none; }
html[data-theme="dark"] .icon-moon { display: none; }
html[data-theme="dark"] .icon-sun { display: block; }
.menu-toggle { display: none; position: relative; }
.menu-toggle span { width: 16px; height: 1.5px; background: currentColor; position: absolute; transition: transform .25s ease, top .25s ease; }
.menu-toggle span:first-child { top: 15px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--bg);
  color: var(--text);
  padding: 118px 24px 36px;
}
.mobile-menu nav { display: grid; border-top: 1px solid var(--line); }
.mobile-menu nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: clamp(1.6rem, 8vw, 2.6rem); font-weight: 500; line-height: 1.2; }
.mobile-menu p { position: absolute; bottom: 28px; color: var(--muted); font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; }

.hero {
  min-height: 100svh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/optimized/hero.webp");
  background-size: cover;
  background-position: center 52%;
  transform: scale(1.03);
  animation: heroBreath 16s ease-in-out infinite alternate;
}
@keyframes heroBreath { to { transform: scale(1.08); } }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 14, .72) 0%, rgba(8, 18, 14, .34) 49%, rgba(8, 18, 14, .08) 100%),
    linear-gradient(0deg, rgba(8, 18, 14, .67) 0%, transparent 44%);
}
.hero-content { position: relative; z-index: 2; padding-top: 70px; }
.eyebrow { margin: 0 0 20px; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(3.5rem, 8.2vw, 7.9rem);
  line-height: .93;
  letter-spacing: -.07em;
  font-weight: 500;
}
.hero-copy { max-width: 590px; margin: 28px 0 0; font-size: clamp(1rem, 1.7vw, 1.22rem); color: rgba(255,255,255,.82); }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: #fff; color: #183029; }
.button-light:hover { background: #e9eee9; }
.button-ghost-light { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.button-ghost-light:hover { background: rgba(255,255,255,.12); }
.hero-meta {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 31px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) auto;
  align-items: end;
  gap: 42px;
}
.hero-meta div { display: grid; gap: 2px; }
.hero-meta span { font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.hero-meta strong { font-size: .86rem; font-weight: 600; }
.scroll-cue { display: flex; align-items: center; gap: 9px; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.scroll-cue span { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; position: relative; }
.scroll-cue span::after { content: ""; width: 5px; height: 5px; border-right: 1px solid #fff; border-bottom: 1px solid #fff; transform: rotate(45deg); position: absolute; left: 14px; top: 11px; }

.section-label { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.section-label span { color: var(--accent); }
.display-title { margin: 20px 0 0; font-size: clamp(2.45rem, 5vw, 5.25rem); line-height: 1.02; letter-spacing: -.055em; font-weight: 500; }
.display-title em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; color: var(--accent); }
html[lang="ar"] .display-title em { font-family: var(--font-arabic); font-style: normal; }
.lead { color: var(--muted); font-size: clamp(1.04rem, 1.6vw, 1.25rem); max-width: 720px; }
.section-copy { color: var(--muted); max-width: 510px; margin: 22px 0 0; }

.intro { background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: .72fr 1.65fr; gap: 90px; align-items: start; }
.intro .lead { max-width: 760px; margin: 34px 0 0; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.principles div { padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.principles strong { font-size: .92rem; }
.principles span { color: var(--muted); font-size: .82rem; line-height: 1.55; }

.journeys { background: var(--bg-soft); }
.section-heading { display: grid; grid-template-columns: .72fr 1.65fr; gap: 90px; align-items: start; }
.journey-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 18px; margin-top: 64px; }
.journey-card {
  min-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.journey-card-large { min-height: 720px; }
.journey-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .7s cubic-bezier(.2,.75,.25,1); }
.journey-card:hover img { transform: scale(1.045); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,15,12,.82) 0%, rgba(7,15,12,.2) 58%, transparent 100%); }
.card-content { position: absolute; inset: auto 28px 28px; z-index: 2; }
.card-content > span { font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.65); }
.card-content h3 { margin: 9px 0 7px; font-size: clamp(2rem, 3.2vw, 3.6rem); line-height: 1; font-weight: 500; letter-spacing: -.045em; }
.card-content p { margin: 0 0 19px; color: rgba(255,255,255,.72); font-size: .9rem; max-width: 300px; }
.card-content a { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 4px; }
.coming-soon { margin-top: 22px; padding: 21px 24px; border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; align-items: center; gap: 13px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #75aa74; box-shadow: 0 0 0 6px rgba(117,170,116,.13); }
.coming-soon p { margin: 0; flex: 1; color: var(--muted); font-size: .86rem; }
.coming-soon strong { color: var(--text); }
.coming-soon a { font-size: .78rem; font-weight: 700; border-bottom: 1px solid var(--line); }

.norway { overflow: hidden; }
.norway::before { content: "NORWAY"; position: absolute; right: -2vw; top: 0; color: var(--line); font-size: clamp(7rem, 16vw, 14rem); font-weight: 700; letter-spacing: -.08em; line-height: .75; pointer-events: none; }
.norway-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 88px; align-items: center; position: relative; }
.norway-visual { position: relative; }
.norway-visual img { width: 100%; aspect-ratio: 1.34; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.location-tag { position: absolute; left: 22px; bottom: 22px; background: rgba(255,255,255,.9); color: #183029; border-radius: 14px; padding: 12px 15px; display: grid; line-height: 1.2; backdrop-filter: blur(12px); }
.location-tag span { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; opacity: .58; }
.location-tag strong { font-size: .9rem; }
.norway-content .lead { margin: 28px 0 0; }
.destination-list { margin-top: 42px; border-top: 1px solid var(--line); }
.destination-list button { width: 100%; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; background: none; border: 0; border-bottom: 1px solid var(--line); padding: 17px 0; text-align: left; cursor: default; }
.destination-list span { color: var(--accent); font-size: .68rem; }
.destination-list strong { font-size: 1rem; font-weight: 600; }
.destination-list small { color: var(--muted); font-size: .72rem; }

.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.about-copy { padding-top: 48px; }
.about-copy > p { font-size: clamp(1.06rem, 1.55vw, 1.25rem); color: var(--muted); margin: 0 0 22px; }
.profile-note { margin-top: 50px; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 4px; }
.profile-note span { color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .12em; }
.profile-note strong { font-size: 1rem; }
.profile-note small { color: var(--accent); }

.collaboration-card { min-height: 680px; border-radius: 34px; overflow: hidden; position: relative; color: #fff; display: flex; align-items: center; padding: 72px; box-shadow: var(--shadow); }
.collaboration-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collab-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,13,10,.82), rgba(5,13,10,.25) 70%); }
.collab-content { max-width: 650px; position: relative; z-index: 2; }
.collab-content h2 { margin: 0; font-size: clamp(2.8rem, 5.6vw, 5.8rem); line-height: .98; letter-spacing: -.06em; font-weight: 500; }
.collab-content > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.75); margin: 24px 0 30px; }
.collab-types { position: absolute; z-index: 2; right: 42px; bottom: 34px; list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 600px; }
.collab-types li { border: 1px solid rgba(255,255,255,.32); border-radius: 999px; padding: 7px 12px; font-size: .68rem; backdrop-filter: blur(10px); }

.social-proof { padding-top: 50px; }
.section-heading.compact { grid-template-columns: .72fr 1.65fr; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.social-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); min-height: 118px; padding: 21px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 16px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.social-card img { width: 56px; height: 56px; border-radius: 17px; }
.social-card div { display: grid; }
.social-card div span { color: var(--muted); font-size: .72rem; }
.social-card strong { font-size: .9rem; }
.social-arrow { font-size: 1.15rem; color: var(--accent); }

.contact { padding-top: 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-panel { padding-top: 38px; }
.contact-panel > p { color: var(--muted); margin: 0 0 34px; max-width: 570px; }
.contact-row { display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); transition: padding .2s ease; }
.contact-row:hover { padding-inline: 8px; }
.contact-row span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-row strong { font-size: clamp(.88rem, 1.5vw, 1rem); overflow-wrap: anywhere; }
.contact-row i { font-style: normal; color: var(--accent); }
.placeholder-note { display: block; color: var(--muted); margin-top: 18px; font-size: .72rem; }

.site-footer { background: #0d1511; color: #eef4ef; padding: 58px 0 20px; }
.footer-main { display: grid; grid-template-columns: 1fr 1.6fr auto; align-items: center; gap: 44px; padding-bottom: 50px; }
.footer-main > p { margin: 0; color: rgba(238,244,239,.6); max-width: 450px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 44px; height: 44px; border-radius: 13px; overflow: hidden; transition: transform .2s ease; }
.footer-socials a:hover { transform: translateY(-3px); }
.footer-socials img { width: 100%; height: 100%; object-fit: cover; }
.footer-bottom { border-top: 1px solid rgba(238,244,239,.12); padding-top: 18px; display: flex; justify-content: space-between; color: rgba(238,244,239,.52); font-size: .7rem; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #fff; }

.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 54px; height: 54px; border-radius: 18px; overflow: hidden; box-shadow: 0 14px 30px rgba(0,0,0,.25); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.02); }
.floating-whatsapp img { width: 100%; height: 100%; }
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 130%); z-index: 1100; background: var(--text); color: var(--bg); border-radius: 999px; padding: 12px 18px; font-size: .78rem; box-shadow: var(--shadow); transition: transform .3s ease; max-width: calc(100vw - 36px); text-align: center; }
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: none; }

.privacy-page { min-height: 100svh; padding: 150px 0 100px; }
.privacy-page .content { max-width: 820px; }
.privacy-page h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -.05em; line-height: 1; }
.privacy-page h2 { margin-top: 42px; }
.privacy-page p, .privacy-page li { color: var(--muted); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 22px; }
  .brand, .header-actions { min-width: auto; }
  .journey-grid { grid-template-columns: 1.05fr .95fr; }
  .journey-card:last-child { grid-column: 1 / -1; min-height: 480px; }
  .journey-card:last-child img { object-position: center 55%; }
  .norway-grid { gap: 50px; }
  .collab-types { left: 72px; right: auto; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 680px); }
  .section { padding: 92px 0; }
  .site-header { height: 74px; padding-inline: 16px; }
  .site-header.scrolled, .site-header.menu-open { height: 68px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .header-actions { gap: 6px; }
  .utility-button, .menu-toggle { width: 38px; height: 38px; }
  .brand-mark { width: 33px; height: 33px; }
  .brand-text strong { font-size: .73rem; }
  .brand-text small { font-size: .5rem; }
  .hero { min-height: 920px; align-items: flex-end; }
  .hero-content { padding: 0 0 250px; }
  .hero h1 { font-size: clamp(3.2rem, 13vw, 5.8rem); }
  .hero-shade { background: linear-gradient(0deg, rgba(8,18,14,.86) 0%, rgba(8,18,14,.28) 72%, rgba(8,18,14,.18) 100%); }
  .hero-meta { bottom: 30px; grid-template-columns: 1fr 1fr; gap: 18px 30px; }
  .hero-meta .scroll-cue { display: none; }
  .intro-grid, .section-heading, .section-heading.compact, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .principles { grid-template-columns: 1fr; gap: 8px; margin-top: 38px; }
  .principles div { grid-template-columns: 150px 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card, .journey-card-large, .journey-card:last-child { grid-column: auto; min-height: 600px; }
  .coming-soon { align-items: flex-start; flex-wrap: wrap; }
  .coming-soon p { min-width: calc(100% - 30px); }
  .coming-soon a { margin-left: 21px; }
  .norway-grid { grid-template-columns: 1fr; }
  .norway-content { order: -1; }
  .about-copy { padding-top: 0; }
  .collaboration-card { min-height: 700px; padding: 42px 28px 150px; align-items: flex-start; justify-content: flex-end; flex-direction: column; }
  .collab-types { left: 28px; right: 28px; bottom: 28px; justify-content: flex-start; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-panel { padding-top: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .brand-text { display: none; }
  .hero { min-height: 820px; }
  .hero-content { padding-bottom: 246px; }
  .hero h1 { letter-spacing: -.055em; }
  .hero-copy { font-size: .95rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 330px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .hero-meta div:nth-child(3) { grid-column: 1 / -1; }
  .display-title { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .journey-card, .journey-card-large, .journey-card:last-child { min-height: 520px; }
  .norway::before { font-size: 7rem; top: 35px; }
  .destination-list button { grid-template-columns: 34px 1fr; }
  .destination-list small { display: none; }
  .collaboration-card { min-height: 690px; }
  .collab-content h2 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .collab-types { gap: 6px; }
  .contact-row { grid-template-columns: 90px 1fr auto; gap: 10px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .floating-whatsapp { width: 50px; height: 50px; border-radius: 16px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

html[dir="rtl"] .desktop-nav a::after { left: 100%; right: 0; }
html[dir="rtl"] .desktop-nav a:hover::after,
html[dir="rtl"] .desktop-nav a:focus-visible::after { left: 0; }
html[dir="rtl"] .hero-shade { background: linear-gradient(270deg, rgba(8,18,14,.72) 0%, rgba(8,18,14,.34) 49%, rgba(8,18,14,.08) 100%), linear-gradient(0deg, rgba(8,18,14,.67) 0%, transparent 44%); }
html[dir="rtl"] .destination-list button { text-align: right; }
html[dir="rtl"] .norway::before { right: auto; left: -2vw; }
html[dir="rtl"] .location-tag { left: auto; right: 22px; }
html[dir="rtl"] .collab-overlay { background: linear-gradient(270deg, rgba(5,13,10,.82), rgba(5,13,10,.25) 70%); }
html[dir="rtl"] .collab-types { right: auto; left: 42px; }
html[dir="rtl"] .floating-whatsapp { right: auto; left: 20px; }
@media (max-width: 820px) {
  html[dir="rtl"] .collab-types { right: 28px; left: 28px; }
}
@media (max-width: 560px) {
  html[dir="rtl"] .floating-whatsapp { right: auto; left: 14px; }
}
