:root {
  --orange: #f45116;
  --orange-dark: #ce3d0d;
  --cream: #f2eee6;
  --ink: #3f3f3f;
  --muted: #6a6a6a;
  --footer: #d4d4d4;
  --line: #ef8b6b;
  --white: #ffffff;
  --content: 1220px;
  --narrow: 980px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-200%);
}

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

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

.narrow-copy {
  width: min(calc(100% - 56px), var(--narrow));
  margin-inline: auto;
  text-align: center;
}

.section-pad {
  padding: clamp(72px, 8vw, 132px) 0;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(28px, 3.1vw, 48px);
  letter-spacing: 0.08em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(26px, 2.3vw, 38px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 18px;
  letter-spacing: 0.14em;
}

.rich-text {
  font-size: clamp(16px, 1.3vw, 20px);
  letter-spacing: 0.115em;
}

.rich-text > :last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-width: 330px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.hero__strapline,
.hero__tagline {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 18px 28px;
  text-align: center;
  background-color: #f1ede5;
}

.hero__strapline p,
.hero__tagline {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.2em;
}

.hero__strapline p {
  max-width: 950px;
  text-transform: uppercase;
}

.hero__image {
  position: relative;
  display: grid;
  min-height: clamp(520px, 50vw, 720px);
  place-items: center;
  overflow: hidden;
  background-color: #b65d28;
  background-image: linear-gradient(rgba(23, 12, 8, 0.08), rgba(23, 12, 8, 0.16)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero__brand {
  width: min(48%, 520px);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero__brand img {
  width: 100%;
  max-height: 200px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.hero__brand p {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 32px);
  letter-spacing: 0.18em;
}

.intro .narrow-copy {
  max-width: 1050px;
}

.intro__body {
  max-width: 930px;
  margin: 0 auto 38px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 590px;
  background: var(--cream);
}

.feature-row + .feature-row {
  margin-top: 20px;
}

.feature-row__image-wrap {
  min-height: 100%;
}

.feature-row__image {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.feature-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 110px);
}

.feature-row--image-right .feature-row__image-wrap {
  order: 2;
}

.feature-row--image-right .feature-row__copy {
  order: 1;
}

.feature-row__heading {
  margin-bottom: 24px;
}

.feature-row__heading h2 {
  margin: 12px 0 0;
}

.section-icon {
 width: 40px;
height: 44px;
margin: 0 auto 30px;
object-fit: contain;
}

.feature-row .section-icon {
  margin-inline: 0;
}

.ticket {
  padding-bottom: 95px;
}

.ticket .narrow-copy {
  max-width: 1030px;
}

.ticket h2 {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.faq {
  position: relative;
  padding-top: 94px;
}

.faq::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 96px), 1180px);
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(-50%);
}

.faq .narrow-copy {
  max-width: 1030px;
}

.faq-item + .faq-item {
  margin-top: 40px;
}

.faq-item h3 {
  margin-bottom: 20px;
}

.faq-item a {
  color: var(--orange);
}

.registration {
  padding-top: 50px;
  padding-bottom: 150px;
}

.registration__inner {
  width: min(calc(100% - 56px), var(--content));
  margin-inline: auto;
  padding: clamp(65px, 8vw, 120px) clamp(28px, 10vw, 160px);
  background: var(--cream);
  text-align: center;
}

.registration-form {
  max-width: 760px;
  margin: 42px auto 0;
}

.registration-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 84px;
  text-align: left;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid #8e8e8e;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field ::placeholder {
  color: #777;
  opacity: 1;
}

.button--submit {
  margin-top: 48px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  max-width: 760px;
  margin: 24px auto;
  padding: 14px 18px;
  border: 1px solid currentColor;
}

.form-notice--success {
  color: #27663a;
}

.form-notice--error {
  color: #9c2828;
}

.site-footer {
  min-height: auto;
  border-top: 1px solid var(--line);
  background: var(--footer);
padding-top:60px;
}

.site-footer__inner {
  display: flex;
  min-height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 28px;
  text-align: center;
}

.site-footer__logo {
  width: min(190px, 50vw);
  max-height: 100px;
  margin-bottom: 30px;
}

.site-footer__email {
  margin-bottom: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.site-footer__copyright {
  margin: 0;
  color: #8b8b8b;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.generic-content {
  width: min(calc(100% - 40px), 900px);
  margin: 80px auto;
}

@media (max-width: 760px) {
  .content-width,
  .narrow-copy,
  .registration__inner {
    width: 100%;
  }

  .section-pad {
    padding: 54px 24px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(27px, 9vw, 38px);
    letter-spacing: 0.05em;
  }

  h2 {
    font-size: clamp(25px, 7.6vw, 34px);
  }

  h3 {
    font-size: 17px;
    letter-spacing: 0.1em;
  }

  .rich-text {
    font-size: 16px;
    letter-spacing: 0.07em;
  }

  .button {
    min-width: min(100%, 290px);
    min-height: 48px;
    padding: 14px 22px;
    font-size: 11px;
  }

  .hero__strapline {
    min-height: 208px;
    padding: 26px 38px;
  }

  .hero__strapline p {
    max-width: 320px;
    font-size: 16px;
    letter-spacing: 0.18em;
    line-height: 1.45;
  }

  .hero__image {
    min-height: 330px;
  }

  .hero__brand {
    width: 58%;
  }

  .hero__brand img {
    margin-bottom: 6px;
  }

  .hero__brand p {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .hero__tagline {
    min-height: 100px;
    padding: 18px 28px;
    font-size: 14px;
    letter-spacing: 0.16em;
    line-height: 1.45;
  }

  .intro {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .intro__body {
    margin-bottom: 28px;
  }

  .feature-row,
  .feature-row + .feature-row {
    display: flex;
    min-height: 0;
    flex-direction: column;
    margin-top: 0;
  }

  .feature-row__copy,
  .feature-row--image-right .feature-row__copy {
    display: contents;
  }

  .feature-row__heading {
    order: 1;
    margin: 0;
    padding: 38px 24px 28px;
    text-align: center;
  }

  .feature-row__heading h2 {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .feature-row__image-wrap,
  .feature-row--image-right .feature-row__image-wrap {
    order: 2;
    width: 100%;
    min-height: 0;
  }

  .feature-row__image {
    min-height: 0;
    aspect-ratio: 1.16 / 1;
  }

  .feature-row__copy > .rich-text {
    order: 3;
    padding: 32px 28px 48px;
    text-align: center;
  }

  .feature-row .section-icon {
    margin-inline: auto;
  }

  .section-icon {
    width: 36px;
    height: 36px;
  }

  .ticket {
    padding: 72px 28px 60px;
  }

  .ticket h2 {
    max-width: 330px;
  }

  .faq {
    margin-inline: 24px;
    padding: 54px 4px 62px;
  }

  .faq::before {
    width: 100%;
  }

  .faq-item + .faq-item {
    margin-top: 42px;
  }

  .registration {
    padding: 0;
  }

  .registration__inner {
    padding: 58px 28px 60px;
  }

  .registration-form {
    margin-top: 36px;
  }

  .registration-form__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .button--submit {
    width: 100%;
    margin-top: 34px;
  }

  .site-footer,
  .site-footer__inner {
    min-height: 390px;
  }

  .site-footer__logo {
    width: 150px;
  }

  .site-footer__email {
    font-size: 13px;
  }
}

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

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

.hero__tagline {
	background-color:#f2eee6;
}