:root {
  --sand: #eef4ea;
  --stone: #cfd9d2;
  --moss: #3d4c56;
  --ink: #1b1f22;
  --sun: #cfe2bf;
  --mist: #f4f7f2;
  --accent: #67963e;
  --anchor-offset: 150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(1400px 700px at 12% -10%, #eef6f2 0%, transparent 60%),
    radial-gradient(1000px 500px at 90% 0%, #e1f0e6 0%, transparent 55%),
    linear-gradient(180deg, #f6faf7, var(--sand));
  line-height: 1.6;
}

html {
  scroll-padding-top: var(--anchor-offset);
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  margin: 0 0 0.6rem 0;
  color: var(--moss);
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

section[id],
footer[id] {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 248, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.header-actions-grid .btn {
  width: 100%;
  justify-content: center;
}

.header-booking-link {
  width: 100%;
  justify-content: center;
  background: #3d4c56;
  box-shadow: 0 12px 24px rgba(61, 76, 86, 0.26);
}

.header-booking-link:hover {
  box-shadow: 0 18px 30px rgba(61, 76, 86, 0.34);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.header-social {
  display: flex;
  gap: 0.45rem;
}

.social-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(61, 76, 86, 0.28);
  background: rgba(255, 255, 255, 0.86);
  color: #3d4c56;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon.instagram svg rect,
.social-icon.instagram svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon.facebook svg path {
  fill: currentColor;
}

.social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #3d4c56;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  padding: 0.3rem 0.45rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.16s ease;
  z-index: 12;
}

.social-icon:hover {
  transform: translateY(-1px);
  background: #f3f7f3;
  border-color: rgba(61, 76, 86, 0.45);
}

.social-icon:hover::after,
.social-icon:focus-visible::after {
  opacity: 1;
}

.floating-cta-wrap {
  position: fixed;
  right: 1rem;
  z-index: 16;
}

.floating-cta-wrap-intro {
  top: 10.5rem;
}

.floating-cta-wrap-svs {
  top: 18.9rem;
  z-index: 17;
}

.floating-cta {
  display: inline-flex;
  align-items: stretch;
  gap: 0.8rem;
  padding: 0.95rem 1rem 0.95rem 1.1rem;
  border-radius: 22px 22px 22px 8px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6eaa3f 0%, #4d7d27 100%);
  box-shadow: 0 18px 36px rgba(77, 125, 39, 0.32);
  max-width: 280px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 24px 44px rgba(77, 125, 39, 0.4);
}

.floating-cta-copy {
  min-width: 0;
}

.floating-cta-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.floating-cta-title {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 0.18rem;
}

.floating-cta-sub {
  display: block;
  font-size: 0.83rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.floating-cta-arrow {
  align-self: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.floating-cta-close {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  touch-action: manipulation;
}

.floating-cta-reopen {
  display: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #6eaa3f 0%, #4d7d27 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.6rem 0.9rem;
  box-shadow: 0 14px 26px rgba(77, 125, 39, 0.28);
  cursor: pointer;
}

.floating-cta-wrap.is-collapsed .floating-cta,
.floating-cta-wrap.is-collapsed .floating-cta-close {
  display: none;
}

.floating-cta-wrap.is-collapsed .floating-cta-reopen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-cta-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
  padding: 0.2rem;
  box-shadow: inset 0 0 0 1px rgba(61, 76, 86, 0.08);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 100%;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.brand-symbol {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  width: min(520px, 80vw);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
  max-width: 100%;
  display: block;
}

.brand-sub {
  font-size: 0.9rem;
  color: #55524c;
}

.hero {
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero--image {
  background-image: url("assets/icaros01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8fbf8;
}

.hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(61, 76, 86, 0.56) 0%,
    rgba(61, 76, 86, 0.32) 52%,
    rgba(103, 150, 62, 0.2) 100%
  );
}

.hero--image h1,
.hero--image h2 {
  color: #f8fbf8;
}

.hero-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: rgba(248, 251, 248, 0.75);
  margin-bottom: 0.8rem;
}

.hero-mark {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: rgba(248, 251, 248, 0.92);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(103, 150, 62, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(103, 150, 62, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.hero--image .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero--image .btn:not(.btn-ghost) {
  background: #3d4c56;
  box-shadow: 0 12px 24px rgba(61, 76, 86, 0.34) !important;
}

.hero--image .btn:not(.btn-ghost):hover {
  box-shadow: 0 18px 30px rgba(61, 76, 86, 0.42) !important;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.btn-multiline {
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  padding: 0.58rem 0.95rem;
  min-height: 46px;
}

.btn-disabled {
  display: none !important;
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.fineprint {
  font-size: 0.85rem;
  color: #6c665a;
}

.hero--image .fineprint {
  color: rgba(248, 251, 248, 0.7);
}

.hero-card,
.card,
.mini-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(61, 76, 86, 0.14);
}

.hero-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.hero-card h2,
.hero-card h3,
.hero-card p,
.hero-card li {
  color: var(--ink);
}

.hero-card ul,
.card ul {
  padding-left: 1.2rem;
  margin: 0 0 1.2rem 0;
}

.requirements-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.requirements-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--moss);
}

.requirements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #8fc35a);
  box-shadow: 0 4px 10px rgba(103, 150, 62, 0.3);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  background: #67963e;
  color: #ffffff;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 0.6rem;
}

.hero-stats div {
  background: rgba(61, 76, 86, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  color: #f8fbf8;
  backdrop-filter: blur(6px);
}

.hero-stats span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.hero-stats strong {
  font-size: 1rem;
}

.gis-banner {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
}

.gis-banner img {
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.03);
}

.gis-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.gis-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  padding: clamp(1rem, 2.4vw, 2rem);
}

.gis-pill {
  max-width: min(420px, 46%);
  background: #67963e;
  border: 1px solid rgba(216, 239, 239, 0.4);
  color: #f4fbfb;
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 30px rgba(103, 150, 62, 0.3);
}

.gis-pill-right {
  background: #67963e;
}

.gis-pill h3 {
  color: #f4fbfb;
  margin-bottom: 0.45rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.gis-pill p {
  margin: 0;
  color: rgba(244, 251, 251, 0.92);
  line-height: 1.45;
}

.note-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  background: rgba(46, 111, 104, 0.12);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.gallery {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 36px rgba(61, 76, 86, 0.2);
  position: relative;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-open {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  filter: saturate(1.08) contrast(1.02);
}

.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(13, 71, 81, 0.08) 0%, rgba(13, 71, 81, 0.0) 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(61, 76, 86, 0.28);
}

.gallery figure:hover::after {
  opacity: 1;
}

.page-hero {
  padding: 4.5rem 0 2.2rem;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-hero--image {
  background-image: url("assets/kennenlernen-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f8fbf8;
}

.page-hero--image::before {
  background: linear-gradient(
    120deg,
    rgba(26, 33, 39, 0.74) 0%,
    rgba(26, 33, 39, 0.48) 48%,
    rgba(61, 76, 86, 0.28) 100%
  );
}

.page-hero--image h1,
.page-hero--image h2,
.page-hero--image p,
.page-hero--image .breadcrumb,
.page-hero--image .breadcrumb a,
.page-hero--image .eyebrow {
  color: #f8fbf8;
}

.page-hero--image .breadcrumb {
  color: rgba(248, 251, 248, 0.84);
}

.page-hero--image .eyebrow {
  color: rgba(248, 251, 248, 0.76);
}

.page-hero--image .lead {
  color: rgba(248, 251, 248, 0.92);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: #5b665f;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--moss);
}

.blog-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-card figure,
.blog-article-hero figure,
.blog-media-grid figure {
  margin: 0;
}

.blog-card-image,
.blog-article-hero img,
.blog-media-grid img {
  display: block;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(61, 76, 86, 0.16);
}

.blog-card-image {
  aspect-ratio: 16 / 10;
}

.blog-card-meta,
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.83rem;
  color: #55615a;
  margin-bottom: 0.7rem;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  background: rgba(103, 150, 62, 0.14);
  color: var(--moss);
  font-weight: 600;
}

.blog-excerpt {
  color: #4c5551;
}

.blog-list-actions {
  margin-top: auto;
}

.blog-article {
  padding-top: 1rem;
}

.blog-article-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.blog-article-main {
  min-width: 0;
}

.blog-article-hero img {
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}

.blog-article-logo {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: #fff;
  padding: 1.25rem;
  max-height: 420px;
}

.blog-article-main .card + .card {
  margin-top: 1.2rem;
}

.blog-article-main h2 {
  margin-bottom: 0.8rem;
}

.blog-article-main p + h2 {
  margin-top: 1.6rem;
}

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

.blog-media-grid img {
  aspect-ratio: 4 / 3;
}

.blog-aside {
  position: sticky;
  top: calc(var(--anchor-offset) + 12px);
}

.partner-highlight {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: center;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(61, 76, 86, 0.12);
}

.partner-logo-card img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
}

.partner-copy .blog-chip {
  margin-bottom: 0.8rem;
}

.partner-copy p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .partner-highlight {
    grid-template-columns: 1fr;
  }

  .partner-logo-card img {
    max-width: 180px;
  }
}

.blog-aside .card + .card {
  margin-top: 1rem;
}

.blog-mini-list {
  display: grid;
  gap: 0.85rem;
}

.blog-mini-list a {
  text-decoration: none;
}

.blog-mini-list strong {
  display: block;
  color: var(--moss);
  margin-bottom: 0.15rem;
}

.blog-mini-list span {
  color: #56615a;
  font-size: 0.92rem;
}

.blog-highlight {
  font-size: 1.06rem;
  color: #34413d;
}

.schedule-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 280px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0 0.6rem;
  scroll-snap-type: x proximity;
}

.schedule-week {
  scroll-snap-align: start;
  border: 1px solid rgba(61, 76, 86, 0.08);
}

a.schedule-week {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.schedule-week:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(61, 76, 86, 0.18);
}

.study-highlight {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  margin-top: 1.8rem;
  align-items: start;
}

.study-highlight-copy {
  min-width: 0;
}

.study-highlight-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f2 100%);
}

.study-stat-list {
  display: grid;
  gap: 0.85rem;
}

.study-stat {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(103, 150, 62, 0.08);
  border: 1px solid rgba(103, 150, 62, 0.14);
}

.study-stat strong {
  font-size: 1.35rem;
  line-height: 1.05;
  color: var(--moss);
  font-family: "Fraunces", serif;
}

.study-stat span {
  color: #46524d;
}

.schedule-week h3 {
  margin-bottom: 0.8rem;
}

.schedule-list {
  display: grid;
  gap: 0.7rem;
}

.schedule-day {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(239, 244, 238, 0.82);
}

.schedule-day.is-closed {
  opacity: 0.6;
  background: rgba(239, 241, 239, 0.66);
}

.schedule-date {
  flex: 0 0 56px;
  font-weight: 700;
  color: var(--moss);
}

.schedule-info strong {
  display: block;
  color: var(--moss);
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.schedule-info span {
  display: block;
  font-size: 0.92rem;
  color: #55615a;
}

.footer-actions .btn.btn-blog {
  background: rgba(61, 76, 86, 0.08);
  color: var(--moss);
  border: 1px solid rgba(61, 76, 86, 0.16);
  box-shadow: none;
}

.footer-actions .btn.btn-blog:hover {
  box-shadow: none;
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .floating-cta-wrap {
    right: 0.8rem;
    left: 0.8rem;
  }

  .floating-cta-wrap-intro {
    top: auto;
    bottom: 0.9rem;
  }

  .floating-cta-wrap-svs {
    top: auto;
    bottom: 8.8rem;
  }

  .floating-cta {
    max-width: none;
    border-radius: 18px;
    padding: 0.85rem 0.95rem;
  }

  .floating-cta-wrap.is-collapsed .floating-cta-reopen {
    width: auto;
    min-width: 68px;
  }

  .floating-cta-title {
    font-size: 0.95rem;
  }

  .floating-cta-sub {
    font-size: 0.8rem;
  }

  .gis-banner {
    min-height: 0;
  }
  .gis-banner img {
    width: 100%;
    height: auto;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
  }
  .gis-banner-overlay {
    position: relative !important;
    inset: auto !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0.8rem 0;
  }
  .gis-pill {
    max-width: 100%;
    margin: 0;
  }

  .blog-media-grid {
    grid-template-columns: 1fr;
  }

  .study-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-aside {
    position: static;
  }
}

@media (max-width: 520px) {
  .floating-cta-arrow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 19, 24, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

.mini-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.video-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card p {
  margin-bottom: 0.9rem;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-vr .card,
.section-vr .mini-card {
  border: 1px solid rgba(103, 150, 62, 0.22);
  box-shadow: 0 18px 36px rgba(103, 150, 62, 0.18);
}

.section-vr .mini-card h4 {
  color: var(--accent);
}

.vr-image {
  width: 100%;
  border-radius: 16px;
  margin-top: 1.2rem;
  box-shadow: 0 18px 36px rgba(61, 76, 86, 0.18);
  object-fit: cover;
}

.vr-image-mirrored {
  transform: scaleX(-1);
}

.fun-chip {
  display: inline-flex;
  margin: 0.8rem 0 1.2rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(103, 150, 62, 0.18);
  color: var(--moss);
  font-weight: 600;
  font-size: 0.88rem;
}

.fun-words {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.fun-words span {
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  color: var(--accent);
  box-shadow: 0 10px 22px rgba(103, 150, 62, 0.16);
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .fun-words span {
    opacity: 0;
    animation: popIn 0.6s ease forwards;
  }

  .fun-words span:nth-child(1) {
    animation-delay: 0.05s;
  }

  .fun-words span:nth-child(2) {
    animation-delay: 0.15s;
  }

  .fun-words span:nth-child(3) {
    animation-delay: 0.25s;
  }

  @keyframes popIn {
    from {
      opacity: 0;
      transform: translateY(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.site-footer {
  padding: 3rem 0 4rem;
  background: linear-gradient(140deg, #e0efe6 0%, #f1f6ee 60%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact a {
  color: var(--accent);
}

.footer-note {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 32px rgba(61, 76, 86, 0.12);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.fair-hero {
  padding: 4.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(61, 76, 86, 0.92) 0%, rgba(61, 76, 86, 0.86) 45%, rgba(103, 150, 62, 0.78) 100%),
    url("assets/GIS.jpg") center/cover no-repeat;
  color: #f8fbf8;
}

.fair-hero h1,
.fair-hero h2,
.fair-hero h3,
.fair-hero p,
.fair-hero li,
.fair-hero .eyebrow {
  color: #f8fbf8;
}

.fair-hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  align-items: center;
}

.fair-eyebrow {
  color: rgba(248, 251, 248, 0.8);
}

.fair-lead {
  color: rgba(248, 251, 248, 0.92);
}

.fair-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.fair-tags span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
}

.fair-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.fair-note {
  margin-top: 1rem;
  font-size: 0.94rem;
  color: rgba(248, 251, 248, 0.9);
}

.fair-split {
  align-items: start;
}

.fair-mini-grid {
  margin-top: 1.2rem;
}

.fair-form-card {
  border: 1px solid rgba(61, 76, 86, 0.12);
}

.fair-form {
  display: grid;
  gap: 0.9rem;
}

.fair-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--moss);
}

.fair-form input,
.fair-form select,
.fair-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(61, 76, 86, 0.18);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.fair-form textarea {
  resize: vertical;
}

.fair-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  font-weight: 500 !important;
  color: #374046 !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.fair-form-note {
  font-size: 0.9rem;
  color: #55524c;
}

.fair-feedback {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.fair-feedback-success {
  background: rgba(103, 150, 62, 0.16);
  color: #35542b;
  border: 1px solid rgba(103, 150, 62, 0.3);
}

.fair-feedback-error {
  background: rgba(160, 52, 52, 0.1);
  color: #7f2424;
  border: 1px solid rgba(160, 52, 52, 0.22);
}

.fair-links .card {
  max-width: 760px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 1.4rem));
  z-index: 1200;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(61, 76, 86, 0.14);
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(43, 53, 60, 0.18);
  padding: 1rem 1.1rem;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.cookie-banner__text p {
  margin: 0;
  color: #4d555a;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-settings {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1190;
  border: 1px solid rgba(61, 76, 86, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(43, 53, 60, 0.14);
  cursor: pointer;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.hero-card,
.section,
.site-footer {
  animation: fadeUp 0.8s ease both;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 700px) {
  :root {
    --anchor-offset: 190px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .header-right {
    width: 100%;
    align-items: flex-start;
  }
  .header-social {
    width: 100%;
    justify-content: flex-end;
  }
  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .header-actions .btn {
    width: 100%;
  }
  .brand-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
  }
  .brand-text {
    width: min(420px, 92vw);
    height: auto;
    max-width: 100%;
  }
  .brand-symbol {
    width: min(120px, 28vw);
    height: min(120px, 28vw);
  }
  .hero {
    padding-top: 4rem;
  }

  .fair-hero {
    padding-top: 3.8rem;
  }

  .hero--image {
    background-position: center top;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .cookie-banner {
    width: min(100vw - 1rem, 100%);
    bottom: 0.7rem;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .cookie-settings {
    left: 0.7rem;
    bottom: 0.7rem;
    padding: 0.6rem 0.85rem;
  }

  .gis-banner {
    min-height: 0;
  }
  .gis-banner img {
    width: 100%;
    height: auto;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
  }
  .gis-banner-overlay {
    position: static;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.7rem 0.8rem 0;
  }

  .gis-pill {
    max-width: 100%;
    margin: 0;
  }
}
