

:root {
  --site-bg: #f7f4ed;
  --site-surface: #e8e2d4;
  --site-text: #1a1f1a;
  --site-muted: #2f4a2c;
  --site-accent: #a87b3d;

  --lv-bg: #f7f4ed;
  --lv-surface: #e8e2d4;
  --lv-text: #1a1f1a;
  --lv-muted: #2f4a2c;
  --lv-accent: #a87b3d;
  --lv-accent-2: #2f4a2c;

  --lv-line: rgba(168, 123, 61, 0.4);
  --lv-shadow: 0 8px 24px rgba(26, 31, 26, 0.06);

  --lv-col: 780px;
  --lv-radius: 6px;
  --lv-gap: 72px;

  --lv-head: "Montserrat", "Segoe UI", sans-serif;
  --lv-body: "Source Sans 3", "Segoe UI", sans-serif}

* { box-sizing: border-box}

html { scroll-behavior: smooth}

body {
  margin: 0;
  background: var(--lv-bg);
  color: var(--lv-text);
  font-family: var(--lv-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased}

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

h1, h2, h3, h4 {
  font-family: var(--lv-head);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem)}
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem)}
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem)}

p { margin: 0 0 1.1em; max-width: 68ch}

a { color: var(--lv-accent); text-decoration: none}
a:hover { text-decoration: underline}

:focus-visible {
  outline: 2px solid var(--lv-accent);
  outline-offset: 3px;
  border-radius: 2px}

.lv-shell {
  width: 100%;
  max-width: var(--lv-col);
  margin-inline: auto;
  padding-inline: 22px}
.lv-shell--wide { max-width: 1100px}

.lv-section { padding-block: clamp(48px, 8vw, 80px)}

.lv-eyebrow {
  font-family: var(--lv-head);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lv-accent);
  margin: 0 0 1.4em;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap}
.lv-eyebrow::before,
.lv-eyebrow::after {
  content: "";
  height: 1px;
  flex: 1 1 24px;
  min-width: 0;
  background: var(--lv-line)}
.lv-eyebrow--left::before { display: none}

.lv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--lv-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85em 1.8em;
  border-radius: var(--lv-radius);
  border: 1px solid var(--lv-accent);
  background: var(--lv-accent);
  color: #fdfbf6;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s}
.lv-btn:hover { background: #916a33; text-decoration: none; transform: translateY(-1px)}
.lv-btn--ghost {
  background: transparent;
  color: var(--lv-muted);
  border-color: var(--lv-muted)}
.lv-btn--ghost:hover { background: var(--lv-muted); color: #fdfbf6}
.lv-btn__label { line-height: 1}

#page-header-w54 {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--lv-bg);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s}
#page-header-w54.is-scrolled {
  border-bottom-color: var(--lv-line);
  box-shadow: 0 2px 14px rgba(26, 31, 26, 0.04)}
.lv-head-bar {
  max-width: 1100px;
  margin-inline: auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap}

.lv-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px}
.lv-brand__icon { width: 30px; height: 30px; flex: none}
.lv-brand__name {
  font-family: var(--lv-head);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
  color: var(--lv-text);
  line-height: 1}

.lv-nav { display: flex; align-items: center; gap: 30px; flex-wrap: wrap}
.lv-nav a {
  font-family: var(--lv-head);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--lv-text)}
.lv-nav a:hover { color: var(--lv-accent); text-decoration: none}

.lv-nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--lv-text);
  font-size: 1.4rem}

#nav-overlay-hq2 {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 26, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  z-index: 80}
#nav-overlay-hq2.is-open { opacity: 1; visibility: visible}

#mobile-nav-0n0 {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(80vw, 320px);
  background: var(--lv-bg);
  border-left: 1px solid var(--lv-line);
  transform: translateX(100%);
  transition: transform .32s ease;
  z-index: 90;
  padding: 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px}
#mobile-nav-0n0.is-open { transform: translateX(0)}
#mobile-nav-0n0 a {
  font-family: var(--lv-head);
  font-size: 1.05rem;
  color: var(--lv-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--lv-line)}
.lv-drawer__x {
  align-self: flex-end;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--lv-text);
  margin-bottom: 12px}

.lv-hero--field {
  background: linear-gradient(160deg, #efe9dc 0%, var(--lv-surface) 100%);
  text-align: center;
  padding-block: clamp(72px, 14vw, 150px)}
.lv-hero--field h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  margin-inline: auto}
.lv-hero__tag {
  font-size: 1.15rem;
  color: var(--lv-muted);
  max-width: 46ch;
  margin: 1.2em auto 1.8em}

.lv-hero--boxed {
  padding-block: clamp(40px, 7vw, 72px)}
.lv-hero--boxed .lv-hero__frame {
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  padding: clamp(40px, 8vw, 84px) clamp(24px, 6vw, 64px);
  text-align: center}

.lv-hero--asym {
  padding-block: clamp(40px, 7vw, 72px);
  overflow: hidden}
.lv-hero--asym .lv-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center}
.lv-hero--asym .lv-hero__copy h1 { }
.lv-hero--asym .lv-hero__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--lv-radius);
  overflow: hidden}
.lv-hero--asym .lv-hero__media img { width: 100%; height: 100%; object-fit: cover}

.lv-hero--split {
  padding-block: clamp(40px, 7vw, 72px)}
.lv-hero--split .lv-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center}
.lv-hero--split .lv-hero__media {
  aspect-ratio: 3 / 4;
  border-radius: var(--lv-radius);
  overflow: hidden;
  box-shadow: var(--lv-shadow)}
.lv-hero--split .lv-hero__media img { width: 100%; height: 100%; object-fit: cover}

.lv-page-hero {
  text-align: center;
  padding-block: clamp(56px, 9vw, 96px);
  background: linear-gradient(160deg, #efe9dc, var(--lv-surface))}

.lv-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center}
.lv-intro__card {
  border-radius: var(--lv-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--lv-shadow)}
.lv-intro__card img { width: 100%; height: 100%; object-fit: cover}

.lv-intro--quote { text-align: center}
.lv-intro--quote blockquote {
  font-family: var(--lv-head);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.35;
  margin: 0 auto 0.8em;
  color: var(--lv-text)}
.lv-intro--quote .lv-intro__support {
  color: var(--lv-muted);
  max-width: 52ch;
  margin-inline: auto}

.lv-intro--manifesto { text-align: center}
.lv-intro--manifesto p {
  max-width: 60ch;
  margin-inline: auto;
  font-size: 1.15rem}

.lv-quote {
  text-align: center;
  border-top: 1px solid var(--lv-line);
  border-bottom: 1px solid var(--lv-line);
  padding-block: clamp(40px, 7vw, 72px)}
.lv-quote__text {
  font-family: var(--lv-head);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  line-height: 1.4;
  margin: 0 auto 1em}
.lv-quote__by {
  display: inline-block;
  padding-top: 12px;
  border-top: 1px solid var(--lv-accent);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-muted)}

.lv-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px}
.lv-card {
  padding-top: 20px;
  border-top: 1px solid var(--lv-line)}
.lv-card__title { margin-bottom: 0.4em}
.lv-card__text { color: var(--lv-muted); font-size: 0.98rem}

.lv-pillars--rooms .lv-pillars__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))}
.lv-room-card {
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  overflow: hidden;
  background: #fdfbf6}
.lv-room-card__media { aspect-ratio: 4 / 3}
.lv-room-card__media img { width: 100%; height: 100%; object-fit: cover}
.lv-room-card__body { padding: 20px}
.lv-room-card__body h3 { margin-bottom: 0.3em}
.lv-room-card__price {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--lv-head);
  font-weight: 600;
  color: var(--lv-accent);
  font-size: 1.05rem}

.lv-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 64px)}
.lv-feature-row:last-child { margin-bottom: 0}
.lv-feature-row__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--lv-radius);
  overflow: hidden;
  box-shadow: var(--lv-shadow)}
.lv-feature-row__media img { width: 100%; height: 100%; object-fit: cover}

.lv-cta--split {
  background: var(--lv-surface)}
.lv-cta--split .lv-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center}
.lv-cta__contact { color: var(--lv-muted)}
.lv-cta__contact a { color: var(--lv-muted)}

.lv-cta--card .lv-cta__inner {
  text-align: center;
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  background: #fdfbf6;
  padding: clamp(36px, 6vw, 60px);
  box-shadow: var(--lv-shadow)}

.lv-cta--band {
  background: var(--lv-muted);
  color: #f3efe4;
  text-align: center}
.lv-cta--band h2 { color: #fdfbf6}
.lv-cta--band .lv-btn--ghost { color: #f3efe4; border-color: #f3efe4}
.lv-cta--band .lv-btn--ghost:hover { background: #f3efe4; color: var(--lv-muted)}

.lv-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px}
.lv-contact__meta dt {
  font-family: var(--lv-head);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lv-accent);
  margin-top: 18px}
.lv-contact__meta dd { margin: 4px 0 0}
.lv-contact__meta a { color: var(--lv-text)}

.lv-form { display: flex; flex-direction: column; gap: 16px}
.lv-field { display: flex; flex-direction: column; gap: 6px}
.lv-field label {
  font-family: var(--lv-head);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--lv-muted)}
.lv-field input,
.lv-field textarea,
.lv-field select {
  font-family: var(--lv-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  background: #fdfbf6;
  color: var(--lv-text);
  width: 100%;
  min-width: 0}
.lv-field textarea { min-height: 140px; resize: vertical}
.lv-field input:focus,
.lv-field textarea:focus {
  outline: 2px solid var(--lv-accent);
  outline-offset: 1px;
  border-color: transparent}
.lv-form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap}
.lv-form-row .lv-field { flex: 1 1 200px}

[data-collapsible] { border-top: 1px solid var(--lv-line)}
[data-fold] { border-bottom: 1px solid var(--lv-line)}
[data-acc-head] {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 4px;
  font-family: var(--lv-head);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--lv-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center}
[data-acc-head]::after { content: "+"; color: var(--lv-accent); font-size: 1.3rem}
[data-fold].is-open [data-acc-head]::after { content: "–"}
[data-fold] .lv-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease}
[data-fold].is-open .lv-acc__body { max-height: 600px}
.lv-acc__body p { padding: 0 4px 18px; color: var(--lv-muted)}

.carousel-u6x { padding-bottom: 40px}
.carousel-u6x .swiper-slide {
  background: #fdfbf6;
  border: 1px solid var(--lv-line);
  border-radius: var(--lv-radius);
  overflow: hidden;
  height: auto}
.swiper-pagination-bullet { background: var(--lv-muted); opacity: 0.4}
.swiper-pagination-bullet-active { background: var(--lv-accent); opacity: 1}
.swiper-button-prev, .swiper-button-next { color: var(--lv-accent)}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1.4rem}

.site-modal, .overlay-box-iu4 {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(26, 31, 26, 0.5)}
.site-modal.is-open, .overlay-box-iu4.is-open { display: flex}
.lv-modal__dialog {
  background: var(--lv-bg);
  border-radius: var(--lv-radius);
  border-top: 3px solid var(--lv-accent);
  max-width: 440px;
  width: 100%;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(26, 31, 26, 0.25)}
.lv-modal__dialog h3 { color: var(--lv-accent)}

.lv-footer {
  background: var(--lv-text);
  color: #d9d3c3;
  padding-block: clamp(48px, 7vw, 72px) 28px;
  margin-top: var(--lv-gap)}
.lv-footer__grid {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px}
.lv-footer__col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lv-accent);
  margin-bottom: 1.2em}
.lv-footer__col a { color: #d9d3c3; display: inline-block; margin-bottom: 8px}
.lv-footer__col a:hover { color: #fff}
.lv-footer__brand .lv-brand__name { color: #f3efe4}
.lv-footer__blurb { color: #b9b2a1; font-size: 0.95rem}
.lv-footer__map {
  border: 0;
  width: 100%;
  height: 150px;
  border-radius: var(--lv-radius);
  filter: grayscale(0.3) sepia(0.15)}
.lv-footer__base {
  max-width: 1100px;
  margin: 34px auto 0;
  padding: 20px 22px 0;
  border-top: 1px solid rgba(217, 211, 195, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #a9a291}
.lv-footer__base a { color: #a9a291}

.lv-legal { padding-block: clamp(48px, 8vw, 80px)}
.lv-legal h2 { margin-top: 1.6em}
.lv-legal p, .lv-legal li { color: var(--lv-muted); max-width: 68ch}

@media (max-width: 760px) {
  .lv-nav { display: none}
  .lv-nav-toggle { display: inline-flex}
}

@media (min-width: 720px) {
  .lv-intro__grid,
  .lv-hero--asym .lv-hero__grid,
  .lv-hero--split .lv-hero__grid,
  .lv-cta--split .lv-cta__inner,
  .lv-contact__grid { grid-template-columns: 1fr 1fr}

  .lv-hero--asym .lv-hero__grid { grid-template-columns: 1.1fr 1fr}
  .lv-hero--asym .lv-hero__media { margin-right: -60px}

  .lv-feature-row { grid-template-columns: 1fr 1fr}
  .lv-feature-row--flip .lv-feature-row__media { order: 2}

  .lv-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr}
}

.cookie-bar-rky-overlay{position:fixed;inset:0;opacity:0;visibility:hidden;transition:.25s;z-index:9998}
.cookie-bar-rky-overlay.is-open{opacity:1;visibility:visible}
.cookie-bar-rky-panel{position:fixed;background:var(--site-surface,#fff);color:var(--site-text,#1a1a1a);
  box-shadow:0 20px 60px rgba(0,0,0,.28);padding:24px;opacity:0;visibility:hidden;transition:.25s;z-index:9999}
.cookie-bar-rky-panel.is-open{opacity:1;visibility:visible}
.cookie-bar-rky-panel h3{margin:0 0 8px;font-size:1.2rem}
.cookie-bar-rky-panel>p{margin:0 0 16px;color:var(--site-muted,#666);font-size:.95rem}
.cookie-bar-rky-cat{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(128,128,128,.2)}
.cookie-bar-rky-cat h4{margin:0 0 2px;font-size:.98rem}
.cookie-bar-rky-cat p{margin:0;color:var(--site-muted,#777);font-size:.85rem}
.cookie-bar-rky-switch{position:relative;flex:0 0 auto;width:44px;height:24px}
.cookie-bar-rky-switch input{opacity:0;width:0;height:0;position:absolute}
.cookie-bar-rky-switch span{position:absolute;inset:0;background:#c9c9c9;border-radius:999px;transition:.2s;cursor:pointer}
.cookie-bar-rky-switch span::before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s}
.cookie-bar-rky-switch input:checked+span{background:var(--site-accent,#2b7)}
.cookie-bar-rky-switch input:checked+span::before{transform:translateX(20px)}
.cookie-bar-rky-switch input:disabled+span{opacity:.6;cursor:not-allowed}
.cookie-bar-rky-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.cookie-bar-rky-actions button{flex:1;min-width:140px;padding:11px 16px;border:none;border-radius:10px;font:inherit;font-weight:600;cursor:pointer}
.cookie-bar-rky-actions #cookie-bar-rky-all{background:var(--site-accent,#2b7);color:#fff}
.cookie-bar-rky-actions #cookie-bar-rky-save{background:transparent;color:var(--site-text,#222);border:1px solid rgba(128,128,128,.4)}
.cookie-bar-rky-links{display:flex;gap:16px;margin-top:14px;font-size:.85rem}
.cookie-bar-rky-links a{color:var(--site-accent,#2b7);text-decoration:underline}
.cookie-bar-rky-trigger{position:fixed;left:18px;bottom:18px;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--site-surface,#fff);color:var(--site-accent,#2b7);box-shadow:0 6px 18px rgba(0,0,0,.2);z-index:9997;font-size:1.1rem}

.cookie-bar-rky-overlay{background:transparent;pointer-events:none}
.cookie-bar-rky-panel{left:24px;bottom:24px;width:min(380px,calc(100% - 32px));border-radius:16px;transform:translateY(24px)}
.cookie-bar-rky-panel.is-open{transform:translateY(0)}
@media(max-width:520px){.cookie-bar-rky-panel{left:16px;right:16px;width:auto}}
@media(max-width:520px){.cookie-bar-rky-actions button{min-width:100%}}
#dock-km4{left:auto !important;right:18px !important}
@media(max-width:520px){#dock-km4{right:12px !important}}

.sent-note-0m3{position:fixed;inset:0;z-index:10000;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,10,14,.55);backdrop-filter:blur(2px)}
.sent-note-0m3.is-open{display:flex}
.sent-note-0m3__box{width:min(420px,100%);background:var(--site-surface,#fff);color:var(--site-text,#15181d);
  border-radius:16px;padding:32px 28px;text-align:center;box-shadow:0 24px 60px rgba(0,0,0,.28);
  animation:sent-note-0m3-in .22s ease-out}
@keyframes sent-note-0m3-in{from{opacity:0;transform:translateY(12px) scale(.97)}to{opacity:1;transform:none}}
.sent-note-0m3__mark{width:56px;height:56px;margin:0 auto 18px;border-radius:50%;display:flex;
  align-items:center;justify-content:center;font-size:26px;line-height:1;
  background:var(--site-accent,#2e7d5b);color:#fff}
.sent-note-0m3__title{margin:0 0 10px;font-size:1.35rem;line-height:1.25}
.sent-note-0m3__text{margin:0 0 24px;line-height:1.6;color:var(--site-muted,#5b6472)}
.sent-note-0m3__close{display:inline-block;cursor:pointer;border:0;border-radius:999px;
  padding:12px 30px;font:inherit;font-weight:600;background:var(--site-accent,#2e7d5b);color:#fff}
.sent-note-0m3__close:hover{filter:brightness(1.08)}
.sent-note-0m3__close:focus-visible{outline:2px solid var(--site-text,#15181d);outline-offset:3px}
@media(prefers-reduced-motion:reduce){.sent-note-0m3__box{animation:none}}

*,*::before,*::after{box-sizing:border-box}
html,body{overflow-x:hidden;overflow-x:clip;max-width:100%}
img,svg,video,iframe,canvas{max-width:100%}
table{max-width:100%}

.simpleParallax{display:block;width:100%;height:100%}
.simpleParallax img{width:100%;height:100%;object-fit:cover}

blockquote, figure { margin-left: 0; margin-right: 0}

figure > blockquote, figure > figcaption { margin-left: 0; margin-right: 0}

html.no-aos [data-aos]{opacity:1 !important;transform:none !important}

@media(prefers-reduced-motion:reduce){
  [data-aos]{opacity:1 !important;transform:none !important;transition:none !important}
}

.legal-doc{max-width:72ch;margin:0 auto;padding:64px 20px;line-height:1.7}
.legal-doc h1{margin:0 0 .6em}
.legal-doc h2{margin:1.8em 0 .5em}
.legal-doc h3{margin:1.4em 0 .4em}
.legal-doc p,.legal-doc li{margin:0 0 .8em}
.legal-doc ul,.legal-doc ol{padding-left:1.4em;margin:0 0 1em}
.legal-doc table{width:100%;border-collapse:collapse;margin:0 0 1.2em}
.legal-doc th,.legal-doc td{border:1px solid currentColor;padding:.5em;text-align:left}

@media (max-width: 720px) {
  body { overflow-x: hidden}
  h1, h2, h3, p, li, td { overflow-wrap: break-word}
  
  input, select, textarea { max-width: 100%; min-width: 0}
  
  img, svg, video, iframe, table { max-width: 100%}
}

@media (max-width: 720px) {
  
.lv-btn,
.lv-brand,
#mobile-nav-0n0,
.lv-form,
.lv-field,
[data-acc-head],
.site-modal.is-open, .overlay-box-iu4.is-open,
.cookie-bar-rky-cat,
.cookie-bar-rky-links,
.sent-note-0m3.is-open,
.sent-note-0m3__mark { flex-wrap: wrap}
  
.lv-btn > *,
.lv-brand > *,
#mobile-nav-0n0 > *,
.lv-form > *,
.lv-field > *,
[data-acc-head] > *,
.site-modal.is-open, .overlay-box-iu4.is-open > *,
.cookie-bar-rky-cat > *,
.cookie-bar-rky-links > *,
.sent-note-0m3.is-open > *,
.sent-note-0m3__mark > * { min-width: 0}
}

.cookie-bar-rky-overlay{position:fixed;inset:0;opacity:0;visibility:hidden;transition:.25s;z-index:9998;}
.cookie-bar-rky-overlay.is-open{opacity:1;visibility:visible;}
.cookie-bar-rky-panel{position:fixed;background:var(--site-surface,#fff);color:var(--site-text,#1a1a1a);
  box-shadow:0 20px 60px rgba(0,0,0,.28);padding:24px;opacity:0;visibility:hidden;transition:.25s;z-index:9999;}
.cookie-bar-rky-panel.is-open{opacity:1;visibility:visible;}
.cookie-bar-rky-panel h3{margin:0 0 8px;font-size:1.2rem;}
.cookie-bar-rky-panel>p{margin:0 0 16px;color:var(--site-muted,#666);font-size:.95rem;}
.cookie-bar-rky-cat{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(128,128,128,.2);}
.cookie-bar-rky-cat h4{margin:0 0 2px;font-size:.98rem;}
.cookie-bar-rky-cat p{margin:0;color:var(--site-muted,#777);font-size:.85rem;}
.cookie-bar-rky-switch{position:relative;flex:0 0 auto;width:44px;height:24px;}
.cookie-bar-rky-switch input{opacity:0;width:0;height:0;position:absolute;}
.cookie-bar-rky-switch span{position:absolute;inset:0;background:#c9c9c9;border-radius:999px;transition:.2s;cursor:pointer;}
.cookie-bar-rky-switch span::before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s;}
.cookie-bar-rky-switch input:checked+span{background:var(--site-accent,#2b7);}
.cookie-bar-rky-switch input:checked+span::before{transform:translateX(20px);}
.cookie-bar-rky-switch input:disabled+span{opacity:.6;cursor:not-allowed;}
.cookie-bar-rky-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.cookie-bar-rky-actions button{flex:1;min-width:140px;padding:11px 16px;border:none;border-radius:10px;font:inherit;font-weight:600;cursor:pointer;}
.cookie-bar-rky-actions #cookie-bar-rky-all{background:var(--site-accent,#2b7);color:#fff;}
.cookie-bar-rky-actions #cookie-bar-rky-save{background:transparent;color:var(--site-text,#222);border:1px solid rgba(128,128,128,.4);}
.cookie-bar-rky-links{display:flex;gap:16px;margin-top:14px;font-size:.85rem;}
.cookie-bar-rky-links a{color:var(--site-accent,#2b7);text-decoration:underline;}
.cookie-bar-rky-trigger{position:fixed;left:18px;bottom:18px;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--site-surface,#fff);color:var(--site-accent,#2b7);box-shadow:0 6px 18px rgba(0,0,0,.2);z-index:9997;font-size:1.1rem;}

.cookie-bar-rky-overlay{background:transparent;pointer-events:none;}
.cookie-bar-rky-panel{left:24px;bottom:24px;width:min(380px,calc(100% - 32px));border-radius:16px;transform:translateY(24px);}
.cookie-bar-rky-panel.is-open{transform:translateY(0);}
@media(max-width:520px){.cookie-bar-rky-panel{left:16px;right:16px;width:auto;}}
@media(max-width:520px){.cookie-bar-rky-actions button{min-width:100%;}}
#dock-km4{left:auto !important;right:18px !important;}
@media(max-width:520px){#dock-km4{right:12px !important;}}

.sent-note-0m3{position:fixed;inset:0;z-index:10000;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,10,14,.55);backdrop-filter:blur(2px);}
.sent-note-0m3.is-open{display:flex;}
.sent-note-0m3__box{width:min(420px,100%);background:var(--site-surface,#fff);color:var(--site-text,#15181d);
  border-radius:16px;padding:32px 28px;text-align:center;box-shadow:0 24px 60px rgba(0,0,0,.28);
  animation:sent-note-0m3-in .22s ease-out;}
@keyframes sent-note-0m3-in{from{opacity:0;transform:translateY(12px) scale(.97);}to{opacity:1;transform:none;}}
.sent-note-0m3__mark{width:56px;height:56px;margin:0 auto 18px;border-radius:50%;display:flex;
  align-items:center;justify-content:center;font-size:26px;line-height:1;
  background:var(--site-accent,#2e7d5b);color:#fff;}
.sent-note-0m3__title{margin:0 0 10px;font-size:1.35rem;line-height:1.25;}
.sent-note-0m3__text{margin:0 0 24px;line-height:1.6;color:var(--site-muted,#5b6472);}
.sent-note-0m3__close{display:inline-block;cursor:pointer;border:0;border-radius:999px;
  padding:12px 30px;font:inherit;font-weight:600;background:var(--site-accent,#2e7d5b);color:#fff;}
.sent-note-0m3__close:hover{filter:brightness(1.08);}
.sent-note-0m3__close:focus-visible{outline:2px solid var(--site-text,#15181d);outline-offset:3px;}
@media(prefers-reduced-motion:reduce){.sent-note-0m3__box{animation:none;}}

*,*::before,*::after{box-sizing:border-box;}
html,body{overflow-x:hidden;overflow-x:clip;max-width:100%;}
img,svg,video,iframe,canvas{max-width:100%;}
table{max-width:100%;}

.simpleParallax{display:block;width:100%;height:100%;}
.simpleParallax img{width:100%;height:100%;object-fit:cover;}

blockquote, figure { margin-left: 0; margin-right: 0; }

figure > blockquote, figure > figcaption { margin-left: 0; margin-right: 0; }

html.no-aos [data-aos]{opacity:1 !important;transform:none !important;}

@media(prefers-reduced-motion:reduce){
  [data-aos]{opacity:1 !important;transform:none !important;transition:none !important;}
}

.legal-doc{max-width:72ch;margin:0 auto;padding:64px 20px;line-height:1.7;}
.legal-doc h1{margin:0 0 .6em;}
.legal-doc h2{margin:1.8em 0 .5em;}
.legal-doc h3{margin:1.4em 0 .4em;}
.legal-doc p,.legal-doc li{margin:0 0 .8em;}
.legal-doc ul,.legal-doc ol{padding-left:1.4em;margin:0 0 1em;}
.legal-doc table{width:100%;border-collapse:collapse;margin:0 0 1.2em;}
.legal-doc th,.legal-doc td{border:1px solid currentColor;padding:.5em;text-align:left;}

@media (max-width: 720px) {
  body { overflow-x: hidden; }
  h1, h2, h3, p, li, td { overflow-wrap: break-word; }
  
  input, select, textarea { max-width: 100%; min-width: 0; }
  
  img, svg, video, iframe, table { max-width: 100%; }
}
