:root {
  --ink: #0b0d11;
  --ink-soft: #11151c;
  --panel: #151a22;
  --panel-2: #1b222d;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f6f7fb;
  --muted: #aab1bd;
  --blue: #265dff;
  --blue-bright: #4f7cff;
  --gold: #e1aa3b;
  --gold-soft: #f0c86e;
  --danger: #e85d5d;
  --success: #5ac58f;
  --surface: #f4f6f9;
  --surface-card: #ffffff;
  --surface-text: #12151a;
  --surface-muted: #606a77;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100vw - 40px));
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(38, 93, 255, 0.14), transparent 27rem),
    radial-gradient(circle at 90% 15%, rgba(225, 170, 59, 0.08), transparent 26rem),
    var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(79, 124, 255, 0.45);
  outline-offset: 3px;
}

::selection {
  background: rgba(79, 124, 255, 0.35);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7.3rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 850;
}

.lead {
  max-width: 760px;
  color: #c5cad3;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.text-muted {
  color: var(--muted);
}

.gold {
  color: var(--gold-soft);
}

.blue {
  color: var(--blue-bright);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(11, 13, 17, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 13, 17, 0.93);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(225, 170, 59, 0.45);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(225, 170, 59, 0.17), rgba(38, 93, 255, 0.1));
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.025);
}

.brand-text {
  display: grid;
  line-height: 1.04;
}

.brand-text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  color: #c8ced8;
  font-size: 0.92rem;
  font-weight: 760;
  transition: color 150ms ease, background 150ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: var(--header-h) 0 0;
  overflow-y: auto;
  padding: 28px 20px 44px;
  background: rgba(8, 10, 14, 0.98);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  width: min(620px, 100%);
  margin: 0 auto;
  gap: 8px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 1.02rem;
  font-weight: 820;
}

.mobile-nav a::after {
  content: "→";
  color: var(--gold-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: none;
  color: #fff;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  box-shadow: 0 12px 32px rgba(38, 93, 255, 0.28);
}

.btn-primary:hover {
  background: #376aff;
  box-shadow: 0 15px 36px rgba(38, 93, 255, 0.38);
}

.btn-gold {
  background: var(--gold);
  color: #17120a;
  box-shadow: 0 12px 32px rgba(225, 170, 59, 0.21);
}

.btn-gold:hover {
  background: #ecc066;
}

.btn-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: #12161d;
  color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.98) 0%, rgba(8, 10, 14, 0.84) 42%, rgba(8, 10, 14, 0.32) 73%, rgba(8, 10, 14, 0.58) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 24%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.9) contrast(1.07);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 17, 0.08), rgba(11, 13, 17, 0.24)),
    radial-gradient(circle at 75% 38%, rgba(38, 93, 255, 0.16), transparent 28rem);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(100svh - var(--header-h));
  padding: 88px 0 92px;
}

.hero-copy {
  max-width: 850px;
}

.hero h1 {
  max-width: 820px;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(115deg, #fff 12%, #d5dcff 54%, #f1c96f 115%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 42px;
  color: #cbd1da;
  font-size: 0.91rem;
  font-weight: 760;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 0 5px rgba(225, 170, 59, 0.12);
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 72px 0;
}

.section-light {
  color: var(--surface-text);
  background: var(--surface);
}

.section-light .lead,
.section-light .text-muted {
  color: var(--surface-muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.section-head-copy {
  max-width: 760px;
}

.section-head h2 {
  margin-bottom: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.card-light {
  border: 1px solid #dfe3e9;
  border-radius: var(--radius);
  background: var(--surface-card);
  box-shadow: 0 12px 30px rgba(36, 46, 62, 0.06);
}

.value-card,
.impact-card,
.link-card,
.profile-card {
  padding: 28px;
}

.value-card .number,
.impact-card .number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(225, 170, 59, 0.34);
  border-radius: 12px;
  background: rgba(225, 170, 59, 0.08);
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.value-card p,
.impact-card p,
.link-card p,
.profile-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-light p {
  color: var(--surface-muted);
}

.feature-split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(9, 11, 15, 0.52));
  content: "";
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.feature-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 82px;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(38, 93, 255, 0.18), transparent 23rem),
    radial-gradient(circle at 82% 25%, rgba(225, 170, 59, 0.09), transparent 20rem);
  content: "";
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.breadcrumbs a:hover {
  color: #fff;
}

.quote-block {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(225, 170, 59, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(225, 170, 59, 0.09), rgba(38, 93, 255, 0.05));
}

.quote-block blockquote {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 880;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.quote-block cite {
  display: block;
  margin-top: 18px;
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 820;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.member-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.member-card .handle {
  color: var(--blue-bright);
  font-size: 0.9rem;
  font-weight: 780;
}

.member-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.impact-card {
  min-height: 290px;
}

.impact-card .tag,
.event-card .tag,
.product-card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(38, 93, 255, 0.18);
  border-radius: 999px;
  background: rgba(38, 93, 255, 0.08);
  color: #b9c7ff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(225, 170, 59, 0.08);
  color: #d7d2c7;
  font-size: 0.92rem;
}

.section-light .legal-note {
  color: #4f4a3f;
  background: #fff8e7;
}

.world-meet-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.world-meet-art {
  display: grid;
  place-items: center;
  padding: 28px;
}

.world-meet-art img {
  width: min(100%, 560px);
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.45));
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.event-card.featured {
  border-color: rgba(225, 170, 59, 0.44);
  background: linear-gradient(160deg, rgba(225, 170, 59, 0.12), rgba(38, 93, 255, 0.07));
  transform: translateY(-8px);
}

.event-card h3 {
  font-size: 1.48rem;
}

.event-card .price {
  margin: 16px 0 20px;
  color: var(--gold-soft);
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.event-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #c9ced8;
  font-size: 0.91rem;
}

.event-card li {
  display: flex;
  gap: 8px;
}

.event-card li::before {
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.event-card .btn {
  margin-top: auto;
}

.shop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d3d8e1;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: rgba(79, 124, 255, 0.55);
  background: rgba(38, 93, 255, 0.12);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #181d25;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-content {
  padding: 18px;
}

.product-content h3 {
  min-height: 2.3em;
  margin-bottom: 10px;
  font-size: 1.03rem;
  line-height: 1.16;
}

.product-price {
  color: var(--gold-soft);
  font-weight: 900;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.product-actions .btn {
  flex: 1;
}

.shop-status,
.feed-status {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
}

.shop-status strong,
.feed-status strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
}

.social-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.social-filters {
  display: flex;
  gap: 8px;
}

.social-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.social-post {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.social-post-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #151a21;
}

.social-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-post-content {
  padding: 20px;
}

.social-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.social-post-platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}

.social-post-platform::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-bright);
  content: "";
}

.social-post[data-platform="instagram"] .social-post-platform::before {
  background: var(--gold);
}

.social-post-copy {
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.7em;
  margin-bottom: 18px;
  color: #d3d8e0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.profile-card h3 {
  margin-bottom: 6px;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.form-aside {
  padding: clamp(34px, 5vw, 58px);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(38, 93, 255, 0.15), transparent 23rem),
    rgba(255, 255, 255, 0.02);
}

.form-area {
  padding: clamp(34px, 5vw, 58px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #d9dde4;
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  padding: 13px 14px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #7f8997;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(79, 124, 255, 0.7);
  outline: none;
  box-shadow: 0 0 0 4px rgba(38, 93, 255, 0.12);
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border: 1px solid rgba(79, 124, 255, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(125deg, rgba(38, 93, 255, 0.22), rgba(225, 170, 59, 0.1)),
    #111722;
}

.cta-band::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.015);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080a0e;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 44px;
  padding: 64px 0 48px;
}

.footer-intro p {
  max-width: 420px;
  margin-top: 20px;
  color: var(--muted);
}

.footer-col h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: #aeb5c0;
  font-size: 0.91rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  color: #7f8896;
  font-size: 0.81rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .desktop-nav a {
    padding-inline: 9px;
    font-size: 0.87rem;
  }

  .product-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card.featured {
    transform: none;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 70px;
  }

  .desktop-nav,
  .header-actions .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(8, 10, 14, 0.96), rgba(8, 10, 14, 0.5)),
      linear-gradient(0deg, var(--ink), transparent 34%);
  }

  .feature-split,
  .world-meet-hero,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .form-aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .member-grid,
  .social-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5.5rem);
  }

  .brand-text span {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    align-content: end;
    min-height: 780px;
    padding: 110px 0 76px;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(8, 10, 14, 0.99) 0%, rgba(8, 10, 14, 0.84) 43%, rgba(8, 10, 14, 0.2) 75%, rgba(8, 10, 14, 0.35) 100%);
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head .btn {
    margin-top: 18px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .member-grid,
  .product-grid,
  .package-grid,
  .social-feed,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 350px;
  }

  .page-hero {
    padding: 82px 0 60px;
  }

  .world-meet-art {
    order: -1;
  }

  .event-card {
    min-height: 0;
  }

  .profile-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    padding: 44px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-text small {
    display: none;
  }

  .header-actions .btn-primary {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-column: auto;
  }
}
