@import url("https://fonts.googleapis.com/css2?family=Baloo+Tamma+2:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #101726;
  --violet: #7c4dff;
  --violet-hover: #6937f2;
  --warm-white: #fbfaf7;
  --white: #ffffff;
  --soft-violet: #efebff;
  --deep-plum: #2a1f4f;
  --champagne: #d6c4a3;
  --warm-grey: #8c8792;
  --muted: #625d69;
  --border: #e6e2da;
  --font-display: "Baloo Tamma 2", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --radius: 24px;
  --container: 1200px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--warm-white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6.2vw, 6.15rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--violet);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 28px rgba(16, 23, 38, 0.05);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 206px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.84rem;
  font-weight: 600;
}

.main-nav > a:not(.button),
.footer-nav a {
  position: relative;
}

.main-nav > a:not(.button)::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(124, 77, 255, 0.42);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.8rem;
}

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

.button-primary:hover {
  background: var(--violet-hover);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-dark:hover {
  background: var(--deep-plum);
}

.button-text {
  min-height: 45px;
  padding-inline: 2px;
  border-radius: 0;
  border-bottom-color: var(--navy);
}

.button-text:hover {
  color: var(--violet);
  border-bottom-color: var(--violet);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  color: var(--violet);
  background: var(--soft-violet);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 116px;
  background:
    radial-gradient(circle at 93% 17%, rgba(124, 77, 255, 0.13), transparent 24%),
    radial-gradient(circle at 77% 83%, rgba(214, 196, 163, 0.18), transparent 20%),
    var(--warm-white);
}

.hero::before {
  position: absolute;
  top: 70px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(124, 77, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
}

.eyebrow,
.section-number {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--violet);
  font-size: 0.9rem;
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.public-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(124, 77, 255, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft-violet);
  font-size: 0.77rem;
  font-weight: 700;
  transition: border-color 180ms ease, transform 180ms ease;
}

.public-shortcut:hover {
  border-color: var(--violet);
  transform: translateY(-2px);
}

.public-shortcut > span:first-child {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-plum);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-shortcut strong {
  color: var(--violet);
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-visual {
  position: relative;
  display: flex;
  margin: 0;
  justify-content: center;
}

.hero-artwork {
  width: min(100%, 540px);
  height: auto;
}

.audience-strip {
  padding: 30px 0 0;
  background: var(--warm-white);
}

.audience-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid rgba(124, 77, 255, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 77, 255, 0.12), transparent 34%),
    var(--soft-violet);
  grid-template-columns: 0.9fr 1.1fr;
}

.audience-grid h2 {
  max-width: 540px;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.25rem);
}

.audience-content > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.03rem;
}

.audience-content small {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(42, 31, 79, 0.14);
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(92px, 11vw, 144px) 0;
}

.organizers {
  margin-top: 30px;
  background: var(--white);
}

.split-layout {
  display: grid;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(260px, 0.83fr) minmax(0, 1.17fr);
}

.section-number {
  color: var(--violet);
}

.section-number span {
  width: 45px;
  height: 1px;
  background: currentColor;
}

.section-heading > p:last-child {
  max-width: 420px;
  color: var(--muted);
}

.prose-large {
  font-size: 1.04rem;
}

.prose-large .lead {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.prose-large > p:not(.lead) {
  color: var(--muted);
}

blockquote {
  margin: 54px 0 0;
  padding: 34px 32px;
  border: 1px solid rgba(124, 77, 255, 0.15);
  border-radius: 22px;
  background: var(--soft-violet);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

blockquote strong {
  color: var(--violet);
  font-weight: 700;
}

.section-tinted {
  background: var(--soft-violet);
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}

.section-title-row h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-title-row > p {
  max-width: 390px;
  margin-bottom: 8px;
  color: var(--muted);
}

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

.step-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(124, 77, 255, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.step-card:hover {
  border-color: rgba(124, 77, 255, 0.4);
  transform: translateY(-4px);
}

.step-number {
  display: grid;
  width: 54px;
  height: 38px;
  margin-bottom: auto;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--violet);
  font-size: 0.71rem;
  font-weight: 800;
}

.step-card:nth-child(2) .step-number {
  color: var(--white);
  background: #5b45a5;
}

.step-card:nth-child(3) .step-number {
  background: var(--deep-plum);
}

.step-card h3 {
  margin: 48px 0 14px;
}

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

.inclusions {
  background: var(--warm-white);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  font-weight: 600;
  grid-template-columns: 50px 1fr;
}

.feature-list li:first-child {
  border-top: 1px solid var(--border);
}

.feature-list span {
  color: var(--violet);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ideal-for {
  padding-top: 0;
}

.ideal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.ideal-heading h2 {
  margin-bottom: 0;
}

.ideal-heading p {
  max-width: 450px;
  margin-bottom: 8px;
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span {
  padding: 14px 21px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tag-cloud span:nth-child(3n + 1) {
  border-color: rgba(124, 77, 255, 0.4);
}

.tag-cloud span:hover {
  color: var(--white);
  border-color: var(--violet);
  background: var(--violet);
}

.benefits {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(124, 77, 255, 0.23), transparent 25%),
    var(--deep-plum);
}

.section-number-light {
  color: #bca8ff;
}

.benefits-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  min-height: 292px;
  padding: 31px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.benefit-featured {
  color: var(--white);
  background: var(--violet);
}

.benefit-index {
  display: block;
  margin-bottom: 86px;
  color: #cbbdff;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.benefit-featured .benefit-index {
  color: var(--white);
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  margin-bottom: 0;
  color: #d4cedf;
  font-size: 0.91rem;
}

.benefit-featured p {
  color: rgba(255, 255, 255, 0.88);
}

.example {
  background: var(--warm-white);
}

.example-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  grid-template-columns: 0.84fr 1.16fr;
}

.example-art {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 55px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 8%, rgba(255, 255, 255, 0.13) 0 115px, transparent 116px),
    radial-gradient(circle at 0% 94%, rgba(124, 77, 255, 0.42) 0 100px, transparent 101px),
    var(--deep-plum);
}

.example-kicker {
  position: absolute;
  top: 38px;
  left: 42px;
  color: #d4cedf;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.example-art strong {
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 11vw, 9.4rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.68;
}

.example-year {
  margin-top: 22px;
  color: var(--champagne);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.example-orbit {
  position: absolute;
  right: -48px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.example-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 92px);
}

.example-copy h2 {
  font-size: clamp(2.45rem, 3.9vw, 4.1rem);
}

.example-copy h3 {
  margin: 12px 0 22px;
  color: var(--violet);
}

.example-copy p {
  color: var(--muted);
}

.example-copy .button {
  align-self: flex-start;
  margin-top: 15px;
}

.final-cta {
  padding: clamp(94px, 12vw, 150px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 120%, rgba(124, 77, 255, 0.56), transparent 35%),
    radial-gradient(circle at 88% 4%, rgba(214, 196, 163, 0.1), transparent 20%),
    var(--navy);
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  margin-bottom: 24px;
}

.final-cta > .container > p:not(.eyebrow) {
  max-width: 600px;
  color: #d2ced8;
  font-size: 1.08rem;
}

.eyebrow-light {
  color: #d2ced8;
}

.button-row-centered {
  justify-content: center;
  margin-top: 20px;
}

.contact-email {
  margin-top: 42px;
  border-bottom: 2px solid var(--violet);
  font-size: 1.04rem;
  font-weight: 700;
}

.final-cta small {
  margin-top: 16px;
  color: #aaa5b3;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 145px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(124, 77, 255, 0.27), transparent 27%),
    radial-gradient(circle at 92% 92%, rgba(214, 196, 163, 0.1), transparent 24%),
    var(--navy);
}

.contact-section::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-layout {
  position: relative;
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
}

.contact-intro {
  padding-top: 18px;
}

.contact-intro h2 {
  max-width: 540px;
  margin-bottom: 28px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 540px;
  color: #d2ced8;
  font-size: 1.04rem;
}

.contact-direct {
  margin: 30px 0 0;
  font-size: 0.9rem !important;
}

.contact-direct a {
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-weight: 700;
}

.contact-direct a:hover {
  color: #d8cdff;
}

.contact-form-card {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(3, 7, 16, 0.2);
}

.form-required-note {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.form-required-note span,
.required-marker {
  color: var(--violet);
  font-weight: 800;
}

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9d5df;
  border-radius: 13px;
  color: var(--navy);
  background: var(--warm-white);
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 11px 14px;
}

.form-field textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #b9b2c4;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--violet);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.13);
}

.form-submit {
  margin-top: 30px;
}

.form-success {
  display: grid;
  min-height: 470px;
  align-content: center;
  text-align: center;
}

.form-success-mark {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 50%;
  color: var(--white);
  background: var(--violet);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
}

.form-success h3 {
  max-width: 520px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.form-success p {
  max-width: 540px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.site-footer {
  padding: 66px 0 24px;
  background: var(--warm-white);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 55px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 1050px) {
  .main-nav {
    position: absolute;
    z-index: 20;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    min-height: calc(100vh - 88px);
    min-height: calc(100dvh - 88px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px 20px;
    background: var(--warm-white);
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    width: 100%;
    padding: 19px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 600;
  }

  .main-nav .button {
    margin-top: 28px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
  }

  .menu-toggle-label {
    font-size: 0.73rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .menu-toggle-lines,
  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
    transition: transform 180ms ease;
  }

  .menu-toggle-lines {
    position: relative;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-toggle-lines::before {
    top: -7px;
  }

  .menu-toggle-lines::after {
    top: 7px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero-grid {
    gap: 48px;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.25fr);
  }

  .hero-artwork {
    width: min(100%, 460px);
  }

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

  .step-card {
    min-height: 265px;
  }

  .step-number {
    margin-bottom: 30px;
  }

  .step-card h3 {
    margin-top: auto;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    padding: 56px 0 88px;
  }

  .hero-grid,
  .audience-grid,
  .split-layout,
  .example-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    padding-top: 0;
  }

  .contact-intro h2,
  .contact-intro > p:not(.eyebrow) {
    max-width: 680px;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .audience-strip {
    padding-top: 18px;
  }

  .audience-grid {
    gap: 34px;
    padding: 42px 30px;
  }

  .section-title-row,
  .ideal-heading,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-title-row {
    display: flex;
  }

  .section-title-row > p {
    max-width: 100%;
  }

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

  .benefit-card {
    min-height: 272px;
  }

  .example-art {
    min-height: 470px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img,
  .footer-brand img {
    width: 174px;
  }

  .main-nav {
    min-height: calc(100vh - 74px);
    min-height: calc(100dvh - 74px);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .public-shortcut {
    display: grid;
    width: 100%;
    padding: 11px;
    border-radius: 18px;
    grid-template-columns: auto 1fr;
  }

  .public-shortcut strong {
    grid-column: 2;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .button-text {
    justify-content: flex-start;
    width: auto !important;
  }

  .hero-artwork {
    width: min(100%, 390px);
  }

  .contact-form-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .form-submit {
    width: 100%;
  }

  .form-success {
    min-height: 420px;
  }

  .audience-grid {
    padding: 36px 24px;
    border-radius: 25px;
  }

  .section {
    padding: 84px 0;
  }

  .organizers {
    margin-top: 18px;
  }

  .split-layout {
    gap: 42px;
  }

  blockquote {
    padding: 27px 23px;
  }

  .step-card {
    min-height: 290px;
    padding: 27px;
  }

  .ideal-for {
    padding-top: 0;
  }

  .tag-cloud {
    gap: 8px;
  }

  .tag-cloud span {
    padding: 10px 14px;
    font-size: 0.77rem;
  }

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

  .benefit-card {
    min-height: 250px;
  }

  .benefit-index {
    margin-bottom: 65px;
  }

  .example-art {
    min-height: 390px;
    padding: 38px;
  }

  .example-copy {
    padding: 44px 26px;
  }

  .example-copy .button {
    width: 100%;
  }

  .footer-grid {
    display: flex;
  }

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

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

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

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