:root {
  --red: #c8102e;
  --red-dark: #8f0c23;
  --red-soft: #f6dce1;
  --paper: #f5f0e7;
  --paper-light: #fffdf8;
  --white: #ffffff;
  --ink: #17241d;
  --ink-soft: #536158;
  --pine: #193d2a;
  --pine-light: #315c43;
  --gold: #c59a42;
  --gold-light: #ead9ae;
  --blue: #b7d3dc;
  --line: #d8d2c7;
  --focus: #2759d7;
  --shadow: 0 24px 70px rgb(23 36 29 / 14%);
  --shadow-small: 0 10px 30px rgb(23 36 29 / 9%);
  --shell: min(100% - 2.25rem, 74rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Inter, "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--red);
  color: var(--white);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
ol,
ul,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.03;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.035em;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ink);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

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

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

.austria-ribbon {
  display: grid;
  height: 0.55rem;
  grid-template-rows: repeat(3, 1fr);
}

.austria-ribbon span:first-child,
.austria-ribbon span:last-child {
  background: var(--red);
}

.austria-ribbon span:nth-child(2) {
  background: var(--white);
}

.disclosure {
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  background: var(--pine);
  color: #dce8df;
}

.disclosure__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  gap: 1rem;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: center;
}

.disclosure__inner span:last-child {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(255 253 248 / 94%);
  backdrop-filter: blur(18px);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.8rem;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.wordmark__seal {
  display: grid;
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 0 4px var(--paper-light);
}

.wordmark > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.wordmark strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.wordmark small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.65rem;
  font-size: 0.84rem;
  font-weight: 750;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--red);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding-inline: 1rem;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 40rem;
  padding: clamp(3rem, 6vw, 5rem) 0 2.25rem;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgb(255 253 248 / 98%), rgb(245 240 231 / 88%)),
    var(--paper);
}

.hero__contours {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    radial-gradient(ellipse at 85% 30%, transparent 0 13rem, rgb(197 154 66 / 28%) 13.05rem 13.15rem, transparent 13.2rem 17rem, rgb(197 154 66 / 20%) 17.05rem 17.15rem, transparent 17.2rem),
    repeating-radial-gradient(ellipse at 10% 90%, transparent 0 3.2rem, rgb(25 61 42 / 11%) 3.25rem 3.35rem);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

.kicker,
.section-label {
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.kicker span {
  font-size: 0.55rem;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.75rem, 6vw, 5.75rem);
}

.hero__lead {
  max-width: 39rem;
  margin-bottom: 1.35rem;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2.2vw, 1.25rem);
}

.free-badge {
  display: flex;
  max-width: 39rem;
  padding: 1rem;
  border-left: 4px solid var(--red);
  background: var(--white);
  gap: 0.85rem;
  box-shadow: var(--shadow-small);
}

.free-badge__icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red-dark);
  font-family: var(--serif);
  font-weight: 700;
}

.free-badge p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.48;
}

.free-badge strong {
  color: var(--ink);
}

.hero__actions {
  max-width: 31rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.8rem;
  padding: 0.95rem 1.2rem;
  border: 2px solid transparent;
  font-size: 0.91rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button--red {
  border-color: var(--red-dark);
  background: var(--red);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--red-dark);
}

.button--red:hover {
  background: var(--red-dark);
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #5f0716;
}

.hero__actions > p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.guide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  margin-top: 0.85rem;
  border: 1px solid var(--pine);
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.guide-link:hover {
  background: var(--pine);
  color: var(--white);
}

.hero__actions > .spam-hint,
.spam-hint {
  padding: 0.75rem 0.85rem;
  border-left: 3px solid var(--gold);
  background: var(--paper-light);
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.45;
  box-shadow: var(--shadow-small);
}

.spam-hint strong {
  color: var(--ink);
}

.hero__art {
  position: relative;
  min-height: 28rem;
}

.mountains {
  position: absolute;
  right: -12%;
  bottom: 0;
  width: 118%;
}

.mountains__back {
  fill: var(--blue);
}

.mountains__snow {
  fill: var(--paper-light);
}

.mountains__front {
  fill: var(--pine);
}

.voucher-card {
  position: absolute;
  z-index: 2;
  top: 12%;
  left: 50%;
  width: min(85%, 24rem);
  padding: 2.2rem 2rem 1.6rem;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 14px 16px 0 rgb(23 36 29 / 18%);
  transform: translateX(-50%) rotate(-4deg);
}

.voucher-card::before,
.voucher-card::after {
  position: absolute;
  top: 48%;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.voucher-card::before {
  left: -1.15rem;
}

.voucher-card::after {
  right: -1.15rem;
}

.voucher-card__flag {
  display: grid;
  width: 3.2rem;
  height: 1.8rem;
  margin-bottom: 1.5rem;
  grid-template-rows: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.voucher-card__flag span:first-child,
.voucher-card__flag span:last-child {
  background: var(--red);
}

.voucher-card__flag span:nth-child(2) {
  background: var(--white);
}

.voucher-card > p {
  margin-bottom: 0.2rem;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.voucher-card > strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 15vw, 7rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.voucher-card > span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.voucher-card__meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1.5rem;
  border-top: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 1.5rem;
  display: grid;
  width: 7rem;
  height: 7rem;
  place-items: center;
  align-content: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--paper-light);
  color: var(--red);
  line-height: 1.05;
  transform: rotate(8deg);
}

.hero-stamp span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.hero-stamp strong {
  font-family: var(--serif);
  font-size: 0.9rem;
}

.quick-bar {
  border-block: 1px solid rgb(255 255 255 / 10%);
  background: var(--pine);
  color: var(--white);
}

.quick-bar__grid {
  display: grid;
}

.quick-bar__grid > div {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
  text-align: center;
}

.quick-bar__grid > div:last-child {
  border-bottom: 0;
}

.quick-bar small,
.quick-bar strong {
  display: block;
}

.quick-bar small {
  margin-bottom: 0.2rem;
  color: #a9c0b0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-bar strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.section {
  padding-block: clamp(3.4rem, 7vw, 5.75rem);
}

.section--paper {
  background: var(--paper-light);
}

.intro-grid {
  display: grid;
  gap: 2rem;
}

.intro-grid h2,
.section-heading h2,
.eligibility h2,
.code-entry h2,
.faq h2,
.source-card h2,
.closing h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

.intro-copy {
  max-width: 43rem;
}

.intro-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading > p:last-child,
.eligibility__title > p:last-child,
.code-entry__content > p,
.faq__title > p {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.journey {
  background:
    linear-gradient(rgb(245 240 231 / 95%), rgb(245 240 231 / 95%)),
    repeating-linear-gradient(90deg, transparent 0 4.9rem, rgb(25 61 42 / 8%) 5rem);
}

.journey-list {
  position: relative;
  max-width: 51rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.journey-list::before {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 1.65rem;
  width: 2px;
  background: var(--gold);
  content: "";
}

.journey-list li {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  padding-bottom: 2.3rem;
  gap: 1.2rem;
}

.journey-list li:last-child {
  padding-bottom: 0;
}

.journey-list__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
}

.journey-list__marker span {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
}

.journey-list h3 {
  margin: 0.2rem 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.journey-list p {
  max-width: 38rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.eligibility {
  position: relative;
  overflow: hidden;
  background: var(--pine);
  color: var(--white);
}

.eligibility::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.5rem rgb(255 255 255 / 3%),
    0 0 0 7rem rgb(255 255 255 / 3%);
  content: "";
}

.eligibility__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.section-label--light {
  color: #e4c979;
}

.eligibility__title > p:last-child {
  color: #bacbbf;
}

.eligibility__cards {
  display: grid;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.eligibility__cards article {
  display: grid;
  padding: 1.25rem 0;
  grid-template-columns: 2rem 1fr;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  gap: 0.9rem;
}

.eligibility__cards article > span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--pine);
  font-weight: 950;
}

.eligibility__cards h3 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.eligibility__cards p {
  margin: 0;
  color: #bacbbf;
  font-size: 0.86rem;
}

.hotel-gallery {
  background: var(--paper-light);
}

.hotel-grid {
  display: grid;
  gap: 1.4rem;
}

.hotel-photo-card {
  margin: 0;
}

.hotel-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 2px solid var(--ink);
  object-fit: cover;
  box-shadow: var(--shadow-small);
}

.hotel-photo-card figcaption {
  padding-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
}

.destination-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  margin-top: clamp(2rem, 5vw, 4rem);
  border: 2px solid var(--pine);
  background: var(--pine);
  color: var(--white);
  gap: 1.5rem;
  text-decoration: none;
  box-shadow: 7px 7px 0 var(--gold-light);
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.destination-teaser:hover {
  background: var(--pine-light);
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--gold-light);
}

.destination-teaser > span:first-child {
  display: grid;
  gap: 0.2rem;
}

.destination-teaser small {
  color: #bfd2c4;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.destination-teaser strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 4vw, 1.8rem);
}

.destination-teaser > span:last-child {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 1.7rem;
}

.savings-strip {
  padding-block: clamp(1.7rem, 4vw, 2.7rem);
  border-block: 1px solid var(--line);
  background: var(--gold-light);
}

.savings-strip__inner {
  display: grid;
  align-items: center;
  gap: 1rem;
}

.savings-strip__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.savings-strip__content .section-label {
  margin-bottom: 0.35rem;
  color: var(--red-dark);
}

.savings-strip__content h2 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.savings-strip__content > p:last-child {
  max-width: 47rem;
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.savings-strip__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--red-dark);
  background: var(--paper-light);
  color: var(--red-dark);
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.savings-strip__link:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.alpine-breadcrumb {
  display: flex;
  align-items: center;
  padding-block: 0.9rem;
  color: var(--ink-soft);
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.alpine-breadcrumb a {
  color: var(--red-dark);
  text-underline-offset: 0.2em;
}

.obertauern-hero {
  min-height: 0;
  background:
    linear-gradient(115deg, rgb(255 253 248 / 97%), rgb(225 242 246 / 88%)),
    var(--paper);
}

.obertauern-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.obertauern-hero .mountains__back {
  fill: #9fcbd7;
}

.obertauern-intro {
  background: var(--paper-light);
}

.obertauern-intro__layout {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.obertauern-intro h2,
.obertauern-hotels h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

.obertauern-intro__layout > div > p:not(.section-label) {
  max-width: 46rem;
  color: var(--ink-soft);
}

.text-link,
.inline-light-link {
  display: inline-flex;
  align-items: center;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-underline-offset: 0.25em;
}

.snow-fact {
  position: relative;
  display: grid;
  min-height: 19rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  overflow: hidden;
  align-content: end;
  border: 2px solid var(--pine);
  background:
    linear-gradient(160deg, rgb(255 255 255 / 62%), transparent 58%),
    #b7dce5;
  color: var(--pine);
  box-shadow: 10px 10px 0 var(--gold-light);
}

.snow-fact > span {
  position: absolute;
  top: -1.6rem;
  right: -0.3rem;
  color: rgb(255 255 255 / 62%);
  font-family: var(--serif);
  font-size: clamp(8rem, 28vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.snow-fact > div {
  position: relative;
  z-index: 1;
}

.snow-fact small {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--red-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.snow-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 6vw, 2.8rem);
}

.snow-fact p {
  max-width: 27rem;
  margin: 0.6rem 0 0;
  color: var(--pine);
  font-size: 0.82rem;
}

.obertauern-hotels {
  background: var(--paper);
}

.obertauern-grid {
  display: grid;
  gap: 1rem;
}

.obertauern-grid article {
  position: relative;
  min-height: 16rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: var(--shadow-small);
}

.obertauern-grid article::after {
  position: absolute;
  right: -3.2rem;
  bottom: -4.4rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid var(--blue);
  border-radius: 50%;
  box-shadow:
    0 0 0 1.5rem rgb(183 211 220 / 18%),
    0 0 0 3rem rgb(183 211 220 / 12%);
  content: "";
}

.obertauern-grid__number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 2rem;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
}

.obertauern-grid article > small {
  color: var(--red-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.obertauern-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.obertauern-grid p {
  position: relative;
  z-index: 1;
  max-width: 30rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.destination-teaser--light {
  border-color: var(--red-dark);
  background: var(--paper-light);
  color: var(--red-dark);
  box-shadow: 7px 7px 0 var(--red-soft);
}

.destination-teaser--light:hover {
  background: var(--red-soft);
  box-shadow: 4px 4px 0 var(--red-soft);
}

.destination-teaser--light small {
  color: var(--ink-soft);
}

.destination-teaser--light > span:last-child {
  color: var(--red);
}

.live-info {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  border-block: 1px solid var(--line);
  background: #e7f2f4;
}

.live-info__grid {
  display: grid;
  gap: 1rem;
}

.live-info__card {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border: 1px solid var(--blue);
  background: var(--paper-light);
  gap: 1rem;
  box-shadow: var(--shadow-small);
}

.live-info__icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.live-info__card .section-label {
  margin-bottom: 0.35rem;
}

.live-info__card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.live-info__card p:not(.section-label) {
  margin: 0.55rem 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.live-info__card a {
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 850;
  text-underline-offset: 0.25em;
}

.inline-light-link {
  margin-top: 1.2rem;
  color: var(--gold-light);
}

.activation-note {
  max-width: 51rem;
  padding: 1rem 1.15rem;
  margin: 0 auto 2.4rem;
  border-left: 4px solid var(--red);
  background: var(--paper-light);
  color: var(--ink-soft);
  font-size: 0.86rem;
  box-shadow: var(--shadow-small);
}

.activation-note strong {
  color: var(--ink);
}

.booking-screenshot {
  min-width: 0;
  margin: 0;
}

.booking-screenshot__image {
  display: block;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.booking-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.booking-screenshot figcaption {
  padding-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.code-entry {
  background: var(--paper);
}

.code-entry__layout {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.compact-steps {
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.compact-steps li {
  display: grid;
  align-items: center;
  padding: 0.8rem 0;
  grid-template-columns: 2.2rem 1fr;
  border-bottom: 1px solid var(--line);
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.compact-steps li span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--pine);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.78rem;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.faq__layout {
  display: grid;
  gap: 3rem;
}

.faq__items {
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.07rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  display: grid;
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--sans);
  transition: transform 160ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details > p {
  max-width: 44rem;
  padding: 0 3rem 1.3rem 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.source-section {
  padding-block: clamp(3rem, 6vw, 4.75rem);
  background: var(--paper);
}

.source-card {
  display: grid;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: var(--paper-light);
  gap: 1.5rem;
  box-shadow: var(--shadow-small);
}

.source-card__crest {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1.8rem;
}

.source-card h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.source-card p {
  max-width: 46rem;
  color: var(--ink-soft);
}

.source-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.source-card__links a {
  padding: 0.55rem 0.8rem;
  border-bottom: 2px solid var(--red);
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.closing {
  padding-block: clamp(3.2rem, 6vw, 5rem);
  background: var(--red);
  color: var(--white);
}

.closing__layout {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.closing h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

.closing p {
  margin: 0;
  color: #f6dce1;
}

.button--white {
  border-color: var(--white);
  background: var(--white);
  color: var(--red-dark);
  box-shadow: 6px 6px 0 var(--red-dark);
}

.closing__layout > div:last-child {
  max-width: 29rem;
}

.closing small {
  display: block;
  margin-top: 0.8rem;
  color: #f6dce1;
  font-size: 0.68rem;
}

.closing .spam-hint--closing {
  padding: 0.75rem 0.85rem;
  margin: 0.9rem 0 0;
  border-left-color: var(--gold-light);
  background: rgb(255 255 255 / 94%);
  color: var(--ink-soft);
}

.guide-link--closing {
  border-color: var(--white);
  color: var(--white);
}

.guide-link--closing:hover {
  background: var(--white);
  color: var(--red-dark);
}

.site-footer {
  padding: 3.4rem 0 1.4rem;
  background: #10291b;
  color: var(--white);
}

.footer-layout {
  display: grid;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  gap: 2rem;
}

.wordmark--footer {
  color: var(--white);
}

.wordmark--footer .wordmark__seal {
  border-color: var(--white);
  color: var(--white);
  box-shadow: inset 0 0 0 4px #10291b;
}

.wordmark--footer small {
  color: #adc1b3;
}

.footer-layout > div > p {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: #adc1b3;
  font-size: 0.82rem;
}

.footer-layout nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-layout nav a {
  color: #dbe6df;
  font-size: 0.82rem;
  text-underline-offset: 0.24em;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  color: #819b88;
  gap: 0.35rem;
  font-size: 0.66rem;
}

.legal-main {
  min-height: 66vh;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  background: var(--paper-light);
}

.legal-content {
  width: min(100%, 52rem);
}

.legal-content .back-link {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 10vw, 5rem);
}

.legal-content h2 {
  margin: 2.4rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.legal-content p {
  color: var(--ink-soft);
}

.legal-warning {
  padding: 1.1rem 1.2rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--red);
  background: var(--red-soft);
  color: var(--red-dark);
}

.legal-warning p {
  margin: 0.3rem 0 0;
  color: inherit;
  font-size: 0.86rem;
}

@media (max-width: 47.99rem) {
  .hero {
    padding-top: 2rem;
  }

  .hero__layout {
    gap: 2rem;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 1.1rem;
    font-size: clamp(2.15rem, 9vw, 2.6rem);
    line-height: 1;
  }

  .obertauern-hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 2.6rem);
  }

  .hero__art {
    min-height: 23rem;
  }
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .hero:not(.obertauern-hero) h1 {
    max-width: 100%;
  }
}

@media (min-width: 36rem) {
  .disclosure__inner {
    justify-content: space-between;
  }

  .disclosure__inner span:last-child {
    display: inline;
  }

  .quick-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-bar__grid > div:nth-child(odd) {
    border-right: 1px solid rgb(255 255 255 / 13%);
  }

  .quick-bar__grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .source-card {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
}

@media (min-width: 48rem) {
  .main-nav {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
    gap: 2rem;
  }

  .hero__art {
    min-height: 34rem;
  }

  .obertauern-intro__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .savings-strip__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.4rem;
  }

  .obertauern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-bar__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quick-bar__grid > div {
    border-right: 1px solid rgb(255 255 255 / 13%);
    border-bottom: 0;
  }

  .quick-bar__grid > div:last-child {
    border-right: 0;
  }

  .intro-grid {
    grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .eligibility__layout {
    grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-grid figure:nth-child(2) {
    margin-top: 3rem;
  }

  .code-entry__layout {
    grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 8vw, 6rem);
  }

  .faq__layout {
    grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(3rem, 8vw, 6rem);
  }

  .faq__title {
    position: sticky;
    top: 7rem;
    align-self: start;
  }

  .closing__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: 5rem;
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 64rem) {
  .main-nav {
    gap: 2rem;
  }

  .hero__art {
    min-height: 38rem;
  }

  .voucher-card {
    width: 25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
