:root {
  --ink: #061a1d;
  --muted: #607176;
  --paper: #f7f4ed;
  --foam: #e7f3ef;
  --sea: #075f68;
  --deep: #032f3a;
  --sun: #f0b35a;
  --coral: #d8664f;
  --line: rgba(6, 26, 29, 0.13);
  --shadow: 0 24px 70px rgba(4, 37, 45, 0.17);
  --radius: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(7, 95, 104, 0.1), transparent 30%),
    linear-gradient(180deg, #fbfaf6, var(--paper));
}

body.nav-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
p,
span,
a {
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.9);
  box-shadow: 0 8px 28px rgba(6, 26, 29, 0.08);
  backdrop-filter: blur(18px);
}

.solid-header .site-header {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.9);
  box-shadow: 0 8px 28px rgba(6, 26, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 38px;
  padding: 0 7px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 12px;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 6vw, 86px) 116px;
  color: #fff;
}

.hero-image,
.hero-scrim,
.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.hero-backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  filter: blur(20px) saturate(1.08);
  opacity: 0;
}

.kite-photo-hero {
  min-height: 86vh;
  background: #cbd3dd;
}

.kite-photo-hero .hero-backdrop {
  opacity: 1;
}

.kite-photo-hero .hero-image-contain {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
  filter: drop-shadow(0 20px 55px rgba(3, 23, 28, 0.14));
}

.kite-photo-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 23, 28, 0.74) 0%, rgba(3, 23, 28, 0.38) 34%, rgba(3, 23, 28, 0.12) 70%),
    linear-gradient(0deg, rgba(3, 23, 28, 0.55) 0%, rgba(3, 23, 28, 0.04) 44%);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 23, 28, 0.82) 0%, rgba(3, 23, 28, 0.47) 42%, rgba(3, 23, 28, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 23, 28, 0.74) 0%, rgba(3, 23, 28, 0.08) 44%);
}

.hero-content,
.hero-meta {
  position: relative;
  z-index: 2;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 8.6vw, 128px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 0;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 800;
}

.profile-chip img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 38%;
}

.profile-chip figcaption {
  margin: 0;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(6, 26, 29, 0.16);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 32px rgba(6, 26, 29, 0.14);
}

.button-light {
  border-color: rgba(6, 26, 29, 0.22);
}

.hero-meta {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section-band {
  background: var(--foam);
}

.intro {
  padding: 82px 0;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.7vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.visual-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.split-section {
  padding: 108px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

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

.universe-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.profile-card,
.offer-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.profile-card-dark {
  background: var(--deep);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.profile-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 42px;
}

.universe-grid .profile-top {
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 28px;
}

.profile-badge {
  max-width: 100%;
  padding: 8px 10px;
  background: var(--sun);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.profile-card h3,
.offer-grid h3 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

.profile-card p,
.offer-grid p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.profile-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 9px;
  color: var(--sea);
  font-size: 14px;
  font-weight: 800;
}

.profile-card-dark .text-link {
  color: #fff;
}

.text-link::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.visual-band {
  padding: 105px 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.visual-panel {
  min-height: 520px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(3, 47, 58, 0.2), rgba(3, 47, 58, 0.78)),
    url("assets/hero-ocean-ride.png") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-panel span {
  width: fit-content;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-list div {
  padding-top: 17px;
  border-top: 1px solid rgba(6, 26, 29, 0.16);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 4px;
  font-size: 17px;
}

.feature-list span {
  color: var(--muted);
}

#collabs {
  padding: 105px 0;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.offer-number {
  display: block;
  margin-bottom: 46px;
  color: var(--coral);
  font-weight: 800;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 240px;
  color: #fff;
  background: var(--deep);
}

.gallery-item {
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(3, 47, 58, 0.12), rgba(3, 47, 58, 0.82)),
    url("assets/hero-ocean-ride.png") center / cover;
  font-weight: 800;
}

.gallery-item:nth-child(2) {
  background-position: 42% center;
}

.gallery-item:nth-child(3) {
  background-position: 63% center;
}

.gallery-item:nth-child(4) {
  background-position: 78% center;
}

.contact-section {
  padding: 86px 0;
  background: var(--sun);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.admin-body {
  background: #f4f7f5;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 80px;
}

.admin-hero,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(4, 37, 45, 0.08);
}

.admin-hero {
  padding: clamp(26px, 5vw, 54px);
  margin-bottom: 20px;
}

.admin-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.92;
}

.admin-hero p:not(.eyebrow):not(.admin-status) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.admin-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--sea);
  font-weight: 800;
}

.admin-status.is-error {
  color: #b42318;
}

.admin-form {
  display: grid;
  gap: 20px;
}

.admin-card {
  padding: clamp(22px, 4vw, 38px);
}

.admin-card[data-dirty="true"] {
  border-color: rgba(180, 35, 24, 0.35);
}

.admin-card-heading {
  margin-bottom: 22px;
}

.admin-card-heading h2 {
  font-size: clamp(30px, 4vw, 54px);
}

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

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

.admin-wide {
  grid-column: 1 / -1;
}

.admin-card label,
.admin-repeat-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-card input,
.admin-card textarea,
.admin-repeat-card input,
.admin-repeat-card textarea,
.json-box {
  width: 100%;
  border: 1px solid rgba(6, 26, 29, 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.admin-card textarea,
.json-box {
  resize: vertical;
}

.admin-image-preview {
  display: block;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 8px 0 10px;
  background: #f3f5f6;
}

.gear-admin-list {
  display: grid;
  gap: 14px;
}

.admin-repeat-card {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(247, 244, 237, 0.68);
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox-row input {
  width: auto;
}

.admin-nav {
  gap: 18px;
}

.hero-compact {
  min-height: 72vh;
}

.page-hero {
  padding: 150px 0 94px;
  color: var(--ink);
}

.page-hero .section-inner {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 6.8vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.58;
}

.engineer-hero {
  background:
    linear-gradient(135deg, rgba(7, 95, 104, 0.12), rgba(240, 179, 90, 0.22)),
    var(--paper);
}

.engineer-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 1.02;
}

.web-hero {
  background:
    linear-gradient(135deg, rgba(216, 102, 79, 0.18), rgba(231, 243, 239, 0.9)),
    var(--paper);
}

.pro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.quick-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.quick-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  border-radius: 22px;
  object-fit: cover;
  object-position: 50% 36%;
}

.quick-card h2 {
  margin-top: 22px;
  font-size: clamp(26px, 4vw, 44px);
}

.quick-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.quick-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.quick-list span,
.skill-cloud span {
  display: inline-flex;
  max-width: 100%;
  width: fit-content;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: normal;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modern-band {
  padding: 100px 0;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 78px);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--sea);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.05;
}

.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.sponsor-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 179, 90, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(231, 243, 239, 0.9), rgba(247, 244, 237, 0.96));
}

.quiver-section {
  padding-top: 0;
}

.sponsor-heading {
  align-items: start;
}

.sponsor-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: stretch;
}

.sponsor-card,
.quiver-panel,
.gear-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(4, 37, 45, 0.1);
}

.sponsor-card,
.quiver-panel {
  padding: clamp(24px, 4vw, 42px);
}

.sponsor-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 22px;
  color: #e6332a;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: lowercase;
}

.sponsor-mark {
  display: block;
  width: clamp(46px, 7vw, 78px);
  aspect-ratio: 1;
  border-radius: 28% 72% 62% 38% / 38% 34% 66% 62%;
  background: #e6332a;
  transform: rotate(-14deg);
}

.sponsor-card p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.sponsor-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
}

.sponsor-brand-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(4, 37, 45, 0.08);
}

.sponsor-brand-logo {
  display: grid;
  place-items: center;
  height: 108px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
}

.sponsor-brand-logo img {
  display: block;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.sponsor-brand-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--foam);
  color: var(--sea);
  font-size: 12px;
  font-weight: 900;
}

.sponsor-brand-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
}

.sponsor-brand-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.quiver-panel h2 {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.gear-card {
  padding: clamp(20px, 3vw, 28px);
}

.gear-card-featured {
  background: var(--deep);
  color: #fff;
}

.gear-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1.18;
  margin: -6px -6px 18px;
  padding: 14px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(231, 243, 239, 0.95), rgba(255, 255, 255, 0.92)),
    #fff;
}

.gear-card-featured .gear-media {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(231, 243, 239, 0.88)),
    #fff;
}

.gear-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 18px rgba(4, 37, 45, 0.16));
}

.gear-media-bar {
  aspect-ratio: 1.18;
  padding: 4px 14px;
}

.gear-media-board {
  aspect-ratio: 1.18;
  padding: 8px;
}

.gear-size {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.gear-card h3 {
  margin: 28px 0 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 0.98;
}

.gear-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.gear-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 28px;
    background: var(--ink);
    color: #fff;
    font-size: 26px;
    transform: translateY(-100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .hero {
    min-height: 92vh;
    padding: 106px 18px 108px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 72px);
    line-height: 0.98;
  }

  .hero-meta {
    left: 18px;
    right: 18px;
    justify-content: flex-start;
  }

  .intro-grid,
  .contact-grid,
  .visual-grid,
  .profile-grid,
  .universe-grid,
  .offer-grid,
  .sponsor-brand-grid,
  .sponsor-layout,
  .quiver-grid,
  .pro-hero-grid,
  .timeline-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .visual-panel {
    min-height: 380px;
  }

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

  .site-footer {
    flex-direction: column;
  }

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

  .inline-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 118px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 11.5vw, 68px);
    line-height: 1;
  }

  .quick-card {
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .profile-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .button {
    padding: 0 14px;
  }

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

  .profile-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .split-section,
  #collabs,
  .modern-band {
    padding: 72px 0;
  }

  .quick-list span,
  .skill-cloud span {
    width: 100%;
  }

  h2 {
    font-size: clamp(30px, 9.4vw, 42px);
    line-height: 1.08;
  }

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

  .sponsor-card,
  .quiver-panel,
  .gear-card,
  .sponsor-brand-card {
    border-radius: 22px;
  }

  .sponsor-logo {
    font-size: clamp(40px, 14vw, 64px);
  }

  .admin-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 96px;
  }

  .admin-actions .button {
    width: 100%;
  }
}
