/* ---------- Design tokens ---------- */
:root {
  --ivory: #f8f3ec;
  --stone: #d7cec5;
  --rose: #b07a72;
  --olive: #5e6650;
  --charcoal: #2f2b28;
  --burgundy: #7a4a45;
  --forest: #263d32;
  --line: rgba(47, 43, 40, 0.14);

  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;

  --max-7xl: 80rem;
  --max-6xl: 72rem;
  --max-4xl: 56rem;
  --max-3xl: 48rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(176, 122, 114, 0.28);
}

:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  margin-inline: auto;
  width: 100%;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(47, 43, 40, 0.1);
  background: rgba(248, 243, 236, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  max-width: var(--max-7xl);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.nav__brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--charcoal);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(47, 43, 40, 0.7);
}

.nav__links a {
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--burgundy);
}

.nav__cta {
  border-radius: 9999px;
  border: 1px solid rgba(94, 102, 80, 0.35);
  background: transparent;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--olive);
  transition: all 0.2s ease;
}

.nav__cta:hover {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--ivory);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--ivory);
  border: 1px solid var(--burgundy);
}

.btn--primary:hover {
  transform: translateY(-0.125rem);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--ghost {
  border: 1px solid rgba(47, 43, 40, 0.18);
  color: var(--charcoal);
  background: transparent;
}

.btn--ghost:hover {
  transform: translateY(-0.125rem);
  border-color: var(--rose);
  color: var(--burgundy);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

/* ---------- Section helpers ---------- */
.eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--olive);
}

.section {
  padding: 6rem 1.25rem;
}

.section--tight {
  padding: 5rem 1.25rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
  font-size: 2.25rem;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(47, 43, 40, 0.8);
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(47, 43, 40, 0.14);
  background: transparent;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--burgundy);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.form__submit {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 9999px;
  border: none;
  background: var(--charcoal);
  padding: 1rem 1.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ivory);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.form__submit:hover {
  transform: translateY(-0.125rem);
  background: var(--burgundy);
}

.form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.honeypot {
  display: none;
}

.form-success {
  display: flex;
  align-items: center;
  border: 1px solid rgba(47, 43, 40, 0.14);
  background: rgba(215, 206, 197, 0.3);
  padding: 2.5rem;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

.form-success p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 2rem;
  color: rgba(47, 43, 40, 0.72);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(47, 43, 40, 0.1);
  padding: 2.5rem 1.25rem;
}

.site-footer__inner {
  max-width: var(--max-7xl);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 0.875rem;
  color: rgba(47, 43, 40, 0.65);
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--charcoal);
}

.site-footer p {
  margin-top: 0.5rem;
  line-height: 1.75rem;
}

.site-footer__tagline {
  max-width: 28rem;
  margin-top: 1rem !important;
}

.site-footer__links {
  display: flex;
  gap: 1.5rem;
}

.site-footer__links a {
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--burgundy);
}

/* ---------- Home: hero ---------- */
.hero {
  min-height: 100vh;
  padding-top: 74px;
}

.hero__grid {
  display: grid;
  min-height: calc(100vh - 74px);
}

.hero__copy {
  display: flex;
  align-items: center;
  padding: 3.5rem 1.25rem;
}

.hero__copy-inner {
  max-width: 36rem;
}

.hero__title {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.96;
  color: var(--charcoal);
}

.hero__text {
  margin-top: 2rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 2rem;
  color: rgba(47, 43, 40, 0.72);
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__media {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
}

.image-soften {
  position: absolute;
  inset: 0;
}

.image-soften::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(248, 243, 236, 0.05), rgba(47, 43, 40, 0.06)),
          radial-gradient(circle at 28% 20%, rgba(248, 243, 236, 0.22), transparent 38%);
  pointer-events: none;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

/* ---------- Home: essence / about ---------- */
.essence__inner {
  max-width: var(--max-4xl);
  margin-inline: auto;
  text-align: center;
}

.essence__body {
  max-width: var(--max-3xl);
  margin: 2.25rem auto 0;
  font-size: 1.125rem;
  line-height: 2.25rem;
  color: rgba(47, 43, 40, 0.72);
}

.essence__body p + p {
  margin-top: 1.75rem;
}

/* ---------- Home: experiences ---------- */
.experiences {
  border-top: 1px solid rgba(47, 43, 40, 0.1);
  border-bottom: 1px solid rgba(47, 43, 40, 0.1);
  background: rgba(215, 206, 197, 0.35);
}

.experiences__inner {
  max-width: var(--max-7xl);
  margin-inline: auto;
}

.experiences__head {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.experiences__head h2 {
  max-width: 36rem;
}

.experiences__head p {
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: rgba(47, 43, 40, 0.65);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  min-height: 260px;
  border: 1px solid rgba(47, 43, 40, 0.1);
  background: rgba(248, 243, 236, 0.78);
  padding: 1.75rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(176, 122, 114, 0.45);
  background: var(--ivory);
}

.card__rule {
  margin-bottom: 2.5rem;
  height: 1px;
  width: 3rem;
  background: rgba(176, 122, 114, 0.65);
  transition: width 0.3s ease;
}

.card:hover .card__rule {
  width: 4rem;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

.card p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: rgba(47, 43, 40, 0.68);
}

/* ---------- Home: experience details ---------- */
.details__inner {
  max-width: var(--max-7xl);
  margin-inline: auto;
}

.details__title {
  max-width: var(--max-4xl);
}

.details-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 3rem 2.5rem;
}

.detail {
  border-top: 1px solid rgba(47, 43, 40, 0.14);
  padding-top: 1.5rem;
}

.detail__num {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
}

.detail h3 {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

.detail p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: rgba(47, 43, 40, 0.68);
}

/* ---------- Home: founder note ---------- */
.founder {
  background: var(--stone);
  padding: 5rem 1.25rem;
}

.founder__inner {
  max-width: var(--max-6xl);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}

.founder__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--stone);
  background: var(--ivory);
}

.process-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(248, 243, 236, 0.12), rgba(176, 122, 114, 0.1)),
          radial-gradient(circle at 58% 26%, rgba(248, 243, 236, 0.14), transparent 34%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.process-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.92) brightness(1.04);
}

.process-tight {
  object-position: 58% 18%;
  transform: scale(1.16);
  transform-origin: 58% 28%;
}

.founder__body {
  max-width: 42rem;
}

.founder__body h2 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

.founder__body p {
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 2.25rem;
  color: rgba(47, 43, 40, 0.72);
}

/* ---------- Home: inquiry ---------- */
.inquiry__inner {
  max-width: var(--max-6xl);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}

.inquiry__title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

.inquiry__lead {
  margin-top: 1.5rem;
  max-width: 24rem;
  font-size: 1rem;
  line-height: 2rem;
  color: rgba(47, 43, 40, 0.7);
}

/* ================================================================
   Under the Redwoods — page-scoped overrides and components
   ================================================================ */

.page--redwoods .nav {
  gap: 1rem;
}

.page--redwoods .btn {
  min-height: 3.25rem;
  padding: 0.95rem 1.55rem;
  line-height: 1;
}

.page--redwoods .btn--primary {
  border-color: var(--forest);
  background: var(--forest);
}

.page--redwoods .section {
  padding-block: 5.5rem;
}

/* Section headings match the forest accent used by the h1 and price. */
.page--redwoods .section-title {
  color: var(--forest);
}

.page--redwoods .form {
  gap: 1.5rem;
}

.page--redwoods .field input,
.page--redwoods .field select {
  width: 100%;
  background: rgba(255, 252, 247, 0.46);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.page--redwoods .field input:focus,
.page--redwoods .field select:focus {
  background: rgba(255, 252, 247, 0.68);
}

.page--redwoods .site-footer {
  padding-bottom: 5rem;
}

.section--stone {
  border-top: 1px solid rgba(47, 43, 40, 0.1);
  border-bottom: 1px solid rgba(47, 43, 40, 0.1);
  background: rgba(215, 206, 197, 0.32);
}

.section__inner {
  max-width: var(--max-7xl);
  margin-inline: auto;
}

.section__narrow {
  max-width: var(--max-4xl);
  margin-inline: auto;
}

/* Event hero */
.event-hero {
  padding-top: 74px;
}

.event-hero__inner {
  max-width: var(--max-7xl);
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  min-height: calc(94vh - 74px);
  padding: 4.5rem 1.25rem 3.25rem;
}

.event-hero__copy {
  align-self: center;
  max-width: 46rem;
}

.event-hero h1 {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 3.35rem;
  font-weight: 500;
  line-height: 0.96;
  color: var(--forest);
}

.hero-workshop-copy {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.95rem;
  color: rgba(47, 43, 40, 0.74);
}

.event-facts {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  border-block: 1px solid var(--line);
  padding-block: 1.35rem;
}

.event-fact {
  display: grid;
  gap: 0.28rem;
}

.event-fact span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
}

.event-fact strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
}

.price-note {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.25rem;
  color: rgba(47, 43, 40, 0.7);
}

.price-note strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--forest);
}

.event-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.event-hero__media {
  display: grid;
  gap: 1rem;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 30rem;
}

/* Photography frames */
.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 43, 40, 0.12);
  background:
          linear-gradient(150deg, rgba(248, 243, 236, 0.66), rgba(94, 102, 80, 0.12)),
          rgba(215, 206, 197, 0.4);
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--portrait {
  aspect-ratio: 3 / 4;
}

.photo-frame--portrait img {
  object-position: center 38%;
}

.photo-frame--missing::after {
  content: "Supplied Maison Rose image file needed";
  position: absolute;
  inset: auto 1rem 1rem;
  border-top: 1px solid rgba(47, 43, 40, 0.16);
  padding-top: 0.85rem;
  color: rgba(47, 43, 40, 0.62);
  font-size: 0.82rem;
  line-height: 1.45rem;
}

/* Fills its column and sits flush with the heading above it. */
.registration-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.registration-photo img {
  object-position: center 50%;
}

/* Included note */
.simple-note {
  display: grid;
  gap: 1.25rem;
  border-block: 1px solid var(--line);
  padding-block: 2rem;
}

.included-sentence {
  max-width: 48rem;
  display: grid;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--forest);
}

/* Registration. Two columns that share a top edge: heading + photo on the
   left, form card on the right -- the same shape as the homepage Inquire
   section. Everything in the left column is flush with the column edge. */
.registration-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.registration-intro {
  display: grid;
  gap: 1.75rem;
}

.registration-column {
  display: grid;
  align-content: start;
}

.registration-card,
.confirmation {
  border: 1px solid var(--line);
  background: rgba(248, 243, 236, 0.74);
  padding: 1.35rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.photography-permission {
  display: grid;
  gap: 0.55rem;
  color: rgba(47, 43, 40, 0.76);
}

.photography-permission__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(47, 43, 40, 0.84);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  min-height: 2.75rem;
  padding-block: 0.18rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55rem;
  cursor: pointer;
}

.checkbox-field input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.18rem 0 0;
  accent-color: var(--forest);
}

.photography-permission__note {
  padding-left: 1.8rem;
  font-size: 0.82rem;
  line-height: 1.55rem;
  color: rgba(47, 43, 40, 0.62);
}

.required-mark {
  color: var(--burgundy);
}

.error-text {
  min-height: 1.15rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--burgundy);
}

[aria-invalid="true"] {
  border-color: var(--burgundy) !important;
}

.error-summary {
  border: 1px solid rgba(122, 74, 69, 0.34);
  background: rgba(176, 122, 114, 0.1);
  padding: 1rem;
  color: var(--burgundy);
}

.error-summary h3,
.confirmation h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.summary-lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-line span:first-child {
  color: rgba(47, 43, 40, 0.64);
}

.summary-line strong {
  text-align: right;
  font-weight: 600;
}

.summary-note,
.form-note,
.submit-error {
  margin-top: 1rem;
  border-top: 1px solid rgba(47, 43, 40, 0.12);
  padding-top: 1rem;
  font-size: 0.84rem;
  line-height: 1.65rem;
  color: rgba(47, 43, 40, 0.66);
}

.submit-error {
  border: 1px solid rgba(122, 74, 69, 0.34);
  background: rgba(176, 122, 114, 0.1);
  padding: 1rem;
  color: var(--burgundy);
}

.mobile-sticky {
  position: sticky;
  bottom: 0;
  z-index: 45;
  border-top: 1px solid rgba(47, 43, 40, 0.12);
  background: rgba(248, 243, 236, 0.94);
  padding: 0.8rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-sticky .btn {
  width: 100%;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .nav {
    padding-inline: 2rem;
  }
  .nav__links {
    display: flex;
  }
  .nav__cta {
    display: none;
  }
  .hero__copy {
    padding-inline: 2rem;
  }
  .hero__title {
    font-size: 3.75rem;
  }
  .hero__text {
    font-size: 1.125rem;
  }
  .hero__actions {
    flex-direction: row;
  }
  .section {
    padding-inline: 2rem;
  }
  .section-title {
    font-size: 3rem;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .founder {
    padding-inline: 2rem;
  }
  .founder__body h2 {
    font-size: 3rem;
  }
  .inquiry__title {
    font-size: 3.75rem;
  }
  .form__submit {
    width: auto;
    justify-self: start;
  }
  .site-footer {
    padding-inline: 2rem;
  }

  .event-hero__inner {
    padding-inline: 2rem;
  }
  .event-hero h1 {
    font-size: 4.35rem;
  }
  .event-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .event-hero__actions {
    flex-direction: row;
  }
  .field-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .experiences__head {
    flex-direction: row;
    align-items: flex-end;
  }
  .founder__frame {
    aspect-ratio: 4 / 5;
  }
  .site-footer__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .mobile-sticky {
    display: none;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: 8rem;
  }
  .founder {
    padding-block: 7rem;
  }
  .hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
  }
  .hero__media {
    min-height: 100%;
  }
  .hero__copy {
    padding-inline: 3.5rem;
  }
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .details__title {
    font-size: 3.75rem;
  }
  .founder__inner {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: center;
  }
  .founder__body {
    padding-left: 2rem;
  }
  .inquiry__inner {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .page--redwoods .section {
    padding-block: 7rem;
    padding-inline: 3.5rem;
  }
  .event-hero__inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(30rem, 0.74fr);
    align-items: center;
    padding-inline: 3.5rem;
  }
  .event-hero h1 {
    font-size: 5.6rem;
  }
  .event-hero__media {
    max-width: 42rem;
  }
  .photo-frame--portrait {
    width: 100%;
  }
  .registration-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(23rem, 1fr);
    gap: 4rem;
  }
}

@media (min-width: 1280px) {
  .hero__copy {
    padding-inline: 5rem;
  }
}

@media (min-width: 1536px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .process-tight {
    object-position: 58% 18%;
    transform: scale(1.16);
    transform-origin: 58% 28%;
  }
}
