:root {
  color-scheme: dark;
  --ink: #f4efe7;
  --paper: #090b0f;
  --white: #ffffff;
  --muted: #a8adb5;
  --line: rgba(255, 255, 255, 0.12);
  --charcoal: #0f1116;
  --surface: #151922;
  --surface-strong: #1d232d;
  --surface-soft: #11151c;
  --red: #d34b42;
  --red-dark: #a93631;
  --teal: #35bdb5;
  --gold: #d2a24d;
  --smoke: #10141b;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(211, 75, 66, 0.12), transparent 36rem),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui,
    -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 52px);
  color: var(--white);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(9, 11, 15, 0.9);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0;
}

.brand-text {
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a,
.nav-group-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  font: inherit;
  font-weight: 700;
}

.site-nav > a::after,
.nav-group-toggle::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-group-toggle:hover::after,
.nav-group-toggle.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-group-toggle {
  cursor: pointer;
  list-style: none;
}

.nav-group-toggle::-webkit-details-marker {
  display: none;
}

.nav-group-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-group[open] .nav-group-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 60;
  display: none;
  min-width: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 17, 22, 0.96);
  padding: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.nav-group[open] .nav-dropdown,
.nav-group:hover .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--surface-strong);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
}

.nav-toggle svg,
.btn svg,
.contact-methods svg,
.floating-actions svg,
.site-footer svg,
.article-card svg,
.intro-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 44px) clamp(18px, 5vw, 72px) 44px;
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 78px) 0 76px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1700&q=86")
      center / cover;
  color: var(--white);
}

.page-hero-pricing {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1700&q=86")
      center / cover;
}

.page-hero-jobs {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1700&q=86")
      center / cover;
}

.page-hero-locations {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=1700&q=86")
      center / cover;
}

.page-hero-talents {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=1700&q=86")
      center / cover;
}

.page-hero-articles,
.page-hero-legal {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1700&q=86")
      center / cover;
}

.page-hero-contact {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1700&q=86")
      center / cover;
}

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

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=88")
      center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 24%, rgba(196, 55, 48, 0.38), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-light {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--ink);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 44px;
  display: grid;
  width: min(390px, 37vw);
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.48);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  padding: 18px 16px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.metric,
.metric-label {
  display: block;
}

.metric {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.section {
  padding: clamp(68px, 8vw, 110px) 0;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  padding: 30px 0;
  background: var(--charcoal);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 190px;
  padding: 30px;
  background: #0c0f14;
}

.intro-item svg {
  color: var(--red);
}

.intro-item h2 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.intro-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.section-heading.compact {
  position: static;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.jobs-layout h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.jobs-layout p,
.contact-layout p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card,
.job-panel,
.location-card,
.talent-card,
.article-card,
.venue-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 28px;
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(211, 75, 66, 0.16), transparent 46%),
    #0d1016;
  color: var(--white);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.price-top strong {
  border-radius: 6px;
  background: var(--teal);
  padding: 5px 9px;
  color: var(--white);
  font-size: 12px;
}

.price {
  margin: 34px 0 16px;
  font-size: 38px;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

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

.process-step {
  display: grid;
  min-height: 95px;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.process-step:first-child {
  padding-top: 0;
}

.process-step span {
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 5px;
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.section-dark {
  background: #080a0e;
  color: var(--white);
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.jobs-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.job-tags span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.job-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(53, 189, 181, 0.14), transparent 48%),
    #151922;
  color: var(--white);
}

.job-panel h3 {
  margin: 0 0 24px;
  font-size: 28px;
}

.timeline {
  display: grid;
  gap: 20px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  position: relative;
  padding-left: 34px;
  counter-increment: steps;
}

.timeline li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  content: counter(steps);
  font-size: 12px;
  font-weight: 900;
}

.timeline span {
  display: block;
  font-weight: 900;
}

.timeline p {
  margin: 4px 0 0;
}

.location-grid,
.talent-grid,
.article-grid,
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-card {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-card div {
  padding: 22px;
}

.location-card span,
.talent-info span,
.article-card span,
.venue-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-card h3,
.talent-info h3,
.article-card h3,
.venue-card h3 {
  margin: 7px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.location-card p,
.talent-info p,
.article-card p,
.venue-card p {
  margin: 0;
  color: var(--muted);
}

.venue-card {
  scroll-margin-top: calc(var(--header-height) + 22px);
  min-height: 210px;
  padding: 24px;
}

.section-muted {
  background: var(--smoke);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 8px 14px;
  color: var(--ink);
  font-weight: 900;
}

.filter-btn.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

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

.talent-card {
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.talent-card.is-hidden {
  display: none;
}

.talent-card:hover {
  transform: translateY(-4px);
}

.talent-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.talent-info {
  padding: 18px;
}

.article-grid {
  align-items: stretch;
}

.article-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
}

.article-card h3 {
  font-size: 26px;
}

.article-card a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.86), rgba(21, 21, 21, 0.5)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1700&q=85")
      center / cover;
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  justify-content: start;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a,
.contact-item {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.contact-address {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.contact-address p {
  margin: 0;
}

.site-footer {
  background: #050608;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-inner > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.floating-actions {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.35fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 10px;
}

.legal-nav a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px 14px;
  font-weight: 900;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.legal-card h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(15, 17, 22, 0.98);
    padding: 8px;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav > a,
  .nav-group-toggle {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 12px;
  }

  .site-nav > a:hover,
  .site-nav > a.is-active,
  .nav-group-toggle:hover,
  .nav-group-toggle.is-active {
    background: var(--surface-strong);
  }

  .site-nav > a::after,
  .nav-group-toggle::after {
    content: none;
  }

  .nav-group {
    display: block;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 14px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-group[open] .nav-dropdown {
    display: grid;
  }

  .nav-group:hover .nav-dropdown {
    display: none;
  }

  .nav-group[open]:hover .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 11px 12px;
    color: var(--muted);
    font-size: 15px;
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 28px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
  }

  .split,
  .pricing-layout,
  .jobs-layout,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .legal-nav {
    position: static;
  }

  .intro-grid,
  .location-grid,
  .article-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 0 16px;
  }

  .brand-text {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 110px 18px 28px;
  }

  .page-hero {
    min-height: 44vh;
    padding: 104px 0 50px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

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

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 58px 0;
  }

  .intro-band {
    padding: 18px 0;
  }

  .intro-item {
    min-height: 0;
    padding: 24px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
  }

  .location-grid,
  .talent-grid,
  .article-grid,
  .venue-grid {
    gap: 14px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .floating-actions {
    position: static;
    display: flex;
    justify-content: center;
    padding: 14px;
    background: #050608;
  }

  .floating-actions a {
    box-shadow: none;
  }
}
