:root {
  --bg: #fbf6ec;
  --bg-soft: #fffaf1;
  --text: #1c1b18;
  --muted: #6a6257;
  --accent: #ef7d32;
  --accent-dark: #c95024;
  --green: #2f7d55;
  --card: rgba(255, 255, 255, 0.76);
  --border: rgba(28, 27, 24, 0.11);
  --shadow: 0 26px 72px rgba(99, 64, 28, 0.15);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background:
    radial-gradient(circle at 10% 10%, rgba(239, 125, 50, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 5%, rgba(47, 125, 85, 0.14), transparent 24rem),
    linear-gradient(180deg, #fff8eb 0%, var(--bg) 42%, #fff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(28, 27, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 27, 24, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

h1, h2, h3, p { margin-top: 0; }
h2, h3 { text-wrap: balance; }
h1 { text-wrap: pretty; }
p { text-wrap: pretty; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 64px);
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 236, 0.84);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--text);
}

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

.nav a {
  padding: 10px 15px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
}

.section-pad {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 116px) clamp(18px, 4vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
  gap: clamp(44px, 6.5vw, 84px);
  align-items: center;
  min-height: calc(100vh - 78px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1 {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(42px, 5.35vw, 66px);
  line-height: 1.075;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.hero-text,
.muted,
.form-copy p,
.ribbon-feature p,
.section-lead {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.82;
}

.hero-text { margin-bottom: 0; }
.section-lead { margin-bottom: 0; }

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

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--text);
  box-shadow: 0 16px 34px rgba(28, 27, 24, 0.22);
}

.btn-primary:hover { background: #000; }

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
}

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

.stats div {
  min-height: 112px;
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
}

.stats strong,
.stats span { display: block; }

.stats strong {
  margin-bottom: 9px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-card {
  position: relative;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto 16px -22px auto;
  width: 180px;
  height: 180px;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(239, 125, 50, 0.18), rgba(47, 125, 85, 0.14));
  filter: blur(10px);
}

.hero-card > img,
.gallery img,
.photo-ribbon img,
.showcase-wide img {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-card > img {
  min-height: 560px;
  aspect-ratio: 4 / 5;
}

.ticket-card {
  position: absolute;
  left: -26px;
  bottom: 30px;
  width: min(430px, calc(100% - 22px));
  display: grid;
  grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 54px rgba(28, 27, 24, 0.17);
}

.ticket-heading {
  min-width: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(28, 27, 24, 0.12);
}

.ticket-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ticket-card strong {
  display: block;
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.038em;
}

.ticket-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.photo-ribbon {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
  padding-top: 18px;
}

.photo-ribbon article { min-height: 350px; }

.photo-ribbon img {
  height: 100%;
  min-height: 350px;
}

.ribbon-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 3.6vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(99, 64, 28, 0.09);
}

.ribbon-feature h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.13;
}

.ribbon-feature p:last-child { margin-bottom: 0; }

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

.section-title {
  grid-column: 1 / -1;
  max-width: 840px;
  margin-bottom: 18px;
}

.section-title h2 { margin-bottom: 22px; }

.info-card,
.application-form,
.form-copy {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(99, 64, 28, 0.09);
}

.info-card {
  min-height: 270px;
  padding: 30px 28px;
  border-radius: 30px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  color: #fff;
  border-radius: 17px;
  background: var(--accent);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(40px, 5.5vw, 70px);
  align-items: center;
}

.selection-copy { max-width: 610px; }
.selection-copy .muted { margin-bottom: 0; }

.steps {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.steps b {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  height: 38px;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
}

.steps span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.gallery {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: end;
}

.gallery img { aspect-ratio: 3 / 4; }
.gallery img:first-child { transform: translateY(28px); }
.gallery img:last-child { transform: translateY(-18px); }

.visual-showcase {
  display: grid;
  gap: 30px;
  padding-top: 20px;
}

.showcase-title { max-width: 880px; }

.showcase-wide {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
}

.showcase-wide img {
  min-height: 380px;
  aspect-ratio: 16 / 7.6;
  transition: transform 0.45s ease;
}

.showcase-wide:hover img { transform: scale(1.025); }

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: 24px;
  align-items: start;
}

.form-copy,
.application-form {
  padding: clamp(30px, 3.5vw, 42px);
  border-radius: var(--radius);
}

.form-copy {
  position: sticky;
  top: 104px;
}

.form-copy h2 { margin-bottom: 24px; }
.form-copy p { margin-bottom: 0; }

.application-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label,
legend {
  color: #332f2a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

input,
textarea {
  width: 100%;
  margin-top: 10px;
  padding: 16px 17px;
  color: var(--text);
  border: 1px solid rgba(28, 27, 24, 0.14);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(239, 125, 50, 0.68);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(239, 125, 50, 0.14);
}

fieldset {
  margin: 0;
  padding: 19px;
  border: 1px solid rgba(28, 27, 24, 0.14);
  border-radius: 20px;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.radio-row label,
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.radio-row input,
.checkbox input {
  width: auto;
  margin: 0;
  accent-color: var(--accent);
}

.checkbox {
  align-items: flex-start;
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  min-height: 60px;
}

.submit-btn[disabled] {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--accent-dark); }

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.58);
}

.footer div { max-width: 680px; }
.footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
}
.footer p { margin: 0; line-height: 1.65; }
.footer a { color: var(--text); font-weight: 800; }

@media (max-width: 980px) {
  .hero,
  .split,
  .form-section,
  .photo-ribbon {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-card > img { min-height: auto; }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-copy { position: static; }
  .selection-copy { max-width: none; }
}

@media (max-width: 680px) {
  .site-header { align-items: flex-start; }
  .nav { display: none; }

  .section-pad { padding-block: 64px; }

  .stats,
  .info-grid,
  .form-row,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img:first-child,
  .gallery img:last-child { transform: none; }

  .ticket-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .ticket-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 21px;
    border-radius: 24px;
  }

  .ticket-heading {
    padding-right: 16px;
  }

  .ticket-card p {
    font-size: 13.5px;
    line-height: 1.62;
  }

  .photo-ribbon article,
  .photo-ribbon img,
  .showcase-wide img {
    min-height: 250px;
  }

  h1 {
    font-size: clamp(38px, 12.5vw, 55px);
    line-height: 1.03;
  }

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


@media (max-width: 420px) {
  .ticket-card {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .ticket-heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 0 0 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(28, 27, 24, 0.12);
  }

  .ticket-card span {
    margin-bottom: 0;
  }

  h1 {
    font-size: clamp(37px, 11.5vw, 48px);
    line-height: 1.08;
  }
}
