:root {
  --sand: #e9e0d2;
  --sand-light: #f5f0e8;
  --night: #142621;
  --night-deep: #0b1814;
  --sage: #778477;
  --muted: #5f6b64;
  --ember: #c6532f;
  --blush: #e7b49c;
  --white: #fffdf8;
  --line: rgba(20, 38, 33, .17);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--night);
  background: var(--sand);
  font-family: var(--sans);
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
p, h1, h2, h3, figure { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
}
.eyebrow {
  margin-bottom: 22px;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 12px;
  top: -60px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--night);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Navigation */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(24px, 4.5vw, 72px);
  transform: translateX(-50%);
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 20, 16, .52), transparent);
  transition: top .65s var(--ease), width .65s var(--ease), padding .65s var(--ease), color .45s ease, background .55s ease, border-radius .65s var(--ease), box-shadow .55s ease;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  position: relative;
  display: block;
  width: clamp(105px, 8vw, 138px);
  aspect-ratio: 480 / 373;
  transition: width .45s ease;
}
.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .45s ease;
}
.brand-logo-white { opacity: 1; }
.brand-logo-color { opacity: 0; }
.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2.1vw, 36px);
  font-size: .69rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-nav a { position: relative; padding: 10px 0; }
.site-nav .nav-home { display: inline-flex; align-items: center; gap: 6px; }
.nav-home-icon { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .nav-book {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 999px;
}
.site-nav .nav-book::after { display: none; }
.nav-toggle {
  position: relative;
  display: none;
  place-items: center;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, .07);
  font-size: 0;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s var(--ease);
}
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .45s var(--ease), width .35s var(--ease);
}
.nav-toggle::before { transform: translateY(-4px); }
.nav-toggle::after { width: 13px; transform: translate(2.5px, 4px); }
.nav-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { width: 18px; transform: rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--blush); outline-offset: 2px; }
.site-header.is-scrolled {
  top: 14px;
  width: min(94%, 1380px);
  padding: 10px 12px 10px 20px;
  color: var(--night);
  background: rgba(239, 233, 222, .76);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  box-shadow: 0 12px 45px rgba(7, 22, 17, .13);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}
.site-header.is-scrolled .brand-logo { width: clamp(72px, 5.2vw, 88px); }
.site-header.is-scrolled .brand-logo-white { opacity: 0; }
.site-header.is-scrolled .brand-logo-color { opacity: 1; }
.site-header.is-scrolled .nav-book { border-color: rgba(20, 38, 33, .32); }

/* Home hero */
.suite-hero {
  --hero-parallax: 0px;
  --hero-copy-shift: 0px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #17362f;
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset: -10% 0;
  transform: translate3d(0, var(--hero-parallax), 0);
  will-change: transform;
}
.hero-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  will-change: transform, opacity;
  animation: heroDissolve 24s cubic-bezier(.45, 0, .2, 1) infinite, heroKenBurns 24s ease-in-out infinite;
}
.hero-frame-one {
  background-image: image-set(
    url('../images/optimized/hero-balkon-ausblick-1920.avif') type('image/avif'),
    url('../images/optimized/hero-balkon-ausblick-1920.webp') type('image/webp'),
    url('../images/hero-balkon-ausblick.jpg') type('image/jpeg')
  );
  background-position: 60% 48%;
  animation-delay: 0s;
}
.hero-frame-two { background-position: 68% 52%; animation-delay: 8s; }
.hero-frame-three { background-position: 56% 52%; animation-delay: 16s; }
@keyframes heroDissolve { 0%, 29% { opacity: 1; } 39%, 100% { opacity: 0; } }
@keyframes heroKenBurns { 0% { transform: scale(1.02); } 38%, 100% { transform: scale(1.11) translate3d(-1.2%, -.8%, 0); } }
.suite-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 25, 21, .82) 0%, rgba(10, 25, 21, .4) 45%, rgba(10, 25, 21, .05) 75%), linear-gradient(0deg, rgba(10, 25, 21, .66), transparent 48%);
}
.suite-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle at 65% 35%, transparent 15%, rgba(6, 18, 15, .24) 100%);
  mix-blend-mode: multiply;
}
.hero-depth { position: absolute; pointer-events: none; will-change: transform; }
.hero-depth-back {
  z-index: 3;
  top: 12%;
  right: 8%;
  width: clamp(220px, 32vw, 580px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-depth-front {
  z-index: 2;
  right: -7vw;
  bottom: -17vw;
  width: 45vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(198, 83, 47, .24);
  backdrop-filter: blur(2px);
  animation: orbFloat 9s ease-in-out infinite reverse;
}
@keyframes orbFloat { 50% { transform: translate3d(-2vw, 2.5vh, 0) scale(1.04); } }
.suite-hero-copy {
  position: absolute;
  z-index: 5;
  left: clamp(24px, 7vw, 120px);
  top: 50%;
  transform: translateY(calc(-46% + var(--hero-copy-shift)));
  will-change: transform;
}
.suite-hero h1 {
  margin: 0;
  font-size: clamp(5.5rem, 12vw, 13.5rem);
  line-height: .62;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .2);
}
.suite-hero h1 i { display: inline-block; margin-left: .5ch; color: var(--blush); font-weight: 400; }
.hero-lead {
  max-width: 620px;
  margin: clamp(42px, 7vh, 72px) 0 28px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}
.round-link {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  color: #fff;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.round-link b {
  display: grid;
  flex: 0 0 54px;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: .25s ease;
}
.round-link:hover b { transform: scale(1.1); background: #fff; color: var(--night); }
.hero-facts {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 4vw, 70px);
  bottom: 36px;
  display: flex;
  gap: clamp(22px, 4vw, 60px);
  font-size: .64rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-facts span { display: grid; gap: 4px; }
.hero-facts b { font: 400 2rem/1 var(--serif); letter-spacing: 0; }

/* Home content */
.suite-intro {
  position: relative;
  min-height: 1050px;
  padding: clamp(110px, 14vw, 220px) max(24px, calc((100vw - 1240px) / 2));
  overflow: hidden;
}
.vertical-note {
  position: absolute;
  left: clamp(10px, 3vw, 50px);
  top: 250px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro-statement { position: relative; z-index: 2; width: min(730px, 72vw); }
.intro-statement h2 { font-size: clamp(4.4rem, 8vw, 9rem); line-height: .78; }
.intro-statement h2 i, .plus-moment h2 i { color: var(--ember); font-weight: 400; }
.intro-copy { max-width: 520px; margin: 50px clamp(72px, 8vw, 120px) 0 auto; color: #58645d; font-size: 1.08rem; line-height: 1.9; }
.floating-photo { position: absolute; right: -4vw; top: 30%; width: min(49vw, 710px); }
.floating-photo picture { display: block; }
.floating-photo img { width: 100%; height: 620px; object-fit: cover; box-shadow: 0 40px 90px rgba(24, 38, 33, .2); }
.floating-photo figcaption { padding-top: 12px; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.suite-features { overflow: hidden; padding: clamp(70px, 8vw, 120px) 0 0; color: #fff; background: var(--night); }
.suite-gallery { position: relative; width: 100%; height: min(78vw, 820px); min-height: 620px; margin: auto; overflow: hidden; background: #08130f; transition: background-color .7s var(--ease); }
.gallery-track { display: flex; height: 100%; transition: transform .9s cubic-bezier(.77, 0, .18, 1); }
.gallery-slide { position: relative; flex: 0 0 100%; height: 100%; margin: 0; overflow: hidden; }
.gallery-slide::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(6, 17, 13, .72), rgba(6, 17, 13, .08) 68%), linear-gradient(0deg, rgba(6, 17, 13, .55), transparent 45%); pointer-events: none; }
.gallery-slide > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 1.4s cubic-bezier(.2, .65, .2, 1); }
.gallery-slide--portrait { display: grid; place-items: center; background: linear-gradient(135deg, #f4eee4 0%, #dde5dd 100%); }
.gallery-slide--portrait::after { background: radial-gradient(circle at 50% 48%, transparent 42%, rgba(20, 38, 33, .08) 100%); }
.gallery-portrait-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 52%;
  width: auto;
  max-width: none;
  overflow: hidden;
  aspect-ratio: auto;
  transform: none;
}
.gallery-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery-portrait-frame::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(6, 17, 13, .42), transparent 36%); pointer-events: none; }
.gallery-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(15px, 1vw, 20px); width: 100%; height: 100%; }
.gallery-panel { position: relative; min-width: 0; min-height: 0; overflow: hidden; }
.gallery-duo img { width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: cover; transform: scale(1.035); transition: transform 1.4s cubic-bezier(.2, .65, .2, 1); }
.gallery-panel span { position: absolute; z-index: 2; right: clamp(16px, 2vw, 30px); bottom: clamp(18px, 2vw, 30px); max-width: calc(100% - 32px); font-size: .65rem; font-weight: 650; letter-spacing: .16em; text-align: right; text-transform: uppercase; }
.gallery-slide.is-active > img, .gallery-slide.is-active .gallery-duo img { transform: scale(1); }
.gallery-slide figcaption {
  position: absolute;
  z-index: 5;
  top: auto;
  right: clamp(14px, 1.8vw, 26px);
  bottom: clamp(16px, 2vw, 28px);
  padding: 8px 12px;
  color: #fff !important;
  background: rgba(7, 20, 16, .92);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
  opacity: 1 !important;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: none;
  mix-blend-mode: normal;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gallery-overlay { position: absolute; z-index: 3; left: clamp(25px, 6vw, 90px); top: 50%; transform: translateY(-50%); pointer-events: none; }
.gallery-heading { position: relative; pointer-events: none; }
.gallery-heading .eyebrow,
.gallery-heading h2,
.gallery-heading h2 i,
.gallery-controls { transition: color .55s var(--ease); }
.gallery-heading h2 { margin: 0; color: #fff; font-size: clamp(4.2rem, 8vw, 9.4rem); line-height: .76; }
.gallery-heading h2 i { color: var(--blush); }
.gallery-controls { position: relative; z-index: 4; display: flex; align-items: center; gap: 18px; width: max-content; margin-top: clamp(24px, 4vh, 42px); pointer-events: auto; }
.gallery-controls p { display: flex; align-items: center; gap: 12px; margin: 0; font-size: .82rem; font-weight: 650; letter-spacing: .12em; }
.gallery-controls p i { display: block; width: 84px; height: 1px; background: rgba(255, 255, 255, .6); transition: background-color .55s var(--ease); }
.gallery-arrow { display: grid; place-items: center; width: 64px; height: 64px; padding: 0; border: 1px solid rgba(255, 255, 255, .6); border-radius: 50%; color: #fff; background: rgba(255, 255, 255, .08); font-size: 1.15rem; cursor: pointer; backdrop-filter: blur(8px); transition: .2s ease; }
.gallery-arrow:hover { color: var(--night); background: #fff; transform: scale(1.06); }
.suite-gallery.is-portrait-active .gallery-heading .eyebrow { color: var(--night); }
.suite-gallery.is-portrait-active .gallery-heading h2 { color: var(--night); }
.suite-gallery.is-portrait-active .gallery-heading h2 i { color: var(--ember); }
.suite-gallery.is-portrait-active .gallery-controls { color: var(--night); }
.suite-gallery.is-portrait-active .gallery-controls p i { background: rgba(20, 38, 33, .48); }
.suite-gallery.is-portrait-active .gallery-arrow { color: var(--night); border-color: rgba(20, 38, 33, .42); background: rgba(255, 255, 255, .48); }
.suite-gallery.is-portrait-active .gallery-arrow:hover { color: #fff; background: var(--night); }
.feature-ribbon { display: flex; width: max-content; gap: 5vw; padding: 44px 5vw; animation: ribbon 32s linear infinite; }
.feature-ribbon span { min-width: 260px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.feature-ribbon b { margin-right: 20px; color: var(--blush); font-family: var(--serif); }
@keyframes ribbon { to { transform: translateX(-18%); } }
.plus-moment { width: min(980px, calc(100% - 48px)); margin: auto; padding: clamp(120px, 16vw, 230px) 0; text-align: center; }
.plus-moment h2 { font-size: clamp(4rem, 8vw, 8.5rem); line-height: .84; }
.plus-moment > p:not(.eyebrow) { max-width: 660px; margin: 35px auto; color: #59655e; font-size: 1.08rem; line-height: 1.8; }
.plus-logo-link { display: inline-flex; align-items: center; gap: 18px; margin: 0 0 28px; color: var(--night); }
.plus-logo-link img { width: 82px; height: auto; filter: drop-shadow(0 16px 18px rgba(26, 43, 36, .14)); transition: transform .45s var(--ease), filter .45s var(--ease); }
.plus-logo-link span { padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: .68rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.plus-logo-link:hover img { transform: translateY(-4px) rotate(-1.5deg); filter: drop-shadow(0 22px 23px rgba(26, 43, 36, .2)); }
.plus-logo-link--centered { display: flex; width: max-content; margin: 0 auto 38px; }
.plus-logo-link--centered img { width: 96px; }
.plus-logo-link--compact { gap: 12px; margin: 14px 0 0; }
.plus-logo-link--compact img { width: 48px; filter: drop-shadow(0 8px 10px rgba(26, 43, 36, .12)); }
.plus-logo-link--compact span { padding-bottom: 4px; font-size: .58rem; }
.line-link { display: inline-flex; gap: 20px; padding-bottom: 8px; border-bottom: 1px solid; font-size: .72rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }

/* Interior pages */
.subhero {
  position: relative;
  min-height: min(860px, 82svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 160px max(24px, calc((100vw - 1240px) / 2)) clamp(60px, 8vw, 105px);
  color: #fff;
  background: var(--night);
}
.subhero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.subhero-media img { width: 100%; height: 112%; object-fit: cover; animation: subheroIn 2.2s var(--ease) both; }
@keyframes subheroIn { from { opacity: .3; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
.subhero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 22, 17, .85), rgba(8, 22, 17, .25) 68%), linear-gradient(0deg, rgba(8, 22, 17, .7), transparent 55%); }
.subhero-copy { width: min(940px, 100%); }
.subhero h1 { max-width: 10ch; margin: 0 0 28px; font-size: clamp(4.7rem, 9.5vw, 10.5rem); line-height: .76; }
.subhero h1 i { color: var(--blush); font-weight: 400; }
.subhero-lead { max-width: 660px; margin: 0; color: rgba(255, 255, 255, .84); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.subhero-meta { display: flex; flex-wrap: wrap; gap: 10px 36px; margin-top: 36px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.subhero-meta span { padding-bottom: 7px; border-bottom: 1px solid rgba(255, 255, 255, .4); }
.content-wrap { width: min(1240px, calc(100% - 48px)); margin: auto; }
.editorial-section { padding: clamp(90px, 12vw, 170px) 0; }
.editorial-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr); gap: clamp(50px, 9vw, 130px); align-items: start; }
.editorial-grid h2 { margin-bottom: 32px; font-size: clamp(3.4rem, 6.5vw, 7rem); line-height: .84; }
.editorial-grid h2 i { color: var(--ember); font-weight: 400; }
.editorial-copy { max-width: 590px; margin-left: auto; color: var(--muted); font-size: 1.08rem; line-height: 1.9; }
.spec-grid { display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec-grid article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.spec-grid b { color: var(--ember); font: italic 1.4rem/1 var(--serif); }
.spec-grid h3 { margin: 0 0 5px; font-size: 1.35rem; letter-spacing: -.03em; }
.spec-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.image-duo { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(20px, 4vw, 54px); align-items: end; padding-bottom: clamp(90px, 12vw, 170px); }
.image-duo figure { margin: 0; }
.image-duo figure img { display: block; }
.image-duo figure:first-child img { width: 100%; height: min(66vw, 760px); object-fit: cover; }
.image-duo figure:last-child { transform: translateY(8%); }
.image-duo figure:last-child img { width: 100%; height: min(45vw, 510px); object-fit: cover; }
.image-duo figcaption { padding-top: 12px; color: var(--muted); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.dark-story { padding: clamp(100px, 13vw, 185px) 0; color: #f5eee4; background: var(--night); }
.dark-story .editorial-grid { align-items: center; }
.dark-story .editorial-copy { color: #aeb9b2; }
.dark-story h2 { margin: 0; font-size: clamp(3.9rem, 7.3vw, 8rem); }
.dark-story h2 i { color: var(--blush); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(60px, 9vw, 120px); background: rgba(255, 255, 255, .14); }
.experience-card { position: relative; min-height: 520px; overflow: hidden; padding: 30px; display: flex; align-items: flex-end; isolation: isolate; }
.experience-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .8s var(--ease); }
.experience-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7, 19, 15, .86), rgba(7, 19, 15, .04) 72%); }
.experience-card:hover img { transform: scale(1.05); }
.experience-card h3 { margin: 0 0 7px; font-size: 2.3rem; }
.experience-card p { margin: 0; color: rgba(255, 255, 255, .72); font-size: .9rem; }
.inquiry-shell { padding: clamp(100px, 14vw, 200px) 0; }
.inquiry-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 680px; color: #fff; background: var(--night); }
.inquiry-image img { width: 100%; height: 100%; object-fit: cover; }
.inquiry-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(45px, 7vw, 100px); }
.inquiry-copy h2 { margin-bottom: 28px; font-size: clamp(3.5rem, 6vw, 6.7rem); line-height: .82; }
.inquiry-copy p:not(.eyebrow) { color: #b9c3bd; }
.contact-links { display: grid; width: 100%; margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .2); }
.contact-links a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .2); font-size: .72rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.route-card { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 650px; margin: clamp(90px, 12vw, 170px) 0; background: var(--sand-light); }
.route-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(40px, 7vw, 95px); }
.route-copy h2 { margin-bottom: 28px; font-size: clamp(3.4rem, 5.8vw, 6.5rem); line-height: .84; }
.route-copy address { margin-bottom: 35px; color: var(--muted); font-style: normal; font-size: 1.05rem; }
.route-card img { width: 100%; height: 100%; object-fit: cover; }
.legal-hero { min-height: 500px; padding-bottom: 70px; }
.legal-hero h1 { font-size: clamp(4.4rem, 8vw, 8.5rem); }
.legal-shell { display: grid; grid-template-columns: .36fr 1fr; gap: clamp(40px, 8vw, 120px); padding: clamp(80px, 10vw, 140px) 0; }
.legal-label { position: sticky; top: 140px; align-self: start; color: var(--ember); font-size: .68rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.legal-content { max-width: 760px; }
.legal-content h2 { margin: 50px 0 14px; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.04em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 34px 0 10px; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.15; }
.legal-content h4 { margin: 24px 0 8px; font-size: 1rem; line-height: 1.35; }
.legal-content ul { display: grid; gap: 10px; margin: 18px 0 26px; padding-left: 1.25rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content p { overflow-wrap: anywhere; }
.legal-content a { border-bottom: 1px solid var(--night); }
.status-note { margin-top: 50px; padding: 22px 24px; border-left: 2px solid var(--ember); background: var(--sand-light); }
.status-note p { margin: 0; }

/* CTA and footer */
.suite-cta { display: flex; justify-content: space-between; align-items: end; gap: 40px; padding: clamp(90px, 12vw, 180px) max(24px, calc((100vw - 1180px) / 2)); color: #fff; background: var(--ember); }
.suite-cta h2 { margin: 0; font-size: clamp(3.6rem, 7vw, 7.5rem); line-height: .84; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 20px 30px; }
.direct-book-link { display: inline-flex; align-items: center; gap: 18px; padding: 9px 0; border-bottom: 1px solid currentColor; color: inherit; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.direct-book-link span { transition: transform .25s ease; }
.direct-book-link:hover span { transform: translate(3px, -3px); }
.site-footer { position: relative; overflow: hidden; padding: clamp(80px, 9vw, 130px) max(24px, calc((100vw - 1240px) / 2)) 28px; color: #f1eadf; background: var(--night-deep); }
.footer-word { margin: 0 0 -2vw; color: rgba(241, 234, 223, .07); font: 400 clamp(7rem, 20vw, 22rem)/.62 var(--serif); letter-spacing: -.075em; white-space: nowrap; transform: translateX(-.04em); }
.footer-word::after { content: ""; display: inline-block; width: .13em; height: .13em; margin-left: .045em; border-radius: 50%; background: var(--ember); vertical-align: .12em; }
.footer-main { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr 1fr .65fr; gap: clamp(40px, 7vw, 110px); align-items: end; padding: clamp(50px, 7vw, 90px) 0; border-top: 1px solid rgba(255, 255, 255, .18); }
.footer-brand img { width: 150px; height: auto; }
.footer-brand p { margin: 30px 0 0; color: #aab5ae; font: 400 1.4rem/1.45 var(--serif); }
.suite-features,
.plus-moment,
.suite-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
.footer-contact { display: grid; justify-items: start; }
.footer-contact strong { margin-bottom: 10px; font: 400 2.4rem/1 var(--serif); }
.footer-contact a { color: #b9c1bc; line-height: 1.8; }
.site-footer nav { display: grid; gap: 4px; }
.site-footer nav a { display: flex; justify-content: space-between; gap: 40px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); font-size: .7rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.site-footer nav span { color: var(--blush); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .18); color: #75837b; font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-word { opacity: 0; transform: translate3d(-.04em, 70px, 0) scale(.94); transform-origin: left bottom; filter: blur(12px); transition: opacity 1.25s var(--ease), transform 1.5s var(--ease), filter 1.2s ease; }
.footer-word.is-visible { opacity: 1; transform: translate3d(-.04em, 0, 0) scale(1); filter: blur(0); }

@media (max-width: 1400px) {
  .hero-frame-one {
    background-image: image-set(
      url('../images/optimized/hero-balkon-ausblick-1280.avif') type('image/avif'),
      url('../images/optimized/hero-balkon-ausblick-1280.webp') type('image/webp'),
      url('../images/hero-balkon-ausblick.jpg') type('image/jpeg')
    );
  }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; }
  .brand, .nav-toggle { position: relative; z-index: 2; }
  .nav-toggle { display: grid; }
  body.menu-open .site-header {
    top: 12px;
    width: min(94%, 1380px);
    padding: 9px 11px 9px 18px;
    color: var(--night);
    background: rgba(239, 233, 222, .86);
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(7, 22, 17, .2);
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
  }
  body.menu-open .brand-logo-white { opacity: 0; }
  body.menu-open .brand-logo-color { opacity: 1; }
  body.menu-open .nav-toggle { border-color: rgba(20, 38, 33, .25); background: rgba(255, 255, 255, .35); }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 20px;
    counter-reset: mobile-nav;
    color: #fff;
    background: rgba(11, 28, 22, .94);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(7, 22, 17, .32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.985);
    transform-origin: top;
    pointer-events: none;
    backdrop-filter: blur(26px) saturate(1.2);
    -webkit-backdrop-filter: blur(26px) saturate(1.2);
    transition: opacity .35s ease, visibility .35s ease, transform .5s var(--ease);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .site-nav > a:not(.nav-book) {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    padding: 12px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-family: var(--serif);
    font-size: clamp(1.45rem, 4.5vw, 2rem);
    font-weight: 400;
    letter-spacing: -.035em;
    text-transform: none;
    counter-increment: mobile-nav;
    transition: color .25s ease, padding-left .35s var(--ease);
  }
  .site-nav > a:not(.nav-book)::before {
    content: "0" counter(mobile-nav);
    width: 24px;
    color: var(--blush);
    font: 650 .58rem/1 var(--sans);
    letter-spacing: .12em;
  }
  .site-nav > a:not(.nav-book)::after { display: none; }
  .site-nav > a:not(.nav-book):hover,
  .site-nav > a:not(.nav-book)[aria-current="page"] { color: var(--blush); padding-left: 12px; }
  .site-nav .nav-home { display: flex; }
  .site-nav .nav-home-icon { display: none; }
  .site-nav .nav-book {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding: 16px 20px;
    border: 0;
    color: #fff;
    background: var(--ember);
    font-size: .68rem;
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
  }
  .editorial-grid, .image-duo, .inquiry-panel, .route-card, .legal-shell { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 460px; }
  .route-card img { height: 520px; order: -1; }
  .legal-label { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .floating-photo { position: relative; right: auto; top: auto; width: 80vw; margin: 70px 0 0 auto; }
  .gallery-portrait-frame { right: auto; left: 50%; width: auto; max-width: 100%; aspect-ratio: 2 / 3; transform: translateX(-50%); }
  .suite-intro { min-height: auto; }
  .intro-statement { width: 90%; }
  .intro-copy { margin-right: 0; }
  .suite-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .hero-frame-one {
    background-image: image-set(
      url('../images/optimized/hero-balkon-ausblick-720.avif') type('image/avif'),
      url('../images/optimized/hero-balkon-ausblick-720.webp') type('image/webp'),
      url('../images/hero-balkon-ausblick.jpg') type('image/jpeg')
    );
  }
  .site-header { top: 0; width: 100%; padding: 14px 18px; }
  .site-header.is-scrolled { top: 8px; width: 94%; padding: 8px 10px 8px 14px; border-radius: 14px; }
  .brand-logo { width: 88px; }
  .site-header.is-scrolled .brand-logo,
  body.menu-open .site-header .brand-logo { width: 66px; }
  .nav-toggle { width: 42px; height: 42px; }
  .site-nav { padding: 14px 16px 17px; border-radius: 18px; }
  .site-nav > a:not(.nav-book) { min-height: 54px; font-size: 1.45rem; }
  .suite-hero h1 { font-size: 5.2rem; line-height: .7; }
  .suite-hero h1 i { margin-left: 0; }
  .suite-hero-copy { left: 22px; right: 22px; }
  .hero-lead br { display: none; }
  .hero-facts { left: 22px; right: 22px; gap: 20px; }
  .hero-facts b { font-size: 1.5rem; }
  .hero-depth-front { width: 80vw; }
  .suite-intro { padding: 100px 22px; }
  .vertical-note { display: none; }
  .intro-statement { width: 100%; }
  .intro-statement h2 { font-size: 4rem; }
  .intro-copy { margin-top: 35px; }
  .floating-photo { width: 92vw; }
  .floating-photo img { height: 420px; }
  .suite-gallery { width: 100%; height: 680px; min-height: 0; }
  .gallery-overlay { left: 22px; right: 22px; }
  .gallery-heading h2 { font-size: 3.7rem; }
  .gallery-slide figcaption { top: auto; right: 14px; bottom: 16px; }
  .plus-moment { width: calc(100% - 40px); }
  .plus-moment h2 { font-size: 3.9rem; }
  .suite-cta { padding: 90px 22px; }
  .suite-cta h2 { font-size: 3.8rem; }
  .subhero { min-height: 760px; padding: 145px 22px 62px; }
  .subhero h1 { font-size: 4.4rem; }
  .content-wrap { width: calc(100% - 40px); }
  .editorial-grid h2 { font-size: 3.7rem; }
  .image-duo figure:first-child img, .image-duo figure:last-child img {
    height: auto;
    object-fit: contain;
  }
  .image-duo figure:last-child { transform: none; }
  .inquiry-panel { min-height: 0; }
  .inquiry-image img { height: 440px; }
  .inquiry-copy { padding: 55px 26px; }
  .route-card { margin-inline: -20px; }
  .route-card img { height: 420px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .footer-word { font-size: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-frame { animation: none; }
  .hero-frame-one { opacity: 1; }
  .hero-media, .suite-hero-copy { transform: none; }
  .feature-ribbon { animation: none; }
  .subhero-media img { animation: none; }
  .footer-word { opacity: 1; transform: translateX(-.04em); filter: none; transition: none; }
}

/* Prices and inquiry application */
.pricing-overview { padding: clamp(95px, 12vw, 170px) 0; }
.pricing-intro { display: grid; grid-template-columns: 1fr .75fr; gap: clamp(40px, 8vw, 110px); align-items: end; margin-bottom: clamp(55px, 8vw, 100px); }
.pricing-intro h2 { margin: 0; font-size: clamp(3.7rem, 7vw, 7.5rem); line-height: .82; }
.pricing-intro h2 i { color: var(--ember); }
.pricing-intro > div:last-child { color: var(--muted); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price-tile { position: relative; min-height: 370px; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 38px); background: var(--sand-light); }
.price-tile:nth-child(even) { background: var(--white); }
.price-index { align-self: flex-end; color: var(--ember); font: italic 1.3rem/1 var(--serif); }
.price-tile .eyebrow { margin-top: auto; margin-bottom: 14px; }
.price-tile strong { display: block; font: 400 clamp(2.4rem, 3.6vw, 4rem)/1 var(--serif); letter-spacing: -.05em; }
.price-tile > span:not(.price-index) { margin: 9px 0 24px; color: var(--muted); font-size: .78rem; }
.price-tile small { display: block; margin-top: 6px; color: var(--muted); font-size: .7rem; }
.pricing-meta { max-width: 900px; margin: 30px 0 0 auto; color: var(--muted); font-size: .84rem; }
.booking-section { padding: clamp(90px, 12vw, 170px) 0; }
.booking-heading { max-width: 900px; margin-bottom: clamp(50px, 8vw, 90px); }
.booking-heading h2 { margin: 0; font-size: clamp(3.8rem, 7.5vw, 8rem); line-height: .82; }
.booking-heading h2 i { color: var(--ember); }
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .7fr); gap: clamp(30px, 6vw, 80px); align-items: start; }
.booking-form { display: grid; gap: 28px; }
.form-step { padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); background: var(--sand-light); }
.form-step-head { display: grid; grid-template-columns: 42px 1fr; gap: 18px; margin-bottom: 30px; }
.form-step-head > span { color: var(--ember); font: italic 1.4rem/1 var(--serif); }
.form-step-head h3 { margin: 0 0 4px; font-size: 1.75rem; }
.form-step-head p { margin: 0; color: var(--muted); font-size: .88rem; }
.form-step--compact .form-step-head { grid-template-columns: 1fr; margin-bottom: 26px; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 0; color: var(--night); background: var(--white); font: inherit; }
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid rgba(198, 83, 47, .25); border-color: var(--ember); }
.field.full { grid-column: 1 / -1; }
.guest-field { position: relative; }
.guest-field small { color: var(--muted); }
.booking-timeline { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; margin-top: 25px; padding: 22px; color: #fff; background: var(--night); }
.booking-timeline > div { display: grid; gap: 4px; }
.booking-timeline > div:last-child { text-align: right; }
.booking-timeline span { color: #aeb9b2; font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.booking-timeline b { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.booking-timeline i { height: 1px; background: rgba(255,255,255,.28); }
.booking-timeline em { color: var(--blush); font-style: normal; }
.privacy-check { grid-template-columns: 22px 1fr; align-items: start; gap: 10px; color: var(--muted); font-size: .83rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.privacy-check input { width: 18px; min-height: 18px; margin-top: 3px; }
.privacy-check a { border-bottom: 1px solid; }
.honeypot { position: absolute !important; left: -9999px !important; }
.booking-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.booking-submit { min-height: 58px; padding: 16px 25px; border: 1px solid var(--night); border-radius: 999px; color: #fff; background: var(--night); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.booking-submit:disabled { cursor: not-allowed; opacity: .45; }
.direct-book-button { display: flex; align-items: center; justify-content: center; gap: 16px; min-height: 58px; padding: 16px 25px; border: 1px solid var(--ember); border-radius: 999px; color: #fff; background: var(--ember); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; transition: transform .25s ease, box-shadow .25s ease; }
.direct-book-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(198, 83, 47, .22); }
.contact-card { position: sticky; top: 120px; padding: clamp(32px, 4vw, 52px); color: #fff; background: var(--night); box-shadow: 0 30px 80px rgba(20,38,33,.18); }
.contact-card h3 { max-width: 420px; margin: 0 0 24px; font-size: clamp(2.5rem, 4vw, 4.4rem); line-height: .9; }
.contact-card > p:not(.eyebrow) { margin: 0; color: #aeb9b2; line-height: 1.75; }
.contact-card-links { display: grid; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-card-links a { display: grid; gap: 5px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-card-links span { color: #87958d; font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-card-links strong { overflow-wrap: anywhere; font: 400 clamp(1.15rem, 2vw, 1.55rem)/1.3 var(--serif); }
.estimate-warning { padding: 14px 16px; color: #6b2b1c; background: #f4dace; }
.estimate-card .estimate-warning { color: #ffd8c9; background: rgba(198,83,47,.2); }
.estimate-ok { color: #a8d5b3; }
.form-result { margin: 0; padding: 16px 18px; }
.form-result.success { color: #245334; background: #dceade; }
.form-result.error { color: #722f22; background: #f4dace; }
@media(max-width:1000px){.pricing-grid{grid-template-columns:repeat(2,1fr)}.booking-layout{grid-template-columns:1fr}.contact-card{position:relative;top:auto;order:-1}.pricing-intro{grid-template-columns:1fr}}
@media(max-width:620px){.pricing-grid,.field-grid,.booking-actions{grid-template-columns:1fr}.price-tile{min-height:300px}.field.full{grid-column:auto}.booking-timeline{grid-template-columns:1fr;gap:16px}.booking-timeline i{display:none}.booking-timeline>div:last-child{text-align:left}.form-step{margin-inline:-20px}.contact-card{margin-inline:-20px}.suite-gallery{height:480px}.gallery-heading h2{font-size:clamp(2.75rem,14vw,3.55rem)}.gallery-controls{margin-top:24px}.gallery-duo{gap:15px}.gallery-panel span{right:10px;bottom:12px;max-width:calc(100% - 20px);font-size:.5rem;line-height:1.35}.gallery-slide figcaption{font-size:.56rem}.cta-actions{justify-content:flex-start}}

/* Transparent notice for the single session-only preference cookie */
.cookie-note {
  position: fixed;
  z-index: 2000;
  left: clamp(14px, 2.2vw, 34px);
  bottom: clamp(14px, 2.2vw, 34px);
  width: min(520px, calc(100% - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  color: var(--night);
  background: rgba(244, 238, 224, .94);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(7, 22, 17, .24);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 24px, 0) scale(.98);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  transition: opacity .38s ease, visibility .38s ease, transform .55s var(--ease);
}
.cookie-note.is-visible { opacity: 1; visibility: visible; transform: none; }
.cookie-note.is-closing { opacity: 0; visibility: hidden; transform: translate3d(0, 18px, 0) scale(.985); }
.cookie-note-copy { display: grid; gap: 6px; }
.cookie-note-copy strong {
  color: var(--ember);
  font: italic 400 1.35rem/1.05 var(--serif);
  letter-spacing: -.02em;
}
.cookie-note-copy span { color: #485750; font-size: .82rem; line-height: 1.55; }
.cookie-note-copy a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 44px;
  margin: 2px 0 -8px -12px;
  padding: 10px 12px;
  color: var(--night);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(198, 83, 47, .16);
  text-decoration: underline;
  text-decoration-color: rgba(20, 38, 33, .4);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease, background .2s ease;
}
.cookie-note-copy a span { color: inherit; font-size: inherit; }
.cookie-note-copy a:hover { color: var(--ember); background: rgba(255, 255, 255, .5); }
.cookie-note-copy a:focus-visible { outline: 3px solid rgba(198, 83, 47, .35); outline-offset: 2px; }
.cookie-note button {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--night);
  border-radius: 999px;
  color: #fff;
  background: var(--night);
  font: 700 .62rem/1 var(--sans);
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.cookie-note button:hover { color: var(--night); background: transparent; transform: translateY(-1px); }
.cookie-note button:focus-visible { outline: 3px solid rgba(198, 83, 47, .35); outline-offset: 3px; }

@media (max-width: 620px) {
  .cookie-note {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 19px;
    background: #f4eee0;
    border-radius: 18px;
  }
  .cookie-note button { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-note { transition: none; }
}
