/* Liberty Austria v2 — corporate CI matching liberty-int.com */

:root {
  --orange: #ee7f1a;
  --orange-deep: #c8650a;
  --sky: #0ba2df;
  --sky-deep: #0784b6;
  --navy: #14213d;
  --ink: #1d2741;
  --ink-soft: #4a556e;
  --ink-muted: #8a93a6;
  --paper: #ffffff;
  --paper-2: #f6f8fb;
  --paper-3: #eef2f7;
  --line: #e1e6ee;
  --line-strong: #c9d1de;

  --sans: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 60px);
  --section-y: clamp(70px, 8vw, 120px);
}

[data-v2-theme="dark"] {
  --paper: #0d1628;
  --paper-2: #131e34;
  --paper-3: #1a2740;
  --ink: #f4f6fa;
  --ink-soft: #c4ccdb;
  --ink-muted: #8a93a6;
  --line: #243355;
  --line-strong: #324466;
  --navy: #f4f6fa;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* TOP UTILITY BAR (orange) */
.utility {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.utility-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 32px;
}
.utility a { opacity: 0.92; transition: opacity 0.2s; }
.utility a:hover { opacity: 1; }
.utility-left, .utility-right { display: flex; gap: 24px; align-items: center; }
@media (max-width: 740px) {
  .utility-row { padding: 8px 20px; justify-content: flex-end; }
  .utility-left { display: none; }
  .utility-right { gap: 14px; }
}

/* MAIN NAV (translucent, blurred, sticky, blue underline on hover) */
.nav-v2 {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
  position: sticky; top: 0; z-index: 50;
  transition: background 0.25s ease, border-color 0.25s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-v2 { background: rgba(255, 255, 255, 0.95); }
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
}
@media (max-width: 740px) { .nav-row { padding: 16px 20px; } }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { height: 56px; width: auto; }
.nav-brand .stack { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand .name { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.nav-brand .sub { font-size: 10px; color: var(--ink-muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }

.nav-links-v2 {
  display: flex; list-style: none; gap: 4px;
}
.nav-links-v2 a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links-v2 a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links-v2 a:hover, .nav-links-v2 a.is-active { color: var(--sky); }
.nav-links-v2 a:hover::after, .nav-links-v2 a.is-active::after { transform: scaleX(1); }

.nav-cta-v2 {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: #fff !important;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-v2:hover { background: var(--orange-deep); transform: translateY(-1px); }

/* MOBILE MENU TOGGLE */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  flex-direction: column; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: var(--navy);
  color: #fff;
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer .drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer; font-size: 20px;
}
.mobile-drawer .drawer-brand {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 28px; margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-drawer .drawer-brand img { height: 56px; width: auto; filter: brightness(1.15); }
.mobile-drawer .drawer-brand .name { font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.mobile-drawer .drawer-brand .sub { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 3px; }

.mobile-drawer ul {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column;
}
.mobile-drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.10); }
.mobile-drawer ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-size: 18px; font-weight: 600;
  color: #fff;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer ul li a::after {
  content: "→"; color: var(--orange);
  font-weight: 700; font-size: 16px;
  opacity: 0.6; transition: opacity 0.2s, transform 0.2s;
}
.mobile-drawer ul li a:hover, .mobile-drawer ul li a.is-active { color: var(--orange); padding-left: 6px; }
.mobile-drawer ul li a:hover::after { opacity: 1; transform: translateX(4px); }

.mobile-drawer .drawer-cta {
  display: block; text-align: center;
  padding: 18px 24px;
  background: var(--orange);
  color: #fff !important;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 28px;
  transition: background 0.2s;
}
.mobile-drawer .drawer-cta:hover { background: var(--orange-deep); }

.mobile-drawer .drawer-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-drawer .drawer-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 12px;
}
.mobile-drawer .drawer-row { display: flex; gap: 10px; flex-wrap: wrap; }
.mobile-drawer .drawer-chip {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
.mobile-drawer .drawer-chip:hover, .mobile-drawer .drawer-chip.is-active { background: rgba(255,255,255,0.10); border-color: var(--orange); color: var(--orange); }
.mobile-drawer .drawer-support {
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6;
}
.mobile-drawer .drawer-support a { color: var(--orange); }

@media (max-width: 900px) {
  .nav-links-v2 { display: none; }
  .nav-cta-v2 { display: none; }
  .nav-toggle { display: flex; }
}

/* HERO — full-bleed photo backdrop with overlay */
.hero-v2 {
  position: relative;
  display: block;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-v2::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(20,33,61,0.92) 0%, rgba(20,33,61,0.65) 50%, rgba(11,162,223,0.4) 100%),
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,0.015) 30px 31px);
  z-index: 1;
}
.hero-v2::after {
  /* dotted plane-path motif */
  content: "";
  position: absolute;
  bottom: 12%; left: -5%; right: -5%;
  height: 2px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1.5px, transparent 1.5px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 1;
  transform: rotate(-3deg);
  opacity: 0.6;
}
.hero-v2 .wrap { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 80px; width: 100%; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  margin-bottom: 24px;
}
.hero-title-v2 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-title-v2 strong { font-weight: 700; color: var(--orange); }
.hero-title-v2 em { font-style: normal; color: var(--sky); font-weight: 600; }
.hero-sub-v2 {
  font-size: 18px;
  font-weight: 300;
  max-width: 60ch;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.hero-actions-v2 { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-v2 {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.2s;
}
.btn-v2.primary { background: var(--orange); color: #fff !important; }
.btn-v2.primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-v2.outline { border: 1.5px solid rgba(255,255,255,0.5); color: #fff !important; }
.btn-v2.outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-v2.sky { background: var(--sky); color: #fff !important; }
.btn-v2.sky:hover { background: var(--sky-deep); transform: translateY(-2px); }
.btn-v2.ghost { color: var(--orange) !important; }
.btn-v2.ghost::after { content: "→"; transition: transform 0.2s; }
.btn-v2.ghost:hover::after { transform: translateX(4px); }

/* HERO STATS RIBBON — sits at the bottom of the hero, in normal flow */
.hero-stats {
  position: relative;
  background: var(--sky);
  color: #fff;
  z-index: 3;
}
.hero-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num { font-size: 30px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.hero-stat .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.9; }

/* SECTION SCAFFOLD */
.section-v2 { padding: var(--section-y) 0; }
.section-v2.tinted { background: var(--paper-2); }
.section-v2.dark { background: var(--navy); color: #fff; }

.s-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.s-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 24ch;
  margin-bottom: 18px;
}
.s-title strong { font-weight: 700; }
.s-title em { font-style: normal; color: var(--sky); font-weight: 600; }
.section-v2.dark .s-title { color: #fff; }
.s-lede {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.6;
}
.section-v2.dark .s-lede { color: rgba(255,255,255,0.8); }

.s-head { margin-bottom: 56px; }
.s-head.center { text-align: center; }
.s-head.center .s-title, .s-head.center .s-lede { margin-left: auto; margin-right: auto; }

/* SUBPAGE HEADER — dark navy hero band on About / Destinations / Expertise */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: 24px; left: -5%; right: -5%;
  height: 2px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1.5px, transparent 1.5px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  transform: rotate(-2deg);
  opacity: 0.5;
}
.page-header .crumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 18ch;
  line-height: 1.05;
}
.page-header h1 strong { font-weight: 700; color: var(--orange); }
.page-header h1 em { font-style: normal; color: var(--sky); font-weight: 600; }
.page-header p {
  color: rgba(255,255,255,0.78);
  margin-top: 18px;
  max-width: 60ch;
  font-size: 16px;
  font-weight: 300;
}

/* SEGMENTS GRID — 5 cards like the live site */
.seg-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.seg-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 24px;
  text-align: left;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.seg-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--orange); transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s;
}
.seg-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 14px 30px rgba(20,33,61,0.08); }
.seg-card:hover::before { transform: scaleY(1); }
.seg-icon {
  width: 48px; height: 48px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
}
.seg-icon svg { width: 100%; height: 100%; }
.seg-card h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em;
}
.seg-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
.seg-card .more {
  display: inline-block; margin-top: 18px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange);
}
.seg-card .more::after { content: " →"; }

/* WHY US GRID — 9 cells, icon + text */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.why-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.2s;
}
.why-cell:hover { background: var(--paper-2); }
.why-cell .num {
  font-size: 11px; font-weight: 700; color: var(--orange);
  letter-spacing: 0.14em; margin-bottom: 14px;
}
.why-cell h4 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.03em;
}
.why-cell p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* FOUNDER QUOTE BLOCK */
.founder {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-items: center;
}
.founder-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.founder-photo .placeholder {
  font-size: 11px; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 600;
}
.founder-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(20,33,61,0.04) 18px 19px);
}
.founder-name { font-size: 20px; font-weight: 700; color: var(--navy); margin-top: 24px; }
.founder-role { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); margin-top: 4px; }
.founder-quote {
  font-size: 22px; font-weight: 300; line-height: 1.55; color: var(--ink);
  margin: 28px 0;
}
.founder-quote strong { font-weight: 700; color: var(--orange); }
.founder-body { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.founder-body p + p { margin-top: 14px; }

/* SUSTAINABILITY — split with photo */
.sus-split {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.sus-photo {
  background: linear-gradient(135deg, #1a3a2c, #0a1f15);
  min-height: 480px;
  position: relative;
}
.sus-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,0.04) 22px 23px);
}
.sus-photo::after {
  content: "GLASGOW DECLARATION · SIGNATORY";
  position: absolute; bottom: 24px; left: 24px;
  font-size: 10px; letter-spacing: 0.18em; color: rgba(255,255,255,0.7);
}
.sus-content { padding: 80px 60px; }
.sus-content .s-eyebrow { color: var(--orange); }
.sus-content .s-title { color: #fff; }
.sus-content .s-lede { color: rgba(255,255,255,0.82); margin-bottom: 28px; }

/* DESTINATIONS GRID (Austrian regions) — 3x3 image cards */
.regions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.region-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.3s;
}
.region-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(20,33,61,0.85) 0%, rgba(20,33,61,0.1) 50%, transparent 100%),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(20,33,61,0.05) 20px 21px);
  z-index: 1;
}
.region-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,33,61,0.18); }
.region-card:hover .region-name { color: var(--orange); }
.region-card .region-meta {
  position: absolute; top: 16px; left: 18px; z-index: 2;
  font-size: 10px; letter-spacing: 0.16em; color: rgba(255,255,255,0.7);
  text-transform: uppercase; font-weight: 600;
}
.region-card .region-name {
  position: absolute; bottom: 18px; left: 20px; z-index: 2;
  font-size: 22px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.region-card .region-sub {
  position: absolute; bottom: 18px; right: 20px; z-index: 2;
  font-size: 11px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* BLOG / KNOWLEDGE TILES */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.blog-card:hover { border-color: var(--sky); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20,33,61,0.08); }
.blog-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--paper-3) 0%, var(--paper-2) 50%, color-mix(in oklab, var(--orange) 12%, var(--paper-2)) 100%);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.blog-thumb::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, rgba(20,33,61,0.04) 16px 17px);
}
.blog-date {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: #fff;
  padding: 8px 12px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; flex-direction: column; align-items: center;
  line-height: 1;
  z-index: 2;
}
.blog-date .day { font-size: 18px; }
.blog-date .month { font-size: 10px; margin-top: 4px; }
.blog-body { padding: 24px 26px 26px; }
.blog-body h4 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; line-height: 1.35;
}
.blog-body p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.blog-body .more {
  display: inline-block; margin-top: 16px;
  color: var(--orange); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.blog-body .more::after { content: " →"; }

/* PARTNERS LOGO ROW */
.partners-v2 {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
.partner-cell {
  padding: 32px 16px;
  text-align: center;
  font-size: 13px; font-weight: 600; color: var(--ink-muted);
  letter-spacing: 0.04em;
  border-right: 1px solid var(--line);
  transition: color 0.2s;
}
.partner-cell:last-child { border-right: 0; }
.partner-cell:hover { color: var(--navy); }

/* CONTACT FORM */
.contact-v2 {
  background: var(--navy); color: #fff;
  padding: var(--section-y) 0;
}
.contact-v2 .s-title { color: #fff; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-items: start;
}
.contact-info p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.7; }
.contact-info p + p { margin-top: 14px; }
.contact-info strong { color: var(--orange); display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form .full { grid-column: 1 / -1; }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}
.field textarea { min-height: 110px; resize: vertical; }
.submit-row { grid-column: 1 / -1; display: flex; justify-content: flex-end; }

/* Hand-rolled contact form (matches ContentBlocks/contact-form template) */
.form-v2 {
  display: flex; flex-direction: column; gap: 16px;
}
.form-v2 .row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-v2 label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}
.form-v2 input,
.form-v2 select,
.form-v2 textarea {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.form-v2 input::placeholder,
.form-v2 textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-v2 input:focus,
.form-v2 select:focus,
.form-v2 textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}
.form-v2 select {
  appearance: none; -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.6) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 12px) 55%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.form-v2 select option { color: var(--ink); }
.form-v2 textarea { min-height: 130px; resize: vertical; }
.form-v2 button[type="submit"] { align-self: flex-end; margin-top: 8px; }

@media (max-width: 740px) {
  .form-v2 .row-2 { grid-template-columns: 1fr; }
  .form-v2 button[type="submit"] { align-self: stretch; }
}

/* FOOTER */
.footer-v2 {
  background: #0a1224;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  font-size: 13px;
}
.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-cols h5 {
  font-size: 11px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { transition: color 0.2s; }
.footer-cols a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer-bottom .social { display: flex; gap: 14px; }
.footer-bottom .social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-bottom .social a:hover { background: var(--orange); color: #fff; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* Tweaks panel target */
[data-v2-density="compact"] { --section-y: clamp(50px, 6vw, 80px); }

/* ──────────────────────────────────────────────────────────────────────
   ContentBlocks — previously unstyled v2 sections
   ────────────────────────────────────────────────────────────────────── */

/* GROUP STATS — large numbers row on tinted bg */
.group-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.group-stats .gs-cell {
  padding: 38px 28px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.group-stats .gs-cell:last-child { border-right: 0; }
.group-stats .gs-cell .num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; line-height: 1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.group-stats .gs-cell .lbl {
  margin-top: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* MANIFESTO — wide reading column with large headline */
.manifesto {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px; align-items: start;
}
.manifesto h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800; line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.manifesto h2 strong { font-weight: 800; }
.manifesto h2 em { font-style: normal; color: var(--sky); font-weight: 700; }
.manifesto-body {
  font-size: 16px; line-height: 1.75; color: var(--ink-soft);
}
.manifesto-body p + p { margin-top: 16px; }
.manifesto-body strong { color: var(--ink); font-weight: 700; }
.manifesto-body em { font-style: normal; color: var(--orange); font-weight: 600; }

/* PROCESS GRID — numbered steps on tinted bg */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.process-cell {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 26px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.process-cell:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(20,33,61,0.08);
}
.process-cell .step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
  border-radius: 50%;
  margin-bottom: 18px;
}
.process-cell h4 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.process-cell p {
  font-size: 14px; line-height: 1.65; color: var(--ink-soft);
}

/* REGION ROW — destinations long-form list (Wien · Salzburg · Tirol …) */
.region-row {
  display: grid;
  grid-template-columns: 80px minmax(180px, 1.1fr) minmax(0, 2fr) auto;
  gap: 32px; align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.region-row + .region-row { border-top: 1px solid var(--line); }
.region-row:last-of-type { border-bottom: 1px solid var(--line); }
.region-row .num {
  font-family: var(--display);
  font-size: 14px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.18em;
  padding-top: 6px;
}
.region-row h3 {
  font-size: 26px; font-weight: 800; color: var(--navy);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.region-row .meta {
  margin-top: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.region-row p {
  font-size: 15px; line-height: 1.7; color: var(--ink-soft);
}
.region-row .tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.region-row .tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--paper-3);
  color: var(--ink);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px;
}
.region-row .cta {
  align-self: center;
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s;
}
.region-row .cta::after { content: "  →"; transition: transform 0.2s; display: inline-block; }
.region-row .cta:hover { color: var(--orange-deep); }
.region-row .cta:hover::after { transform: translateX(4px); }

/* SERVICE ROW — alternating photo + content */
.svc-row {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.svc-row.reverse > .photo { order: 2; }
.svc-row .photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border: 1px solid var(--line);
}
.svc-row .photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.svc-row .photo .lbl {
  position: absolute; left: 18px; bottom: 16px;
  padding: 6px 12px;
  background: rgba(20,33,61,0.85); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
}
.svc-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.svc-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.svc-title strong { font-weight: 800; }
.svc-title em { font-style: normal; color: var(--sky); font-weight: 700; }
.svc-body {
  font-size: 16px; line-height: 1.75; color: var(--ink-soft);
  margin-bottom: 20px;
}
.svc-list {
  list-style: none; padding: 0; margin: 0 0 24px 0;
}
.svc-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.svc-list li::before {
  content: "→";
  position: absolute; left: 0; top: 8px;
  color: var(--orange); font-weight: 700;
}
.svc-list li:last-child { border-bottom: 0; }

/* TEAM GRID — 4-up cards with square portraits */
.team-v2 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.team-card-v2 {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0 0 22px 0;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.team-card-v2:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(20,33,61,0.08);
}
.photo-sq {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-3), var(--paper-2));
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.photo-sq img { width: 100%; height: 100%; object-fit: cover; }
.photo-sq .placeholder {
  font-size: 11px; font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center; padding: 0 16px;
}
.team-card-v2 h4 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin: 22px 22px 4px 22px;
}
.team-card-v2 .role {
  margin: 0 22px 12px 22px;
  font-size: 11px; font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.team-card-v2 p {
  margin: 0 22px;
  font-size: 13px; line-height: 1.65; color: var(--ink-soft);
}

/* TESTIMONIAL — dark pull-quote band */
.testimonial {
  background: var(--navy);
  color: #fff;
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "“";
  position: absolute; top: 0; left: 6vw;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 280px; line-height: 1;
  color: rgba(238,127,26,0.18);
  pointer-events: none;
}
.testimonial blockquote {
  position: relative;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45; font-weight: 600;
  color: #fff;
  max-width: 900px;
  margin: 0 0 28px 0;
  letter-spacing: -0.005em;
}
.testimonial cite {
  font-style: normal;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.testimonial cite strong { color: var(--orange); margin-right: 6px; }

/* TIMELINE — milestone rows */
.timeline {
  display: grid;
  grid-template-columns: 80px 120px minmax(0, 1fr);
  gap: 32px; align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline:last-of-type { border-bottom: 1px solid var(--line); }
.timeline .num {
  font-family: var(--display);
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.18em;
}
.timeline .yr {
  font-size: 28px; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
}
.timeline h4 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.timeline p {
  font-size: 14px; line-height: 1.7; color: var(--ink-soft);
  max-width: 70ch;
}

/* ATLAS — pinned map feature (no map image yet → soft dotted plane) */
.map-feature {
  position: relative;
  aspect-ratio: 16/9;
  background:
    radial-gradient(circle at 30% 40%, rgba(11,162,223,0.08) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(238,127,26,0.06) 0%, transparent 55%),
    repeating-radial-gradient(circle at center, var(--line) 0 1px, transparent 1px 22px),
    var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--orange);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(238,127,26,0.18), 0 4px 10px rgba(20,33,61,0.18);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 6px rgba(238,127,26,0.28), 0 6px 14px rgba(20,33,61,0.24);
  z-index: 2;
}
.map-pin .lbl {
  position: absolute;
  left: 50%; top: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 4px 10px;
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.map-pin:hover .lbl { opacity: 1; }

/* Responsive */
@media (max-width: 1100px) {
  .seg-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-v2 { grid-template-columns: repeat(3, 1fr); }
  .partner-cell:nth-child(3) { border-right: 0; }
  .partner-cell:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .group-stats { grid-template-columns: repeat(2, 1fr); }
  .group-stats .gs-cell:nth-child(2n) { border-right: 0; }
  .group-stats .gs-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-v2 { grid-template-columns: repeat(2, 1fr); }
  .manifesto { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 740px) {
  .nav-links-v2 { display: none; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .seg-grid, .why-grid, .regions-grid, .blog-grid { grid-template-columns: 1fr; }
  .founder, .sus-split, .contact-grid { grid-template-columns: 1fr; }
  .sus-content { padding: 40px 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .partners-v2 { grid-template-columns: 1fr 1fr; }
  .group-stats { grid-template-columns: 1fr; }
  .group-stats .gs-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .group-stats .gs-cell:last-child { border-bottom: 0; }
  .process-grid, .team-v2 { grid-template-columns: 1fr; }
  .region-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .region-row .num { padding-top: 0; }
  .region-row .cta { align-self: start; }
  .svc-row { grid-template-columns: 1fr; gap: 28px; padding: 60px 0; }
  .svc-row.reverse > .photo { order: 0; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 0;
  }
  .testimonial::before { font-size: 180px; left: 4vw; }
  .partner-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
}
