:root {
  --color-background: #fff9f4;
  --color-surface: rgba(255, 255, 255, 0.76);
  --color-primary: #d66f5c;
  --color-primary-dark: #b85a49;
  --color-text: #3e2b24;
  --color-muted: rgba(102, 84, 76, 0.68);
  --color-accent-1: rgba(255, 210, 196, 0.6);
  --color-accent-2: rgba(199, 227, 207, 0.55);
  --shadow-soft: 0 26px 70px rgba(179, 137, 118, 0.28);
  --radius-large: 24px;
  --radius-medium: 18px;
  --radius-small: 11px;
  --max-width: 100%;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(110vw 110vw at 6% 10%, rgba(255, 210, 196, 0.45), transparent 65%),
    radial-gradient(90vw 90vw at 92% 5%, rgba(199, 227, 207, 0.4), transparent 72%),
    radial-gradient(130vw 120vw at 50% 100%, rgba(255, 240, 214, 0.45), transparent 75%),
    var(--color-background);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
  color: var(--color-primary-dark);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) clamp(16px, 4vw, 32px) 48px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}

body.wow-enabled .wow-item {
  transition-property: opacity, transform;
  transition-duration: var(--wow-duration, 0.7s);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--wow-delay, 0s);
  will-change: opacity, transform;
}

body.wow-enabled .wow-item:not(.is-visible) {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  pointer-events: none;
}

body.wow-enabled .wow-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

body.wow-enabled .wow-item[data-wow-variant="fade"]:not(.is-visible) {
  transform: translateY(0) scale(1);
}

body.wow-enabled .wow-item[data-wow-variant="rise"]:not(.is-visible) {
  transform: translateY(48px) scale(0.98);
}

body.wow-enabled .wow-item[data-wow-variant="zoom"]:not(.is-visible) {
  transform: scale(0.92);
}

body.wow-reduced-motion .wow-item {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  pointer-events: auto !important;
}

.site-header {
  position: sticky;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(255, 236, 228, 0.7));
  box-shadow: 0 18px 34px rgba(179, 137, 118, 0.25);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 210, 196, 0.4);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: clamp(44px, 5vw, 60px);
  width: auto;
  display: block;
}

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

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__list a,
.site-nav__submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: rgba(70, 48, 41, 0.82);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav__submenu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.site-nav__list a:hover,
.site-nav__list a:focus,
.site-nav__submenu-toggle:hover,
.site-nav__submenu-toggle:focus {
  color: #3e2b24;
  background: linear-gradient(120deg, rgba(255, 210, 196, 0.5), rgba(199, 227, 207, 0.45));
  box-shadow: 0 10px 20px rgba(179, 137, 118, 0.25);
}

.site-nav__submenu-icon {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.site-nav__item--has-submenu.is-open .site-nav__submenu-icon {
  transform: rotate(-180deg);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 14rem;
  margin: 0;
  padding: 0.75rem;
  list-style: none;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 236, 228, 0.9));
  border: 1px solid rgba(255, 210, 196, 0.55);
  border-radius: 16px;
  box-shadow: 0 20px 35px rgba(179, 137, 118, 0.25);
  z-index: 20;
}

.site-nav__item--has-submenu.is-open .site-nav__submenu {
  display: flex;
}

.site-nav__submenu li {
  width: 100%;
}

.site-nav__submenu a {
  width: 100%;
  justify-content: flex-start;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 210, 196, 0.45);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(70, 48, 41, 0.82);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav__toggle:hover,
.site-nav__toggle:focus {
  background: linear-gradient(120deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
  border-color: rgba(255, 210, 196, 0.75);
  color: #3e2b24;
  box-shadow: 0 12px 24px rgba(179, 137, 118, 0.25);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(255, 236, 228, 0.8));
    border: 1px solid rgba(255, 210, 196, 0.55);
    border-radius: 20px;
    box-shadow: 0 28px 45px rgba(179, 137, 118, 0.3);
    padding: 1rem;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.65rem;
    width: 100%;
  }

  .site-nav__item {
    width: 100%;
  }

  .site-nav__list a,
  .site-nav__submenu-toggle {
    width: 100%;
    padding: 0.4rem 0.55rem;
    justify-content: center;
  }

  .site-nav__item--has-submenu {
    width: 100%;
  }

  .site-nav__submenu {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.5rem;
    border-radius: 14px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 210, 196, 0.35);
  }
}

.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(12px, 4vw, 32px) clamp(32px, 5vw, 48px);
}

.site-footer__inner {
  width: 100%;
  max-width: var(--max-width);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 228, 0.82));
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 210, 196, 0.5);
  text-align: center;
  padding: clamp(20px, 4vw, 28px);
  color: rgba(70, 48, 41, 0.75);
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(20px);
}

.site-footer a {
  font-weight: 600;
}

.site-footer__note {
  color: var(--color-text);
}

.site-footer__contact {
  font-size: 0.95rem;
}

.site-footer__signature {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(70, 48, 41, 0.6);
}

.site-footer__signature a {
  color: inherit;
  font-weight: 600;
}


.hero {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.8));
  border-radius: var(--radius-large);
  padding: clamp(32px, 5vw, 48px) clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 24px);
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 210, 196, 0.45);
  backdrop-filter: blur(22px);
}

.hero--split {
  display: grid;
  gap: clamp(22px, 5vw, 32px);
  align-items: center;
  text-align: left;
}

@media (min-width: 880px) {
  .hero--split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 768px) {
  .hero__visual {
    display: none;
  }
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-medium);
  background: radial-gradient(circle at top left, rgba(255, 210, 196, 0.5), rgba(255, 244, 231, 0.8));
  padding: clamp(18px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 24px 45px rgba(179, 137, 118, 0.28);
  backdrop-filter: blur(18px);
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-texture.svg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 210, 196, 0.6);
  pointer-events: none;
}

.hero__video-frame {
  width: min(300px, 40vw);
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 38px rgba(49, 32, 14, 0.25);
  position: relative;
}

.hero__video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

.hero__video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__frame-fallback {
  display: none;
}

.hero__frame-badge {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

.hero--wow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 12%, rgba(255, 210, 196, 0.4), transparent 65%),
              radial-gradient(circle at 6% 0%, rgba(199, 227, 207, 0.35), transparent 70%);
  pointer-events: none;
}

.section-card--tinted {
  background: linear-gradient(160deg, rgba(255, 236, 228, 0.95), rgba(255, 252, 247, 0.85));
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(16px, 4vw, 22px);
}

.highlight-card {
  border-radius: var(--radius-medium);
  padding: clamp(18px, 3vw, 24px);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 160px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 236, 228, 0.78));
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 20px 42px rgba(179, 137, 118, 0.28);
  backdrop-filter: blur(18px);
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.highlight-card p {
  margin: 0;
  color: inherit;
}

.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-texture.svg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

.highlight-card > * {
  position: relative;
  z-index: 1;
}

.highlight-card--sunset {
  background: linear-gradient(145deg, rgba(255, 210, 196, 0.65), rgba(255, 239, 224, 0.5));
  border-color: rgba(255, 210, 196, 0.6);
}
.highlight-card--blush {
  background: linear-gradient(145deg, rgba(255, 228, 234, 0.7), rgba(255, 210, 196, 0.55));
  border-color: rgba(255, 208, 218, 0.55);
}
.highlight-card--mint {
  background: linear-gradient(145deg, rgba(214, 240, 223, 0.65), rgba(255, 244, 228, 0.5));
  border-color: rgba(199, 227, 207, 0.55);
}
.highlight-card--citrus {
  background: linear-gradient(145deg, rgba(255, 238, 204, 0.7), rgba(255, 224, 204, 0.5));
  border-color: rgba(255, 224, 204, 0.55);
}

.wow-ribbon {
  margin: -12px 0 clamp(24px, 4vw, 36px);
}

.wow-ribbon__inner {
  background: linear-gradient(120deg, rgba(255, 210, 196, 0.55), rgba(255, 240, 214, 0.5));
  border: 1px solid rgba(255, 210, 196, 0.55);
  border-radius: 999px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #3e2b24;
  font-weight: 600;
}

.wow-ribbon__inner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(255, 224, 212, 0.7), rgba(255, 240, 214, 0.6));
}

.page--jason .page-main {
  max-width: 1100px;
  padding-top: clamp(48px, 10vw, 96px);
}

.founder-hero {
  display: grid;
  gap: 1.4rem;
  padding: clamp(36px, 8vw, 60px);
  border-radius: var(--radius-large);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255, 210, 196, 0.5), transparent 72%),
    radial-gradient(110% 110% at 100% 120%, rgba(199, 227, 207, 0.42), transparent 70%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.9));
  box-shadow: 0 30px 55px rgba(179, 137, 118, 0.28);
  position: relative;
}

.founder-hero::after {
  content: '';
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background: radial-gradient(45% 45% at 60% 35%, rgba(214, 111, 92, 0.22), transparent 70%);
  mix-blend-mode: screen;
}

.founder-hero__intro {
  position: relative;
  z-index: 1;
}

.founder-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 111, 92, 0.35);
  background: rgba(214, 111, 92, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(122, 52, 40, 0.85);
  font-weight: 600;
}

.founder-hero h1 {
  margin: 0.4rem 0 0.6rem;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0.015em;
}

.founder-hero p {
  margin: 0;
  max-width: 70ch;
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.project-section {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 6vw, 48px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 4vw, 32px);
}

.project-card {
  position: relative;
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-medium);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(255, 236, 228, 0.85));
  border: 1px solid rgba(255, 210, 196, 0.45);
  box-shadow: 0 24px 46px rgba(179, 137, 118, 0.22);
  align-content: start;
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-medium) - 6px);
  background: radial-gradient(90% 90% at 80% 10%, rgba(214, 111, 92, 0.1), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.project-card__logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  border-radius: clamp(18px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 210, 196, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 210, 196, 0.35);
  overflow: hidden;
  z-index: 1;
}

.project-card__logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.project-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.project-card h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.project-card__subtitle {
  margin: 0;
  font-weight: 600;
  color: rgba(70, 48, 41, 0.78);
}

.project-card__meta {
  margin: 0;
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .project-card__logo img {
    width: 100%;
    max-width: 100%;
  }
}

.grid-auto--cta {
  gap: clamp(16px, 4vw, 22px);
}

.link-card--accent {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.8));
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 20px 40px rgba(179, 137, 118, 0.24);
  backdrop-filter: blur(18px);
}

.gallery-grid {
  display: grid;
  gap: clamp(8px, 2vw, 16px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: clamp(240px, 55vw, 65vh);
  max-height: 640px;
  max-width: min(900px, 90vw);
  margin: 0 auto;
}

.gallery-grid__item {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(179, 137, 118, 0.26);
  border: 1px solid rgba(255, 210, 196, 0.45);
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid__item:nth-child(3n+1) img { object-position: center top; }
.gallery-grid__item:nth-child(3n+2) img { object-position: 50% 60%; }
.gallery-grid__item:nth-child(3n)   img { object-position: center bottom; }

@media (max-width: 900px) {
  .gallery-grid {
    height: clamp(220px, 65vw, 70vh);
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    max-width: min(90vw, 420px);
    height: clamp(200px, 75vw, 360px);
  }
}

@media (max-width: 420px) {
  .gallery-grid {
    max-width: 210px;
    height: auto;
    gap: 6px;
  }
}

.gallery-more {
  margin-top: 18px;
  align-self: center;
}

.section-card--canvas {
  background: linear-gradient(150deg, rgba(255, 232, 220, 0.95), rgba(255, 250, 243, 0.88));
}

.section-card--floral {
  background: linear-gradient(165deg, rgba(242, 255, 245, 0.92), rgba(255, 244, 234, 0.86));
}

.location-grid {
  display: grid;
  gap: clamp(16px, 4vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.location-card {
  border-radius: var(--radius-medium);
  padding: clamp(18px, 3vw, 24px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 226, 0.85));
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 22px 42px rgba(179, 137, 118, 0.28);
  display: grid;
  gap: 12px;
  color: var(--color-text);
  backdrop-filter: blur(18px);
}

.location-card--mint {
  background: linear-gradient(150deg, rgba(242, 255, 245, 0.92), rgba(255, 244, 234, 0.86));
}

.location-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 224, 212, 0.7), rgba(199, 227, 207, 0.55));
  color: #3e2b24;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(179, 137, 118, 0.25);
}

.location-card__time {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.section-card--cta {
  background: linear-gradient(150deg, rgba(255, 232, 220, 0.9), rgba(255, 245, 236, 0.85));
  text-align: center;
  align-items: center;
  gap: 16px;
}

.section-card--cta .btn-primary {
  align-self: center;
}
.hero__frame-fallback {
  display: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-1), rgba(219, 188, 145, 0));
  pointer-events: none;
}

.hero--wow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(243, 209, 165, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__branding {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero--split .hero__branding {
  align-items: flex-start;
  text-align: left;
}

.hero__mobile-logo {
  display: none;
  width: clamp(140px, 40vw, 220px);
}

.hero__logo {
  width: clamp(140px, 34vw, 220px);
  display: block;
}

.hero__title {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.01em;
}

.hero__subtitle {
  margin: 0;
  max-width: 620px;
  font-size: 1.05rem;
  color: var(--color-muted);
}

.hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero--video .hero__actions {
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 188, 170, 0.95), rgba(255, 222, 201, 0.92));
  color: #3e2b24;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 22px 45px rgba(179, 137, 118, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 204, 190, 0.98), rgba(255, 229, 212, 0.95));
  box-shadow: 0 28px 55px rgba(179, 137, 118, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 240, 228, 0.8));
  color: rgba(70, 48, 41, 0.85);
  font-weight: 600;
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 14px 32px rgba(179, 137, 118, 0.24);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
  color: #3e2b24;
  box-shadow: 0 20px 40px rgba(179, 137, 118, 0.3);
}

.section-card {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 228, 0.82));
  border-radius: var(--radius-large);
  padding: clamp(26px, 5vw, 36px) clamp(22px, 5vw, 32px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 210, 196, 0.5);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 210, 196, 0.4), rgba(199, 227, 207, 0.35));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.section-card:hover::before {
  opacity: 1;
}

.section-card > * {
  position: relative;
  z-index: 1;
}

.section-card h2,
.section-card h3 {
  margin: 0;
  letter-spacing: 0.02em;
}

.section-card--collapsible {
  padding: 0;
  overflow: hidden;
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion__header {
  appearance: none;
  background: none;
  border: none;
  padding: clamp(22px, 5vw, 30px) clamp(22px, 5vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.accordion__header:focus-visible {
  outline: 2px solid rgba(255, 210, 196, 0.7);
  outline-offset: 4px;
}

.accordion__header::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.accordion__header.is-expanded::after {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__panel.is-open {
  max-height: 1600px;
}

.accordion__panel-inner {
  padding: 0 clamp(22px, 5vw, 32px) clamp(30px, 5vw, 36px);
  display: grid;
  gap: clamp(20px, 4vw, 26px);
}

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

.section-card h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);\n}

.section-card p {
  margin: 0;
}

.section-card .section-intro {
  color: var(--color-muted);
  max-width: 640px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 4vw, 22px);
}

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-medium);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  border: 1px solid rgba(255, 210, 196, 0.5);
  color: var(--color-text);
  text-decoration: none;
  min-height: 150px;
  align-items: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  box-shadow: 0 22px 45px rgba(179, 137, 118, 0.28);
  backdrop-filter: blur(20px);
}

.link-card::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 22px;
  bottom: 20px;
  font-size: 1rem;
  color: rgba(214, 122, 104, 0.75);
  opacity: 0.75;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.link-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 224, 212, 0.7), rgba(255, 240, 214, 0.6));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #3e2b24;
  box-shadow: inset 0 0 0 1px rgba(255, 210, 196, 0.6);
  transition: transform 0.22s ease;
}

.link-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-card__content strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.link-card__content span {
  color: var(--color-muted);
  line-height: 1.45;
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(179, 137, 118, 0.32);
  border-color: rgba(255, 210, 196, 0.65);
  background: linear-gradient(150deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
}

.link-card:hover::after {
  transform: translateX(4px);
  opacity: 0.95;
}

.link-card:hover .link-card__icon {
  transform: scale(1.05);
}

.menu-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 210, 196, 0.5);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 236, 228, 0.82));
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 22px 45px rgba(179, 137, 118, 0.28);
  backdrop-filter: blur(18px);
}

.menu-card:hover {
  border-color: rgba(255, 210, 196, 0.7);
  box-shadow: 0 26px 52px rgba(179, 137, 118, 0.32);
  transform: translateY(-4px);
  background: linear-gradient(150deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
}

.menu-card a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 188, 170, 0.95), rgba(255, 222, 201, 0.92));
  color: #3e2b24;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-card a:hover {
  background: linear-gradient(135deg, rgba(255, 204, 190, 0.98), rgba(255, 229, 212, 0.95));
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #3e2b24;
  background: linear-gradient(140deg, rgba(255, 224, 212, 0.7), rgba(255, 240, 214, 0.6));
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 16px 32px rgba(179, 137, 118, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  background: linear-gradient(140deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
  box-shadow: 0 20px 40px rgba(179, 137, 118, 0.28);
}

.hours-grid {
  display: grid;
  gap: 24px;
}

.hour-card {
  padding: 24px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 210, 196, 0.5);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 236, 228, 0.82));
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(179, 137, 118, 0.28);
  backdrop-filter: blur(18px);
}

.hour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
}

.hour-card > * {
  position: relative;
  z-index: 1;
}

.content-flow {
  display: grid;
  gap: 16px;
}

.content-flow p {
  margin: 0;
}

.content-flow ul,
.content-flow ol {
  margin: 0;
  padding-left: 1.1rem;
}

.notice-box {
  padding: 16px 20px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 210, 196, 0.5);
  background: linear-gradient(140deg, rgba(255, 224, 212, 0.7), rgba(255, 240, 214, 0.6));
  color: #3e2b24;
  box-shadow: 0 16px 32px rgba(179, 137, 118, 0.24);
  backdrop-filter: blur(16px);
}

.table-card {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(179, 137, 118, 0.26);
  border: 1px solid rgba(255, 210, 196, 0.5);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  backdrop-filter: blur(18px);
}

.table-card th,
.table-card td {
  padding: 14px 18px;
  text-align: left;
}

.table-card thead {
  background: linear-gradient(135deg, rgba(255, 210, 196, 0.5), rgba(255, 240, 214, 0.45));
  color: #3e2b24;
}

.table-card tbody tr:nth-child(even) {
  background: rgba(255, 210, 196, 0.18);
}

.form-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-medium);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 210, 196, 0.5);
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 210, 196, 0.4);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(102, 84, 76, 0.4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 224, 212, 0.7), rgba(199, 227, 207, 0.55));
  color: #3e2b24;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 210, 196, 0.55);
  box-shadow: 0 12px 24px rgba(179, 137, 118, 0.24);
}

.notice-inline {
  font-size: 0.95rem;
  color: var(--color-muted);
}

blockquote {
  margin: 0;
  padding: 22px 28px;
  border-left: 4px solid rgba(255, 210, 196, 0.7);
  background: rgba(255, 240, 228, 0.9);
  border-radius: 0 16px 16px 0;
  font-style: italic;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.image-mosaic img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-small);
  box-shadow: 0 16px 30px rgba(179, 137, 118, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-mosaic img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(179, 137, 118, 0.26);
}

.gallery-slider {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.gallery-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: 0 18px 32px rgba(49, 32, 14, 0.18);
  width: 100%;
  max-width: min(960px, 90vw);
  margin: 0 auto;
}

.gallery-slider__track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
  padding: 4px 0;
}

.gallery-slider.is-cols-1 .gallery-slide {
  flex: 0 0 100%;
}

.gallery-slider.is-cols-2 .gallery-slide {
  flex: 0 0 calc((100% - 16px) / 2);
}

.gallery-slider.is-cols-3 .gallery-slide {
  flex: 0 0 calc((100% - 32px) / 3);
}

.gallery-slider.is-single .gallery-slider__controls {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(179, 137, 118, 0.26);
  border: 1px solid rgba(255, 210, 196, 0.45);
  background: rgba(255, 255, 255, 0.92);
}

.gallery-slider.is-cols-1 .gallery-slide {
  min-height: clamp(320px, 82vw, 520px);
}

.gallery-slider.is-cols-2 .gallery-slide,
.gallery-slider.is-cols-3 .gallery-slide {
  min-height: clamp(260px, 32vw, 360px);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.gallery-slide__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: inherit;
  cursor: zoom-in;
}

.gallery-slide__trigger:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.gallery-slide__trigger img {
  pointer-events: none;
  border-radius: inherit;
}

.gallery-slider__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: min(960px, 90vw);
  margin: 0 auto;
}

.gallery-slider__buttons {
  display: flex;
  gap: 12px;
}

.gallery-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, rgba(255, 224, 212, 0.7), rgba(255, 240, 214, 0.6));
  color: #3e2b24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 16px 32px rgba(179, 137, 118, 0.24);
}

.gallery-button:hover {
  background: linear-gradient(135deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
  box-shadow: 0 20px 44px rgba(179, 137, 118, 0.28);
  transform: translateY(-2px);
}

.gallery-pagination {
  display: flex;
  gap: 6px;
  margin-left: auto;
  padding-right: 4px;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 210, 196, 0.35);
  border: none;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.15);
}

.gallery-slider__status {
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--color-muted);
  min-height: 1.2em;
}

body.is-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 80px);
  background: rgba(25, 17, 11, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1200;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__dialog {
  position: relative;
  width: min(960px, 94vw);
  max-height: 88vh;
  display: grid;
  gap: 18px;
  color: #fff;
}

.gallery-lightbox__stage {
  margin: 0;
  border-radius: var(--radius-medium);
  overflow: hidden;
  background: #0d0906;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.gallery-lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #3e2b24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.98);
}

.gallery-lightbox__close:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.gallery-lightbox__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-lightbox__button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, rgba(255, 224, 212, 0.8), rgba(255, 240, 214, 0.7));
  color: #3e2b24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(179, 137, 118, 0.32);
}

.gallery-lightbox__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(179, 137, 118, 0.36);
}

.gallery-lightbox__button:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.gallery-lightbox__status {
  margin: 0 auto;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 720px) {
  .gallery-lightbox {
    padding: clamp(16px, 5vw, 32px);
  }

  .gallery-lightbox__dialog {
    width: 100%;
  }

  .gallery-lightbox__nav {
    gap: 12px;
  }

  .gallery-lightbox__status {
    font-size: 0.85rem;
  }
}

@media (max-width: 680px) {
  .gallery-slider__controls {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .gallery-slider__buttons {
    justify-content: center;
  }

  .gallery-pagination {
    display: none;
  }

  .gallery-slider__status {
    margin-left: 0;
    text-align: center;
    font-size: 0.85rem;
  }

  .gallery-slider__track {
    gap: 0;
  }

  .gallery-slider.is-cols-1 .gallery-slide {
    min-height: clamp(320px, 90vw, 540px);
  }
}

.metric-progress {
  position: relative;
  height: 6px;
  width: 100%;
  background: rgba(255, 210, 196, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.metric-progress__bar {
  position: absolute;
  inset: 0;
  width: var(--progress, 0%);
  background: var(--color-primary);
}

.metric-progress__label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.roadmap {
  position: relative;
  display: grid;
  gap: 24px;
  padding-left: 24px;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 210, 196, 0.6), rgba(199, 227, 207, 0.55));
}

.roadmap-item {
  position: relative;
  display: grid;
  gap: 8px;
  padding-left: 12px;
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-background);
  border: 3px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 210, 196, 0.35);
}

.roadmap-item__time {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.roadmap-item__card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  border-radius: var(--radius-medium);
  padding: 18px 20px;
  border: 1px solid rgba(255, 210, 196, 0.5);
  display: grid;
  gap: 8px;
  box-shadow: 0 18px 36px rgba(179, 137, 118, 0.24);
  backdrop-filter: blur(18px);
}

.roadmap-item__card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text);
}

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

.metric-card {
  padding: 20px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 210, 196, 0.5);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  display: grid;
  gap: 6px;
  box-shadow: 0 20px 40px rgba(179, 137, 118, 0.24);
  backdrop-filter: blur(18px);
}

.metric-card span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.metric-card strong {
  font-size: 1.4rem;
}

@media (max-width: 780px) {
  .page-main {
    padding-inline: clamp(14px, 4vw, 18px);
  }

  .section-card {
    padding: 24px 22px;
  }

  .hero--with-media {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero--with-media .hero__branding {
    align-items: center;
  }

  .link-card {
    grid-template-columns: min-content 1fr;
    padding: 22px;
  }

  .link-card__icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .hero {
    padding: 32px 22px;
  }

  .hero--video {
    min-height: 320px;
  }

  .roadmap {
    padding-left: 18px;
  }

  .gallery-slide {
    height: clamp(180px, 55vw, 240px);
    max-height: 260px;
  }
}

@media (max-width: 520px) {
  .hero__subtitle {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
  }

  .link-card {
    grid-template-columns: 1fr;
  }

  .link-card__icon {
    justify-self: flex-start;
  }

  .hero--split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero--split .hero__branding {
    align-items: center;
    text-align: center;
  }

  .hero__mobile-logo {
    display: block;
    margin-bottom: 10px;
  }

  .hero__video-frame {
    display: none;
  }

  .hero__frame-fallback {
    display: none;
  }

  .hero__frame-badge {
    display: none;
  }

  .gallery-slider__track {
    gap: 8px;
    padding: 4px 0 12px;
  }

  .gallery-slide {
    flex: 0 0 100% !important;
    height: clamp(150px, 58vw, 200px);
    max-height: 210px;
  }

  .gallery-slider__controls {
    justify-content: center;
    gap: 10px;
  }

  .gallery-pagination {
    margin-left: 0;
    padding: 0;
  }

  .gallery-button {
    width: 36px;
    height: 36px;
  }
}
.transparency {
  display: grid;
  gap: clamp(24px, 4vw, 36px);
}

@media (min-width: 880px) {
  .transparency {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }
}

.transparency__intro {
  display: grid;
  gap: 18px;
}

.transparency__intro p {
  margin: 0;
}

.transparency__photo {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  min-height: 160px;
  background: radial-gradient(circle at top right, rgba(255, 210, 196, 0.6), rgba(255, 240, 228, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 48px rgba(179, 137, 118, 0.28);
  border: 1px solid rgba(255, 210, 196, 0.5);
  backdrop-filter: blur(18px);
}

.transparency__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.transparency__photo span {
  position: absolute;
  inset: auto 16px 16px;
  background: linear-gradient(135deg, rgba(255, 210, 196, 0.85), rgba(255, 236, 228, 0.8));
  color: #3e2b24;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.transparency__panel {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 210, 196, 0.5);
  padding: clamp(22px, 4vw, 28px);
  display: grid;
  gap: 20px;
  box-shadow: 0 24px 50px rgba(179, 137, 118, 0.26);
  backdrop-filter: blur(22px);
}

.transparency-steps {
  display: grid;
  gap: 16px;
  position: relative;
}

.transparency-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  border: 1px solid rgba(255, 210, 196, 0.5);
  box-shadow: 0 18px 38px rgba(179, 137, 118, 0.24);
  backdrop-filter: blur(16px);
}

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

.transparency-step__title {
  font-weight: 600;
}

.transparency-step__value {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.transparency-step small {
  color: var(--color-muted);
}

.transparency-invest {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 210, 196, 0.5);
  padding: 18px 20px;
  display: grid;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(179, 137, 118, 0.26);
  backdrop-filter: blur(18px);
}

.transparency-invest strong {
  font-size: 1.2rem;
}

.transparency-invest p {
  margin: 0;
}

.transparency__thanks {
  margin: 0;
  color: var(--color-primary-dark);
  font-weight: 600;
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-texture.svg') center/cover no-repeat;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

/* Mini-Ergänzungen für Story/Timeline/Details */
.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  font-size: 0.85rem;
}

.hero__lead {
  max-width: 60ch;
}

.hero__scrollcue {
  opacity: 0.8;
  margin-top: 0.8rem;
}

.pill {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 210, 196, 0.55);
  border-radius: 999px;
  font-size: 0.8rem;
  opacity: 0.9;
  background: linear-gradient(135deg, rgba(255, 224, 212, 0.7), rgba(199, 227, 207, 0.55));
  color: #3e2b24;
}

.timeline__item h3 i {
  margin-right: 0.4rem;
  opacity: 0.9;
}

.card--note {
  border: 1px solid rgba(255, 210, 196, 0.5);
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.82));
  box-shadow: 0 16px 32px rgba(179, 137, 118, 0.22);
}

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

.story__intro p {
  margin: 0;
}

.story__toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 196, 0.55);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 236, 228, 0.8));
  color: #3e2b24;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
  backdrop-filter: blur(16px);
}

.story__toggle:hover,
.story__toggle:focus {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 210, 196, 0.6), rgba(255, 240, 214, 0.55));
  border-color: rgba(255, 210, 196, 0.75);
  box-shadow: 0 16px 28px rgba(179, 137, 118, 0.25);
}

.story__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.story__details {
  display: none;
  margin-top: 1.5rem;
}

.story__details.is-open {
  display: block;
}

.story__details-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story__values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 0;
}

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

.story-roadmap__card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 236, 228, 0.8));
  border: 1px solid rgba(255, 210, 196, 0.5);
  border-radius: 22px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 18px 38px rgba(179, 137, 118, 0.26);
  backdrop-filter: blur(18px);
}

.story-roadmap__card h3 {
  margin: 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.story-roadmap__card h3 i {
  color: var(--color-primary);
}

.story-roadmap__card p {
  margin: 0;
  color: var(--color-text);
}

.story__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 17, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  z-index: 3000;
}

.cookie-consent__dialog {
  width: min(560px, 100%);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  box-shadow: 0 26px 60px rgba(30, 20, 17, 0.25);
  border: 1px solid rgba(255, 210, 196, 0.6);
  padding: clamp(20px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #3e2b24;
}

.cookie-consent__header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.cookie-consent__header p {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(62, 43, 36, 0.88);
}

.cookie-consent__link a {
  font-weight: 600;
}

.cookie-consent__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-consent__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 210, 196, 0.5);
  border-radius: 16px;
  background: rgba(255, 245, 238, 0.6);
}

.cookie-consent__option-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.cookie-consent__option-text p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(62, 43, 36, 0.75);
}

.cookie-consent__option-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-consent__switch {
  width: 48px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(214, 111, 92, 0.45);
  background: rgba(214, 111, 92, 0.25);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease, border 0.2s ease;
}

.cookie-consent__switch-handle {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  left: 2px;
  transition: transform 0.2s ease;
}

input[data-cookie-toggle] {
  display: none;
}

input[data-cookie-toggle]:checked + .cookie-consent__switch {
  background: linear-gradient(120deg, rgba(214, 111, 92, 0.85), rgba(199, 227, 207, 0.65));
  border-color: rgba(214, 111, 92, 0.9);
}

input[data-cookie-toggle]:checked + .cookie-consent__switch .cookie-consent__switch-handle {
  transform: translateX(22px);
}

.cookie-consent__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(199, 227, 207, 0.6);
  color: rgba(62, 43, 36, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cookie-consent__info {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(62, 43, 36, 0.7);
}

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

.cookie-consent__btn {
  border: none;
  border-radius: 12px;
  padding: 0.65rem 1.3rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(120deg, rgba(214, 111, 92, 0.9), rgba(247, 193, 170, 0.9));
  color: #fff;
  box-shadow: 0 12px 24px rgba(214, 111, 92, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(214, 111, 92, 0.3);
}

.cookie-consent__btn--secondary {
  background: rgba(62, 43, 36, 0.08);
  color: #3e2b24;
  box-shadow: none;
  border: 1px solid rgba(62, 43, 36, 0.15);
}

.cookie-consent__btn--outline {
  background: transparent;
  color: #3e2b24;
  border: 1px solid rgba(214, 111, 92, 0.5);
  box-shadow: none;
}


.cookie-consent__btn--secondary:hover,
.cookie-consent__btn--secondary:focus,
.cookie-consent__btn--outline:hover,
.cookie-consent__btn--outline:focus {
  opacity: 0.85;
  transform: none;
}

.cookie-consent__manage[hidden] {
  display: none;
}

.cookie-consent__manage {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 111, 92, 0.5);
  border-radius: 999px;
  padding: 0.4rem 0.5rem 0.4rem 0.9rem;
  box-shadow: 0 12px 24px rgba(30, 20, 17, 0.18);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cookie-consent__manage:hover {
  background: linear-gradient(120deg, rgba(255, 210, 196, 0.7), rgba(199, 227, 207, 0.65));
  box-shadow: 0 16px 32px rgba(30, 20, 17, 0.22);
}

.cookie-consent__manage button {
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.cookie-consent__manage-open {
  gap: 0.45rem;
  padding: 0;
  font-weight: 600;
}

.cookie-consent__manage-text {
  display: inline-flex;
  align-items: center;
}

.cookie-consent__manage-icon {
  display: none;
  font-size: 1.2rem;
}

.cookie-consent__manage-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(214, 111, 92, 0.3);
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-consent__manage-close:hover,
.cookie-consent__manage-close:focus {
  background: rgba(214, 111, 92, 0.18);
  transform: translateY(-1px);
}

.cookie-consent__manage.is-collapsed {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.cookie-consent__manage.is-collapsed:hover {
  background: transparent;
  box-shadow: none;
}

.cookie-consent__manage.is-collapsed .cookie-consent__manage-close {
  display: none;
}

.cookie-consent__manage.is-collapsed .cookie-consent__manage-open {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 111, 92, 0.45);
  box-shadow: 0 12px 24px rgba(30, 20, 17, 0.18);
}

.cookie-consent__manage.is-collapsed .cookie-consent__manage-icon {
  display: inline-flex;
}

.cookie-consent__manage.is-collapsed .cookie-consent__manage-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .cookie-consent {
    align-items: center;
  }

  .cookie-consent__dialog {
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

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

  .cookie-consent__btn {
    flex: 1 1 100%;
  }

  .cookie-consent__manage {
    bottom: 1rem;
    left: 1rem;
    right: auto;
    padding: 0.4rem 0.4rem 0.4rem 0.8rem;
  }

  .cookie-consent__manage.is-collapsed .cookie-consent__manage-open {
    width: 48px;
    height: 48px;
  }
}
