:root {
  --blue: #07135f;
  --red: #e30620;
  --ink: #15172c;
  --muted: #5f6274;
  --paper: #fffdf8;
  --line: #e7e2d7;
  --soft-blue: #eef3ff;
  --soft-red: #fff1f2;
  --shadow: 0 24px 70px rgba(7, 19, 95, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  border-radius: 50%;
  height: 58px;
  width: 58px;
}

.header-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  color: var(--muted);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  border-radius: 999px;
  color: #fff;
  padding: 10px 16px;
}

.language-toggle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 3px;
  padding: 4px;
}

.language-option {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  min-height: 34px;
  min-width: 42px;
  padding: 6px 10px;
}

.language-option.is-active {
  background: var(--red);
  color: #fff;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  min-height: calc(100svh - 82px);
  padding: clamp(48px, 8vw, 110px) clamp(20px, 6vw, 88px);
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(7, 19, 95, 0.08), transparent 44%),
    linear-gradient(135deg, rgba(227, 6, 32, 0.08), transparent 36%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-content,
.hero-logo {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.2rem, 10vw, 8.3rem);
  margin-bottom: 24px;
  max-width: 920px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5.1rem);
  margin-bottom: 20px;
}

h3 {
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  max-width: 690px;
}

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

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  background: var(--red);
  box-shadow: 0 14px 32px rgba(227, 6, 32, 0.22);
  color: #fff;
}

.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--blue);
}

.hero-logo {
  justify-self: center;
}

.hero-logo img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
  padding: clamp(8px, 1.4vw, 16px);
}

.intro,
.goals,
.classes,
.interest {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 6vw, 88px);
}

.intro {
  align-items: start;
  background: #fff;
  border-block: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.intro p:last-child,
.interest p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

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

.goal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 28px;
}

.goal-card:nth-child(2) {
  background: var(--soft-blue);
}

.goal-card:nth-child(3) {
  background: var(--soft-red);
}

.goal-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.goal-card .festival-note {
  border-top: 1px solid rgba(7, 19, 95, 0.12);
  font-size: 0.98rem;
  margin-top: 22px;
  padding-top: 20px;
}

.festival-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
}

.festival-links a {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.festival-links a:hover {
  color: var(--red);
}

.goal-number {
  color: var(--red);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 44px;
}

.classes {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
}

.classes-content {
  border-left: 4px solid var(--red);
  padding-left: clamp(22px, 4vw, 40px);
}

.classes-content p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.text-link {
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--red);
}

.interest {
  align-items: center;
  background: var(--blue);
  color: #fff;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.interest .section-label,
.interest h2,
.interest p {
  color: #fff;
}

.interest div {
  max-width: 820px;
}

.interest .primary {
  background: #fff;
  box-shadow: none;
  color: var(--blue);
  flex: 0 0 auto;
}

.site-footer {
  align-items: center;
  background: #fff;
  color: var(--muted);
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 28px 20px;
}

.site-footer img {
  border-radius: 50%;
  height: 42px;
  width: 42px;
}

.footer-copy {
  display: grid;
  gap: 2px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer a:hover {
  color: var(--red);
}

@media (max-width: 880px) {
  .hero,
  .intro,
  .classes {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo {
    max-width: 360px;
  }

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

  .goal-card {
    min-height: auto;
  }

  .goal-number {
    margin-bottom: 24px;
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .header-actions {
    justify-content: flex-start;
    width: 100%;
  }

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

  h1 {
    font-size: 3.25rem;
  }
}
