:root{
  --bg0:#080707;
  --bg1:#0e0c09;
  --bar: rgba(8,7,6,.82);
  --panel: rgba(212,175,55,.032);

  --text: rgba(255,248,230,.84);
  --muted: rgba(212,175,55,.72);
  --title: rgba(255,248,230,.97);

  --line: rgba(212,175,55,.16);
  --gold: #d4af37;
  --gold2: #f0d060;
  --gold3: #a8892a;

  --shadow: 0 18px 60px rgba(0,0,0,.72);
  --shadow2: 0 10px 30px rgba(0,0,0,.50);

  --max: 1080px;
  --radius: 20px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  color: var(--text);
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  letter-spacing:.2px;
  background:
    radial-gradient(900px 700px at 10% 5%, rgba(212,175,55,.09), transparent 62%),
    radial-gradient(700px 500px at 88% 18%, rgba(212,175,55,.06), transparent 60%),
    radial-gradient(600px 420px at 55% 92%, rgba(160,130,30,.07), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }
.content{ padding: 18px 0 26px; }

.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.92);
  font-weight: 900;
  z-index: 999;
}
.skip-link:focus{ left:18px; }

:where(a,button,summary,input,textarea,select):focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,175,55,.28);
  border-radius: 12px;
}

.header{
  position: sticky;
  top:0;
  z-index:100;
  background: var(--bar);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
@supports ((-webkit-backdrop-filter: blur(14px)) or (backdrop-filter: blur(14px))){
  .header{
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
  flex-wrap:wrap;
}

.brand{ display:flex; flex-direction:column; gap:3px; }
.brand__title{
  font-family: "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: 1px;
  text-shadow: 0 0 30px rgba(212,175,55,.22);
}
.brand__sub{
  font-size: 12px;
  color: var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav__group{ position:relative; display:flex; align-items:center; }

.nav__link{
  font-size: 12px;
  color: var(--muted);
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.nav__link:hover{
  color: var(--title);
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  transform: translateY(-1px);
}
.nav__link.active{
  color: var(--gold);
  background: rgba(212,175,55,.10);
  border-color: rgba(212,175,55,.28);
}

.nav__arrowBtn{
  appearance:none;
  -webkit-appearance:none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  width: 34px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:8px;
  padding:0;
  line-height:1;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.nav__arrowBtn:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.nav__arrowBtn[aria-expanded="true"]{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
}
.nav__arrowIcon{
  width:14px;
  height:14px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition: transform .18s ease;
}
.nav__group.dropdown.open .nav__arrowIcon{
  transform: rotate(180deg);
}

.dropdown__menu{
  position:absolute;
  top:40px;
  left:0;
  min-width:260px;
  background: rgba(14,18,24,.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding:8px;
  display:none;
  z-index:100;
}
@supports ((-webkit-backdrop-filter: blur(16px)) or (backdrop-filter: blur(16px))){
  .dropdown__menu{
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.dropdown__item{
  display:block;
  padding: 10px 10px;
  font-size: 12px;
  color: var(--muted);
  border-radius: 12px;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.dropdown__item:hover{
  color: var(--title);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
@media (hover:hover){
  .dropdown:hover .dropdown__menu{ display:block; }
}
.dropdown.open .dropdown__menu{ display:block; }

.lang{
  display:flex;
  gap:6px;
  margin-left:6px;
}
.lang__btn{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.lang__btn:hover{
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}
.lang__btn.active{
  border-color: rgba(212,175,55,.50);
  background: rgba(212,175,55,.12);
  color: var(--gold);
}

.burger{
  display:none;
  width: 44px;
  height: 38px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease;
}
.burger:hover{ background: rgba(255,255,255,.07); transform: translateY(-1px); }
.burger span{
  display:block;
  height:2px;
  width:18px;
  background: rgba(255,255,255,.78);
  margin: 5px auto;
  border-radius: 2px;
}

.route-shell{ position:relative; }
.page{
  display:none;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow:hidden;
  margin: 0 0 22px;
  transform-origin: center top;
}
.page.active{
  display:block;
  animation: pageIn .42s cubic-bezier(.22,.8,.2,1);
}
.route-shell.is-routing .page.active{
  animation: pageOut .18s ease both;
}
@keyframes pageIn{
  0%{ opacity:0; transform: translateY(12px) scale(.992); filter: blur(3px); }
  100%{ opacity:1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes pageOut{
  0%{ opacity:1; transform: translateY(0) scale(1); }
  100%{ opacity:.2; transform: translateY(6px) scale(.996); }
}

.hero{
  position:relative;
  border-bottom:1px solid var(--line);
}
.hero--rotating{ min-height: 500px; }
.hero__slides{
  position:absolute;
  inset:0;
}
.hero__slide,
.hero__img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.hero__slide{
  opacity:0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 7s ease;
}
.hero__slide.active{
  opacity:1;
  transform: scale(1);
}
.hero__slide::after,
.hero__img::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,12,18,.18), rgba(7,12,18,.52) 56%, rgba(7,12,18,.82)),
    linear-gradient(90deg, rgba(6,10,15,.46), rgba(6,10,15,.12));
}

/* 0 = conference room */
.hero__slide[data-hero="0"]{
  background-image:url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2400&auto=format&fit=crop");
}

/* 1 = Matterhorn / Swiss Alps */
.hero__slide[data-hero="1"]{
  background-image:url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2400&auto=format&fit=crop");
}

/* 2 = restaurant kitchen staff */
.hero__slide[data-hero="2"]{
  background-image:url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?q=80&w=2400&auto=format&fit=crop");
}

/* 3 = laptop + apple + bottle / desk */
.hero__slide[data-hero="3"]{
  background-image:url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2400&auto=format&fit=crop");
}

/* 4 = Swiss lake + mountains */
.hero__slide[data-hero="4"]{
  background-image:url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2400&auto=format&fit=crop");
}

/* 5 = Swiss village / alpine valley */
.hero__slide[data-hero="5"]{
  background-image:url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2400&auto=format&fit=crop");
}

/* 6 = Swiss mountain landscape */
.hero__slide[data-hero="6"]{
  background-image:url("https://images.unsplash.com/photo-1521295121783-8a321d551ad2?q=80&w=2400&auto=format&fit=crop");
}

.hero__img--dark{
  background-image:
    radial-gradient(900px 420px at 20% 20%, rgba(212,175,55,.08), transparent 60%),
    radial-gradient(900px 420px at 85% 30%, rgba(168,137,42,.07), transparent 60%),
    linear-gradient(135deg, rgba(212,175,55,.04), rgba(0,0,0,0));
  min-height: 320px;
}

.hero__overlay{
  position:relative;
  z-index:2;
  min-height:500px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 28px 24px;
}
.hero__overlay--simple{
  min-height:320px;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero__kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.28);
  background: rgba(212,175,55,.08);
  color: rgba(212,175,55,.92);
  font-weight:900;
  font-size:11px;
  margin-bottom:10px;
  letter-spacing: 1px;
  animation: fadeUp .6s ease;
}
.hero__title{
  margin:0 0 10px;
  color: var(--gold);
  font-size: 52px;
  line-height: 1.02;
  font-weight:900;
  letter-spacing:1.5px;
  max-width: 12ch;
  animation: fadeUp .75s ease;
  text-shadow: 0 2px 40px rgba(212,175,55,.28);
}
.hero__title--sub{
  max-width:none;
  font-size:42px;
}
.hero__lead{
  margin:0 0 14px;
  max-width: 62ch;
  color: rgba(255,255,255,.82);
  line-height:1.65;
  font-size:14px;
  animation: fadeUp .9s ease;
}
.hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  animation: fadeUp 1s ease;
}
@keyframes fadeUp{
  0%{ opacity:0; transform: translateY(14px); }
  100%{ opacity:1; transform: translateY(0); }
}

.hero__dots{
  display:flex;
  gap:8px;
  margin-top:20px;
  flex-wrap:wrap;
}
.hero__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:none;
  background: rgba(255,255,255,.35);
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, width .2s ease;
}
.hero__dot:hover{
  transform: scale(1.08);
  background: rgba(255,255,255,.55);
}
.hero__dot.active{
  width:28px;
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(240,208,96,.95));
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.92);
  font-weight:900;
  font-size:12px;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow2);
}
.btn:active{ transform: scale(.985); }
.btn--primary{
  border-color: rgba(212,175,55,.50);
  background: linear-gradient(135deg, rgba(212,175,55,.20), rgba(168,137,42,.14));
  color: var(--gold2);
}
.btn--ghost{
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

.body{
  max-width: 780px;
  margin: 0 auto;
  padding: 18px 18px 38px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
}
.body p{ margin: 0 0 16px; }

.title{
  text-align:center;
  font-weight:900;
  font-size:36px;
  color: var(--gold);
  margin: 26px 0 10px;
  letter-spacing: .5px;
  text-shadow: 0 0 28px rgba(212,175,55,.18);
}
.h{
  margin: 10px 0 8px;
  font-size: 13px;
  font-weight:900;
  color: var(--title);
}
.muted{ color: rgba(255,255,255,.56); }

.quick{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin:16px 0 18px;
}
.quick__item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.quick__item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.18);
}
.quick__k{
  font-size:11px;
  color: rgba(255,255,255,.60);
  font-weight:900;
}
.quick__v{
  margin-top:4px;
  font-size:12px;
  color: rgba(255,255,255,.92);
  font-weight:900;
}

.callout{
  border:1px solid rgba(212,175,55,.20);
  border-radius:16px;
  padding:14px;
  background: linear-gradient(135deg, rgba(212,175,55,.08), rgba(160,130,30,.05));
  margin:18px 0 0;
  transition: transform .18s ease, border-color .18s ease;
}
.callout:hover{
  transform: translateY(-1px);
  border-color: rgba(212,175,55,.32);
}
.callout__kicker{
  font-size:11px;
  color: var(--gold);
  margin-bottom:6px;
  font-weight:900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.callout__text{ color: rgba(255,255,255,.86); }

.figure{ text-align:center; margin: 10px 0 22px; }
.figure__img{
  width:560px;
  max-width:100%;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.figure__cap{
  margin-top:12px;
  font-size:12px;
  color: var(--muted);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:6px;
}
.list{
  margin:10px 0 0;
  padding-left:18px;
  color: rgba(255,255,255,.76);
}
.list li{ margin: 6px 0; }

.more{
  margin-top:22px;
  border-top:1px solid var(--line);
  padding-top:16px;
}
.more__head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
  align-items:flex-end;
}
.more__title{
  color: rgba(255,255,255,.88);
  font-weight:900;
  font-size:12px;
}
.more__sub{
  color: rgba(255,255,255,.62);
  font-size:12px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:12px;
  background: rgba(255,255,255,.03);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover{
  transform: translateY(-3px);
  background: rgba(212,175,55,.05);
  border-color: rgba(212,175,55,.26);
  box-shadow: var(--shadow2);
}
.card:active{ transform: translateY(-1px) scale(.99); }
.card__t{
  color: var(--title);
  font-weight:900;
  font-size:12px;
  margin-bottom:6px;
}
.card__p{
  color: rgba(255,255,255,.66);
  font-size:12px;
  line-height:1.5;
}

.qa{
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:10px 12px;
  margin:10px 0;
  background: rgba(255,255,255,.03);
  transition: background .16s ease, border-color .16s ease;
}
.qa:hover{
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.18);
}
.qa summary{
  cursor:pointer;
  color: rgba(255,255,255,.92);
  font-weight:900;
  font-size:13px;
}
.qa p{ margin-top:10px; color: rgba(255,255,255,.72); }

.refs .ref{
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.12);
}
.refs .ref:last-child{ border-bottom:none; }
.ref__t{ color: var(--title); font-weight:900; margin-bottom:4px; }
.ref__l{ color: rgba(255,255,255,.60); }

.contact__line{
  margin:10px 0;
  color: rgba(255,255,255,.70);
}
.note{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color: rgba(255,255,255,.56);
  font-size:12px;
}
.see{
  margin-top:18px;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.see__link{
  color: var(--gold);
  font-size:12px;
  font-weight:900;
  transition: color .16s ease, transform .16s ease;
  display:inline-flex;
  letter-spacing: .5px;
}
.see__link:hover{
  color: var(--gold2);
  transform: translateX(2px);
}

.footer{
  margin-top:24px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color: rgba(255,255,255,.50);
  font-size:11px;
}

@media (max-width: 920px){
  .brand__title{ font-size:24px; }
  .burger{ display:block; }

  .nav{
    display:none;
    width:100%;
    padding:10px 0 4px;
    border-top:1px solid var(--line);
    margin-top:10px;
    justify-content:flex-start;
  }
  .nav.open{ display:flex; }

  .dropdown__menu{
    position:static;
    min-width:100%;
    box-shadow:none;
    margin-top:6px;
    display:none;
  }
  .dropdown.open .dropdown__menu{ display:block; }

  .hero--rotating{ min-height: 430px; }
  .hero__overlay{ min-height:430px; }
  .hero__title{
    font-size:36px;
    max-width:none;
  }
  .hero__title--sub{ font-size:32px; }

  .quick{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
}