:root {
  --font-family: "Orbitron", sans-serif;
  --font-size-base: 18.5px;
  --line-height-base: 1.64;

  --max-w: 1580px;
  --space-x: 1.8rem;
  --space-y: 1.5rem;
  --gap: 2.13rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 1.15rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.48rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 2px 7px rgba(0,0,0,0.11);
  --shadow-md: 0 12px 22px rgba(0,0,0,0.14);
  --shadow-lg: 0 24px 46px rgba(0,0,0,0.17);

  --overlay: rgba(20, 20, 20, 0.7);
  --anim-duration: 360ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #b87333;
  --brand-contrast: #ffffff;
  --accent: #8c5a26;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f3f0;
  --neutral-300: #c4bdb5;
  --neutral-600: #6b625a;
  --neutral-800: #2e2a26;
  --neutral-900: #1a1816;

  --page-bg: #f5f3f0;
  --page-fg: #1a1816;
  --muted-bg: #e8e3dc;
  --muted-fg: #2e2a26;
  --card-bg: #ffffff;
  --card-fg: #1a1816;
  --card-border: #d4cdc4;
  --inverse-bg: #1a1816;
  --inverse-fg: #f5f3f0;
  --primary-bg: #b87333;
  --primary-fg: #ffffff;
  --primary-hover: #a0652d;
  --accent-bg: #8c5a26;
  --accent-fg: #ffffff;
  --accent-hover: #7a4e20;
  --gradient-hero-bg: linear-gradient(135deg, #1a1816 0%, #2e2a26 50%, #3d352e 100%);
  --gradient-hero-fg: #f5f3f0;
  --gradient-accent-bg: linear-gradient(135deg, #b87333 0%, #8c5a26 100%);
  --gradient-accent-fg: #ffffff;

  --ring: #b87333;

  --link: #b87333;
  --link-hover: #8c5a26;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
  background-color: var(--page-bg);
  border-bottom: 1px solid var(--muted-bg);
  width: 100%;
}

.header-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.logo {
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--page-fg);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.logo:hover {
  color: var(--link-hover);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.nav-list a {
  text-decoration: none;
  color: var(--page-fg);
  font-size: var(--font-size-md);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--link-hover);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-bg);
  color: var(--primary-fg);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  line-height: 1.4;
}

.cta-button:hover {
  background-color: var(--primary-hover);
  color: var(--primary-fg);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 100;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--page-fg);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--page-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: var(--font-size-h3);
  }

  .cta-button {
    display: none;
  }
}

footer {
    background-color: #1e2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-column {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0c4de;
    margin: 0;
  }
  .footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #3a4a5e;
    padding-bottom: 0.4rem;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-column ul li {
    margin-bottom: 0.4rem;
  }
  .footer-column ul li a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-section p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .contact-section a {
    color: #b0c4de;
    text-decoration: none;
  }
  .contact-section a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    max-width: 1200px;
    margin: 1.5rem auto 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #3a4a5e;
    font-size: 0.8rem;
    color: #8fa3b8;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0.5rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: #8fa3b8;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-disclaimer, .footer-bottom {
      text-align: center;
    }
  }

.cookies {
    position: fixed;
    left: var(--space-x);
    right: var(--space-x);
    bottom: var(--space-y);
    z-index: 1200;
}

.cookies .card {
    margin-left: auto;
    max-width: 440px;
    border-radius: var(--radius-xl);
    padding: var(--space-y) var(--space-x);
    background: var(--primary-bg);
    color: var(--primary-fg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(148, 163, 184, .35);
}

.cookies .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cookies .top strong {
    font-size: 16px;
}

.cookies .top button {
    border: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 13px;
    cursor: pointer;
}

.cookies p {
    margin: 10px 0 0;
}

.cookies .actions {
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.cookies .actions button {
    flex: 1;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(148, 163, 184, .45);
    padding: 9px 12px;
    color: var(--neutral-0);
    background: rgba(51, 65, 85, .65);
    cursor: pointer;
}

.cookies .actions button[data-choice='accept'] {
    color: var(--page-bg);
    border-color: transparent;
    color: var(--page-fg);
    font-weight: 700;
}

@media (max-width: 760px) {
    .cookies .card {
        max-width: none;
    }
}

.intro-statloom{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--page-bg);color:var(--page-fg);}
.intro-statloom .statloom-wrap{max-width:var(--max-w);margin:0 auto;}.intro-statloom .header{display:grid;grid-template-columns:1.15fr .85fr;gap:var(--gap);align-items:end;margin-bottom:1rem;}.intro-statloom h1{margin:0;font-size:clamp(2.3rem,5.8vw,5.1rem);line-height:.96;}.intro-statloom .header p{margin:0;color:var(--neutral-600);}
.intro-statloom .statloom-list{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.7rem;}.intro-statloom .article{background:var(--card-bg);border:1px solid var(--card-border);border-radius:var(--radius-lg);padding:1rem;min-height:8rem;color:var(--card-fg);}.intro-statloom strong{display:block;font-size:1.6rem;}.intro-statloom span{display:block;margin-top:1.2rem;color:var(--neutral-600);}
@media (max-width:820px){.intro-statloom .header,.intro-statloom .statloom-list{grid-template-columns:1fr;}}

.who-we-are{padding:clamp(54px,8vw,98px) clamp(16px,4vw,40px);background:var(--accent-bg);color:var(--accent-fg);}

    .who-we-are .wrap{max-width:var(--max-w);margin:0 auto;}

    .who-we-are .head{margin-bottom:16px;}

    .who-we-are .head span{display:inline-block;padding:4px 10px;border-radius:999px;background:color-mix(in srgb, currentColor 30%, transparent);}

    .who-we-are .head h2{margin:8px 0;font-size:clamp(30px,5vw,50px);}

    .who-we-are .head p{margin:0;max-width:72ch;opacity:.9;}

    .who-we-are .list{display:grid;gap:12px;}

    .who-we-are .list article{display:grid;grid-template-columns:90px 1fr;gap:12px;background:color-mix(in srgb, currentColor 35%, transparent);border-radius:var(--radius-lg);padding:12px;}

    .who-we-are .meta{display:grid;gap:8px;justify-items:center;}

    .who-we-are .meta b{width:42px;height:42px;border-radius:12px;display:grid;place-items:center;background:var(--primary-bg);color:var(--primary-fg);}

    .who-we-are .meta i{font-style:normal;font-size:1.5rem;}

    .who-we-are .list h3{margin:0;}

    .who-we-are .list p{margin:7px 0;}

    .who-we-are .list em{font-style:normal;font-weight:700;}

    @media (max-width: 640px){.who-we-are .list article{grid-template-columns:1fr;}
    }

.scope{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--muted-bg);color:var(--muted-fg);}
.scope .grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 1.25fr;gap:var(--gap);}
.scope .cap-intro{padding:1.2rem;border-radius:var(--radius-xl);background:var(--card-bg);border:1px solid var(--card-border);color:var(--card-fg);}
.scope .cap-intro h2{margin:0;font-size:clamp(1.8rem,3.2vw,2.5rem);}
.scope .cap-intro p{margin:.55rem 0 1rem;}
.scope .cap-intro a{display:inline-block;padding:.6rem .95rem;border-radius:var(--radius-md);background:var(--primary-bg);color:var(--primary-fg);text-decoration:none;}
.scope .cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem;}
.scope article{padding:1rem;border-radius:var(--radius-lg);background:linear-gradient(180deg,var(--card-bg),var(--muted-bg));border:1px solid var(--card-border);color:var(--card-fg);}
.scope .index{margin:0 0 .35rem;font-weight:700;}
.scope h3{margin:0 0 .35rem;}
.scope article p{margin:0;}
@media (max-width:900px){.scope .grid{grid-template-columns:1fr;}.scope .cards{grid-template-columns:1fr;}}

.tpl-variant-next-step-colored-v5{background-image:linear-gradient(135deg,color-mix(in srgb,currentColor 6%,transparent),transparent 48%);}
.tpl-variant-next-step-colored-v5 .grid,.tpl-variant-next-step-colored-v5 .cards,.tpl-variant-next-step-colored-v5 .list,.tpl-variant-next-step-colored-v5 .stack{gap:calc(var(--gap,1rem) * 1.08);}
.tpl-variant-next-step-colored-v5 article:nth-child(even),.tpl-variant-next-step-colored-v5 .card:nth-child(even),.tpl-variant-next-step-colored-v5 .item:nth-child(even){transform:translateY(0.35rem);}
.move{padding:clamp(3.6rem,8vw,6.2rem) var(--space-x);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);}

    .move .wrap{max-width:58rem;margin:0 auto;text-align:center;}

    .move .banner p{margin:0;}

    .move .banner h2{margin:.5rem 0 0;font-size:clamp(2.1rem,4vw,3.1rem);}

    .move .fan{margin-top:1.15rem;display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;}

    .move .fan a{display:block;padding:.9rem 1rem;min-width:10rem;border-radius:var(--radius-lg);background:var(--accent-bg);border:1px solid color-mix(in srgb, currentColor 18%, transparent);color:var(--accent-fg);text-decoration:none;}

    .move .fan span{display:block;margin-top:.3rem;}

    .move .tail{margin-top:1rem;}

    .move .wrap > a{display:inline-flex;margin-top:1rem;min-height:2.85rem;align-items:center;justify-content:center;padding:0 1rem;border-radius:999px;background:var(--card-bg);color:var(--card-fg);text-decoration:none;}

.suggestions{padding:calc(var(--space-y)*2.65) var(--space-x);color:var(--page-fg);background:var(--page-bg);}
.suggestions .grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem;}
.suggestions .main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--card-border);background:var(--card-bg);color:var(--card-fg);}
.suggestions .main h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem);}
.suggestions .main p{margin:.38rem 0 0;}
.suggestions .item{grid-column:span 4;padding:.9rem;border-radius:var(--radius-md);border:1px solid var(--card-border);background:var(--muted-bg);color:var(--muted-fg);}
.suggestions .item:nth-child(odd){background:var(--card-bg);color:var(--card-fg);}
.suggestions h3{margin:0 0 .22rem;font-size:1rem;}
.suggestions .item p{margin:0 0 .55rem;}
.suggestions a{text-decoration:none;font-weight:700;}
@media (max-width:920px){.suggestions .item{grid-column:span 6;}}@media (max-width:620px){.suggestions .item{grid-column:1/-1;}}

.tip-glowbar{padding:calc(var(--space-y)*2.2) var(--space-x);background:var(--accent-bg);color:var(--accent-fg)}
.tip-glowbar .glowbar-shell{max-width:var(--max-w);margin:0 auto;border-left:4px solid var(--brand);padding:1rem 0 1rem 1.2rem}
.tip-glowbar h2{margin:0;color:var(--accent-fg);font-size:clamp(1.7rem,3.4vw,2.6rem);line-height:1.08}
.tip-glowbar p{margin:.75rem 0 0;color:var(--accent-fg);line-height:1.55}
@media (max-width:620px){.tip-glowbar .glowbar-shell{padding-left:.9rem}}

.our-story-record{background:var(--page-bg);color:var(--page-fg);padding:var(--space-section-y) var(--space-section-x)}
.our-story-record .record{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:var(--space-block);align-items:end}
.our-story-record h2,.our-story-record p{margin:0}.our-story-record h2{font-size:var(--font-size-h2);line-height:1.05;margin-bottom:var(--space-card)}
.our-story-record .facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap)}
.our-story-record .facts div{background:var(--card-bg);color:var(--card-fg);border:1px solid var(--card-border);border-radius:var(--radius-lg);padding:var(--space-card);display:grid;gap:calc(var(--space-card)*.35)}
.our-story-record strong{font-size:var(--font-size-h3)}.our-story-record span{color:var(--muted-fg);font-size:var(--font-size-sm)}
@media(max-width:760px){.our-story-record .record,.our-story-record .facts{grid-template-columns:1fr}}

.roadmap {
    padding: calc(var(--space-y) * 2.9) var(--space-x);
    background: var(--inverse-bg);
    color: var(--inverse-fg);
  }
  .roadmap .shell {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: var(--gap);
  }
  .roadmap h2 {
    margin: 0;
    font-size: clamp(1.85rem, 3.6vw, 2.8rem);
    line-height: 1.1;
  }
  .roadmap .sub {
    margin: .35rem 0 0;
    opacity: .9;
  }
  .roadmap article,
  .roadmap li {
    padding: .85rem;
    border-radius: var(--radius-sm);
    background: var(--accent-bg);
    border: 1px solid var(--btn-ghost-bg-hover);
    list-style: none;
    color: var(--accent-fg);
  }
  .roadmap p {
    margin: 0;
  }
  .roadmap a {
    text-decoration: none;
    color: inherit;
    font-weight: 700;
  }
  .roadmap .pulse {
    margin-top: .8rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: var(--accent-bg);
    border: 1px solid var(--btn-ghost-bg-hover);
    animation: timeline-u5Pulse 2.8s ease-in-out infinite;
    color: var(--accent-fg);
  }
  @keyframes timeline-u5Pulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.01);
    }
  }
  @media (max-width:860px) {
    .roadmap .split,
    .roadmap .media,
    .roadmap .grid,
    .roadmap .cards,
    .roadmap .bento,
    .roadmap .foot {
      grid-template-columns: 1fr;
    }
  }

.tpl-variant-identity-light-v18{background-image:linear-gradient(135deg,color-mix(in srgb,currentColor 6%,transparent),transparent 48%);}
.tpl-variant-identity-light-v18 .grid,.tpl-variant-identity-light-v18 .cards,.tpl-variant-identity-light-v18 .list,.tpl-variant-identity-light-v18 .stack{gap:calc(var(--gap,1rem) * 1.08);}
.tpl-variant-identity-light-v18 article:nth-child(even),.tpl-variant-identity-light-v18 .card:nth-child(even),.tpl-variant-identity-light-v18 .item:nth-child(even){transform:translateY(0.35rem);}
.who-we-are{padding:clamp(50px,7vw,90px) clamp(16px,4vw,36px);background:var(--muted-bg);color:var(--muted-fg);}

    .who-we-are .wrap{max-width:var(--max-w);margin:0 auto;}

    .who-we-are .head{text-align:center;margin-bottom:16px;}

    .who-we-are .head p{margin:0;}

    .who-we-are .head h2{margin:7px 0;font-size:clamp(28px,4vw,44px);}

    .who-we-are .head span{}

    .who-we-are .grid{display:grid;gap:var(--gap);grid-template-columns:repeat(auto-fit,minmax(250px,1fr));}

    .who-we-are .grid article{border:1px solid var(--card-border);border-radius:var(--radius-lg);background:var(--muted-bg);padding:var(--space-y) var(--space-x);color:var(--muted-fg);}

    .who-we-are .meta{display:flex;align-items:center;gap:8px;margin-bottom:8px;}

    .who-we-are .meta i{font-style:normal;font-size:1.2rem;}

    .who-we-are .meta strong{}

    .who-we-are .grid h3{margin:0;}

    .who-we-are .grid p{margin:7px 0;}

    .who-we-are .grid blockquote{margin:0;padding:8px 10px;border-left:3px solid var(--primary-bg);background:var(--muted-bg);color:var(--muted-fg);}

.notes{padding:clamp(20px,3vw,44px);background:var(--muted-bg);color:var(--muted-fg);}.notes .wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:12px;}.notes .left p{margin:8px 0 0;}.notes .right{display:grid;gap:10px;}.notes .right article{border:1px solid var(--card-border);border-radius:var(--radius-md);background:var(--page-bg);padding:12px;color:var(--page-fg);}.notes .right span{display:inline-flex;font-size:.84rem;}.notes .right h3{margin:6px 0;}.notes .right p{margin:0;}@media(max-width:780px){.notes .wrap{grid-template-columns:1fr;}}

.plans-overview-cardmatrix{background:var(--inverse-bg);color:var(--inverse-fg);padding:var(--space-section-y) var(--space-section-x)}
.plans-overview-cardmatrix .matrix{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--space-block)}.plans-overview-cardmatrix .intro{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:var(--gap);align-items:end}
.plans-overview-cardmatrix h2,.plans-overview-cardmatrix p{margin:0}.plans-overview-cardmatrix h2{font-size:var(--font-size-h1);line-height:.96}.plans-overview-cardmatrix .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap)}
.plans-overview-cardmatrix .card{background:var(--card-bg);color:var(--card-fg);border:1px solid var(--card-border);border-radius:var(--radius-xl);padding:var(--space-card);display:grid;gap:var(--space-card);min-height:calc(var(--space-block)*3.6);animation:plans-overview-cardmatrix-in calc(var(--anim-duration)*2) var(--anim-ease) both}
.plans-overview-cardmatrix .card:nth-child(2){animation-delay:calc(var(--anim-duration)*.25)}.plans-overview-cardmatrix strong{font-size:var(--font-size-h3)}.plans-overview-cardmatrix a{align-self:end;color:var(--link);text-underline-offset:.2em}
@keyframes plans-overview-cardmatrix-in{from{opacity:0;transform:translateY(calc(var(--motion-distance)*.2))}to{opacity:1;transform:translateY(0)}}
@media(max-width:820px){.plans-overview-cardmatrix .intro,.plans-overview-cardmatrix .cards{grid-template-columns:1fr}}

.featured-cairn{padding:calc(var(--space-y)*2.8) var(--space-x);background:var(--page-bg);color:var(--page-fg)}
.featured-cairn .cairn-wrap{max-width:var(--max-w);margin:0 auto}
.featured-cairn h2{margin:0 0 1.2rem;color:var(--page-fg);font-size:clamp(1.9rem,4vw,3.1rem);line-height:1.05}
.featured-cairn .cairn-list{display:flex;gap:.85rem;align-items:stretch;overflow:auto;padding-bottom:.25rem}
.featured-cairn .cairn-card{flex:0 0 min(24rem,82vw);background:var(--card-bg);color:var(--card-fg);border:1px solid var(--card-border);border-radius:var(--radius-xl);padding:1rem;box-shadow:var(--shadow-sm)}
.featured-cairn h3{margin:0;color:var(--card-fg);font-size:var(--font-size-h3);line-height:1.15}
.featured-cairn p{margin:.65rem 0 0;color:var(--card-fg);opacity:.82;line-height:1.45}

.offerings{padding:calc(var(--space-y)*3) var(--space-x);background:var(--inverse-bg);color:var(--inverse-fg);}
.offerings .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap);}
.offerings .banner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--gap);padding:1rem;border-radius:var(--radius-lg);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);}
.offerings h2{margin:0;font-size:clamp(1.7rem,3.3vw,2.5rem);}
.offerings .banner a{padding:.56rem .82rem;border-radius:var(--radius-sm);text-decoration:none;background:var(--card-bg);color:var(--card-fg);font-weight:700;}
.offerings .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);padding:0;margin:0;list-style:none;}
.offerings li{padding:1rem;border-radius:var(--radius-md);background:var(--accent-bg);color:var(--accent-fg);}
.offerings h3{margin:0 0 .45rem;}
.offerings p{margin:0;opacity:.9;}
.offerings small{display:block;margin-top:.5rem;font-weight:700;}
@media (max-width:980px){.offerings .cards{grid-template-columns:repeat(2,minmax(0,1fr));}}@media (max-width:640px){.offerings .cards{grid-template-columns:1fr;}}

.faq-minimaltoggle {
  background: var(--muted-bg);
  color: var(--muted-fg);
  padding: var(--space-section-y) var(--space-section-x);
}
.faq-minimaltoggle .toggle {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: var(--space-block);
}
.faq-minimaltoggle .top {
  display: grid;
  gap: var(--space-card);
  align-content: start;
}
.faq-minimaltoggle h2,
.faq-minimaltoggle p {
  margin: 0;
}
.faq-minimaltoggle h2 {
  font-size: var(--font-size-h2);
  line-height: 1.05;
}
.faq-minimaltoggle .items {
  display: grid;
  gap: calc(var(--space-card) * .6);
}
.faq-minimaltoggle .item {
  background: var(--page-bg);
  color: var(--page-fg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
}
.faq-minimaltoggle button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: var(--space-card);
  text-align: left;
  font: inherit;
  font-size: var(--font-size-lg);
  cursor: pointer;
}
.faq-minimaltoggle .item p {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-card);
  transition: max-height calc(var(--anim-duration) * 2) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
}
.faq-minimaltoggle .item.is-open p {
  max-height: calc(var(--space-block) * 4);
  padding-bottom: var(--space-card);
}
@media (max-width: 760px) {
  .faq-minimaltoggle .toggle {
    grid-template-columns: 1fr;
  }
}

.contacts-crestpath{padding:calc(var(--space-y)*3.1) var(--space-x);background:var(--primary-bg);color:var(--primary-fg)}
.contacts-crestpath .crestpath-wrap{max-width:920px;margin:0 auto}
.contacts-crestpath .crestpath-top{display:flex;justify-content:space-between;gap:var(--gap);align-items:flex-end;margin-bottom:1rem}
.contacts-crestpath h2{margin:0;max-width:42rem;color:var(--primary-fg);font-size:clamp(2rem,4.2vw,3.4rem);line-height:1.02}
.contacts-crestpath .crestpath-top p{margin:0;max-width:27rem;color:var(--primary-fg)}
.contacts-crestpath .crestpath-card{background:var(--card-bg);color:var(--card-fg);border-radius:var(--radius-xl);padding:.25rem 1rem;box-shadow:var(--shadow-md)}
.contacts-crestpath .crestpath-card>a,.contacts-crestpath .crestpath-card>div{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0;color:var(--card-fg);text-decoration:none}
.contacts-crestpath .crestpath-card>*+*{border-top:1px solid var(--card-border)}
.contacts-crestpath span{font-size:.82rem;color:var(--neutral-600)}
.contacts-crestpath strong,.contacts-crestpath p{max-width:35rem;margin:0;text-align:right;color:var(--card-fg);line-height:1.32;overflow-wrap:anywhere}
.contacts-crestpath .crestpath-more{display:flex;flex-wrap:wrap;gap:.55rem;margin-top:.85rem}
.contacts-crestpath .crestpath-more a{color:var(--primary-fg);text-decoration:none;border:1px solid rgba(255,255,255,.26);border-radius:var(--radius-md);padding:.58rem .72rem}
.contacts-crestpath .crestpath-more span{display:inline;color:var(--primary-fg);opacity:.72;margin-right:.25rem}
@media (max-width:760px){.contacts-crestpath .crestpath-top,.contacts-crestpath .crestpath-card>a,.contacts-crestpath .crestpath-card>div{display:block}.contacts-crestpath strong,.contacts-crestpath p{text-align:left;display:block;margin-top:.25rem}}

.inquiry{padding:calc(var(--space-y)*2.7) var(--space-x);color:var(--page-fg);background:var(--page-bg);}
.inquiry .bounds{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem;}
.inquiry .copy{display:flex;justify-content:space-between;gap:1rem;align-items:end;}
.inquiry h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem);}
.inquiry .copy p{margin:0;max-width:55ch;}
.inquiry .frame{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.6rem;padding:.9rem;border-radius:var(--radius-xl);background:var(--muted-bg);border:1px solid var(--card-border);color:var(--muted-fg);}
.inquiry label{grid-column:span 2;display:grid;gap:.22rem;padding:.65rem;border:1px solid var(--card-border);border-radius:var(--radius-md);background:var(--card-bg);color:var(--card-fg);}
.inquiry label span{font-size:.8rem;font-weight:700;}
.inquiry input,.inquiry textarea{width:100%;padding:.64rem .72rem;border:1px solid var(--card-border);border-radius:var(--radius-sm);font:inherit;background:var(--card-bg);color:var(--card-fg);}
.inquiry .wide{grid-column:1/-1;}
.inquiry textarea{min-height:130px;resize:vertical;}
.inquiry button{grid-column:1/-1;justify-self:start;padding:.82rem 1.15rem;border-radius:var(--radius-md);border:0;background:var(--primary-bg);color:var(--primary-fg);font-weight:700;cursor:pointer;}
@keyframes frmPulse{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ring) 0%,transparent);}50%{box-shadow:0 0 0 6px color-mix(in srgb,var(--ring) 18%,transparent);}}
.inquiry button:focus-visible{animation:frmPulse .8s ease-out 1;}
@media (max-width:900px){.inquiry .copy{display:grid;}.inquiry .frame{grid-template-columns:1fr;}.inquiry label{grid-column:1/-1;}}

.updates{padding:clamp(56px,8vw,96px) clamp(16px,3vw,36px);background:linear-gradient(160deg,var(--primary-bg),var(--primary-hover));color:var(--primary-fg);}

    .updates .wrap{max-width:980px;margin:0 auto;}

    .updates .header{margin-bottom:12px;}

    .updates h2{margin:0;font-size:clamp(28px,4vw,40px);}

    .updates .header p{margin:10px 0 0;opacity:.9;}

    .updates .stream{display:grid;grid-template-columns:repeat(auto-fit,minmax(380px,1fr));gap:8px;}

    .updates .chip{text-decoration:none;border:1px solid color-mix(in srgb, currentColor 35%, transparent);border-radius:999px;background:color-mix(in srgb, currentColor 12%, transparent);padding:10px 12px;display:flex;gap:8px;align-items:center;justify-content:space-between;}

    .updates .chip em{font-style:normal;opacity:.85;}

    .updates .foot{margin-top:12px;}

    .updates .foot a{text-decoration:none;border:1px solid color-mix(in srgb, currentColor 45%, transparent);border-radius:var(--radius-md);padding:10px 14px;display:inline-block;}

.panel-map{padding:clamp(3.1rem,7vw,5.7rem) var(--space-x);background:var(--muted-bg);color:var(--muted-fg);}

    .panel-map .wrap{max-width:var(--max-w);margin:0 auto;}

    .panel-map .head{text-align:center;margin-bottom:1rem;}

    .panel-map .head p{margin:0;}

    .panel-map .head h2{margin:.5rem 0 0;font-size:clamp(2rem,4vw,3rem);}

    .panel-map .frame{overflow:hidden;border-radius:var(--radius-xl);border:1px solid var(--card-border);box-shadow:var(--shadow-sm);}

    .panel-map .frame iframe{display:block;width:100%;height:24rem;}

    .panel-map .grid{margin-top:1rem;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--gap);}

    .panel-map .grid article{padding:.95rem;border-radius:var(--radius-md);background:var(--card-bg);border:1px solid var(--card-border);color:var(--card-fg);}

    .panel-map .grid p{margin:.35rem 0 0;}

    @media (max-width: 640px){.panel-map .grid{grid-template-columns:1fr;}
    }

.privacy-notes{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);} .privacy-notes .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap);} .privacy-notes h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1;} .privacy-notes .sub{margin:.35rem 0 0;opacity:.9;} .privacy-notes article,.privacy-notes li{padding:.85rem;border-radius:var(--radius-sm);background:var(--accent-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none;color:var(--accent-fg);} .privacy-notes p{margin:0;} .privacy-notes a{text-decoration:none;color:inherit;font-weight:700;} .privacy-notes .table{display:grid;gap:.5rem;} .privacy-notes .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem;} .privacy-notes .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--accent-bg);border:1px solid var(--btn-ghost-bg-hover);color:var(--accent-fg);} @media (max-width:860px){.privacy-notes .split,.privacy-notes .media,.privacy-notes .grid,.privacy-notes .cards,.privacy-notes .bento,.privacy-notes .foot{grid-template-columns:1fr;}}

.conditions{padding:clamp(56px,8vw,96px) clamp(16px,4vw,36px);background:linear-gradient(180deg,var(--accent-bg),var(--card-bg));color:var(--accent-fg);}

    .conditions .wrap{max-width:900px;margin:0 auto;}

    .conditions .section-head{margin-bottom:14px;}

    .conditions h2{margin:0;font-size:clamp(28px,4vw,40px);}

    .conditions .section-head p{margin:10px 0 0;}

    .conditions details{border:1px solid var(--card-border);border-radius:var(--radius-md);background:var(--card-bg);padding:10px 12px;margin-bottom:10px;color:var(--card-fg);}

    .conditions summary{cursor:pointer;font-weight:700;}

    .conditions h4{margin:10px 0 6px;}

    .conditions p,.conditions li{}

.confirmation{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero-bg);color:var(--gradient-hero-fg);}
.confirmation .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap);}
.confirmation h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1;}
.confirmation .sub{margin:.35rem 0 0;opacity:.9;}
.confirmation article,.confirmation li{padding:.85rem;border-radius:var(--radius-sm);background:var(--accent-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none;color:var(--accent-fg);}
.confirmation p{margin:0;}
.confirmation a{text-decoration:none;color:inherit;font-weight:700;}
.confirmation .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem;}
.confirmation .bento article:nth-child(1){grid-column:span 6;}
.confirmation .bento article:nth-child(2){grid-column:span 3;}
.confirmation .bento article:nth-child(3){grid-column:span 3;}
.confirmation .bento article:nth-child(4){grid-column:span 4;}
.confirmation .bento article:nth-child(5){grid-column:span 4;}
.confirmation .bento article:nth-child(6){grid-column:span 4;}
.confirmation article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease);}
.confirmation article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
@media (max-width:860px){.confirmation .split,.confirmation .media,.confirmation .grid,.confirmation .cards,.confirmation .bento,.confirmation .foot{grid-template-columns:1fr;}}

.unavailable{padding:clamp(56px,10vw,112px) 20px;background:repeating-linear-gradient(45deg,var(--muted-bg),var(--muted-bg) 14px,var(--page-bg) 14px,var(--page-bg) 28px);color:var(--muted-fg);}

    .unavailable .inner{max-width:700px;margin:0 auto;text-align:center;padding:clamp(26px,4vw,42px);background:var(--card-bg);border-radius:var(--radius-xl);box-shadow:var(--shadow-md);color:var(--card-fg);}

    .unavailable h1{margin:0;font-size:clamp(32px,6vw,56px);}

    .unavailable p{margin:10px 0 0;}

    .unavailable a{display:inline-block;margin-top:16px;text-decoration:none;border-bottom:2px solid var(--link);padding-bottom:2px;}