/* Keep default .navbar-full (light bar); hero art lives only in .curate-hero below the nav. */
.page-curate-land .navbar.navbar-full {
  position: relative;
  z-index: 1060;
}

.page-curate-land {
  background-color: #f5f5f5;
}

.page-curate-land .curate-page {
  background: #f5f5f5;
}

/* Shared band behind hero + bullets (fills rounded hero corner wedges). */
.page-curate-land .curate-hero-bullets-wrap {
  background-color: #f5f5f5;
}

/*
 * Breakpoints (curate page):
 * — Base: mobile / tablet-friendly clamps (default rules).
 * — max-width 1439.98px: laptop & small desktop (below 1440 “large” spec); spacing + type + icon scale.
 * — min-width 1100px: feature cards in three columns (viewport). Below that, auto-fit
 *   minmax(240px) (was 260px) so three columns still fit in the <1440 content column (~799px).
 * — min-width 1440px: large desktop (fixed hero 741px, 1290px column, type maxima).
 * — 640px–1023.98px: tablet (e.g. iPad 11 portrait); dedicated hero art, bullets, steps, vision card, features, FAQ.
 */
/*
 * Horizontal column (curate page):
 * Below 1440: classic centered max-width + clamp padding.
 * From 1440px up: side margin = 75px + (viewport − 1440px) / 2 on each side
 *   (each +2px viewport → +1px left margin and +1px right margin; content width stays 1290px).
 * At 1920px that yields 315px margins; if design targets ~265px instead, the anchor constants need retuning.
 */
.curate-page .center-wrap {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3.5vw, 1.75rem);
  padding-right: clamp(0.75rem, 2.25vw, 1.25rem);
  box-sizing: border-box;
}

@media (min-width: 1440px) {
  .curate-page .center-wrap {
    max-width: none;
    width: 1290px;
    margin-left: calc(75px + (100vw - 1440px) / 2);
    margin-right: calc(75px + (100vw - 1440px) / 2);
  }
}

/*
 * overflow must stay visible: the "Continue where you left" dropdown opens past
 * the hero's bottom edge, and overflow:hidden clipped it there (no z-index can
 * escape a clipping ancestor). The rounded bottom corners do not depend on it —
 * .curate-hero__bg / __overlay carry the same radius themselves at every
 * breakpoint that rounds the hero.
 */
.curate-hero {
  position: relative;
  min-height: clamp(420px, 52vw, 741px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: visible;
  margin-top: 0;
}

.curate-hero__bg {
  position: absolute;
  inset: 0;
  /* Co-located with this stylesheet: public/assets/pages/curate-land/ */
  background: url("hero-section.png") no-repeat center center;
  background-size: cover;
}

.curate-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 60, 90, 0.55) 0%, rgba(9, 131, 178, 0.35) 45%, rgba(9, 131, 178, 0.15) 100%);
  pointer-events: none;
}

.curate-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Below 1440: align with the 1100px center-wrap column. */
.page-curate-land .curate-hero .curate-hero__content.center-wrap {
  max-width: 1100px;
  box-sizing: border-box;
  margin-left: max(0px, calc((100% - 1100px) / 2));
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.curate-hero__eyebrow {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: clamp(0.875rem, 1.1vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  opacity: 0.95;
}

.curate-hero__title {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: clamp(1.65rem, 3.2vw + 1rem, 3.375rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 30px;
  color: #fff;
}

.curate-hero__lead {
  margin: 0 0 1.75rem;
  font-family: "Mont-Book", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.55;
  opacity: 0.96;
  font-weight: 400;
}

.curate-hero__lead-inner {
  font-weight: 400;
}

/* Large desktop (1440+): design maxima — hero 741px, top third reserved below nav, type sizes, 810px column. */
@media (min-width: 1440px) {
  .page-curate-land .curate-hero {
    height: 741px;
    min-height: 741px;
    max-height: 741px;
    align-items: stretch;
    padding: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .page-curate-land .curate-hero__bg,
  .page-curate-land .curate-hero__overlay {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .page-curate-land .curate-hero .curate-hero__content.center-wrap {
    max-width: 810px;
    margin-left: calc(75px + (100vw - 1440px) / 2);
    margin-right: auto;
    padding-top: calc(741px / 3);
    padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    width: 100%;
  }

  .page-curate-land .curate-hero__eyebrow {
    font-size: 20px;
  }

  .page-curate-land .curate-hero__title {
    font-size: 54px;
  }

  .page-curate-land .curate-hero__lead {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .page-curate-land .curate-hero__ctas {
    margin-top: 50px;
  }

  .page-curate-land .curate-hero__cta.syi-button {
    font-size: 16px;
  }
}

.curate-hero__lead-brand {
  font-family: "Mont-SemiBold", sans-serif;
  font-weight: 300;
}

.curate-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: 50px;
}

.page-curate-land .curate-hero__cta.syi-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  background: #fff !important;
  color: #0983b2 !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  font-family: "Mont-SemiBold", sans-serif;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 300;
  text-decoration: none;
  width: fit-content;
}

.curate-hero__cta-icon {
  flex-shrink: 0;
  width: clamp(22px, 3.2vw, 28px);
  height: clamp(19px, 2.75vw, 24px);
  display: block;
  object-fit: contain;
}

.page-curate-land .curate-hero__cta.syi-button:hover {
  color: #065a82 !important;
  filter: brightness(0.98);
}

.page-curate-land .curate-hero__cta--continue.syi-button {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: none;
}

.page-curate-land .curate-hero__cta--continue.syi-button:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  filter: none;
}

.curate-hero__continue {
  position: relative;
  z-index: 3;
}

.curate-hero__continue-menu {
  min-width: min(320px, 90vw);
  max-height: min(360px, 50vh);
  overflow-y: auto;
  padding: 8px 0;
}

.curate-hero__continue-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 16px;
  white-space: normal;
}

.curate-hero__continue-item-title {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 15px;
  color: var(--syi-color-dark);
}

.curate-hero__continue-item-activity {
  font-family: "Mont-Book", sans-serif;
  font-size: 13px;
  color: var(--syi-color-grey);
}

.curate-bullets {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

/* Match hero / column edges — no extra horizontal inset on the grid wrapper. */
.page-curate-land .curate-bullets .center-wrap.curate-bullets__grid {
  padding-left: 0;
  padding-right: 0;
}

.curate-bullets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.curate-bullet {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.curate-bullet__icon {
  flex-shrink: 0;
  width: clamp(28px, 5.5vw, 38px);
  height: clamp(27px, 5.25vw, 37px);
  object-fit: contain;
}

.curate-bullet p {
  margin: 0;
  font-family: "Mont-Book", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.curate-steps-head {
  padding: clamp(2.25rem, 5vw, 4.5rem) 0 0.5rem;
  text-align: center;
}

.curate-steps-head .curate-section-title {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 54px;
  font-weight: 300;
  color: #7d7d7d;
}

.curate-section-title {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 300;
  color: #2a2a2a;
  margin: 0;
}

.curate-section-title--muted {
  color: #6f6f6f;
}

.curate-step {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.curate-step.curate-step--tint {
  padding: 0;
}

/* 30px vertical rhythm after the steps heading and between tinted steps. */
.page-curate-land .curate-step--1 {
  margin-top: 30px;
}

.page-curate-land .curate-step.curate-step--tint + .curate-step.curate-step--tint {
  margin-top: 30px;
}

.curate-step--tint {
  overflow: visible;
}

/* Background + content share the same horizontal bounds as .center-wrap (aligned with rest of page). */
.curate-step__shell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  box-sizing: border-box;
  background-color: #f5f5f5;
}

.curate-step__shell .curate-step__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.curate-step__bg {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.curate-step__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* Centered row: 100px between copy and icon. */
.curate-step__inner--split {
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.curate-step__inner--split > * {
  flex: 0 1 auto;
}

.curate-step__inner--split > .curate-step__copy {
  flex: 0 1 420px;
  max-width: 100%;
}

.curate-step__inner--split > .curate-step__art--icon {
  flex: 0 0 auto;
}

.curate-step__inner--reverse {
  flex-direction: row-reverse;
}

.curate-step__title {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 0.65rem;
  color: #111;
}

.curate-step__copy p {
  font-family: "Mont-Book", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #444;
  margin: 0;
}

.curate-step__art img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}

.curate-step__art--icon {
  display: flex;
  justify-content: center;
}

/* Hard cap 285px: plain clamp(…, 24vw, 285px) still let some engines resolve ~306px from vw before clamp. */
.page-curate-land .curate-step__art--icon img {
  display: block;
  width: max(100px, min(285px, 20vw));
  max-width: min(285px, 100%);
  height: auto;
  max-height: max(100px, min(285px, 20vw));
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0;
  margin: 0;
  box-sizing: border-box;
}

.curate-vision-intro {
  padding: 150px 0 0;
  text-align: center;
}

.page-curate-land .curate-vision-intro .center-wrap {
  padding-left: 0;
  padding-right: 0;
}

.curate-vision-intro__text {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 54px;
  font-weight: 300;
  color: #7d7d7d;
  margin: 0;
  line-height: 1.2;
}

.curate-notebook {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

/* Edge-to-edge brief image; breakout from the main column when needed. */
.page-curate-land .curate-notebook {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.curate-notebook__paper {
  border-radius: 14px;
  padding: 0;
  background: transparent;
  box-shadow: 0 8px 28px rgba(1, 70, 99, 0.08);
  border: none;
  overflow: hidden;
}

/* Full-bleed notebook card: override .center-wrap max-width and horizontal inset. */
.page-curate-land .curate-notebook .curate-notebook__paper.center-wrap {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.curate-notebook__illustration {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
}

.curate-features {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}

/* Grid uses full column width; same horizontal inset as other .center-wrap sections. */
.page-curate-land .curate-features .center-wrap {
  padding-left: 0;
  padding-right: 0;
  container-type: inline-size;
  container-name: curate-features;
}

.curate-features .curate-section-title {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

#curate-features-title.curate-section-title {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 54px;
  font-weight: 300;
  color: #7d7d7d;
  line-height: 1.2;
  padding-left: clamp(1rem, 3.5vw, 1.75rem);
  padding-right: clamp(0.75rem, 2.25vw, 1.25rem);
  box-sizing: border-box;
}

.curate-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  text-align: center;
}

@media (min-width: 1100px) {
  .curate-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*
 * Viewport <980px: when the grid is 2× (third on its own row), center that card.
 * Container max ~740px matches three 240px tracks + gaps — avoids firing when three columns still fit.
 * Container min ~490px skips single-column (half-width card would look wrong).
 */
@media (max-width: 979.98px) {
  @container curate-features (min-width: 490px) and (max-width: 739.98px) {
    .curate-features__grid .curate-feature-card:nth-child(3) {
      grid-column: 1 / -1;
      justify-self: center;
      width: min(100%, calc((100% - 10px) / 2));
      max-width: calc((100% - 10px) / 2);
    }
  }
}

/*
 * Curate feature cards: “mobile” layout through 767.98px (640–768 range before tablet at 768+).
 * Single column + undo @container third-card sizing; from 768px auto-fit / tablet scaling apply.
 */
@media (max-width: 767.98px) {
  .page-curate-land .curate-features__grid {
    grid-template-columns: 1fr;
  }

  .page-curate-land .curate-features .curate-features__grid .curate-feature-card:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
    max-width: none;
  }
}

/*
 * From tablet up: keep all 3 feature cards on one row (overrides auto-fit and @container third-card rule).
 */
@media (min-width: 768px) {
  .page-curate-land .curate-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-curate-land .curate-features .curate-features__grid .curate-feature-card:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
    max-width: none;
  }
}

.curate-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 140px 25px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  box-sizing: border-box;
}

.curate-feature-card__icon {
  flex-shrink: 0;
  width: clamp(104px, 22vw, 178px);
  height: clamp(104px, 22vw, 178px);
  margin-bottom: clamp(1.5rem, 6vw, 60px);
  object-fit: contain;
}

.curate-feature-card h3 {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 23px;
  font-weight: 300;
  margin: 0 0 30px;
  color: #000;
}

.curate-feature-card p {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #7d7d7d;
  margin: 0;
}

/*
 * Pro Organisers logo band — layout matches pricing #pro-organizers; section title uses the same
 * typographic treatment as the Curate FAQ heading (.curate-faq__title).
 */
.page-curate-land section.primary-section.pro-organizers {
  margin: 140px auto;
}

.page-curate-land section.primary-section.pro-organizers .center-container {
  width: 1366px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-curate-land section.primary-section.pro-organizers .pro-organizers-logo-outer-container {
  background: rgba(238, 238, 238, 0.92);
}

.page-curate-land section.primary-section.pro-organizers .pro-organizers-logo-outer-container .pro-organizers-logo-inner-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px;
}

.page-curate-land section.primary-section.pro-organizers .pro-organizers-logo-outer-container .pro-organizers-logo-inner-container .pro-organizers-logo-inner-row-container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.page-curate-land section.primary-section.pro-organizers .pro-organizers-logo-outer-container .pro-organizers-logo-inner-container .pro-organizers-logo-inner-row-container img {
  height: 150px;
}

@media only screen and (max-width: 600px) {
  .page-curate-land section.primary-section.pro-organizers {
    margin: 65px auto;
  }

  .page-curate-land section.primary-section.pro-organizers .center-container {
    padding: 0 17px;
  }

  .page-curate-land section.primary-section.pro-organizers .pro-organizers-logo-outer-container .pro-organizers-logo-inner-container {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }

  .page-curate-land section.primary-section.pro-organizers .pro-organizers-logo-outer-container .pro-organizers-logo-inner-container .pro-organizers-logo-inner-row-container img {
    height: 70px;
  }

  .page-curate-land section.primary-section.pro-organizers .pro-organizers-logo-outer-container .pro-organizers-logo-inner-container .pro-organizers-logo-inner-row-container {
    justify-content: space-evenly;
  }
}

.curate-faq {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
}

.page-curate-land .curate-faq {
  background: #fff;
}

.curate-faq__box {
  border: none;
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
}

.page-curate-land .curate-faq__box.center-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.page-curate-land .curate-faq__box .curate-faq__title,
.page-curate-land .curate-faq__box .curate-faq__accordion {
  padding-left: 0;
  padding-right: 0;
}

.page-curate-land h2.curate-faq__title {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 54px;
  font-weight: 300;
  text-align: center;
  color: #7d7d7d;
  line-height: 1.2;
  margin: 0 0 60px;
}

/* Down arrow: 40×19, stroke #7D7D7D @ 80%, round caps & join (not a filled triangle). */
.page-curate-land .curate-faq__accordion.accordion {
  --curate-faq-chevron: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='40'%20height='19'%20viewBox='0%200%2040%2019'%20fill='none'%3E%3Cpath%20d='M4%204.5L20%2015.5L36%204.5'%20stroke='%237d7d7d'%20stroke-opacity='0.8'%20stroke-width='6'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
  --bs-accordion-bg: #fff;
  --bs-accordion-active-bg: #fff;
  /* Flat dividers: Bootstrap rounds last item’s bottom corners and curves border-bottom. */
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-color: #000;
  --bs-accordion-active-color: #000;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon: var(--curate-faq-chevron);
  --bs-accordion-btn-active-icon: var(--curate-faq-chevron);
  border: none;
}

.page-curate-land .curate-faq__accordion .accordion-button::after {
  width: 40px;
  height: 19px;
  background-size: 40px 19px;
  background-position: center;
  background-repeat: no-repeat;
}

/* #707070 @ 50% opacity, 3px stroke; 5px space under each divider (including last item). */
.page-curate-land .curate-faq__accordion .accordion-item {
  border: none;
  border-bottom: 3px solid rgba(112, 112, 112, 0.5);
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-radius: 0;
}

.page-curate-land .curate-faq__accordion .accordion-item:first-of-type .accordion-button,
.page-curate-land .curate-faq__accordion .accordion-item:last-of-type .accordion-button,
.page-curate-land .curate-faq__accordion .accordion-item:last-of-type .accordion-collapse {
  border-radius: 0;
}

.page-curate-land .curate-faq__accordion .accordion-header {
  border: none;
}

.page-curate-land .curate-faq__accordion .accordion-button {
  border: none;
  box-shadow: none;
}

.page-curate-land .curate-faq__accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.page-curate-land .curate-faq__accordion .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.page-curate-land .curate-faq__accordion .accordion-collapse {
  border: none;
}

.page-curate-land .curate-faq__accordion .accordion-body {
  border: none;
}

.curate-faq__accordion .accordion-button {
  font-family: "Mont-SemiBold", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #000;
}

.curate-faq__accordion .accordion-body {
  font-family: "Mont-Book", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}

/* ---------------------------------------------------------------------------
   Below 1440px only — spacing + type + layout (1440+ rules stay unchanged).
   Line counts are steered with max-width + fluid font-size (no nowrap).
   --------------------------------------------------------------------------- */
@media (max-width: 1439.98px) {
  /* Shared left inset + fluid type landmark (hero, bullets, etc. scale together). */
  .curate-page {
    --curate-page-inset-l: max(
      120px,
      calc(max(0px, (100% - 1100px) / 2) + clamp(1rem, 3.5vw, 1.75rem))
    );
    --curate-hero-title-fs: clamp(1.55rem, 2.4vw + 0.62rem, 3rem);
  }

  .curate-page .center-wrap {
    margin-left: var(--curate-page-inset-l);
    margin-right: auto;
    max-width: min(1100px, calc(100% - var(--curate-page-inset-l) - 120px));
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* Mobile: replace 120px gutters — symmetric fluid left/right inset (slightly larger than minimum). */
  @media (max-width: 639.98px) {
    .curate-page {
      --curate-page-inset-l: clamp(1rem, 6vw, 1.5rem);
    }

    .curate-page .center-wrap {
      max-width: min(
        1100px,
        calc(100% - var(--curate-page-inset-l) - clamp(1rem, 6vw, 1.5rem))
      );
    }
  }

  /* 1) Hero: ~2.5–3× previous top padding (old cap was 5.5rem); bottom corners like 1440+ spec. */
  .page-curate-land .curate-hero {
    align-items: flex-start;
    padding-top: clamp(7.5rem, 30vw, 16.5rem);
    padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
    padding-left: 0;
    padding-right: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .page-curate-land .curate-hero__bg,
  .page-curate-land .curate-hero__overlay {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  /*
   * Hero column: same left inset as page; no horizontal padding. Width cap: vw curve −50px vs
   * remaining space to 120px right margin.
   */
  .page-curate-land .curate-hero .curate-hero__content.center-wrap {
    margin-left: var(--curate-page-inset-l);
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    max-width: min(
      calc(62vw - max(0px, (100% - 1100px) / 2) - 50px),
      calc(100% - var(--curate-page-inset-l) - 120px)
    );
    width: 100%;
    box-sizing: border-box;
    --curate-hero-lead-mul: 0.318;
    --curate-hero-cta-mul: 0.392157;
    --curate-hero-lead-fs: max(11px, calc(var(--curate-hero-title-fs) * var(--curate-hero-lead-mul)));
  }

  /*
   * EN: line 1 “Find the right venue without” / line 2 “the search hassle” (wider ch + slightly
   * larger title than before). Other locales: tune ch if wrapping shifts.
   */
  .curate-hero__title {
    font-size: var(--curate-hero-title-fs);
    line-height: 1.14;
    max-width: min(40ch, 100%);
  }

  html[lang^="en"] .page-curate-land .curate-hero__title {
    max-width: min(34ch, 100%);
  }

  html[lang^="el"] .page-curate-land .curate-hero__title {
    max-width: min(38ch, 100%);
  }

  /* Eyebrow: ~1–4px above lead (fluid bump); lead floor 11px. */
  .page-curate-land .curate-hero .curate-hero__eyebrow {
    font-size: max(
      12px,
      calc(var(--curate-hero-lead-fs) + clamp(1px, 0.22vw + 0.85px, 4px))
    );
  }

  /* Lead: scales with title, never below 11px; full width of hero column. */
  .curate-hero__lead {
    font-size: var(--curate-hero-lead-fs);
    line-height: 1.48;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* CTA: 50px on laptop+ (1024–1440); mobile <640 uses clamp; tablet 640–1023 in tablet block. */
  .page-curate-land .curate-hero__cta.syi-button {
    font-size: calc(var(--curate-hero-title-fs) * var(--curate-hero-cta-mul));
    padding: 0.65em 1.5em;
    gap: 0.5em;
  }

  @media (min-width: 1024px) {
    .page-curate-land .curate-hero__ctas {
      margin-top: 50px;
    }
  }

  .page-curate-land .curate-hero .curate-hero__cta-icon {
    width: calc(var(--curate-hero-title-fs) * var(--curate-hero-cta-mul) * 1.75);
    height: calc(var(--curate-hero-title-fs) * var(--curate-hero-cta-mul) * 1.5);
  }

  /*
   * Mobile hero (375px reference; light vw clamps): compact padding, eyebrow 14px / title 24px /
   * lead 15px / CTA 15px + 24×24 icon; min-height ~317px at 375 (84.533vw). Placed after fluid hero
   * rules so these win on small screens.
   */
  @media (max-width: 639.98px) {
    .page-curate-land .curate-hero .curate-hero__content.center-wrap {
      max-width: min(
        79vw,
        calc(100% - var(--curate-page-inset-l) - clamp(1rem, 6vw, 1.5rem))
      );
    }

    .page-curate-land .curate-hero {
      box-sizing: border-box;
      padding-top: clamp(0.875rem, 4.2vw, 1.125rem);
      padding-bottom: clamp(0.75rem, 3vw, 1rem);
      min-height: clamp(300px, 84.533vw, 326px);
    }

    /* Mobile only: show the left portion of the hero art (desktop/tablet stay centered). */
    .page-curate-land .curate-hero__bg {
      background-position: left center;
    }

    .page-curate-land .curate-hero .curate-hero__eyebrow {
      font-size: clamp(13px, 3.73vw, 14px);
      margin-bottom: clamp(6px, 2vw, 8px);
    }

    .page-curate-land .curate-hero__title {
      font-size: clamp(22px, 6.4vw, 24px);
      line-height: 1.15;
      margin-bottom: clamp(8px, 2.4vw, 10px);
    }

    .page-curate-land .curate-hero__lead {
      font-size: clamp(14px, 4vw, 15px);
      line-height: 1.45;
      margin: 0 0 clamp(0.5rem, 2vw, 0.75rem);
    }

    .page-curate-land .curate-hero__cta.syi-button {
      margin-top: clamp(0.75rem, 4.5vw, 1.25rem);
      font-size: clamp(14px, 4vw, 15px);
      padding: 0.5em 1.25em;
      gap: 0.45em;
    }

    .page-curate-land .curate-hero .curate-hero__cta-icon {
      width: 24px;
      height: 24px;
    }
  }

  /* 4) Bullets: same scale as hero title (0.9375rem cap @ 3rem title); icons 38×37 ∝ title. */
  .page-curate-land .curate-bullets .center-wrap.curate-bullets__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(1.25rem, 3.5vw, 2.25rem);
  }

  .curate-bullet {
    gap: clamp(0.5rem, calc(var(--curate-hero-title-fs) * 0.28), 1rem);
  }

  .curate-bullet__icon {
    width: clamp(24px, calc(var(--curate-hero-title-fs) * 0.792), 38px);
    height: clamp(23px, calc(var(--curate-hero-title-fs) * 0.771), 37px);
  }

  .curate-bullet p {
    font-size: max(11px, calc(var(--curate-hero-title-fs) * 0.3125));
    line-height: 1.45;
  }

  /* ≤903px: two bullets on row 1, third centered on row 2 */
  @media (max-width: 903px) {
    .page-curate-land .curate-bullets .center-wrap.curate-bullets__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      justify-items: stretch;
      justify-content: center;
    }

    .page-curate-land .curate-bullets .curate-bullet:nth-child(3) {
      grid-column: 1 / -1;
      place-self: center;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      max-width: min(100%, 40rem);
      text-align: center;
    }

    .page-curate-land .curate-bullets .curate-bullet:nth-child(3) p {
      text-align: center;
    }
  }

  /* Mobile: single column (stack); undo 2-col + centered third from ≤903px. */
  @media (max-width: 639.98px) {
    .page-curate-land .curate-bullets .center-wrap.curate-bullets__grid {
      /* Keep same horizontal bounds as .curate-page .center-wrap (inset L + R via max-width). */
      grid-template-columns: 1fr;
      justify-items: stretch;
    }

    .page-curate-land .curate-bullets .curate-bullet:nth-child(3) {
      grid-column: auto;
      place-self: stretch;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      max-width: none;
      text-align: start;
    }

    .page-curate-land .curate-bullets .curate-bullet:nth-child(3) p {
      text-align: start;
    }
  }

  /*
   * Display headlines (54px / #7d7d7d @1440): same band, smaller type sooner — lower min, vw, cap
   * than before so width drops faster toward ~900px and below.
   */
  .curate-steps-head .curate-section-title,
  .curate-vision-intro__text,
  #curate-features-title.curate-section-title,
  .page-curate-land h2.curate-faq__title {
    font-size: clamp(0.875rem, 2.35vw + 0.32rem, 1.9rem);
    line-height: 1.18;
  }

  #curate-features-title.curate-section-title {
    padding-left: 0;
    padding-right: 0;
  }

  .page-curate-land h2.curate-faq__title {
    margin-bottom: clamp(1.5rem, 4vw, 48px);
  }

  /* ≤853px: display headlines another step down (narrow phones / small tablets). */
  @media (max-width: 855.98px) {
    .curate-steps-head .curate-section-title,
    .curate-vision-intro__text,
    #curate-features-title.curate-section-title,
    .page-curate-land h2.curate-faq__title {
      font-size: clamp(0.75rem, 1.85vw + 0.18rem, 1.5rem);
      line-height: 1.2;
    }
  }

  /* Mobile: grey 54px-at-1440 section titles — fixed 20px (clamps above can go smaller). */
  @media (max-width: 639.98px) {
    .curate-steps-head .curate-section-title,
    .curate-vision-intro__text,
    #curate-features-title.curate-section-title,
    .page-curate-land h2.curate-faq__title {
      font-size: 20px;
      line-height: 1.2;
    }
  }

  .curate-vision-intro {
    padding-top: clamp(4rem, 14vw, 150px);
  }

  /* Steps: title 24px / body 16px vs 54px title at large spec → × 24/54 and × 16/54 of landmark. */
  .curate-step__title {
    font-size: max(14px, calc(var(--curate-hero-title-fs) * 24 / 54));
    margin-bottom: clamp(0.4rem, calc(var(--curate-hero-title-fs) * 0.09), 0.65rem);
  }

  .curate-step__copy p {
    font-size: max(11px, calc(var(--curate-hero-title-fs) * 16 / 54));
  }

  /* Mobile steps: h3 22px, body 16px. */
  @media (max-width: 639.98px) {
    .page-curate-land .curate-step__title {
      font-size: 22px;
    }

    .page-curate-land .curate-step__copy p {
      font-size: 16px;
    }
  }

  .curate-step__inner {
    gap: clamp(1rem, calc(var(--curate-hero-title-fs) * 0.45), 2.5rem);
  }

  /* Step split (<1440): centered row, 40px gap; copy 30% width; icon shrinks with vw + title landmark. */
  .curate-step__inner--split {
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Narrow viewports: vw caps size (avoids ~24vw-style blow-up); title fs scales the rest */
    --curate-step-icon-w: clamp(
      28px,
      min(26vw, calc(72px * (var(--curate-hero-title-fs) / 3rem))),
      108px
    );
  }

  .curate-step__inner--split > .curate-step__art--icon {
    flex: 0 1 auto;
    min-width: 0;
    box-sizing: border-box;
    width: var(--curate-step-icon-w);
    max-width: min(100%, 26vw, var(--curate-step-icon-w));
  }

  .curate-step__inner--split > .curate-step__copy {
    flex: 0 1 auto;
    min-width: 0;
    width: 35%;
    max-width: 35%;
  }

  /* Width lives on .curate-step__art--icon; img fills it — explicit width here fought layout (~306px). */
  .page-curate-land .curate-step__inner--split .curate-step__art--icon img {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    margin: 0;
    min-width: 0;
  }

  /*
   * Mobile steps: column stack, full-width copy (drop 35% + 40px row gap), modest shell padding,
   * tighter inner gap — icon first via order so step 2 matches 1 & 3 visually.
   */
  @media (max-width: 639.98px) {
    .page-curate-land .curate-step__shell {
      padding-top: clamp(1.125rem, 5vw, 2.25rem);
      padding-bottom: clamp(1.125rem, 5vw, 2.25rem);
      padding-left: clamp(0.875rem, 3.5vw, 1.5rem);
      padding-right: clamp(0.875rem, 3.5vw, 1.5rem);
    }

    .page-curate-land .curate-step__inner {
      gap: clamp(0.625rem, 3vw, 1.125rem);
    }

    .page-curate-land .curate-step__inner--split {
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: clamp(0.75rem, 3.5vw, 1.35rem);
    }

    .page-curate-land .curate-step__inner--split > .curate-step__copy {
      flex: 1 1 auto;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      text-align: center;
    }

    .page-curate-land .curate-step__inner--split > .curate-step__art--icon {
      order: -1;
      align-self: center;
      flex: 0 0 auto;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-curate-land .curate-step--1 {
      margin-top: clamp(0.75rem, 2.75vw, 30px);
    }

    .page-curate-land .curate-step.curate-step--tint + .curate-step.curate-step--tint {
      margin-top: clamp(0.75rem, 2.75vw, 28px);
    }
  }

  /* Tablet: same step stack as mobile (icon above copy). */
  @media (min-width: 640px) and (max-width: 1023.98px) {
    .page-curate-land .curate-step__shell {
      padding-top: clamp(1.125rem, 5vw, 2.25rem);
      padding-bottom: clamp(1.125rem, 5vw, 2.25rem);
      padding-left: clamp(0.875rem, 3.5vw, 1.5rem);
      padding-right: clamp(0.875rem, 3.5vw, 1.5rem);
    }

    .page-curate-land .curate-step__inner {
      gap: clamp(0.625rem, 3vw, 1.125rem);
    }

    .page-curate-land .curate-step__inner--split {
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: clamp(0.75rem, 3.5vw, 1.35rem);
    }

    .page-curate-land .curate-step__inner--split > .curate-step__copy {
      flex: 1 1 auto;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }

    .page-curate-land .curate-step__inner--split > .curate-step__art--icon {
      order: -1;
      align-self: center;
      flex: 0 0 auto;
    }

    .page-curate-land .curate-step--1 {
      margin-top: clamp(0.75rem, 2.75vw, 30px);
    }

    .page-curate-land .curate-step.curate-step--tint + .curate-step.curate-step--tint {
      margin-top: clamp(0.75rem, 2.75vw, 28px);
    }
  }

  .curate-feature-card {
    padding: clamp(2.5rem, 12vw, 140px) clamp(1rem, 2.5vw, 25px);
  }

  /* Feature cards: tablet / small laptop — scaled icon + type (768px–1439.98px; below 768 matches mobile). */
  @media (min-width: 768px) {
    .page-curate-land .curate-feature-card__icon {
      width: clamp(52px, min(22vw, calc(62px * (var(--curate-hero-title-fs) / 3rem))), 118px);
      height: clamp(52px, min(22vw, calc(62px * (var(--curate-hero-title-fs) / 3rem))), 118px);
      max-width: min(100%, 22vw, 118px);
      max-height: min(100%, 22vw, 118px);
    }

    .curate-feature-card h3 {
      font-size: clamp(0.6875rem, 0.78vw + 0.38rem, 1.0625rem);
      line-height: 1.2;
      max-width: min(22ch, 95%);
      margin: 0 auto 30px;
    }

    .curate-feature-card p {
      font-size: clamp(0.625rem, 0.82vw + 0.3rem, 0.75rem);
      line-height: 1.48;
      max-width: min(36ch, 100%);
      margin-left: auto;
      margin-right: auto;
    }
  }

  /* Feature cards: ≤767.98px — same as phone: 23px title, 18px body, 124×124 icon. */
  @media (max-width: 767.98px) {
    .page-curate-land .curate-feature-card__icon {
      width: 124px;
      height: 124px;
      max-width: none;
      max-height: none;
    }

    .page-curate-land .curate-feature-card h3 {
      font-size: 23px;
      line-height: 1.2;
      max-width: min(22ch, 95%);
      margin: 0 auto 30px;
    }

    .page-curate-land .curate-feature-card p {
      font-size: 18px;
      line-height: 1.5;
      max-width: min(36ch, 100%);
      margin-left: auto;
      margin-right: auto;
    }
  }

  .page-curate-land .curate-faq {
    padding-top: clamp(1.5rem, 4vw, 3.25rem);
    padding-bottom: clamp(2.25rem, 6vw, 4.25rem);
  }

  .page-curate-land .curate-faq__box.center-wrap {
    padding-top: clamp(1.125rem, 3vw, 2rem);
    padding-bottom: clamp(1.125rem, 3vw, 2rem);
  }

  .curate-faq__accordion .accordion-button {
    font-size: clamp(0.875rem, 1vw + 0.55rem, 1.125rem);
  }

  /*
   * 8) FAQ answers: compact ~3-line rhythm on typical widths; first item is
   *    much longer in EN and will still wrap to more lines without truncation.
   */
  .curate-faq__accordion .accordion-body {
    font-size: clamp(0.625rem, 0.68vw + 0.42rem, 0.8125rem);
    line-height: 1.48;
    max-width: min(42ch, 100%);
  }

  .page-curate-land .curate-faq__accordion .accordion-button::after {
    width: min(24px, 6.25vw);
    height: min(11px, 2.9vw);
    background-size: min(24px, 6.25vw) min(11px, 2.9vw);
  }

  @media (max-width: 639.98px) {
    .page-curate-land h2.curate-faq__title {
      margin-bottom: clamp(1.25rem, 3.5vw, 2rem);
    }

    .page-curate-land .curate-faq__accordion .accordion-button {
      font-size: 20px;
    }

    .page-curate-land .curate-faq__accordion .accordion-body {
      font-size: 18px;
      line-height: 1.5;
    }

    .page-curate-land .curate-faq__accordion .accordion-button::after {
      width: min(20px, 5vw);
      height: min(9px, 2.35vw);
      background-size: min(20px, 5vw) min(9px, 2.35vw);
    }
  }
}

/*
 * Tablet only (~640px–1023.98px): e.g. iPad Pro 11" portrait 834px; landscape ≥1024 uses laptop rules.
 */
@media (min-width: 640px) and (max-width: 1023.98px) {
  .curate-page {
    --curate-page-inset-l: 40px;
  }

  .curate-page .center-wrap {
    max-width: min(1100px, calc(100% - var(--curate-page-inset-l) - 40px));
  }

  /*
   * Tablet hero: 100% auto + inset:0 always leaves a band under the art (taller box than the bitmap
   * height) where only the gradient is visible. cover + top fills the whole layer; fallbacks
   * background-color. min-height:0 shrinks the section to content+padding (overrides .curate-hero
   * min-height clamp) so the bg layer and overlay match the box — no sliver to “fix” with calc/vw.
   */
  .page-curate-land .curate-hero {
    box-sizing: border-box;
    min-height: 0;
    padding-top: 20px;
    padding-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .page-curate-land .curate-hero__bg {
    background-color: rgb(4, 60, 90);
    background-image: url("hero-section-tablet.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .page-curate-land .curate-hero .curate-hero__eyebrow {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .page-curate-land .curate-hero__title {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .page-curate-land .curate-hero__lead {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 0.75rem;
  }

  .page-curate-land .curate-hero__ctas {
    margin-top: 20px;
  }

  .page-curate-land .curate-hero__cta.syi-button {
    font-size: 16px;
    padding: 0.55rem 1.25rem;
    gap: 0.45rem;
  }

  .page-curate-land .curate-hero .curate-hero__cta-icon {
    width: 28px;
    height: 24px;
  }

  .page-curate-land .curate-hero .curate-hero__content.center-wrap {
    margin-left: 40px;
    max-width: min(
      calc(62vw - max(0px, (100% - 1100px) / 2) - 50px),
      calc(100% - var(--curate-page-inset-l) - 40px)
    );
  }

  .page-curate-land .curate-bullets .center-wrap.curate-bullets__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-curate-land .curate-bullets .curate-bullet:nth-child(3) {
    grid-column: auto;
    place-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: none;
    text-align: start;
  }

  .page-curate-land .curate-bullets .curate-bullet:nth-child(3) p {
    text-align: start;
  }

  .page-curate-land .curate-bullet p {
    font-size: 16px;
  }

  .page-curate-land .curate-bullet__icon {
    width: 30px;
    height: 30px;
  }

  .page-curate-land .curate-step__shell .curate-step__copy {
    max-width: 342px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
  }

  .page-curate-land .curate-step__shell .curate-step__title {
    font-size: 22px;
    text-align: center;
  }

  .page-curate-land .curate-step__shell .curate-step__copy p {
    font-size: 16px;
    text-align: center;
  }

  .page-curate-land .curate-faq__accordion .accordion-button {
    font-size: 20px;
  }

  .page-curate-land .curate-faq__accordion .accordion-body {
    font-size: 18px;
    line-height: 1.5;
    max-width: none;
  }
}
