:root {
  --ink: #1d2b29;
  --ink-soft: rgba(29, 43, 41, 0.68);
  --paper: #f7f3ee;
  --paper-strong: #fffdfa;
  --aqua: #5ecfff;
  --aqua-deep: #071725;
  --coral: #f31248;
  --lime: #ff2f67;
  --line: rgba(7, 26, 45, 0.12);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(7, 15, 23, 0.16);
  --section-title-size: 48px;
  --compact-title-size: 48px;
  --font-body: "suisseIntl", "suisseIntl Fallback", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-display: var(--font-body);
  --font-code: var(--font-body);
  --container: 1304px;
  --section-y: 96px;
  --section-x: 34px;
  --intro-gap: 56px;
  --module-gap: 16px;
  --card-radius: 24px;
  --card-surface: #eee8de;
  --card-media-height: 410px;
  --large-card-height: 560px;
  --intro-text-size: 18.4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  min-height: 74px;
  padding: 0 clamp(24px, 5vw, 160px);
  color: #1f322e;
  background: #f7f3ee;
  transition: background 180ms ease, color 180ms ease, border 180ms ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  color: var(--ink);
  background: rgba(247, 243, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0;
  min-width: 124px;
}

.brand-mark {
  display: block;
  width: 126px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: url("crays-logo.svg") center / contain no-repeat;
  font-size: 0.78rem;
  font-weight: 800;
  color: transparent;
}

.site-header .brand > span:not(.brand-mark) {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.04rem;
}

.brand small {
  margin-top: 1px;
  font-size: 0.72rem;
  opacity: 0.76;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 38px);
  color: rgba(7, 26, 45, 0.62);
  font-size: 1rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.site-nav a.active {
  color: var(--ink);
}

.header-cta,
.button,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.header-cta {
  justify-self: center;
  min-width: 102px;
  color: #071a2d;
  background: transparent;
  font-size: 0.92rem;
}

.header-actions {
  position: relative;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-selector {
  position: relative;
  display: inline-flex;
}

.language-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #071a2d;
  background: transparent;
  cursor: pointer;
}

.language-toggle:hover,
.language-selector[data-open] .language-toggle {
  background: rgba(7, 26, 45, 0.06);
}

.language-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 45;
  display: grid;
  min-width: 202px;
  padding: 8px;
  border: 1px solid rgba(7, 26, 45, 0.08);
  border-radius: 12px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 18px 48px rgba(7, 15, 23, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-selector[data-open] .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-menu button {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  color: #071a2d;
  background: transparent;
  font-size: 0.95rem;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.active {
  background: rgba(243, 18, 72, 0.1);
}

.language-flag {
  display: inline-flex;
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 2px;
  background: #f7f3ee;
  font-size: 0;
  line-height: 1;
}

.language-menu button:nth-child(1) .language-flag {
  background:
    linear-gradient(0deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(33deg, transparent 43%, #fff 43% 51%, #c8102e 51% 56%, #fff 56% 64%, transparent 64%),
    linear-gradient(-33deg, transparent 43%, #fff 43% 51%, #c8102e 51% 56%, #fff 56% 64%, transparent 64%),
    linear-gradient(0deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    #012169;
}

.language-menu button:nth-child(2) .language-flag {
  background: linear-gradient(to bottom, #000 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666% 100%);
}

.language-menu button:nth-child(3) .language-flag {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.language-flag-catalonia {
  background: repeating-linear-gradient(
    to bottom,
    #ffd100 0 3px,
    #da121a 3px 5px
  );
}

.language-menu button:nth-child(5) .language-flag {
  background: linear-gradient(to right, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666% 100%);
}

.language-menu button:nth-child(6) .language-flag {
  background: linear-gradient(to right, #006600 0 40%, #ff0000 40% 100%);
}

.language-menu button:nth-child(7) .language-flag {
  background: linear-gradient(to right, #008c45 0 33.333%, #f4f5f0 33.333% 66.666%, #cd212a 66.666% 100%);
}

.button.primary {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.button.secondary {
  color: var(--white);
  border-color: var(--aqua-deep);
  background: var(--aqua-deep);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--aqua-deep);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 6px;
  padding: 80px 42px 30px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--card-radius);
  background: #06111d;
}

.page-hero {
  min-height: 76vh;
}

.hero > img,
.hero > video,
.page-hero > img,
.page-hero > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero > video.hero-media {
  inset: auto;
  top: 50%;
  left: 50%;
  width: 116%;
  height: 116%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.82), rgba(3, 7, 12, 0.22) 52%, rgba(3, 7, 12, 0.5)),
    linear-gradient(0deg, rgba(3, 7, 12, 0.82), transparent 62%);
}

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

.hero-content.narrow {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f4cbbd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 4vw, 5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.02rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-feature-card {
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  grid-template-columns: 132px minmax(220px, 1fr) 38px;
  width: min(438px, calc(100% - 68px));
  min-height: 116px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-feature-card > img,
.hero-feature-media-link {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.hero-feature-media-link {
  display: block;
}

.hero-feature-media-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hero-feature-card:hover .hero-feature-media-link img {
  transform: scale(1.05);
}

.hero-feature-copy {
  align-self: center;
  padding: 18px 12px;
}

.hero-feature-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-feature-copy p {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-feature-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-feature-copy a:hover {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
}

.hero-feature-copy a span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}

.hero-feature-copy a span::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 1px;
  margin-left: -11px;
  background: currentColor;
  transform: translateY(-5px);
}

.hero-feature-controls {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid rgba(7, 26, 45, 0.14);
}

.hero-feature-controls button {
  display: grid;
  place-items: center;
  border: 0;
  border-bottom: 1px solid rgba(7, 26, 45, 0.14);
  color: var(--ink);
  background: transparent;
  font-size: 1.45rem;
}

.hero-feature-controls button:last-child {
  border-bottom: 0;
}

.hero-feature-side-cta {
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(7, 26, 45, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  transition: color 160ms ease, background 160ms ease;
}

.hero-feature-side-cta:hover {
  color: var(--white);
  background: var(--coral);
}

.hero-feature-side-cta span {
  position: relative;
  width: 21px;
  height: 12px;
}

.hero-feature-side-cta span::before,
.hero-feature-side-cta span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: currentColor;
}

.hero-feature-side-cta span::before {
  width: 21px;
  height: 2px;
  transform: translateY(-50%);
}

.hero-feature-side-cta span::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.hero-side-mark {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 48px;
  padding: 10px;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: #071a2d;
  transform: translateY(-50%);
}

.hero-side-mark img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(100%) saturate(6529%) hue-rotate(335deg) brightness(103%) contrast(102%);
}

.impact-strip strong,
.metric-cards strong {
  display: block;
  font-family: var(--font-code);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.impact-strip span,
.metric-cards span {
  display: block;
  margin-top: 7px;
  font-size: 0.82rem;
  opacity: 0.82;
}

section:not(.hero):not(.page-hero) {
  padding: var(--section-y) var(--section-x);
}

.intro-section,
.stay-intro {
  background: var(--paper-strong);
}

.story-gallery-section {
  background: var(--paper);
}

.story-gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: var(--intro-gap);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
}

.story-gallery-intro h2 {
  max-width: 760px;
  margin: 0 0 26px;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.08;
  font-weight: 400;
}

.story-gallery-intro h2.story-gallery-title {
  max-width: 820px;
  font-size: 42px;
  line-height: 1.06;
}

.story-gallery-title span,
.story-gallery-title strong {
  display: block;
}

.story-gallery-title strong {
  white-space: nowrap;
}

.story-gallery-intro h2 strong {
  display: block;
  font-weight: 900;
}

.story-gallery-intro p {
  max-width: 660px;
  margin: 0;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.55;
}

.story-gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  background: #132622;
  font-size: 1rem;
  font-weight: 700;
}

.story-gallery-button span,
.story-gallery-photo-button a span {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 12px;
}

.story-gallery-button span::before,
.story-gallery-photo-button a span::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 0 6px 0 currentColor, 6px 6px 0 currentColor;
}

.story-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(212px, 0.72fr) minmax(212px, 0.72fr);
  grid-template-rows: repeat(2, 278px);
  gap: var(--module-gap);
  max-width: var(--container);
  margin: 0 auto;
}

.story-gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #071a2d;
}

.story-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-gallery-large {
  grid-row: span 2;
}

.story-gallery-photo-button a {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 204px;
  padding: 0 18px;
  border-radius: 999px;
  color: #071a2d;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 12px 32px rgba(7, 26, 45, 0.22);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: var(--intro-gap);
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}

.split-intro h2 {
  margin-bottom: 0;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.08;
  font-weight: 400;
}

.split-intro h2 strong {
  font-weight: 900;
}

.split-intro p {
  max-width: 660px;
  margin: 0;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.55;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto 34px;
  align-items: end;
}

.section-heading.compact {
  display: block;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading a {
  color: var(--aqua-deep);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.fund-impact-section {
  background: var(--paper);
}

.fund-impact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.78fr);
  gap: var(--intro-gap);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
}

.fund-impact-intro h2 {
  max-width: 660px;
  margin: 0 0 22px;
  scroll-margin-top: 150px;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.08;
  font-weight: 400;
}

.fund-impact-intro h2 strong {
  display: block;
  color: #071a2d;
  font-weight: 900;
}

.fund-impact-intro p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #071a2d;
  font-size: var(--intro-text-size);
  line-height: 1.45;
}

.fund-impact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  color: var(--white);
  background: #132622;
  font-size: 1rem;
  font-weight: 800;
}

.fund-impact-button span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 12px;
}

.fund-impact-button span::before,
.fund-impact-button span::after {
  content: "";
  position: absolute;
  display: block;
}

.fund-impact-button span::before {
  top: 7px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.fund-impact-button span::after {
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.fund-impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: var(--module-gap);
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
}

.fund-impact-image {
  min-height: 612px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #071a2d;
}

.fund-impact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fund-impact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--module-gap);
}

.fund-impact-card {
  position: relative;
  min-height: 186px;
  padding: 24px 26px;
  border-radius: var(--card-radius);
  background: var(--card-surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fund-impact-card::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #132622;
}

.fund-impact-card small {
  display: block;
  max-width: calc(100% - 28px);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fund-impact-card strong {
  display: block;
  max-width: calc(100% - 10px);
  margin-top: 30px;
  color: #071a2d;
  font-size: clamp(2rem, 2.45vw, 2.75rem);
  line-height: 1.02;
  font-weight: 800;
}

.fund-impact-card span {
  display: block;
  margin-top: 14px;
  color: #21363b;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.28;
}

.fund-impact-card-tall {
  min-height: var(--large-card-height);
}

.fund-impact-stack {
  display: grid;
  gap: var(--module-gap);
}

.location-map-section {
  background: var(--paper);
  text-align: center;
}

.location-map-section h2 {
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.08;
  font-weight: 400;
}

.location-map-section h2 strong {
  font-weight: 900;
}

.location-map-frame {
  position: relative;
  max-width: var(--container);
  height: min(640px, 68vh);
  min-height: var(--large-card-height);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #d7dfd3;
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-map-link {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  color: #071a2d;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(7, 26, 45, 0.14);
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
}

.project-card.large {
  grid-column: span 2;
}

.project-card.wide {
  grid-column: span 2;
}

.project-card img,
.stay-card img,
.landmark-grid img,
.tile-grid img,
.event-grid img {
  height: 100%;
  object-fit: cover;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 35, 29, 0.86), rgba(16, 35, 29, 0.08) 58%);
}

.project-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}

.project-card p,
.story-card p,
.stay-card p,
.event-grid p,
.showcase-list p {
  margin-bottom: 8px;
  color: #f1b7a8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.project-card span {
  color: rgba(255, 255, 255, 0.84);
}

.mission-vision-section {
  background: var(--paper);
}

.mission-vision-heading {
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
}

.mission-vision-heading h2 {
  max-width: var(--container);
  margin: 0;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.1;
  font-weight: 400;
}

.mission-vision-heading strong {
  font-weight: 900;
}

.mission-vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--module-gap);
  max-width: var(--container);
  margin: 0 auto;
}

.mission-vision-section-compact .mission-vision-heading {
  margin-bottom: 38px;
}

.mission-vision-section-compact .mission-vision-heading h2 {
  max-width: 980px;
}

.mission-vision-section-compact .mission-vision-layout {
  align-items: stretch;
}

.mission-vision-section-compact .mission-vision-card {
  order: -1;
}

.mission-vision-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #071a2d;
}

.mission-vision-image img {
  width: 100%;
  height: 100%;
  min-height: var(--large-card-height);
  object-fit: cover;
}

.mission-vision-section-compact .mission-vision-image img {
  min-height: 0;
  height: 470px;
}

.mission-vision-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--large-card-height);
  padding: clamp(36px, 5vw, 74px);
  border-radius: var(--card-radius);
  background: var(--card-surface);
}

.mission-vision-section-compact .mission-vision-card {
  min-height: 0;
  padding: clamp(30px, 3.4vw, 48px);
}

.card-title-with-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.mission-vision-mark {
  flex: 0 0 auto;
  width: 29px;
  height: 34px;
  margin: 0;
  object-fit: contain;
}

.mission-vision-card h2 {
  margin: 0;
  color: #071a2d;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.08;
  font-weight: 800;
}

.mission-vision-section-compact .mission-vision-card h2 {
  font-size: clamp(1.3rem, 1.65vw, 1.72rem);
}

.mission-vision-card p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.55;
}

.mission-vision-section-compact .mission-vision-card p {
  max-width: 590px;
  font-size: 16.5px;
  line-height: 1.46;
}

.mission-vision-card p:last-of-type {
  margin-bottom: 34px;
}

.mission-vision-section-compact .mission-vision-card p:last-of-type {
  margin-bottom: 22px;
}

.mission-vision-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 64px;
  padding: 0 32px;
  border-radius: 999px;
  color: #fff;
  background: #132622;
  font-size: 1rem;
  font-weight: 700;
}

.mission-vision-button span {
  position: relative;
  width: 13px;
  height: 20px;
  margin-left: 16px;
}

.mission-vision-button span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 1px;
  height: 16px;
  background: currentColor;
}

.mission-vision-button span::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.commitment-section {
  background: var(--paper);
}

.commitment-heading {
  max-width: var(--container);
  margin-bottom: 0;
  text-align: center;
}

.commitment-heading h2 {
  font-size: var(--section-title-size);
  line-height: 1.05;
  font-weight: 400;
}

.commitment-heading h2 strong {
  font-weight: 900;
}

.commitment-heading p {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--ink-soft);
}

.commitment-invest-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 24px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white) !important;
  background: #132622;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.commitment-invest-button span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 12px;
}

.commitment-invest-button span::before,
.commitment-invest-button span::after {
  content: "";
  position: absolute;
  display: block;
}

.commitment-invest-button span::before {
  top: 7px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.commitment-invest-button span::after {
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.commitment-section .tabs {
  margin-top: 42px;
}

.tabs {
  max-width: var(--container);
  margin: var(--intro-gap) auto 0;
}

.tab-list,
.filter-controls,
.segmented,
.view-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.commitment-section .tab-list {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px;
  border-radius: 999px;
  background: #ece7de;
}

.tab-button,
.filter-controls button,
.segmented button,
.view-switch button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.tab-button.active,
.filter-controls button.active,
.segmented button.active,
.view-switch button.active {
  color: var(--white);
  border-color: var(--aqua-deep);
  background: var(--aqua-deep);
}

.tab-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.tab-panel.active {
  display: grid;
}

.commitment-section .tab-panel {
  grid-template-columns: repeat(6, 1fr);
  gap: var(--module-gap);
  margin-top: var(--intro-gap);
}

.tab-panel article,
.steps article,
.story-card,
.week-grid article,
.feature-list article,
.collab-grid article,
.showcase-list article,
.metric-cards article,
.trinity-grid article,
.disclaimer-section details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.72);
}

.tab-panel article {
  padding: 26px;
}

.commitment-section .tab-panel article {
  grid-column: span 2;
  min-height: 240px;
  padding: 34px 32px 32px;
  border: 0;
  border-radius: var(--card-radius);
  background: var(--card-surface);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.commitment-section .tab-panel article:nth-last-child(2):nth-child(7),
.commitment-section .tab-panel article:nth-last-child(1):nth-child(8) {
  grid-column: span 3;
}

.commitment-card-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.commitment-section .tab-panel h3 {
  max-width: 320px;
  margin: 0 auto 8px;
  font-size: clamp(1.25rem, 2vw, 1.78rem);
  line-height: 1.08;
}

.commitment-section .tab-panel p {
  max-width: 390px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.42;
  color: #11272c;
}

.tab-panel p,
.steps p,
.story-card span,
.week-grid p,
.feature-list p,
.collab-grid p,
.showcase-list span,
.metric-cards p,
.trinity-grid p {
  color: var(--ink-soft);
}

.visit-flow {
  background: var(--paper);
}

.visit-flow-title {
  max-width: 900px;
  margin: 0 auto var(--intro-gap);
  text-align: center;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.08;
  font-weight: 400;
}

.visit-flow-title strong {
  font-weight: 900;
}

.visit-route-card {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px 34px;
  border-radius: 28px;
  background: #f2ece3;
}

.visit-route-dot {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #132622;
}

.visit-route-tabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 26px;
  padding: 4px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  justify-content: center;
}

.visit-route-tab {
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #132622;
  background: transparent;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  transition: color 180ms ease, background 180ms ease;
}

.visit-route-tab.active {
  color: var(--white);
  background: #132622;
}

.visit-route-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(580px, 1fr);
  gap: 34px;
  align-items: start;
}

.visit-route-panel.active {
  display: grid;
}

.visit-route-copy-wrap {
  min-height: 0;
  padding: 0 0 0;
  display: flex;
  align-items: flex-start;
}

.visit-route-copy {
  width: 100%;
  max-width: 627px;
  padding: 0;
}

.visit-route-copy:not(.active),
.visit-route-copy[hidden] {
  display: none !important;
}

.visit-route-copy h3 {
  margin: 0 0 16px;
  color: #071a2d;
  font-size: 38px !important;
  font-weight: 400 !important;
  line-height: 48px !important;
}

.visit-route-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  color: #071a2d;
  font-size: 18.4px !important;
  font-weight: 400 !important;
  line-height: 27.6px !important;
}

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

.visit-route-cta {
  display: inline-flex;
  min-height: 56px;
  margin-top: 22px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #132622;
  border-radius: 999px;
  color: #132622;
  background: transparent;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
}

.visit-route-cta span {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 14px;
}

.visit-route-cta span::before,
.visit-route-cta span::after {
  content: "";
  position: absolute;
  display: block;
}

.visit-route-cta span::before {
  top: 7px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.visit-route-cta span::after {
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.visit-route-steps {
  display: grid;
  gap: 10px;
}

.visit-route-step {
  width: 100%;
  min-height: 84px;
  padding: 6px 8px 6px 6px;
  border: 0;
  border-radius: 999px;
  background: #d9d0bf;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 78px;
  gap: 14px;
  align-items: center;
  color: #071a2d;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, transform 180ms ease;
}

.visit-route-step:hover,
.visit-route-step:focus-visible {
  background: #ded6c8;
}

.visit-route-step:focus-visible {
  outline: 2px solid #132622;
  outline-offset: 4px;
}

.visit-route-step.active {
  background: #d9d0bf;
}

.visit-route-steps img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.visit-route-steps h3 {
  margin: 0;
  color: #071a2d;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 30px !important;
}

.visit-route-steps span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #071a2d;
  background: rgba(248, 244, 237, 0.42);
  box-shadow: 8px 0 0 rgba(19, 38, 34, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px !important;
  font-weight: 400 !important;
  line-height: 40px !important;
  transition: background 180ms ease;
}

.visit-route-step.active span {
  background: #fff;
}

.steps span,
.roadmap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.group-section,
.host-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 44px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.group-section img {
  height: 540px;
  object-fit: cover;
  border-radius: 6px;
}

.crays-world-section {
  background: var(--paper);
}

.crays-world-heading {
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
}

.crays-world-heading h2 {
  max-width: var(--container);
  margin: 0;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.1;
  font-weight: 400;
}

.crays-world-heading strong {
  font-weight: 900;
}

.crays-world-heading-line {
  display: block;
  white-space: nowrap;
}

.crays-world-section-compact .crays-world-heading {
  margin-bottom: 38px;
}

.crays-world-section-compact .crays-world-heading h2 {
  font-size: clamp(38px, 3.4vw, 44px) !important;
  line-height: 1.14 !important;
}

.crays-world-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--module-gap);
  max-width: var(--container);
  margin: 0 auto;
}

.crays-world-section-compact .crays-world-layout {
  align-items: stretch;
}

.crays-world-card,
.crays-world-image {
  min-height: var(--large-card-height);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.crays-world-section-compact .crays-world-card,
.crays-world-section-compact .crays-world-image {
  min-height: 0;
}

.crays-world-section-compact .crays-world-image {
  position: relative;
  min-height: 470px;
}

.crays-world-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 74px);
  background: var(--card-surface);
}

.crays-world-section-compact .crays-world-card {
  padding: clamp(30px, 3.4vw, 48px);
}

.crays-world-mark {
  flex: 0 0 auto;
  width: 29px;
  height: 34px;
  margin: 0;
  object-fit: contain;
}

.crays-world-card h2 {
  margin: 0;
  color: #071a2d;
  font-size: clamp(1.46rem, 2.1vw, 2.1rem);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.crays-world-card p {
  max-width: 620px;
  margin-bottom: 42px;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.52;
}

.crays-world-section-compact .crays-world-card p {
  max-width: 590px;
  margin: 0 0 14px;
  font-size: 16.5px;
  line-height: 1.46;
}

.crays-world-section-compact .crays-world-card p:last-of-type {
  margin-bottom: 24px;
}

.crays-world-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 64px;
  padding: 0 32px;
  border-radius: 999px;
  color: #fff;
  background: #132622;
  font-size: 1rem;
  font-weight: 800;
}

.crays-world-button span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 12px;
}

.crays-world-button span::before,
.crays-world-button span::after {
  content: "";
  position: absolute;
  display: block;
}

.crays-world-button span::before {
  top: 7px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.crays-world-button span::after {
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.crays-world-image {
  margin: 0;
  background: #071a2d;
}

.crays-world-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crays-world-section-compact .crays-world-image img {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  object-position: center center;
}

.media-spotlight-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
  background: var(--paper);
}

.media-spotlight-section h2 {
  max-width: none;
  margin: 0 auto var(--intro-gap);
  padding: 0 34px;
  text-align: center;
  color: #071a2d;
  font-size: var(--compact-title-size);
  line-height: 1.12;
  font-weight: 400;
  white-space: nowrap;
}

.media-spotlight-section h2 strong {
  font-weight: 900;
}

.media-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.media-marquee::before,
.media-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(180px, 14vw);
  height: 100%;
  pointer-events: none;
}

.media-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(249, 246, 241, 0));
}

.media-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(249, 246, 241, 0));
}

.media-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--module-gap);
  padding: 0 0 10px;
  animation: mediaMarquee 38s linear infinite;
  will-change: transform;
}

.media-marquee:hover .media-marquee-track {
  animation-play-state: paused;
}

.media-marquee-track img {
  flex: 0 0 auto;
  width: 150px;
  height: 142px;
  padding: 18px;
  border-radius: 18px;
  background: #f1ece4;
  object-fit: contain;
}

@keyframes mediaMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.crays-articles-section {
  background: var(--paper);
  scroll-margin-top: 96px;
}

main.home-main > section.crays-articles-section:not(.home-hero),
section.crays-articles-section:not(.hero):not(.page-hero) {
  padding-bottom: 44px !important;
}

.crays-articles-header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.78fr);
  gap: var(--intro-gap);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
}

.crays-articles-header h2 {
  max-width: 680px;
  margin: 0 0 26px;
  color: #071a2d;
  font-size: var(--compact-title-size);
  line-height: 1.08;
  font-weight: 400;
  white-space: nowrap;
}

.crays-articles-header h2 strong {
  font-weight: 900;
}

.crays-articles-header p {
  max-width: 610px;
  margin: 36px 0 0;
  color: #071a2d;
  font-size: var(--intro-text-size);
  line-height: 1.45;
}

.crays-association-banner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: var(--module-gap);
  align-items: stretch;
  max-width: var(--container);
  margin: -8px auto 56px;
}

.crays-association-banner-media {
  position: relative;
  display: block;
  min-height: 322px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #071a2d;
  box-shadow: 0 0 0 1px rgba(7, 26, 45, 0.08);
}

.crays-association-banner-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.crays-association-banner:hover .crays-association-banner-media img {
  transform: scale(1.025);
}

.crays-association-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 45, 0.38), rgba(7, 26, 45, 0.04) 48%, rgba(7, 26, 45, 0.34));
  pointer-events: none;
}

.crays-association-banner-media span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  display: inline-flex;
  max-width: calc(100% - 36px);
  min-height: 64px;
  padding: 9px 58px 9px 20px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 999px;
  color: var(--white);
  background: #132622;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  font-weight: 700;
  text-align: left;
}

.crays-association-banner-media span::before,
.crays-association-banner-media span::after {
  content: "";
  position: absolute;
  display: block;
}

.crays-association-banner-media span::before {
  top: 50%;
  right: 19px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
}

.crays-association-banner-media span::after {
  top: 50%;
  right: 27px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #132622;
  border-right: 2px solid #132622;
  transform: translateY(-50%) rotate(45deg);
}

.crays-association-banner-media span strong,
.crays-association-banner-media span em {
  display: block;
  width: 100%;
  font-style: normal;
}

.crays-association-banner-media span strong {
  font-size: 16px;
  line-height: 20px;
}

.crays-association-banner-media span em {
  margin-top: 1px;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  opacity: 0.78;
}

.crays-association-banner-copy {
  display: flex;
  min-height: 322px;
  max-width: none;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--card-radius);
  background: var(--card-surface);
  box-shadow: 0 0 0 1px rgba(7, 26, 45, 0.07);
}

.crays-association-banner-title {
  max-width: 620px;
  margin: 0 0 20px;
  color: #071a2d;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.12;
  font-weight: 700;
}

.crays-association-banner-copy p {
  max-width: 720px;
  margin: 0;
  color: #071a2d;
  font-size: clamp(16.5px, 1.28vw, 18.4px);
  line-height: 1.45;
  font-weight: 400;
}

.crays-association-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 26px;
  color: #132622;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 24.75px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.crays-association-banner-link span:last-child {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
}

.crays-association-banner-link span:last-child::before,
.crays-association-banner-link span:last-child::after {
  content: "";
  position: absolute;
  display: block;
}

.crays-association-banner-link span:last-child::before {
  top: 7px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.crays-association-banner-link span:last-child::after {
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.crays-articles-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  color: var(--white);
  background: #132622;
  font-size: 1rem;
  font-weight: 800;
}

.crays-articles-button span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 12px;
}

.crays-articles-button span::before,
.crays-articles-button span::after {
  content: "";
  position: absolute;
  display: block;
}

.crays-articles-button span::before {
  top: 7px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.crays-articles-button span::after {
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.crays-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--module-gap);
  max-width: var(--container);
  margin: 0 auto;
}

.crays-ecosystem-slider {
  max-width: var(--container);
  margin: 0 auto;
}

.crays-ecosystem-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -18px 0 20px;
}

.crays-ecosystem-arrow {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 26, 45, 0.3);
  border-radius: 50%;
  color: #071a2d;
  background: transparent;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.crays-ecosystem-arrow:hover,
.crays-ecosystem-arrow:focus-visible {
  border-color: #132622;
  color: var(--white);
  background: #132622;
}

.crays-article-grid.crays-ecosystem-track {
  display: flex;
  grid-template-columns: none;
  max-width: none;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 12px;
}

.crays-article-grid.crays-ecosystem-track::-webkit-scrollbar {
  display: none;
}

.crays-ecosystem-track .crays-article-card {
  flex: 0 0 calc((100% - (var(--module-gap) * 2)) / 3);
  scroll-snap-align: start;
}

.crays-article-card {
  display: flex;
  min-height: 100%;
  min-width: 0;
  flex-direction: column;
}

.crays-article-image {
  position: relative;
  display: block;
  height: var(--card-media-height);
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #071a2d;
  box-shadow: 0 0 0 1px rgba(7, 26, 45, 0.08);
}

.crays-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.crays-article-card:hover .crays-article-image img {
  transform: scale(1.035);
}

.crays-article-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 45, 0.42), rgba(7, 26, 45, 0) 42%, rgba(7, 26, 45, 0.3));
  pointer-events: none;
}

.crays-article-image span {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  display: inline-flex;
  max-width: calc(100% - 36px);
  min-height: 64px;
  padding: 9px 58px 9px 20px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-radius: 999px;
  color: var(--white);
  background: #132622;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  font-weight: 700;
  text-align: left;
}

.crays-article-image span::before,
.crays-article-image span::after {
  content: "";
  position: absolute;
  display: block;
}

.crays-article-image span::before {
  top: 50%;
  right: 19px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
}

.crays-article-image span::after {
  top: 50%;
  right: 27px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #132622;
  border-right: 2px solid #132622;
  transform: translateY(-50%) rotate(45deg);
}

.crays-article-image span strong,
.crays-article-image span em {
  display: block;
  width: 100%;
  font-style: normal;
}

.crays-article-image span strong {
  font-size: 16px;
  line-height: 20px;
}

.crays-article-image span em {
  margin-top: 1px;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  opacity: 0.78;
}

.crays-article-card h3 {
  min-height: 112px;
  margin: 0 0 24px;
  color: #071a2d;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.33;
  font-weight: 800;
}

.crays-article-card h3 a {
  color: inherit;
}

.crays-article-card time {
  margin-top: auto;
  color: #31454a;
  font-size: 1.05rem;
  font-weight: 500;
}

.crays-ecosystem-copy {
  margin: 0;
  max-width: 94%;
  color: #071a2d;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.crays-ecosystem-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  align-items: center;
  gap: 10px;
  color: #132622;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 24.75px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.crays-ecosystem-more span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
}

.crays-ecosystem-more span::before,
.crays-ecosystem-more span::after {
  content: "";
  position: absolute;
  display: block;
}

.crays-ecosystem-more span::before {
  top: 7px;
  left: 0;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.crays-ecosystem-more span::after {
  top: 3px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.story-grid,
.metric-cards,
.trinity-grid,
.event-grid,
.landmark-grid,
.collab-grid,
.showcase-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.story-card,
.metric-cards article,
.trinity-grid article,
.collab-grid article,
.showcase-list article {
  padding: 26px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: var(--white);
  background: var(--ink);
}

.impact-strip div {
  min-height: 190px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.06);
}

.calendar-section,
.filter-section,
.landmarks-section,
.event-section,
.ownership-section,
.roadmap-section {
  background: var(--paper-strong);
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto;
}

.week-grid article {
  min-height: 190px;
  padding: 18px;
}

.week-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1240px;
  margin: 28px auto 0;
}

.tile-grid article,
.landmark-grid article,
.event-grid article,
.stay-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
}

.tile-grid img,
.landmark-grid img,
.event-grid img {
  height: 260px;
}

.tile-grid article h3,
.tile-grid article p,
.landmark-grid article h3,
.landmark-grid article p {
  padding-left: 20px;
  padding-right: 20px;
}

.tile-grid h3,
.landmark-grid h3 {
  margin-top: 20px;
}

.tile-grid p,
.landmark-grid p {
  color: var(--ink-soft);
  padding-bottom: 22px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.feature-list article {
  padding: 24px;
}

.stay-grid {
  display: grid;
  gap: var(--module-gap);
  max-width: var(--container);
  margin: 0 auto;
}

.stay-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  border: 0;
  border-radius: var(--card-radius);
  background: var(--card-surface);
}

.stay-card:nth-child(even) {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.stay-card:nth-child(even) img {
  order: 2;
}

.stay-card img {
  min-height: var(--large-card-height);
  object-fit: cover;
}

.stay-card-content {
  align-self: center;
  padding: clamp(36px, 5vw, 74px);
}

.stay-card .stay-card-kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.stay-card h2 {
  max-width: 480px;
  margin: 0 0 20px;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.05;
  font-weight: 900;
}

.stay-card span {
  display: block;
  max-width: 540px;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.5;
}

.stay-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: #132622;
  font-weight: 800;
}

.group-section {
  background: #d9eee9;
}

.stay-hero .hero-content {
  max-width: 860px;
}

.stay-hero .hero-actions {
  margin-top: 28px;
}

.stay-intro,
.stay-visual-section,
.stay-collection-section,
.stay-group-section,
.stay-booking-section {
  background: var(--paper);
}

.stay-visual-section {
  padding-top: var(--section-y);
  padding-bottom: 0;
}

.stay-wide-image {
  max-width: var(--container);
  height: min(640px, 68vh);
  min-height: var(--large-card-height);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #071a2d;
}

.stay-wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-collection-header,
.stay-booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.78fr);
  gap: var(--intro-gap);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
}

.stay-collection-header h2,
.stay-booking-card h2 {
  max-width: 780px;
  margin: 0 0 26px;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.08;
  font-weight: 400;
}

.stay-collection-header h2 strong {
  font-weight: 900;
}

.stay-collection-header p,
.stay-booking-card p {
  max-width: 650px;
  margin: 36px 0 0;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.5;
}

.stay-group-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--module-gap);
  max-width: var(--container);
  margin: 0 auto;
}

.stay-copy-card,
.stay-group-image {
  min-height: var(--large-card-height);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.stay-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 74px);
  background: var(--card-surface);
}

.stay-card-mark {
  width: 29px;
  height: 34px;
  margin: 0 0 28px;
  object-fit: contain;
}

.stay-copy-card h2 {
  max-width: 560px;
  margin: 0 0 24px;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.08;
  font-weight: 900;
}

.stay-copy-card > p:not(.section-kicker) {
  max-width: 620px;
  margin: 0 0 34px;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.52;
}

.stay-group-image {
  margin: 0;
  background: #071a2d;
}

.stay-group-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-booking-card {
  margin-bottom: 0;
  padding: clamp(36px, 5vw, 72px);
  border-radius: var(--card-radius);
  background: var(--card-surface);
}

.stay-booking-card p {
  margin-top: 0;
  margin-bottom: 34px;
}

.stay-landing-section {
  background: var(--paper);
}

.stay-landing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.7fr);
  gap: var(--intro-gap);
  align-items: start;
  max-width: var(--container);
  margin: 0 auto var(--intro-gap);
}

.stay-landing-intro h1 {
  max-width: 720px;
  margin: 0;
  color: #071a2d;
  font-size: var(--section-title-size);
  line-height: 1.22;
  font-weight: 400;
}

.stay-landing-intro h1 strong {
  font-weight: 900;
}

.stay-landing-intro p {
  max-width: 520px;
  margin: 0;
  color: #071a2d;
  font-size: var(--intro-text-size);
  font-weight: 500;
  line-height: 1.5;
}

.stay-hotels-section {
  background: var(--paper);
}

.stay-hotels-section > h2,
.stay-journey-section h2 {
  max-width: 1040px;
  margin: 0 auto;
  color: #071a2d;
  text-align: center;
  font-size: var(--section-title-size);
  line-height: 1.45;
  font-weight: 400;
}

.stay-hotels-section > h2 strong,
.stay-journey-section h2 strong {
  font-weight: 900;
}

.stay-hotel-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "left center right"
    "bottom-left cta bottom-right";
  gap: var(--module-gap);
  max-width: var(--container);
  margin: var(--intro-gap) auto 0;
  padding-top: 76px;
  align-items: start;
}

.stay-book-now {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 256px;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  color: #071a2d;
  background: var(--card-surface);
  font-size: 1rem;
  font-weight: 800;
}

.stay-book-now span,
.stay-card-arrow,
.stay-hotel-cta a span {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.stay-book-now span::before,
.stay-book-now span::after,
.stay-card-arrow::before,
.stay-card-arrow::after,
.stay-hotel-cta a span::before,
.stay-hotel-cta a span::after {
  content: "";
  position: absolute;
  display: block;
}

.stay-book-now span::before,
.stay-hotel-cta a span::before {
  top: 9px;
  left: 1px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.stay-book-now span::after,
.stay-hotel-cta a span::after {
  top: 5px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.stay-hotel-card {
  position: relative;
  height: 530px;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #071a2d;
}

.stay-hotel-card-left {
  grid-area: left;
  margin-top: 120px;
}

.stay-hotel-card-center {
  grid-area: center;
  height: 660px;
  min-height: 660px;
}

.stay-hotel-card-right {
  grid-area: right;
  margin-top: 120px;
}

.stay-hotel-card-bottom-left {
  grid-area: bottom-left;
}

.stay-hotel-card-bottom-right {
  grid-area: bottom-right;
}

.stay-hotel-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.stay-hotel-card:hover img {
  transform: scale(1.035);
}

.stay-card-pill,
.stay-card-arrow {
  position: absolute;
  z-index: 2;
}

.stay-card-pill {
  top: 18px;
  left: 18px;
  display: inline-flex;
  min-height: 38px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #071a2d;
  background: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

.stay-card-arrow {
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
}

.stay-card-arrow::before {
  top: 29px;
  left: 19px;
  width: 20px;
  height: 1.5px;
  background: #071a2d;
}

.stay-card-arrow::after {
  top: 19px;
  right: 18px;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid #071a2d;
  border-right: 1.5px solid #071a2d;
  transform: rotate(45deg);
}

.stay-card-panel {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 20px 22px;
  border-radius: 18px;
  color: #071a2d;
  background: rgba(255, 255, 255, 0.96);
}

.stay-card-panel h3 {
  margin: 0 0 4px;
  color: #071a2d;
  font-size: 1.26rem;
  line-height: 1.1;
  font-weight: 900;
}

.stay-card-panel p {
  margin: 0;
  color: #31454a;
  font-size: 1rem;
  font-weight: 500;
}

.stay-card-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: #17362f;
  font-size: 0.9rem;
}

.stay-card-meta small {
  color: #31454a;
  font-size: 0.84rem;
}

.stay-hotel-cta {
  grid-area: cta;
  display: flex;
  height: 530px;
  min-height: 530px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  border-radius: var(--card-radius);
  background: var(--card-surface);
  text-align: center;
}

.stay-hotel-cta img {
  width: min(100%, 190px);
  margin-bottom: 18px;
}

.stay-hotel-cta p {
  max-width: 300px;
  margin: 0 0 30px;
  color: #071a2d;
  font-size: 1.12rem;
  line-height: 1.38;
}

.stay-hotel-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 32px;
  border-radius: 999px;
  color: var(--white);
  background: #132622;
  font-weight: 800;
}

.stay-journey-section {
  background: var(--paper);
}

.stay-journey-section h2 {
  max-width: 1160px;
}

.landmark-grid {
  margin-top: 34px;
}

.collab-section {
  background: #d9eee9;
}

.collab-grid span {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--coral);
}

.showcase-list {
  align-items: stretch;
}

.event-grid article {
  display: grid;
}

.event-grid article div {
  padding: 24px;
}

.host-section {
  background: var(--ink);
  color: var(--white);
  max-width: none;
}

.host-section > div:first-child {
  max-width: 580px;
  justify-self: end;
}

.host-section p {
  color: rgba(255, 255, 255, 0.78);
}

.host-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.host-gallery img {
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
}

.host-gallery img:first-child {
  grid-row: span 2;
  height: 472px;
}

.contact-band {
  text-align: center;
  background: #d9eee9;
}

.contact-band h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.metric-cards {
  margin-top: 34px;
  grid-template-columns: repeat(4, 1fr);
}

.metric-cards strong {
  color: var(--aqua-deep);
}

.trinity-section {
  background: #d9eee9;
}

.roadmap {
  max-width: 920px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.roadmap li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.roadmap li:last-child {
  border-bottom: 1px solid var(--line);
}

.roadmap span {
  margin-bottom: 0;
}

.roadmap p {
  color: var(--ink-soft);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
  max-width: none;
}

.contact-section > div {
  max-width: 560px;
  justify-self: end;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  padding: 12px;
  resize: vertical;
}

.contact-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  padding: 16px;
  margin: 0 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.contact-form legend {
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form fieldset label,
.contact-form .terms-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-weight: 600;
}

.contact-form input[type="checkbox"] {
  width: auto;
  min-height: 0;
  padding: 0;
}

.contact-form input[type="file"] {
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

.event-categories {
  max-width: 1240px;
  margin: 0 auto 22px;
}

.contact-form small,
.newsletter small {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: var(--lime);
}

.disclaimer-section {
  max-width: 940px;
  margin: 0 auto;
}

.disclaimer-section details {
  padding: 18px 22px;
  margin-top: 10px;
}

.disclaimer-section summary {
  cursor: pointer;
  font-weight: 800;
}

.disclaimer-section p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  color: #071a2d;
  background: var(--paper);
}

.footer-shell {
  width: min(calc(100% - (var(--section-x) * 2)), var(--container));
  margin: 0 auto;
  padding: var(--section-y) 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 410px);
  gap: 54px;
  align-items: center;
}

.footer-logo-link {
  display: inline-flex;
  width: min(100%, 560px);
}

.footer-logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-newsletter {
  justify-self: end;
  width: min(100%, 410px);
}

.footer-newsletter label {
  display: block;
  margin-bottom: 14px;
  color: #071a2d;
  font-size: 1.28rem;
  font-weight: 500;
}

.footer-newsletter-row {
  display: grid;
  grid-template-columns: 1fr 58px;
  min-height: 72px;
  overflow: hidden;
  border-radius: 10px;
  background: #eee8de;
}

.footer-newsletter input {
  width: 100%;
  min-height: 72px;
  padding: 0 26px;
  border: 0;
  border-radius: 0;
  color: #071a2d;
  background: transparent;
  font-size: 1.26rem;
}

.footer-newsletter input::placeholder {
  color: #6c7480;
}

.footer-newsletter button {
  min-height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #21302d;
  background: transparent;
}

.footer-newsletter button span,
.footer-contact-link span {
  display: block;
  position: relative;
  width: 25px;
  height: 25px;
}

.footer-newsletter button span::before,
.footer-contact-link span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.8px;
  background: currentColor;
  transform: translateY(-50%);
}

.footer-newsletter button span::after,
.footer-contact-link span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.footer-newsletter small {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: #17362f;
}

.footer-divider {
  height: 1px;
  margin: 64px 0 86px;
  background: var(--line);
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(180px, 0.44fr) minmax(260px, 0.72fr);
  gap: 74px;
}

.footer-kicker,
.footer-menu h3,
.footer-important h3 {
  margin: 0 0 14px;
  color: #899296;
  font-size: 1.22rem;
  font-weight: 500;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #071a2d;
  border-bottom: 1px solid currentColor;
  font-size: 1.18rem;
  line-height: 1.1;
}

.footer-contact-link span {
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
}

.footer-contact address {
  margin: 78px 0 20px;
  color: #071a2d;
  font-style: normal;
  font-size: 1.22rem;
  line-height: 1.45;
}

.footer-project-note {
  margin: 0 0 26px;
  color: #899296;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #071a2d;
  font-size: 0.95rem;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  color: var(--white);
  background: #21302d;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-menu a,
.footer-important a {
  display: block;
  margin-bottom: 15px;
  color: #071a2d;
  font-size: 1.25rem;
  line-height: 1.15;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 58px;
  color: #071a2d;
  font-size: 0.94rem;
}

.footer-bottom-right {
  display: inline-flex;
  gap: 34px;
  align-items: center;
}

.footer-bottom a {
  color: #071a2d;
}

.crays-way-footer-cta {
  color: #071a2d;
  background: var(--paper);
}

section.crays-way-footer-cta:not(.hero):not(.page-hero) {
  padding: 24px var(--section-x) 0;
}

.crays-way-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 132px);
  width: min(80rem, 100%);
  margin: 0 auto;
  padding: 48px 0 42px;
  align-items: end;
  border-top: 1px solid rgba(7, 26, 45, 0.1);
}

.crays-way-footer-column {
  display: block;
  width: auto;
}

.crays-way-footer-column-left {
  justify-self: start;
}

.crays-way-footer-column-right {
  justify-self: end;
}

.crays-way-footer-title {
  max-width: 560px;
  margin: 0;
  color: #071a2d;
  font-family: var(--font-body);
  font-size: clamp(44px, 4.4vw, 58px) !important;
  font-weight: 700;
  line-height: 0.98 !important;
  letter-spacing: 0;
  text-align: left;
}

.crays-way-footer-title span {
  white-space: nowrap;
}

.crays-way-footer-title-red {
  color: var(--coral);
  font-size: clamp(25px, 2.35vw, 33px) !important;
  line-height: 1.08 !important;
}

.crays-way-footer-divider {
  display: none;
}

.crays-way-footer-copy {
  max-width: 560px;
  margin: 0;
  color: #071a2d;
  font-family: var(--font-body);
  font-size: 18.4px;
  font-weight: 400;
  line-height: 1.48;
  text-align: left;
}

.site-footer.crays-fund-footer {
  color: #071a2d;
  background: var(--paper);
  padding: 0 var(--section-x) 30px;
}

.crays-fund-footer-shell {
  width: min(80rem, 100%);
  margin: 0 auto;
}

.crays-fund-footer-divider {
  width: 100%;
  height: 1px;
  background: var(--coral);
}

.crays-fund-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0 26px;
}

.crays-fund-legal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.15rem 1.55rem;
}

.crays-fund-legal-list a {
  color: #071a2d;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
}

.crays-fund-legal-list a:hover {
  color: var(--coral);
}

.crays-fund-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.crays-fund-socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid rgba(7, 26, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.crays-fund-socials a:hover,
.crays-fund-socials a:focus-visible {
  border-color: rgba(7, 26, 45, 0.24);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.crays-fund-socials img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.crays-fund-footer-bottom {
  padding-top: 2px;
  text-align: center;
}

.crays-fund-footer-credit {
  display: block;
  color: #071a2d;
  font-size: 13.5px;
  line-height: 1.3;
}

.crays-fund-cookie {
  display: inline-flex;
  margin-top: 6px;
  padding: 0;
  border: 0;
  color: #071a2d;
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 1100px) {
  :root {
    --section-title-size: 2.3rem;
    --compact-title-size: 2.3rem;
    --section-y: 88px;
    --section-x: 28px;
    --intro-gap: 48px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .crays-world-heading h2 {
    font-size: clamp(36px, 4vw, 44px) !important;
    line-height: 1.18 !important;
  }

  .project-grid,
  .week-grid,
  .metric-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .week-grid article:last-child {
    grid-column: span 2;
  }

  .project-card,
  .project-card.large,
  .project-card.wide {
    grid-column: span 1;
  }

  .story-gallery-intro {
    grid-template-columns: 1fr;
  }

  .hero-feature-card {
    left: 34px;
    right: 34px;
    width: auto;
  }

  .mission-vision-card {
    padding: 48px;
  }

  .stay-landing-intro {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  }

  .stay-hotel-board {
    gap: 14px;
  }

  .stay-hotel-card,
  .stay-hotel-cta {
    height: 470px;
    min-height: 470px;
  }

  .stay-hotel-card-center {
    height: 590px;
    min-height: 590px;
  }

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

  .stay-card-meta {
    justify-items: start;
  }

  .crays-ecosystem-track .crays-article-card {
    flex-basis: calc((100% - var(--module-gap)) / 2);
  }
}

@media (max-width: 860px) {
  :root {
    --section-title-size: 2rem;
    --compact-title-size: 2rem;
    --section-y: 72px;
    --section-x: 20px;
    --intro-gap: 38px;
    --module-gap: 12px;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions,
  .header-cta {
    display: none;
  }

  body.menu-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0;
    padding-top: 12px;
  }

  body.menu-open .site-nav a {
    padding: 15px 0;
    border-top: 1px solid var(--line);
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  section:not(.hero):not(.page-hero) {
    padding: var(--section-y) var(--section-x);
  }

  .hero,
  .page-hero {
    min-height: 82vh;
    padding: 62px 20px 22px;
  }

  .hero-feature-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 96px minmax(0, 1fr) 38px;
    margin-top: 28px;
  }

  .hero-side-mark {
    display: none;
  }

  .split-intro,
  .stay-landing-intro,
  .stay-collection-header,
  .stay-booking-card,
  .fund-impact-intro,
  .fund-impact-grid,
  .mission-vision-layout,
  .flow-layout,
  .visit-route-panel.active,
  .crays-world-layout,
  .stay-group-layout,
  .group-section,
  .host-section,
  .contact-section,
  .stay-card,
  .stay-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .stay-card:nth-child(even) img {
    order: 0;
  }

  .stay-landing-intro h1,
  .stay-landing-intro p,
  .stay-hotels-section > h2,
  .stay-journey-section h2 {
    max-width: none;
  }

  .stay-landing-intro h1 {
    line-height: 1.15;
  }

  .stay-hotels-section > h2,
  .stay-journey-section h2 {
    line-height: 1.18;
  }

  .stay-hotel-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "book"
      "center"
      "left"
      "right"
      "bottom-left"
      "cta"
      "bottom-right";
    padding-top: 0;
  }

  .stay-book-now {
    position: static;
    grid-area: book;
    width: 100%;
  }

  .stay-hotel-card-left,
  .stay-hotel-card-right {
    margin-top: 0;
  }

  .stay-hotel-card,
  .stay-hotel-card-center,
  .stay-hotel-cta {
    height: 460px;
    min-height: 460px;
  }

  .stay-card-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .stay-card-meta {
    justify-items: end;
  }

  .fund-impact-image,
  .fund-impact-card-tall {
    min-height: 360px;
  }

  .fund-impact-card {
    min-height: 184px;
  }

  .fund-impact-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-map-section h2 {
    margin-bottom: 38px;
  }

  .location-map-frame {
    height: 430px;
    min-height: 430px;
    border-radius: 18px;
  }

  .stay-wide-image {
    height: 430px;
    min-height: 430px;
    border-radius: 18px;
  }

  .location-map-link {
    top: 14px;
    right: 14px;
    min-height: 42px;
  }

  .visit-flow-title {
    margin-bottom: 38px;
  }

  .visit-route-card {
    padding: 32px 14px 28px;
  }

  .visit-route-tabs {
    width: 100%;
  }

  .visit-route-tab {
    min-height: 48px;
    padding: 0 14px;
    flex: 1 1 0;
    white-space: nowrap;
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .visit-route-panel {
    gap: 30px;
  }

  .visit-route-copy-wrap {
    min-height: 0;
    padding: 0 6px;
  }

  .visit-route-copy h3 {
    font-size: 34px !important;
    line-height: 43px !important;
  }

  .visit-route-copy p {
    font-size: 18.4px !important;
    line-height: 27.6px !important;
  }

  .visit-route-step {
    grid-template-columns: 74px minmax(0, 1fr) 74px;
    min-height: 88px;
    gap: 10px;
  }

  .visit-route-steps img,
  .visit-route-steps span {
    width: 74px;
    height: 74px;
  }

  .visit-route-steps h3 {
    font-size: 18.4px !important;
    line-height: 27.6px !important;
  }

  .visit-route-steps span {
    font-size: 30px !important;
    line-height: 45px !important;
  }

  .media-spotlight-section h2 {
    margin-bottom: 38px;
    padding: 0 20px;
    white-space: normal;
  }

  .media-marquee-track {
    gap: 10px;
    animation-duration: 32s;
  }

  .media-marquee-track img {
    width: 138px;
    height: 148px;
    border-radius: 16px;
  }

  .crays-articles-header,
  .crays-article-grid {
    grid-template-columns: 1fr;
  }

  .crays-articles-header {
    margin-bottom: 44px;
  }

  .crays-association-banner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    margin-bottom: 52px;
    text-align: left;
  }

  .crays-association-banner-media,
  .crays-association-banner-copy {
    min-height: 318px;
  }

  .crays-articles-header p {
    margin-top: 0;
  }

  .stay-collection-header p,
  .stay-booking-card p {
    margin-top: 0;
  }

  .crays-articles-header h2 {
    white-space: normal;
  }

  .story-gallery-intro h2.story-gallery-title {
    font-size: 36px;
    line-height: 1.12;
  }

  .story-gallery-title strong {
    white-space: normal;
  }

  .crays-articles-button {
    width: 100%;
  }

  .crays-ecosystem-controls {
    justify-content: flex-start;
    margin: -20px 0 18px;
  }

  .crays-ecosystem-track .crays-article-card {
    flex-basis: min(86vw, 420px);
  }

  .crays-article-image {
    height: 340px;
  }

  .crays-article-card h3 {
    min-height: 0;
  }

  .crays-ecosystem-copy {
    max-width: 100%;
    font-size: 18px;
    line-height: 27px;
  }

  .project-grid,
  .tab-panel.active,
  .story-grid,
  .story-gallery-intro,
  .story-gallery-grid,
  .impact-strip,
  .tile-grid,
  .feature-list,
  .landmark-grid,
  .collab-grid,
  .showcase-list,
  .event-grid,
  .trinity-grid,
  .metric-cards,
  .footer-top,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .commitment-section .tab-panel article,
  .commitment-section .tab-panel article:nth-last-child(2):nth-child(7),
  .commitment-section .tab-panel article:nth-last-child(1):nth-child(8) {
    grid-column: span 1;
  }

  .commitment-section .tab-list {
    border-radius: 28px;
  }

  .story-gallery-grid {
    grid-template-rows: none;
  }

  .story-gallery-grid figure,
  .story-gallery-large {
    min-height: 260px;
    grid-row: auto;
  }

  .week-grid {
    grid-template-columns: 1fr;
  }

  .week-grid article:last-child {
    grid-column: span 1;
  }

  .mission-vision-image img,
  .crays-world-image img,
  .stay-group-image img,
  .group-section img,
  .stay-card img {
    min-height: 0;
    height: 330px;
  }

  .mission-vision-card,
  .crays-world-card,
  .stay-copy-card,
  .stay-card div,
  .contact-form {
    padding: 26px;
  }

  .stay-copy-card,
  .stay-group-image {
    min-height: 0;
  }

  .mission-vision-heading {
    margin-bottom: 34px;
  }

  .mission-vision-card,
  .crays-world-card,
  .crays-world-image {
    min-height: 0;
  }

  .mission-vision-section-compact .mission-vision-image img {
    height: 280px;
  }

  .mission-vision-section-compact .mission-vision-card {
    padding: 26px;
  }

  .mission-vision-section-compact .mission-vision-card p {
    font-size: 16.5px;
    line-height: 1.46;
  }

  .crays-world-heading {
    margin-bottom: 34px;
  }

  .crays-world-heading-line {
    white-space: normal;
  }

  .crays-world-section-compact .crays-world-image {
    min-height: 0;
  }

  .crays-world-section-compact .crays-world-image img {
    position: static;
    height: 280px;
  }

  .crays-world-section-compact .crays-world-card {
    padding: 26px;
  }

  .crays-world-section-compact .crays-world-card p {
    font-size: 16.5px;
    line-height: 1.46;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 18px;
  }

  .host-section > div:first-child,
  .contact-section > div {
    justify-self: start;
  }

  .host-gallery img,
  .host-gallery img:first-child {
    height: 220px;
  }

  .footer-shell {
    padding: var(--section-y) 0 30px;
  }

  .footer-newsletter {
    justify-self: stretch;
    width: 100%;
  }

  .footer-divider {
    margin: 42px 0;
  }

  .footer-contact address {
    margin-top: 42px;
  }

  .footer-bottom {
    display: block;
    margin-top: 42px;
  }

  .footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
  }

  .crays-way-footer-inner,
  .crays-fund-footer-main {
    width: min(80rem, 100%);
  }

  section.crays-way-footer-cta:not(.hero):not(.page-hero) {
    padding-top: 18px;
  }

  .crays-way-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 34px;
    align-items: start;
  }

  .crays-way-footer-column-right {
    justify-self: start;
  }

  .crays-way-footer-title {
    max-width: 640px;
    font-size: 42px !important;
    line-height: 1.02 !important;
  }

  .crays-way-footer-copy {
    max-width: 680px;
  }

  .crays-fund-footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .crays-fund-legal-list,
  .crays-fund-socials {
    justify-content: flex-start;
  }

  .contact-form fieldset {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  :root {
    --section-title-size: 1.72rem;
    --compact-title-size: 1.72rem;
    --section-y: 58px;
    --section-x: 18px;
    --intro-gap: 32px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.22rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .crays-world-heading h2 {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions,
  .host-gallery {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .footer-shell {
    padding: var(--section-y) 0 28px;
  }

  .footer-newsletter-row {
    grid-template-columns: 1fr 54px;
    min-height: 64px;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    min-height: 64px;
  }

  .footer-content {
    gap: 42px;
  }

  .footer-menu a,
  .footer-important a {
    font-size: 1.12rem;
  }

  section.crays-way-footer-cta:not(.hero):not(.page-hero) {
    padding: 14px var(--section-x) 0;
  }

  .crays-way-footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 0 30px;
  }

  .crays-way-footer-column {
    width: 100%;
  }

  .crays-way-footer-column-left,
  .crays-way-footer-column-right {
    justify-self: start;
  }

  .crays-way-footer-title {
    font-size: 37px !important;
    line-height: 1.02 !important;
    text-align: left;
  }

  .crays-way-footer-title-red {
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .crays-way-footer-divider {
    display: none;
  }

  .crays-way-footer-copy {
    font-size: 16.5px;
    line-height: 1.48;
  }

  .site-footer.crays-fund-footer {
    padding-bottom: 28px;
  }

  .crays-fund-footer-main {
    gap: 22px;
    padding: 22px 0 24px;
  }

  .crays-fund-legal-list {
    gap: 0.75rem 1rem;
  }

  .crays-fund-socials a {
    width: 42px;
    height: 42px;
  }

  .crays-fund-socials img {
    width: 30px;
    height: 30px;
  }

  .story-gallery-intro h2.story-gallery-title {
    font-size: 32px;
  }

  .crays-association-banner {
    gap: 12px;
    justify-items: stretch;
    padding: 0;
    text-align: left;
  }

  .crays-association-banner-media {
    min-height: 260px;
    border-radius: 18px;
  }

  .crays-association-banner-copy {
    min-height: auto;
    padding: 26px;
    border-radius: 18px;
  }

  .crays-association-banner-title {
    font-size: 25px;
  }

  .crays-association-banner-link {
    width: fit-content;
  }

  .fund-impact-facts {
    grid-template-columns: 1fr;
  }

  .fund-impact-image {
    min-height: 310px;
  }

  .fund-impact-card {
    min-height: 172px;
    padding: 24px;
  }

  .stay-landing-intro h1,
  .stay-hotels-section > h2,
  .stay-journey-section h2 {
    line-height: 1.16;
  }

  .stay-hotel-card,
  .stay-hotel-card-center,
  .stay-hotel-cta {
    height: 420px;
    min-height: 420px;
    border-radius: 18px;
  }

  .stay-hotel-cta {
    padding: 30px 22px;
  }

  .stay-hotel-cta img {
    width: min(100%, 160px);
  }

  .stay-card-panel {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 16px;
  }

  .stay-card-meta {
    justify-items: start;
  }

  .stay-card-arrow {
    width: 50px;
    height: 50px;
  }

  .stay-card-arrow::before {
    top: 25px;
    left: 16px;
    width: 18px;
  }

  .stay-card-arrow::after {
    top: 16px;
    right: 15px;
  }
}
