:root {
  --blue: #347fb6;
  --blue-bright: #438fca;
  --blue-deep: #123f5e;
  --blue-ink: #153a52;
  --blue-pale: #eaf4fa;
  --blue-mist: #f4f9fc;
  --pink: #efb2ce;
  --pink-deep: #d87fa8;
  --lime: #dce8ae;
  --cream: #fbf8f1;
  --ink: #1d2e38;
  --muted: #60727d;
  --line: #d8e3e9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 68, 94, 0.14);
  --shadow-soft: 0 12px 38px rgba(25, 66, 90, 0.1);
}

/* Unified public navigation — v51 */
.sea-unified-header .sea-unified-nav a {
  position: relative;
  border-bottom: 0 !important;
  color: #ffffff !important;
}

.sea-unified-header .sea-unified-nav a::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: #efb2ce !important;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.sea-unified-header .sea-unified-nav a:hover::after,
.sea-unified-header .sea-unified-nav a:focus-visible::after,
.sea-unified-header .sea-unified-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.sea-unified-header .sea-unified-nav a:hover,
.sea-unified-header .sea-unified-nav a:focus-visible,
.sea-unified-header .sea-unified-nav a[aria-current="page"] {
  color: #ffffff !important;
}

.sea-unified-header .sea-unified-cta {
  min-height: 46px !important;
  padding: 0 20px !important;
  border: 1px solid #efb2ce !important;
  border-radius: 7px !important;
  background: #efb2ce !important;
  color: #4d2034 !important;
  font-size: .88rem !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

.sea-unified-header .sea-unified-cta:hover,
.sea-unified-header .sea-unified-cta:focus-visible {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #4d2034 !important;
  transform: translateY(-2px);
}

.sea-unified-mobile-menu {
  display: none;
}

.sea-unified-mobile-panel > a[aria-current="page"]:not(.sea-unified-cta) {
  border-left: 4px solid #efb2ce !important;
  background: rgba(239, 178, 206, .22) !important;
  color: #123f5e !important;
}

@media (max-width: 980px) {
  .sea-unified-header .sea-unified-nav,
  .sea-unified-header .header-actions,
  .sea-unified-header .home-refined-nav > .sea-unified-cta,
  .sea-unified-header .directory-nav-wrap > .sea-unified-cta {
    display: none !important;
  }

  .sea-unified-header .sea-unified-mobile-menu {
    position: relative;
    margin-left: auto;
    display: block !important;
  }

  .sea-unified-header .sea-unified-mobile-menu summary {
    width: 48px;
    height: 48px;
    margin: 0;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 7px;
    cursor: pointer;
    list-style: none;
  }

  .sea-unified-header .sea-unified-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .sea-unified-header .sea-unified-mobile-menu summary span {
    width: 22px;
    height: 2px;
    display: block;
    background: #ffffff;
  }

  .sea-unified-header .sea-unified-mobile-panel {
    position: absolute;
    z-index: 100;
    top: 58px;
    right: 0;
    width: min(330px, calc(100vw - 32px));
    padding: 16px;
    display: grid;
    gap: 5px;
    border: 1px solid #d8e3e9;
    border-radius: 14px;
    background: #ffffff;
    color: #123f5e;
    box-shadow: 0 24px 60px rgba(8, 43, 65, .22);
  }

  .sea-unified-header .sea-unified-mobile-panel > a:not(.sea-unified-cta) {
    padding: 11px 12px;
    border-bottom: 1px solid #d8e3e9;
    border-radius: 7px;
    color: #123f5e;
    font-weight: 800;
  }

  .sea-unified-header .sea-unified-mobile-panel .sea-unified-cta {
    width: 100%;
    margin: 8px 0 0 !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input,
select,
textarea {
  font-size: 1rem;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.inline-notice {
  margin: 0;
  padding: 11px 13px;
  border-left: 3px solid var(--blue);
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 0.72rem;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #aedaef;
}

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

h1,
h2 {
  color: var(--blue-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(3rem, 5.3vw, 5.15rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.7rem);
}

h3 {
  color: var(--blue-ink);
  font-size: 1.2rem;
  line-height: 1.25;
}

.button {
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(239, 178, 206, 0.75);
  outline-offset: 3px;
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 13px 28px rgba(52, 127, 182, 0.22);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-accent {
  background: var(--pink);
  box-shadow: 0 13px 28px rgba(216, 127, 168, 0.2);
  color: #4d2034;
}

.button-accent:hover {
  background: #f5c3da;
}

.button-outline {
  border-color: #b8cdd9;
  background: var(--white);
  color: var(--blue-deep);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
  color: var(--white);
}

.button-quiet {
  min-height: 44px;
  padding-inline: 17px;
  color: var(--blue-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  color: var(--pink-deep);
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.announcement {
  background: var(--blue-deep);
  color: #d8edf8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement-offer {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 91, 127, 0.14);
  background: var(--blue);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  width: 244px;
  flex: 0 0 auto;
  display: flex;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
  color: #f3f9fc;
  font-size: 0.86rem;
  font-weight: 700;
}

.desktop-nav a {
  padding: 28px 0 24px;
  border-bottom: 3px solid transparent;
}

.desktop-nav a:hover {
  border-bottom-color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-actions .button-quiet {
  color: var(--white);
}

.mobile-menu {
  margin-left: auto;
  display: none;
}

.mobile-menu summary {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

.mobile-menu-panel {
  position: absolute;
  top: 82px;
  right: 24px;
  left: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  color: var(--blue-deep);
}

.mobile-menu-panel > a:not(.button) {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 14%, rgba(239, 178, 206, 0.18), transparent 25%),
    linear-gradient(135deg, #f8fcfe 0%, #edf6fb 100%);
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: 20px;
  width: 340px;
  height: 340px;
  border: 48px solid rgba(52, 127, 182, 0.06);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  min-height: 660px;
  padding: 72px 0 76px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 20px 0 25px;
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 32px;
  color: #506b7a;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions,
.portal-actions,
.final-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-assurances {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-assurances span {
  padding-left: 14px;
  border-left: 2px solid #c9dce7;
}

.hero-assurances b {
  margin-bottom: 2px;
  display: block;
  color: var(--blue-deep);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 530px;
}

.hero-visual > img {
  width: 100%;
  height: 530px;
  border-radius: 9px 70px 9px 9px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 63% center;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 180px;
  height: 180px;
  border-radius: 70px 10px 10px 10px;
  background: var(--pink);
  content: "";
}

.hero-card {
  position: absolute;
  bottom: 24px;
  left: -38px;
  width: 250px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(18, 63, 94, 0.94);
  box-shadow: 0 18px 40px rgba(10, 42, 61, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-card-kicker {
  margin-bottom: 8px;
  display: block;
  color: #a9d9ef;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  margin-bottom: 7px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero-card > span:last-child {
  color: #d5e8f2;
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-ribbon {
  height: 7px;
  background: linear-gradient(90deg, var(--blue) 0 63%, var(--pink) 63% 82%, var(--lime) 82%);
}

/* Trust */
.trust-strip {
  padding: 29px 0 31px;
  border-bottom: 1px solid var(--line);
}

.trust-strip .shell {
  display: flex;
  align-items: center;
  gap: 44px;
}

.trust-strip p {
  min-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.trust-names {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #78909c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

/* Shared sections */
.section-heading {
  margin-bottom: 52px;
}

.section-heading h2,
.audience-grid h2,
.experience-copy h2,
.pricing-copy h2,
.portal-copy h2 {
  margin: 15px 0 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.split-heading p,
.heading-action p {
  margin-bottom: 4px;
  color: var(--muted);
}

.heading-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.benefits-section {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.benefit-card {
  min-height: 300px;
  padding: 38px 38px 28px 0;
  border-right: 1px solid var(--line);
}

.benefit-card + .benefit-card {
  padding-left: 38px;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-number {
  margin-bottom: 54px;
  display: inline-flex;
  color: var(--pink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-style: italic;
}

.benefit-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Events */
.upcoming-section {
  background: var(--blue-mist);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.event-card {
  min-height: 340px;
  padding: 27px;
  border: 1px solid #d8e6ed;
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 3px 0 rgba(52, 127, 182, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.event-card-top {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.event-state {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.status-pill {
  padding: 5px 8px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.61rem;
  font-weight: 800;
}

.status-available {
  background: #eef5d7;
  color: #556c1e;
}

.status-limited {
  background: #fff0d6;
  color: #8b5a0b;
}

.status-waitlist {
  background: #f5e5ec;
  color: #8b4563;
}

.event-card h3 {
  margin: 24px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.event-date {
  min-height: 48px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.event-venue {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.event-venue strong {
  color: var(--ink);
}

.event-link {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.event-link span {
  color: var(--pink-deep);
}

/* Experience */
.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 76px;
}

.experience-image {
  position: relative;
}

.experience-image img {
  width: 100%;
  height: 570px;
  border-radius: 10px 10px 82px 10px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.photo-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  padding: 10px 16px;
  border-radius: 5px;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.experience-copy > p {
  margin: 24px 0 32px;
  color: var(--muted);
}

.timeline {
  margin-bottom: 30px;
  display: grid;
}

.timeline > div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
}

.timeline > div > span {
  color: var(--pink-deep);
  font-size: 0.74rem;
  font-weight: 800;
}

.timeline p {
  margin: 0;
  display: grid;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.timeline strong {
  margin-bottom: 2px;
  color: var(--blue-deep);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-section {
  background: var(--blue-deep);
  color: #d5e6ef;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  align-items: stretch;
  gap: 18px;
}

.pricing-copy {
  padding: 22px 62px 20px 0;
}

.pricing-copy h2 {
  color: var(--white);
}

.pricing-copy p {
  margin: 25px 0 32px;
  color: #c6dce7;
}

.price-card {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
}

.featured-price {
  border-color: rgba(239, 178, 206, 0.75);
  background: rgba(239, 178, 206, 0.08);
}

.price-card > span {
  color: #b9d7e7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card-title {
  min-height: 72px;
  margin: 18px 0 4px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.price {
  margin: 18px 0 23px;
}

.price strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  font-weight: 500;
}

.price small {
  margin-left: 7px;
  color: #b6cfdb;
  font-size: 0.68rem;
}

.price-card ul {
  margin: 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 7px 0 7px 21px;
  color: #d6e6ee;
  font-size: 0.8rem;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "✓";
}

.offer-bar {
  margin-top: 34px;
  padding: 21px 25px;
  border-left: 5px solid var(--pink);
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
}

.offer-bar span {
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-bar strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.offer-bar a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

/* Portal */
.portal-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 178, 206, 0.16), transparent 22%),
    var(--cream);
}

.provider-note-section {
  padding: 74px 0;
  background: var(--cream);
}

.provider-note-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.provider-note-inner h2 {
  max-width: 760px;
  margin: 14px 0 13px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.provider-note-inner p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.provider-note-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.portal-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.portal-copy > p {
  margin: 25px 0 32px;
  color: var(--muted);
}

.dashboard-preview {
  border: 1px solid #cadde7;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  overflow: hidden;
}

.preview-toolbar {
  min-height: 54px;
  padding: 0 18px;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.preview-toolbar > span {
  width: 25px;
  height: 25px;
  border-radius: 50% 50% 50% 10px;
  background: linear-gradient(135deg, var(--pink), var(--lime));
}

.preview-toolbar small {
  margin-right: auto;
  font-weight: 700;
}

.preview-toolbar i {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 800;
}

.preview-body {
  padding: 30px;
}

.preview-welcome {
  display: grid;
  gap: 3px;
}

.preview-welcome span {
  color: var(--muted);
  font-size: 0.67rem;
}

.preview-welcome strong {
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.preview-stat-row {
  margin: 25px 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-stat-row > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
}

.preview-stat-row span {
  color: var(--muted);
  font-size: 0.6rem;
}

.preview-stat-row strong {
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.preview-event {
  padding: 16px;
  border-radius: 6px;
  background: var(--blue-pale);
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 13px;
}

.preview-event i {
  width: 42px;
  height: 45px;
  border-radius: 4px;
  background: var(--blue);
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  line-height: 0.9;
}

.preview-event small {
  font-size: 0.5rem;
}

.preview-event p {
  margin: 0;
  display: grid;
  line-height: 1.4;
}

.preview-event p strong {
  color: var(--blue-deep);
  font-size: 0.78rem;
}

.preview-event p span {
  color: var(--muted);
  font-size: 0.62rem;
}

.preview-event b {
  color: var(--blue);
  font-size: 0.62rem;
}

/* Final CTA + footer */
.final-cta {
  padding: 50px 0 78px;
  background: var(--blue);
}

.final-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  color: #c8e3f1;
}

.final-cta h2 {
  max-width: 720px;
  margin: 15px 0 0;
  color: var(--white);
}

.site-footer {
  padding-top: 65px;
  background: #0f3045;
  color: #b8ced9;
}

.footer-grid {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.7fr 0.8fr;
  gap: 54px;
}

.footer-brand img {
  width: 245px;
  height: auto;
}

.footer-brand p {
  max-width: 400px;
  margin: 22px 0 0;
  color: #adc5d0;
  font-size: 0.82rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.78rem;
}

.footer-heading {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--pink);
}

.footer-facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-facebook-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #1877f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.footer-bottom {
  min-height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7998a8;
  font-size: 0.67rem;
}

/* Inner page hero */
.page-hero {
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 88% 30%, rgba(239, 178, 206, 0.16), transparent 22%),
    var(--blue-deep);
  color: var(--white);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr;
  align-items: end;
  gap: 90px;
}

.page-hero h1 {
  max-width: 800px;
  margin: 17px 0 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.page-hero p {
  margin: 0 0 8px;
  color: #c8dce7;
  font-size: 1.03rem;
}

/* Events page */
.event-list-section {
  background: #fbfdfe;
}

.event-list-intro {
  margin-bottom: 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.event-list-intro h2 {
  max-width: 720px;
  margin: 15px 0 0;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
}

.legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.visitor-legend {
  justify-content: flex-end;
}

.visitor-legend > span:not(:first-child) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-available {
  background: #8ca740;
}

.legend-limited {
  background: #eaa83c;
}

.legend-waitlist {
  background: var(--pink-deep);
}

.state-group + .state-group {
  margin-top: 68px;
}

.state-heading {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.state-heading span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.state-heading i {
  height: 1px;
  background: var(--line);
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-row {
  position: relative;
  min-height: 126px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1fr 175px;
  align-items: center;
  gap: 22px;
  transition: padding 180ms ease, background 180ms ease;
}

.event-row:hover {
  padding-inline: 40px;
  background: var(--white);
}

.event-row {
  cursor: pointer;
}

.event-row:focus-within {
  outline: 3px solid rgba(52, 127, 182, 0.42);
  outline-offset: 3px;
}

.event-row-date {
  width: 58px;
  height: 66px;
  border-radius: 6px;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--blue-deep);
  line-height: 1;
}

.event-row-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.event-row-date span {
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.event-row-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
}

.event-row h3 {
  margin: 0 0 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.event-row p,
.event-row-venue {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.event-row-venue {
  display: grid;
  line-height: 1.5;
}

.event-row-venue strong {
  color: var(--ink);
}

.event-row-action {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.event-row-action a {
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.event-row-action a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.event-time {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.events-offer {
  padding: 70px 0;
  background: var(--blue);
}

.events-offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.events-offer span {
  color: #c7e1ef;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events-offer h2 {
  margin: 7px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

/* Exhibit page */
.exhibit-hero {
  padding: 0;
  overflow: hidden;
}

.exhibit-hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.exhibit-hero-copy {
  padding: 82px 62px 82px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exhibit-hero-copy h1 {
  margin: 18px 0 25px;
  color: var(--white);
  font-size: clamp(2.85rem, 4.35vw, 4.35rem);
}

.exhibit-hero-copy > p {
  margin-bottom: 30px;
  color: #c5dae5;
}

.exhibit-hero-image-frame {
  width: calc(100% + max(24px, (100vw - 1180px) / 2) - 18px);
  height: 530px;
  margin: 30px 0 30px 18px;
  border: 9px solid var(--white);
  border-radius: 10px 10px 42px 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(6, 36, 56, .32);
  transform: rotate(.55deg);
}

.exhibit-hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.audience-section {
  padding-block: 76px;
  background: var(--cream);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.audience-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.audience-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.audience-tags span {
  padding: 8px 12px;
  border: 1px solid #d6e2d2;
  border-radius: 99px;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 700;
}

.included-section {
  padding: 68px 0 76px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.included-grid article {
  min-height: 174px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.included-grid article:nth-child(3n) {
  border-right: 0;
}

.included-grid article:nth-last-child(-n+3) {
  border-bottom: 0;
}

.included-grid article > span {
  color: var(--pink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
  font-style: italic;
}

.included-grid h3 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.included-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.exhibitor-reassurance {
  padding: 64px 0 68px;
  background: var(--cream);
}

.exhibitor-reassurance-heading {
  margin-bottom: 28px;
}

.exhibitor-reassurance-heading h2 {
  margin: 11px 0 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.exhibitor-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.exhibitor-reassurance-grid figure {
  margin: 0;
  padding: 31px 34px 28px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--pink);
  border-radius: 8px 8px 28px 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.exhibitor-reassurance-grid figure:nth-child(2) {
  border-top-color: var(--lime);
}

.exhibitor-reassurance-grid blockquote {
  margin: 0;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.exhibitor-reassurance-grid blockquote::before {
  color: var(--pink-deep);
  content: "“";
  font-size: 1.55em;
  line-height: 0;
}

.exhibitor-reassurance-grid blockquote::after {
  color: var(--pink-deep);
  content: "”";
  font-size: 1.25em;
  line-height: 0;
}

.exhibitor-reassurance-grid figcaption {
  margin-top: 23px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
}

.exhibitor-reassurance-grid figcaption strong {
  color: var(--blue-deep);
  font-size: .82rem;
}

.exhibitor-reassurance-grid figcaption span {
  color: var(--muted);
  font-size: .7rem;
}

.preparation-section {
  padding-block: 76px;
  background: var(--blue-mist);
}

.preparation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.preparation-card {
  padding: 42px;
  border-radius: 10px;
  background: var(--blue-deep);
  color: #d0e3ec;
}

.preparation-card h2 {
  margin: 13px 0 20px;
  color: var(--white);
}

.preparation-card p {
  color: #c9dce6;
}

.preparation-card ul {
  margin: 25px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.15);
  list-style: none;
}

.preparation-card li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 0.82rem;
}

.preparation-card li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "✓";
}

.preparation-steps > .eyebrow {
  margin-bottom: 22px;
}

.preparation-steps > div {
  padding: 21px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
}

.preparation-steps b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink);
  display: grid;
  place-items: center;
  color: #4d2034;
  font-size: 0.75rem;
}

.preparation-steps p {
  margin: 0;
  display: grid;
  color: var(--muted);
  font-size: 0.82rem;
}

.preparation-steps strong {
  color: var(--blue-deep);
  font-size: 1rem;
}

.provider-updates-card-form {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.provider-updates-card .eyebrow,
.provider-updates-card-form .field > span {
  color: #c8e3f1;
}

.provider-updates-card-form .field input,
.provider-updates-card-form .field select {
  border-color: rgba(255, 255, 255, 0.32);
}

.provider-updates-card-form .button {
  min-height: 48px;
  justify-self: start;
  white-space: nowrap;
}

.provider-updates-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
}

.provider-interest-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Forms */
.booking-hero {
  padding-block: 68px;
}

.booking-hero .unified-hero-grid {
  min-height: 430px;
}

.booking-hero .unified-hero-visual img {
  height: 270px;
}

.booking-section {
  background: #f6fafc;
}

.booking-information {
  margin-bottom: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
  align-items: stretch;
  gap: 28px;
  background: var(--white);
}

.booking-information h2,
.booking-access-panel h2 {
  margin: 10px 0 14px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.booking-information p,
.booking-access-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.booking-information p + p {
  margin-top: 12px;
}

.booking-promotion-callout {
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blue-deep);
  color: var(--white);
}

.booking-promotion-callout span {
  margin-bottom: 9px;
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-promotion-callout strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.booking-promotion-callout small {
  margin-top: 12px;
  color: #b8d1dc;
  font-size: 0.67rem;
  line-height: 1.55;
}

.booking-access-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 38px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(22, 68, 92, 0.1);
}

.booking-access-panel[hidden] {
  display: none;
}

.booking-access-panel form {
  display: grid;
  gap: 13px;
}

.booking-access-panel .button {
  width: 100%;
}

.booking-access-login {
  font-size: 0.7rem !important;
  text-align: center;
}

.booking-access-login a {
  color: var(--blue);
  font-weight: 800;
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 24px;
}

.form-section {
  grid-column: 1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
}

.form-section-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-heading {
  margin-bottom: 27px;
}

.form-heading h2 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--blue-deep);
  font-size: 0.73rem;
  font-weight: 800;
}

.field > span small {
  color: var(--muted);
  font-weight: 400;
}

.field > .booking-email-account-note {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #bfcfd8;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
}

.field input::placeholder {
  color: #96a7b0;
}

.event-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.event-option {
  position: relative;
  min-height: 75px;
  padding: 13px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.event-option:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.event-option.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.event-option input {
  position: absolute;
  opacity: 0;
}

.check-box {
  width: 18px;
  height: 18px;
  border: 2px solid #afc2cc;
  border-radius: 4px;
}

.event-option input:checked + .check-box {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--white);
}

.event-option-copy {
  display: grid;
  line-height: 1.35;
}

.event-option-copy strong {
  color: var(--blue-deep);
  font-size: 0.78rem;
}

.event-option-copy small {
  color: var(--muted);
  font-size: 0.64rem;
}

.event-option i {
  color: var(--blue);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
}

.site-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.site-choice {
  position: relative;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.site-choice.selected {
  border: 2px solid var(--blue);
  background: var(--blue-pale);
}

.site-choice input {
  position: absolute;
  opacity: 0;
}

.site-choice span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-choice strong {
  margin: 7px 0 auto;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.site-choice small {
  color: var(--muted);
  font-size: 0.7rem;
}

.requirements-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.toggle-field {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.toggle-field input {
  position: absolute;
  opacity: 0;
}

.toggle {
  width: 36px;
  height: 20px;
  padding: 3px;
  border-radius: 99px;
  background: #bdcbd2;
}

.toggle::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  display: block;
  content: "";
  transition: transform 160ms ease;
}

.toggle-field input:checked + .toggle {
  background: var(--blue);
}

.toggle-field input:checked + .toggle::before {
  transform: translateX(16px);
}

.toggle-field > span:last-child {
  display: grid;
}

.toggle-field strong {
  color: var(--blue-deep);
  font-size: 0.72rem;
}

.toggle-field small {
  color: var(--muted);
  font-size: 0.61rem;
}

.booking-summary {
  position: sticky;
  top: 24px;
  grid-column: 2;
  grid-row: 1 / span 3;
  padding: 30px;
  border-radius: 10px;
  background: var(--blue-deep);
  color: #cce0ea;
}

.booking-summary .eyebrow {
  color: #add8ec;
}

.booking-summary h2 {
  margin: 12px 0 24px;
  color: var(--white);
  font-size: 1.8rem;
}

.summary-lines {
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  display: grid;
  gap: 11px;
}

.summary-lines span {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.72rem;
}

.summary-lines strong {
  color: var(--white);
}

.summary-free {
  color: var(--lime);
}

.summary-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: 0.82rem !important;
}

.booking-summary > p {
  margin: 18px 0;
  color: #a9c5d2;
  font-size: 0.66rem;
  line-height: 1.55;
}

.booking-summary .button {
  width: 100%;
}

.booking-summary .button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.booking-success {
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  text-align: center;
}

.success-mark {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  color: #3f5b20;
  font-size: 2rem;
  font-weight: 800;
}

.booking-success h2 {
  margin: 15px 0;
}

.booking-success > p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.booking-success [hidden] {
  display: none;
}

.success-summary {
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 20px;
  border-radius: 8px;
  background: var(--blue-mist);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.success-summary span {
  display: grid;
  color: var(--muted);
  font-size: 0.72rem;
}

.success-summary strong {
  color: var(--blue-deep);
}

/* Login */
.login-page {
  min-height: 100vh;
  background: var(--blue-mist);
}

.login-brand-bar {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  min-height: 78px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-brand-bar > a:first-child {
  width: 240px;
}

.login-brand-bar img {
  width: 100%;
  height: auto;
}

.login-brand-bar > a:last-child {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.login-photo {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--blue-deep);
}

.login-photo > img {
  object-fit: cover;
}

.login-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,39,56,.12) 0%, rgba(10,39,56,.18) 46%, rgba(10,39,56,.87) 100%);
  content: "";
}

.login-photo-content {
  position: absolute;
  z-index: 2;
  right: 10%;
  bottom: 65px;
  left: 10%;
  color: var(--white);
}

.login-photo-content > span {
  color: #c8e5f2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.login-photo-content h2 {
  max-width: 640px;
  margin: 14px 0 23px;
  color: var(--white);
}

.login-photo-content ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  font-size: 0.76rem;
}

.login-photo-content li::before {
  margin-right: 8px;
  color: var(--lime);
  content: "✓";
}

.login-form-wrap {
  padding: 120px 12% 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: min(450px, 100%);
}

.login-card-heading h1 {
  margin: 14px 0 13px;
  font-size: 3.4rem;
}

.login-card-heading p {
  margin-bottom: 32px;
  color: var(--muted);
}

.login-card form {
  display: grid;
  gap: 18px;
}

.provider-auth-tabs {
  margin: 0 0 25px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e6f0f4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.provider-auth-tabs button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.provider-auth-tabs button.active {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(13, 57, 80, 0.1);
  color: var(--blue-deep);
}

.login-card .field small {
  margin-top: 6px;
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.45;
}

.login-between {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.7rem;
}

.remember-field {
  display: flex;
  align-items: center;
  gap: 7px;
}

.link-button,
.preview-login {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
}

.login-submit {
  width: 100%;
  margin-top: 2px;
}

.preview-login {
  justify-self: center;
}

.form-error {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--pink-deep);
  background: #fff0f5;
  color: #7f3857;
  font-size: 0.72rem;
}

.form-error[data-type="success"],
.provider-form-status[data-type="success"] {
  border-left-color: #71972f;
  background: #f3f9e7;
  color: #4f6b21;
}

.login-help {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.login-help a {
  color: var(--blue);
  font-weight: 800;
}

.login-recovery-link {
  margin: -8px 0 0;
  font-size: 0.72rem;
  text-align: right;
}

.login-recovery-link a {
  color: var(--blue);
  font-weight: 800;
}

.reset-security-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--lime);
  border-radius: 0 7px 7px 0;
  background: var(--blue-mist);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.prototype-note {
  max-width: 450px;
  margin: 35px 0 0;
  color: #8a9aa3;
  font-size: 0.62rem;
  text-align: center;
}

/* Dashboard */
.dashboard-shell {
  min-height: 100vh;
  background: #f3f7f9;
  display: grid;
  grid-template-columns: 245px 1fr;
}

.dashboard-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 245px;
  padding: 28px 22px;
  background: var(--blue-deep);
  display: flex;
  flex-direction: column;
  color: #c5d9e3;
}

.dashboard-logo {
  width: 100%;
  margin-bottom: 36px;
  color: var(--white);
  line-height: 1;
}

.dashboard-logo img {
  width: 100%;
  max-width: 201px;
  height: auto;
  display: block;
  background: transparent;
}

.dashboard-logo span {
  margin-top: 16px;
  display: block;
  color: #c5dce6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.dashboard-sidebar nav {
  display: grid;
  gap: 4px;
}

.dashboard-sidebar nav a {
  min-height: 46px;
  padding: 0 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #b7ced9;
  font-size: 0.72rem;
  font-weight: 700;
}

.dashboard-sidebar nav a span {
  color: #6e9bb1;
  font-size: 0.58rem;
}

.dashboard-sidebar nav a:hover,
.dashboard-sidebar nav a.active {
  background: rgba(255,255,255,.09);
  color: var(--white);
}

.dashboard-sidebar > button {
  margin-top: auto;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  background: transparent;
  color: #bfd2db;
  cursor: pointer;
  font-size: 0.7rem;
}

.dashboard-main {
  grid-column: 2;
}

.dashboard-header {
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header > div:first-child {
  display: grid;
  line-height: 1.25;
}

.dashboard-header > div:first-child span {
  color: var(--muted);
  font-size: 0.6rem;
}

.dashboard-header > div:first-child strong {
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.68rem;
}

.dashboard-user i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.dashboard-content {
  width: min(1200px, calc(100% - 70px));
  margin: 0 auto;
  padding: 48px 0 70px;
}

.dashboard-welcome {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.dashboard-welcome h1 {
  margin: 11px 0 3px;
  font-size: 3.4rem;
}

.dashboard-welcome p {
  margin: 0;
  color: var(--muted);
}

.dashboard-stat-grid {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.dashboard-stat-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.dashboard-stat-grid span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
}

.dashboard-stat-grid strong {
  margin: 8px 0 auto;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.dashboard-stat-grid small {
  color: #82939b;
  font-size: 0.58rem;
}

.dashboard-panel {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dashboard-panel-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-panel-heading > div {
  display: grid;
}

.dashboard-panel-heading span {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-panel-heading h2 {
  margin: 4px 0 0;
  font-size: 1.55rem;
}

.dashboard-panel-heading a {
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 800;
}

.dashboard-bookings article {
  min-height: 73px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 54px 1fr 110px 95px;
  align-items: center;
  gap: 15px;
}

.dashboard-date {
  width: 43px;
  height: 48px;
  border-radius: 5px;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--blue-deep);
  line-height: 0.95;
}

.dashboard-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.dashboard-date span {
  margin-top: 3px;
  color: var(--blue);
  font-size: 0.52rem;
  font-weight: 900;
}

.dashboard-bookings h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.dashboard-bookings p {
  margin: 0;
  color: var(--muted);
  font-size: 0.6rem;
}

.dashboard-bookings article > span {
  color: #66852e;
  font-size: 0.6rem;
  font-weight: 800;
}

.dashboard-bookings article > span.payment-due {
  color: #9b6124;
}

.dashboard-bookings article > button {
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.6rem;
  font-weight: 800;
}

.dashboard-booking-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.dashboard-booking-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  background: var(--white);
}

.dashboard-booking-table th {
  padding: 13px 14px;
  border-bottom: 2px solid #c8dbe5;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.dashboard-booking-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  color: #344e60;
  font-size: 0.84rem;
  line-height: 1.45;
  vertical-align: top;
}

.dashboard-booking-table tbody tr:last-child td {
  border-bottom: 0;
}

.dashboard-booking-table td strong,
.dashboard-booking-table td small {
  display: block;
}

.dashboard-booking-table td strong {
  color: var(--blue-deep);
  font-size: 0.88rem;
}

.dashboard-booking-table td small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.dashboard-payment-status {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf5df;
  color: #58752a;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.dashboard-payment-status.awaiting_payment {
  background: #fff1df;
  color: #8a571d;
}

.dashboard-booking-documents {
  min-width: 145px;
}

.dashboard-booking-documents a {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
}

.dashboard-booking-documents .dashboard-pay-link {
  color: var(--pink-deep);
}

.dashboard-booking-documents .dashboard-tips-link {
  color: #58752a;
}

.dashboard-booking-actions {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.dashboard-booking-actions a {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 800;
}

.dashboard-booking-actions .dashboard-pay-link {
  color: var(--pink);
}

.dashboard-email-invoice {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.58rem;
  font-weight: 800;
  text-align: left;
}

.provider-opportunities-panel {
  margin-bottom: 22px;
}

#provider-state-form label {
  display: flex;
  align-items: center;
  gap: 10px;
}

#provider-state-form label > span {
  color: var(--muted);
}

#provider-dashboard-state {
  min-width: 200px;
  padding: 9px 34px 9px 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--blue-deep);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
}

.provider-opportunities-intro {
  max-width: 780px;
  margin: -5px 0 16px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

.provider-opportunities-list {
  display: grid;
}

.provider-opportunities-list article {
  min-height: 82px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.provider-opportunity-date {
  width: 48px;
  height: 54px;
  border-radius: 6px;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--blue-deep);
  line-height: 0.95;
}

.provider-opportunity-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
}

.provider-opportunity-date span {
  margin-top: 4px;
  color: var(--blue);
  font-size: 0.53rem;
  font-weight: 900;
}

.provider-opportunities-list h3 {
  margin: 0;
  font-size: 1rem;
}

.provider-opportunities-list h3 a {
  color: var(--blue-deep);
  text-decoration: none;
}

.provider-opportunities-list h3 a:hover,
.provider-opportunities-list h3 a:focus-visible {
  color: var(--pink-deep);
}

.provider-opportunities-list p,
.provider-opportunities-list small {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
}

.provider-opportunities-list small {
  display: block;
}

.provider-opportunity-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.provider-opportunity-actions > a:first-child {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 800;
}

.provider-opportunity-actions .button {
  min-height: 36px;
  padding: 9px 13px;
  font-size: 0.61rem;
}

.provider-opportunity-actions .button.disabled {
  background: #91a4ae;
  pointer-events: none;
}

.provider-opportunities-empty {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.dashboard-lower-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.document-list {
  display: grid;
}

.document-list-row {
  border: 0;
  border-top: 1px solid var(--line);
  padding: 13px 0 15px;
}

.document-list .document-download {
  min-height: 68px;
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 38px 1fr 25px;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.document-list i {
  width: 33px;
  height: 38px;
  border-radius: 4px;
  background: #f6e3eb;
  display: grid;
  place-items: center;
  color: #9a4f70;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 900;
}

.document-list .document-download > span {
  display: grid;
}

.document-list strong {
  color: var(--blue-deep);
  font-size: 0.92rem;
  line-height: 1.4;
}

.document-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.document-list b {
  color: var(--blue);
  font-size: 1rem;
}

.document-list-row .dashboard-email-invoice {
  margin: 2px 0 0 50px;
  padding: 6px 0;
  color: var(--blue);
  font-size: 0.8rem;
  line-height: 1.35;
}

.profile-progress {
  height: 8px;
  margin: 22px 0 12px;
  border-radius: 99px;
  background: #e5edf1;
  overflow: hidden;
}

.profile-progress span {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--pink-deep));
  display: block;
}

.profile-progress .profile-progress-value {
  width: 80%;
}

.profile-panel > strong {
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.profile-panel > p {
  margin: 11px 0 21px;
  color: var(--muted);
  font-size: 0.7rem;
}

.profile-panel .button {
  width: 100%;
}

.dashboard-gate,
.dashboard-loading {
  min-height: 100vh;
  padding: 40px;
  background: var(--blue-mist);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dashboard-gate h1 {
  max-width: 700px;
  margin: 15px 0;
}

.dashboard-gate p {
  color: var(--muted);
}

.provider-team-panel {
  margin-top: 22px;
}

.provider-role-badge {
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 0.62rem;
}

.provider-team-intro {
  max-width: 850px;
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.provider-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px;
}

.provider-team-list {
  border-top: 1px solid var(--line);
}

.provider-team-member {
  min-height: 70px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.provider-team-member > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.provider-team-member i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  color: var(--blue-deep);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
}

.provider-team-member div span {
  min-width: 0;
  display: grid;
}

.provider-team-member strong {
  overflow: hidden;
  color: var(--blue-deep);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider-team-member small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.provider-team-role {
  color: #698393;
  font-size: 0.58rem;
  font-weight: 800;
}

.provider-team-role.owner {
  color: var(--blue);
}

.provider-team-member > button {
  padding: 7px 9px;
  border: 0;
  background: transparent;
  color: #a04562;
  cursor: pointer;
  font-size: 0.58rem;
  font-weight: 800;
}

.provider-owner-controls {
  display: grid;
  gap: 18px;
}

.provider-team-form,
.provider-password-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7fafb;
  display: grid;
  gap: 14px;
}

.provider-team-form h3,
.provider-password-form h3 {
  margin: 0;
  font-size: 1.15rem;
}

.provider-password-form > p {
  margin: -5px 0 2px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.55;
}

.provider-team-form .button,
.provider-password-form .button {
  width: 100%;
}

.provider-form-status {
  margin: 0;
  padding: 0;
  color: #8b3654;
  font-size: 0.64rem;
  line-height: 1.45;
}

.provider-form-status:not(:empty) {
  padding: 9px 11px;
  border-left: 3px solid var(--pink-deep);
  background: #fff0f5;
}

.provider-member-note {
  margin: 20px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--blue);
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 0.7rem;
}

.provider-directory-editor {
  margin-top: 22px;
}

.provider-directory-expiry {
  margin: 20px 0 26px;
  padding: 16px 18px;
  border-left: 4px solid var(--lime);
  background: #f4f8e6;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.7rem;
}

.provider-directory-expiry strong {
  color: var(--blue-deep);
}

.provider-directory-expiry a {
  color: var(--blue);
  font-weight: 800;
}

.provider-directory-expiry .button {
  justify-self: end;
  color: var(--blue);
  text-decoration: none;
}

.provider-directory-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

[data-provider-public-profile-link][hidden] {
  display: none !important;
}

.provider-directory-editor textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #bfcfd8;
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}

.provider-directory-images {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
}

.provider-directory-images > div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
}

.provider-media-preview {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.provider-media-preview.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.provider-media-preview figure {
  position: relative;
  min-width: 0;
  height: 100px;
  margin: 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.provider-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.provider-media-preview.gallery img {
  object-fit: cover;
}

.provider-media-preview button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  cursor: pointer;
}

.provider-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.booking-form-status {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 0.65rem;
  background: #fff1f3;
  color: #8f2145;
  font-weight: 700;
}

.booking-form-status[data-type="success"] {
  background: #eef8df;
  color: #385b1f;
}

.booking-extra-fields {
  margin-top: 1.25rem;
}

.payment-methods {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.payment-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.payment-choice {
  position: relative;
  min-height: 92px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.payment-choice.selected {
  border: 2px solid var(--blue);
  background: var(--blue-pale);
}

.payment-choice input {
  position: absolute;
  opacity: 0;
}

.payment-choice span {
  display: grid;
  gap: 5px;
}

.payment-choice strong {
  color: var(--blue-deep);
  font-size: 0.86rem;
}

.payment-choice small,
.payment-methods > p {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.payment-methods > p {
  margin: 10px 0 0;
}

.paypal-payment-panel {
  width: min(100%, 560px);
  margin: 30px auto;
  padding: 28px;
  border: 1px solid #bdd3df;
  border-radius: 10px;
  background: #f4f9fb;
  text-align: left;
}

.paypal-payment-panel h3,
.payment-booking-summary h2 {
  margin: 7px 0 8px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.paypal-payment-panel > p,
.payment-booking-summary p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.paypal-button-slot {
  min-height: 48px;
}

.paypal-or {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.paypal-or::before,
.paypal-or::after {
  height: 1px;
  background: var(--line);
  content: "";
  flex: 1;
}

.bank-payment-message {
  width: min(100%, 650px);
  margin: 24px auto;
  padding: 17px;
  border-radius: 7px;
  background: var(--blue-mist);
  color: var(--blue-deep);
  font-size: 0.78rem;
}

.provider-payment-page {
  min-height: calc(100vh - 150px);
  background: var(--blue-mist);
}

.provider-payment-shell {
  max-width: 760px;
}

.provider-payment-heading {
  margin-bottom: 24px;
  text-align: center;
}

.provider-payment-heading h1 {
  margin: 10px 0;
}

.provider-payment-heading p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}

.provider-payment-page .paypal-payment-panel {
  margin: 0 auto;
  background: var(--white);
}

.payment-booking-summary {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hosted-checkout-page .provider-payment-shell {
  max-width: 820px;
}

.hosted-checkout-panel {
  width: min(100%, 640px);
}

.checkout-invoice-summary h2 {
  margin-top: 8px;
}

.checkout-invoice-pdf-link {
  margin-top: 14px;
}

.checkout-instructions {
  margin-bottom: 22px;
}

.checkout-instructions h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.checkout-instructions p,
.checkout-manual-note p,
.hosted-checkout-panel .checkout-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.hosted-paypal-button {
  min-height: 175px;
}

.checkout-manual-note {
  margin: 24px 0 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--lime);
  border-radius: 6px;
  background: var(--blue-mist);
}

.checkout-manual-note strong {
  margin-bottom: 5px;
  display: block;
  color: var(--blue-deep);
  font-size: 0.82rem;
}

.hosted-checkout-panel .checkout-help {
  margin-bottom: 20px;
}

.checkout-help a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 860px) {
  .provider-team-grid {
    grid-template-columns: 1fr;
  }

  .provider-team-member {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .provider-team-member > button {
    grid-column: 1 / -1;
    justify-self: start;
    padding-left: 50px;
  }

  .payment-choice-grid {
    grid-template-columns: 1fr;
  }

  .provider-directory-images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .provider-team-panel {
    padding: 20px 16px;
  }

  .provider-team-member {
    align-items: start;
  }

  .provider-directory-expiry {
    grid-template-columns: 1fr;
  }

  .provider-directory-expiry .button {
    justify-self: start;
  }

  .provider-media-preview.gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-team-member > div {
    align-items: start;
  }

  .provider-team-role {
    padding-top: 5px;
  }

  .provider-team-form,
  .provider-password-form {
    padding: 18px 14px;
  }
}

.provider-owner-controls[hidden],
.provider-member-note[hidden],
.login-card form[hidden],
.dashboard-loading[hidden],
.dashboard-gate[hidden],
.dashboard-shell[hidden] {
  display: none !important;
}

/* Attendee registration */
.attendee-page {
  min-height: 100vh;
  background: var(--blue-mist);
}

.attendee-header {
  min-height: 78px;
  padding: 0 max(30px, calc((100vw - 1180px) / 2));
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.attendee-header a {
  width: 245px;
}

.attendee-header img {
  width: 100%;
  height: auto;
}

.attendee-header > span {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attendee-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.attendee-hero > img {
  object-fit: cover;
  object-position: center 48%;
}

.attendee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 45, 65, 0.9), rgba(11, 45, 65, 0.25) 70%, rgba(11,45,65,.08));
}

.attendee-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
  color: var(--white);
}

.attendee-hero-copy > span {
  color: #c5e2f0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attendee-hero-copy h1 {
  max-width: 880px;
  margin: 14px 0 17px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.attendee-hero-copy p {
  max-width: 700px;
  margin: 0;
  font-size: 1.05rem;
}

.attendee-registration {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 90px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 70px;
}

.attendee-details h2,
.attendee-form-card > h2 {
  margin: 14px 0 18px;
}

.attendee-details > p {
  color: var(--muted);
}

.attendee-details dl {
  margin: 30px 0 0;
}

.attendee-details dl > div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 12px;
}

.attendee-details dt {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
}

.attendee-details dd {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.attendee-form-card {
  padding: 40px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.attendee-form-card > p {
  color: var(--muted);
}

.attendee-form {
  margin-top: 24px;
}

.consent-field {
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.7rem;
}

.attendee-form .button {
  width: 100%;
}

.attendee-form > p {
  margin: 15px 0 0;
  color: #85959d;
  font-size: 0.61rem;
  text-align: center;
}

.attendee-success {
  padding: 35px 10px;
  text-align: center;
}

.attendee-success > span {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  color: #466021;
  font-size: 1.5rem;
  font-weight: 900;
}

.attendee-success h2 {
  margin-bottom: 12px;
}

.attendee-success p {
  color: var(--muted);
}

.attendee-success button {
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
}

.attendee-footer {
  min-height: 70px;
  padding: 0 max(30px, calc((100vw - 1180px) / 2));
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b8d0db;
  font-size: 0.7rem;
}

/* Universal attendee reservation */
.reservation-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f4f8fa;
}

.reservation-header {
  min-height: 82px;
  padding: 0 max(30px, calc((100vw - 1180px) / 2));
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
}

.reservation-header > a {
  width: 250px;
}

.reservation-header img {
  width: 100%;
  height: auto;
  display: block;
}

.reservation-header-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.72rem;
  font-weight: 800;
}

.reservation-header-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.reservation-header-links span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.reservation-hero {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--blue-deep);
}

.reservation-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.reservation-hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 51, 75, 0.98) 0%, rgba(12, 51, 75, 0.91) 43%, rgba(12, 51, 75, 0.37) 76%, rgba(12, 51, 75, 0.24) 100%),
    linear-gradient(0deg, rgba(12, 51, 75, 0.35), transparent 45%);
}

.reservation-hero-shape {
  width: 410px;
  height: 410px;
  border: 80px solid rgba(239, 178, 206, 0.15);
  border-radius: 50%;
  position: absolute;
  top: -205px;
  right: -70px;
}

.christmas-reservation .reservation-hero-shape {
  border-color: rgba(220, 232, 174, 0.2);
}

.reservation-hero-inner {
  min-height: 600px;
  padding: 72px 0 126px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.54fr);
  align-items: end;
  gap: 86px;
}

.reservation-back-link {
  margin-bottom: 35px;
  display: inline-flex;
  color: #c9dfeb;
  font-size: 0.72rem;
  font-weight: 800;
}

.reservation-hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 23px;
  color: var(--white);
  font-size: clamp(3.4rem, 5.4vw, 5.45rem);
}

.reservation-hero-copy > p {
  max-width: 690px;
  margin-bottom: 30px;
  color: #d7e6ed;
  font-size: 1.07rem;
}

.reservation-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.reservation-hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #cce0ea;
  font-size: 0.69rem;
}

.reservation-hero-points b {
  color: var(--white);
}

.reservation-hero-ticket {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px 10px 38px 10px;
  background: rgba(14, 55, 80, 0.7);
  box-shadow: 0 25px 60px rgba(7, 31, 47, 0.28);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.reservation-hero-ticket > span {
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.christmas-reservation .reservation-hero-ticket > span {
  color: var(--lime);
}

.reservation-hero-ticket > strong {
  margin: 8px 0 18px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.reservation-hero-ticket > div {
  padding: 17px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 3px;
}

.reservation-hero-ticket b {
  font-size: 0.84rem;
}

.reservation-hero-ticket small {
  color: #b9d3df;
  font-size: 0.7rem;
}

.reservation-hero-ticket a {
  margin-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
}

.reservation-flow {
  padding: 0 0 88px;
  position: relative;
  background:
    radial-gradient(circle at 10% 35%, rgba(67, 143, 202, 0.1), transparent 22%),
    linear-gradient(180deg, #eef6fa 0%, #f9fbfc 55%, #f5f1e9 100%);
}

.reservation-flow-grid {
  margin-top: -72px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  align-items: stretch;
  gap: 22px;
}

.reservation-primary-card {
  padding: 42px 46px;
  border: 1px solid rgba(216, 227, 233, 0.9);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(22, 65, 91, 0.15);
}

.reservation-progress {
  margin-bottom: 38px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.reservation-progress span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #93a4ad;
  font-size: 0.65rem;
  font-weight: 900;
}

.reservation-progress i {
  width: 25px;
  height: 25px;
  border: 1px solid #c7d5dc;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.64rem;
  font-style: normal;
}

.reservation-progress .active {
  color: var(--blue-deep);
}

.reservation-progress .active i {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.reservation-form-heading {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 185px;
  align-items: end;
  gap: 35px;
}

.reservation-form-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(2.35rem, 3.5vw, 3.35rem);
}

.reservation-form-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.reservation-primary-card .attendee-form {
  margin-top: 0;
}

.reservation-primary-card .field input,
.reservation-primary-card .field select {
  min-height: 52px;
  border-radius: 7px;
  background: #fbfdfe;
}

.reservation-primary-card .consent-field {
  margin: 20px 0 6px;
}

.reservation-form-status {
  min-height: 24px;
  margin: 0 0 7px;
  color: #a4384c;
  font-size: 0.72rem;
  font-weight: 800;
}

.reservation-submit {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  padding-inline: 22px;
}

.reservation-privacy {
  max-width: 520px;
  margin: 13px auto 0;
  color: #87979f;
  font-size: 0.61rem;
  text-align: center;
}

.reservation-event-panel {
  padding: 35px 34px;
  border-radius: 12px 12px 48px 12px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 110% -5%, rgba(239, 178, 206, 0.28), transparent 35%),
    var(--blue-deep);
  box-shadow: 0 28px 70px rgba(22, 65, 91, 0.17);
  color: var(--white);
}

.christmas-reservation .reservation-event-panel {
  background:
    radial-gradient(circle at 110% -5%, rgba(220, 232, 174, 0.28), transparent 35%),
    #173f54;
}

.reservation-event-panel-top {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.reservation-event-panel-top > span {
  max-width: 130px;
  color: #a9c7d6;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.reservation-date-badge {
  width: 68px;
  height: 76px;
  border-radius: 7px;
  background: var(--pink);
  display: grid;
  place-items: center;
  align-content: center;
  color: #4d2034;
  line-height: 1;
}

.christmas-reservation .reservation-date-badge {
  background: var(--lime);
  color: #3e5420;
}

.reservation-date-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.reservation-date-badge small {
  margin-top: 5px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.reservation-panel-kicker {
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.christmas-reservation .reservation-panel-kicker {
  color: var(--lime);
}

.reservation-event-panel h2 {
  margin: 12px 0 24px;
  color: var(--white);
  font-size: clamp(2.3rem, 3.2vw, 3.15rem);
}

.reservation-event-facts {
  margin: 0;
}

.reservation-event-facts > div {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
}

.reservation-event-facts dt {
  color: #9fc0d0;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-event-facts dd {
  margin: 0;
  white-space: pre-line;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.reservation-discover {
  margin-top: 27px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.reservation-discover > span {
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.christmas-reservation .reservation-discover > span {
  color: var(--lime);
}

.reservation-discover ul {
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.reservation-discover li {
  padding: 7px 0 7px 20px;
  position: relative;
  color: #d2e2ea;
  font-size: 0.7rem;
}

.reservation-discover li::before {
  position: absolute;
  left: 0;
  color: var(--pink);
  content: "✓";
  font-weight: 900;
}

.christmas-reservation .reservation-discover li::before {
  color: var(--lime);
}

.reservation-checkin-note {
  margin-top: 25px;
  display: grid;
  gap: 4px;
  color: #b8d0db;
  font-size: 0.68rem;
}

.reservation-checkin-note b {
  color: var(--white);
  font-size: 0.78rem;
}

.reservation-reassurance {
  padding-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.reservation-reassurance article {
  min-height: 118px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
}

.reservation-reassurance article:first-child {
  border-radius: 9px 0 0 9px;
}

.reservation-reassurance article:last-child {
  border-radius: 0 9px 9px 0;
}

.reservation-reassurance article > span {
  color: var(--pink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.reservation-reassurance strong {
  color: var(--blue-deep);
}

.reservation-reassurance p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.reservation-confirmation {
  padding: 3px 0;
  text-align: left;
}

.confirmation-topline {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.reservation-confirmation .success-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--lime);
  display: grid;
  place-items: center;
  color: #466021;
  font-size: 1.65rem;
  font-weight: 900;
}

.confirmation-topline > div {
  display: grid;
  gap: 6px;
}

.confirmation-topline small {
  color: var(--muted);
  font-size: 0.67rem;
}

.reservation-confirmation h2 {
  margin: 0 0 12px;
  font-size: clamp(2.45rem, 4vw, 3.45rem);
}

.confirmation-lead {
  margin-bottom: 24px;
  color: var(--muted);
}

.reservation-reference {
  padding: 17px 19px;
  border-radius: 7px;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.reservation-reference span {
  color: #b9d5e3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-reference strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.reservation-confirmation-details {
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.reservation-confirmation-details > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
}

.reservation-confirmation-details dt {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
}

.reservation-confirmation-details dd {
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.confirmation-checkin {
  margin: 24px 0;
  padding: 19px;
  border-radius: 7px;
  background: var(--blue-pale);
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.74rem;
}

.confirmation-checkin strong {
  color: var(--blue-deep);
  font-size: 0.88rem;
}

.reservation-confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.register-another {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
}

/* Individual event pages */
.event-detail-hero {
  padding: 88px 0 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(239, 178, 206, 0.2), transparent 25%),
    radial-gradient(circle at 6% 90%, rgba(67, 143, 202, 0.25), transparent 30%),
    var(--blue-deep);
  color: var(--white);
}

.event-detail-hero.christmas-event {
  background:
    radial-gradient(circle at 85% 10%, rgba(239, 178, 206, 0.28), transparent 27%),
    radial-gradient(circle at 12% 90%, rgba(220, 232, 174, 0.16), transparent 28%),
    #173f54;
}

.event-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.65fr);
  align-items: end;
  gap: 82px;
}

.event-breadcrumb {
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9d3e1;
  font-size: 0.72rem;
  font-weight: 700;
}

.event-breadcrumb a:hover {
  color: var(--white);
}

.event-detail-copy h1 {
  max-width: 800px;
  margin: 18px 0 23px;
  color: var(--white);
  font-size: clamp(3.2rem, 5.6vw, 5.4rem);
}

.event-detail-copy > p {
  max-width: 680px;
  margin-bottom: 31px;
  color: #d5e5ed;
  font-size: 1.08rem;
}

.event-detail-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link-light {
  color: var(--white);
}

.event-detail-summary {
  padding: 12px 30px 7px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px 8px 36px 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(5, 28, 43, 0.2);
  backdrop-filter: blur(8px);
}

.event-summary-label {
  padding: 14px 0 5px;
  display: block;
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-summary-row {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 3px;
}

.event-summary-row span {
  color: #a9c6d5;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-summary-row strong {
  color: var(--white);
  font-size: 0.91rem;
  line-height: 1.45;
}

.event-detail-section {
  background: var(--blue-mist);
}

.event-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 82px;
}

.event-detail-intro h2 {
  margin: 17px 0 24px;
}

.event-detail-intro > p {
  color: var(--muted);
}

.event-detail-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-detail-tags span {
  padding: 7px 11px;
  border: 1px solid #c8dce7;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-ink);
  font-size: 0.67rem;
  font-weight: 800;
}

.event-highlight-grid {
  border-top: 1px solid var(--line);
}

.event-highlight-card {
  min-height: 168px;
  padding: 28px 10px 28px 70px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.event-highlight-card > span {
  position: absolute;
  top: 31px;
  left: 10px;
  color: var(--pink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.event-highlight-card h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.event-highlight-card p {
  max-width: 550px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.event-map-section {
  background: var(--white);
}

.event-map-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 72px;
}

.event-map-copy h2 {
  margin: 17px 0 17px;
  font-size: clamp(2.3rem, 3.6vw, 3.25rem);
}

.event-map-address {
  color: var(--blue);
  font-weight: 800;
}

.event-map-copy > p:not(.event-map-address) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-map-frame {
  min-height: 470px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px 9px 44px 9px;
  background: var(--blue-pale);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.event-map-frame iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 4px 4px 35px 4px;
  display: block;
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .header-actions .button-quiet {
    display: none;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-card {
    left: -15px;
  }

  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-card {
    min-height: 315px;
  }

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

  .pricing-copy {
    grid-column: 1 / -1;
  }

  .portal-grid {
    gap: 45px;
  }

  .provider-note-inner {
    gap: 35px;
  }

  .event-detail-hero-grid,
  .event-detail-content,
  .event-map-grid {
    gap: 45px;
  }

  .reservation-hero-inner {
    gap: 44px;
  }

  .reservation-flow-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .reservation-primary-card {
    padding-inline: 34px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .brand {
    width: 225px;
  }

  .hero-grid,
  .experience-grid,
  .portal-grid,
  .page-hero-inner,
  .event-detail-hero-grid,
  .event-detail-content,
  .event-map-grid,
  .audience-grid,
  .preparation-grid,
  .attendee-registration {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 60px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual > img {
    height: 460px;
  }

  .hero-card {
    left: 20px;
  }

  .trust-strip .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .trust-names {
    width: 100%;
    flex-wrap: wrap;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefit-card {
    padding-inline: 24px;
  }

  .benefit-card + .benefit-card {
    padding-left: 24px;
  }

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

  .portal-copy {
    max-width: 650px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .provider-note-inner {
    grid-template-columns: 1fr;
  }

  .event-detail-summary {
    width: min(100%, 620px);
  }

  .event-map-copy {
    max-width: 680px;
  }

  .exhibit-hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .exhibit-hero-copy {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    padding-right: 0;
  }

  .exhibit-hero-image-frame {
    width: min(100% - 48px, 1180px);
    height: 440px;
    margin: 0 auto 48px;
    transform: none;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exhibitor-reassurance-grid {
    grid-template-columns: 1fr;
  }

  .included-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .included-grid article:nth-child(2n) {
    border-right: 0;
  }

  .included-grid article:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .included-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-information,
  .booking-access-panel {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }

  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-photo {
    display: none;
  }

  .login-brand-bar {
    position: relative;
    background: var(--blue);
  }

  .login-form-wrap {
    min-height: calc(100vh - 78px);
    padding-top: 60px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
    width: auto;
    min-height: auto;
    padding: 18px 24px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .dashboard-logo {
    width: 190px;
    margin: 0;
  }

  .dashboard-sidebar nav {
    margin-left: auto;
    display: flex;
  }

  .dashboard-sidebar nav a {
    min-height: 38px;
  }

  .dashboard-sidebar nav a span,
  .dashboard-sidebar nav a:nth-child(n+4) {
    display: none;
  }

  .dashboard-sidebar > button {
    margin: 0;
  }

  .dashboard-main {
    grid-column: 1;
  }

  .dashboard-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-hero {
    min-height: auto;
  }

  .reservation-hero-wash {
    background:
      linear-gradient(90deg, rgba(12, 51, 75, 0.97), rgba(12, 51, 75, 0.72)),
      linear-gradient(0deg, rgba(12, 51, 75, 0.5), transparent);
  }

  .reservation-hero-inner {
    min-height: auto;
    padding: 64px 0 122px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 36px;
  }

  .reservation-hero-copy {
    max-width: 760px;
  }

  .reservation-hero-ticket {
    width: min(100%, 560px);
  }

  .reservation-flow-grid {
    grid-template-columns: 1fr;
  }

  .reservation-event-panel {
    border-radius: 12px 12px 42px 12px;
  }

  .reservation-reassurance {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reservation-reassurance article,
  .reservation-reassurance article:first-child,
  .reservation-reassurance article:last-child {
    min-height: auto;
    border-radius: 8px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .shell,
  .attendee-hero-copy,
  .attendee-registration {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .section.audience-section,
  .section.included-section,
  .section.preparation-section {
    padding-block: 53px;
  }

  .section.included-section {
    padding: 48px 0 53px;
  }

  .section.final-cta {
    padding: 48px 0 76px;
  }

  .event-detail-hero {
    padding: 58px 0 68px;
  }

  .event-breadcrumb {
    margin-bottom: 28px;
  }

  .event-detail-copy h1 {
    font-size: 3.25rem;
  }

  .event-detail-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .event-detail-summary {
    padding-inline: 22px;
  }

  .event-highlight-card {
    padding-left: 58px;
  }

  .event-highlight-card > span {
    left: 4px;
  }

  .event-map-frame {
    min-height: 370px;
  }

  .event-map-frame iframe {
    height: 350px;
  }

  .announcement-inner {
    min-height: 32px;
    justify-content: center;
    text-align: center;
  }

  .announcement-inner > span:first-child {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 200px;
  }

  .mobile-menu-panel {
    top: 72px;
    right: 16px;
    left: 16px;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 65px;
  }

  .hero-copy h1 {
    margin-top: 16px;
    font-size: 3.3rem;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-assurances {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual > img {
    height: 390px;
    border-radius: 8px 40px 8px 8px;
  }

  .hero-card {
    right: 14px;
    bottom: -25px;
    left: 14px;
    width: auto;
  }

  .trust-names {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-action,
  .final-cta-inner,
  .events-offer-inner,
  .event-list-intro {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .benefit-card,
  .benefit-card + .benefit-card {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-number {
    margin-bottom: 20px;
  }

  .event-grid,
  .pricing-grid,
  .included-grid,
  .form-grid,
  .event-selector,
  .site-choice-grid,
  .requirements-row,
  .success-summary {
    grid-template-columns: 1fr;
  }

  .experience-image img {
    height: 410px;
    border-radius: 8px 8px 44px 8px;
  }

  .pricing-copy {
    padding-right: 0;
  }

  .offer-bar {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .preview-stat-row {
    grid-template-columns: 1fr;
  }

  .preview-event {
    grid-template-columns: 43px 1fr;
  }

  .preview-event b {
    grid-column: 2;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .provider-note-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .page-hero {
    padding: 62px 0;
  }

  .booking-hero .unified-hero-grid {
    min-height: 0;
    padding-block: 32px 38px;
    gap: 24px;
  }

  .booking-hero .unified-hero-copy h1 {
    font-size: 2.75rem;
  }

  .booking-hero .unified-hero-visual img {
    height: min(52vw, 215px);
  }

  .page-hero h1,
  .exhibit-hero-copy h1 {
    font-size: 3.15rem;
  }

  .exhibit-hero-copy h1 {
    font-size: 2.95rem;
  }

  .event-row {
    padding: 18px 8px;
    grid-template-columns: 58px 1fr;
  }

  .event-row-main {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-row-action {
    grid-column: 2;
    justify-items: start;
  }

  .exhibit-hero-copy {
    width: calc(100% - 32px);
    padding-block: 60px;
  }

  .exhibit-hero-image-frame {
    width: calc(100% - 32px);
    height: 340px;
    margin-bottom: 32px;
    border-width: 6px;
  }

  .included-grid article,
  .included-grid article:nth-child(3n),
  .included-grid article:nth-child(2n),
  .included-grid article:nth-last-child(-n+3),
  .included-grid article:nth-last-child(-n+2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .included-grid article:last-child {
    border-bottom: 0;
  }

  .exhibitor-reassurance {
    padding: 52px 0 56px;
  }

  .exhibitor-reassurance-grid figure {
    padding: 27px 23px 25px;
  }

  .form-section {
    padding: 24px 18px;
    grid-template-columns: 1fr;
  }

  .form-section-number {
    width: 30px;
    height: 30px;
  }

  .booking-success {
    padding: 45px 22px;
  }

  .login-brand-bar {
    padding-inline: 18px;
  }

  .login-brand-bar > a:first-child {
    width: 200px;
  }

  .login-brand-bar > a:last-child {
    display: none;
  }

  .login-form-wrap {
    padding: 45px 22px;
  }

  .login-card-heading h1 {
    font-size: 3rem;
  }

  .dashboard-sidebar nav {
    display: none;
  }

  .dashboard-sidebar > button {
    margin-left: auto;
  }

  .dashboard-logo {
    width: min(155px, 48vw);
  }

  .dashboard-logo span {
    margin-top: 6px;
    font-size: 0.62rem;
  }

  .dashboard-header {
    padding: 0 18px;
  }

  .dashboard-user > span {
    display: none;
  }

  .dashboard-content {
    width: calc(100% - 28px);
    padding-top: 30px;
  }

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

  .dashboard-welcome h1 {
    font-size: 2.8rem;
  }

  .dashboard-stat-grid,
  .dashboard-lower-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-bookings article {
    grid-template-columns: 50px 1fr;
  }

  .dashboard-bookings article > span,
  .dashboard-bookings article > button,
  .dashboard-booking-actions {
    grid-column: 2;
    justify-self: start;
  }

  .provider-opportunities-panel .dashboard-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  #provider-state-form,
  #provider-state-form label,
  #provider-dashboard-state {
    width: 100%;
  }

  .provider-opportunities-list article {
    grid-template-columns: 50px 1fr;
  }

  .provider-opportunity-actions {
    grid-column: 2;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .attendee-header {
    min-height: 72px;
    padding: 0 16px;
  }

  .attendee-header a {
    width: 200px;
  }

  .attendee-header > span {
    display: none;
  }

  .attendee-hero {
    min-height: 500px;
  }

  .attendee-hero-copy {
    padding: 50px 0;
  }

  .attendee-hero-copy h1 {
    font-size: 3rem;
  }

  .attendee-registration {
    padding: 60px 0;
    gap: 45px;
  }

  .attendee-form-card {
    padding: 28px 20px;
  }

  .attendee-footer {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .reservation-header {
    min-height: 72px;
    padding-inline: 16px;
  }

  .reservation-header > a {
    width: 200px;
  }

  .reservation-header-links a {
    display: none;
  }

  .reservation-header-links span {
    padding: 7px 10px;
    font-size: 0.6rem;
  }

  .reservation-hero-inner {
    width: min(100% - 32px, 1180px);
    padding: 50px 0 112px;
  }

  .reservation-back-link {
    margin-bottom: 27px;
  }

  .reservation-hero-copy h1 {
    font-size: 3.15rem;
  }

  .reservation-hero-copy > p {
    font-size: 0.95rem;
  }

  .reservation-hero-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-hero-ticket {
    padding: 23px;
  }

  .reservation-flow-grid {
    width: min(100% - 24px, 1180px);
    margin-top: -66px;
  }

  .reservation-primary-card,
  .reservation-event-panel {
    padding: 28px 21px;
  }

  .reservation-progress {
    margin-bottom: 29px;
  }

  .reservation-progress span {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: 0.57rem;
  }

  .reservation-form-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reservation-form-heading h2 {
    font-size: 2.55rem;
  }

  .reservation-form-heading > p {
    max-width: 310px;
  }

  .reservation-confirmation-actions {
    grid-template-columns: 1fr;
  }

  .reservation-reference {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .reservation-confirmation-details > div {
    grid-template-columns: 90px 1fr;
  }

  .reservation-reassurance {
    width: min(100% - 32px, 1180px);
  }
}

/* 2026 visitor-first homepage renovation */
.home-renovation {
  overflow-x: hidden;
  background: #f5f0e8;
}

.home-renovation h1,
.home-renovation h2,
.home-renovation h3 {
  font-family: Arial, Helvetica, sans-serif;
}

.home-renovation em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.home-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.home-header {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 40px rgba(10, 45, 67, 0.12);
}

.home-provider-link {
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.home-provider-link:hover {
  color: var(--white);
}

.home-stage {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  isolation: isolate;
  background: #0d3a58;
  color: var(--white);
}

.home-stage-photo {
  position: absolute;
  z-index: -4;
  inset: 0 0 0 42%;
  background-image: url("../images/hero-provider-conversation.png");
  background-position: 59% center;
  background-size: cover;
  transform: scale(1.015);
}

.home-stage-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, #0c3a59 0%, #0c3a59 39%, rgba(12, 58, 89, 0.93) 48%, rgba(12, 58, 89, 0.2) 74%, rgba(12, 58, 89, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 31, 47, 0.5), transparent 54%);
}

.home-stage::before {
  position: absolute;
  z-index: -2;
  top: -225px;
  left: -185px;
  width: 565px;
  height: 565px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.home-stage::after {
  position: absolute;
  z-index: -1;
  right: -86px;
  bottom: -115px;
  width: 300px;
  height: 300px;
  border: 62px solid rgba(220, 232, 174, 0.85);
  border-radius: 50%;
  content: "";
}

.home-stage-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.home-stage-orbit-one {
  top: 64px;
  right: 13%;
  width: 24px;
  height: 24px;
  background: var(--pink);
  box-shadow: 0 0 0 15px rgba(239, 178, 206, 0.16);
}

.home-stage-orbit-two {
  right: 34%;
  bottom: 115px;
  width: 10px;
  height: 10px;
  background: var(--lime);
  box-shadow: 0 0 0 9px rgba(220, 232, 174, 0.18);
}

.home-stage-inner {
  min-height: 650px;
  padding-top: 72px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}

.home-stage-copy {
  width: min(750px, 65%);
  position: relative;
  z-index: 2;
}

.home-kicker {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbe7f5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-kicker::before {
  width: 42px;
  height: 4px;
  background: var(--pink);
  content: "";
}

.home-stage h1 {
  max-width: 770px;
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 6.95rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.87;
  text-wrap: balance;
}

.home-stage h1 em {
  color: var(--pink);
  font-size: 0.91em;
  letter-spacing: -0.045em;
}

.home-stage-intro {
  width: min(600px, 90%);
  margin: 34px 0 0;
  color: #eef8fc;
  font-size: 1.12rem;
  line-height: 1.62;
}

.home-stage-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.home-button {
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.home-button-pink {
  background: var(--pink);
  color: #482338;
}

.home-button-pink:hover {
  background: #f8cbe0;
}

.home-button-glass {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(5, 34, 52, 0.22);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.home-button-glass:hover {
  background: var(--white);
  color: var(--blue-deep);
}

.home-button-blue {
  background: var(--blue);
  color: var(--white);
}

.home-button-blue:hover {
  background: var(--blue-deep);
}

.home-next {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 0;
  width: 290px;
  min-height: 296px;
  padding: 27px 28px 24px;
  background: var(--pink);
  color: #452037;
  box-shadow: 0 30px 60px rgba(7, 38, 56, 0.3);
  cursor: pointer;
}

.home-next::before {
  position: absolute;
  top: -19px;
  right: 0;
  width: 76%;
  height: 19px;
  background: var(--lime);
  content: "";
}

.home-next-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-next-date {
  margin: 13px 0 11px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.home-next-date strong {
  font-size: 4.25rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.home-next-date span {
  padding-left: 13px;
  border-left: 1px solid rgba(69, 32, 55, 0.28);
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-next-place {
  display: grid;
}

.home-next-place > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.home-next-place small {
  margin-top: 2px;
  color: rgba(69, 32, 55, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
}

.home-next > a {
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid rgba(69, 32, 55, 0.23);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  font-weight: 900;
}

.home-next > a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.home-next:focus-within {
  outline: 3px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.home-stage-foot {
  min-height: 85px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 39, 58, 0.8);
  backdrop-filter: blur(10px);
}

.home-stage-foot .shell {
  min-height: 85px;
  padding-right: 330px;
  display: flex;
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  color: #cce1ea;
  font-size: 0.76rem;
}

.home-stage-foot span {
  white-space: nowrap;
}

.home-stage-foot b {
  margin-right: 4px;
  color: var(--white);
}

.home-marquee {
  overflow: hidden;
  border-bottom: 5px solid var(--pink);
  background: var(--lime);
  color: #263b25;
}

.home-marquee-track {
  width: max-content;
  min-height: 68px;
  display: flex;
  align-items: center;
  animation: home-marquee 34s linear infinite;
}

.home-marquee span {
  padding-left: 34px;
  display: flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-marquee i {
  color: var(--pink-deep);
  font-size: 1.05rem;
  font-style: normal;
}

@keyframes home-marquee {
  to {
    transform: translateX(-50%);
  }
}

.home-section-number {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-section-number::before {
  width: 28px;
  height: 3px;
  background: currentColor;
  content: "";
}

.home-section-number-light {
  color: #a7d8ee;
}

.home-opening {
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 88% 18%, rgba(239, 178, 206, 0.32) 0 5%, transparent 5.2%),
    linear-gradient(135deg, #f8f4ec 0%, #f2ede4 100%);
}

.home-opening-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 8vw;
}

.home-opening h2,
.home-programme h2,
.home-day h2 {
  margin: 21px 0 0;
  font-size: clamp(3.2rem, 5.8vw, 6.1rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.home-opening h2 em,
.home-programme h2 em {
  color: var(--pink-deep);
}

.home-opening-copy {
  padding-bottom: 2px;
}

.home-opening-copy p {
  color: #5c676d;
  font-size: 0.93rem;
  line-height: 1.7;
}

.home-opening-copy .home-opening-lead {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.42;
}

.home-arrow-link {
  margin-top: 16px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 900;
}

.home-discover {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  background: var(--blue-deep);
}

.home-discover-photo {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.home-discover-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 40, 60, 0.68), transparent 58%);
  content: "";
}

.home-discover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-photo-quote {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(420px, 72%);
  padding: 26px 32px 27px;
  background: var(--lime);
  color: #31422d;
}

.home-photo-quote span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-photo-quote small {
  margin-top: 6px;
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
}

.home-discover-content {
  padding: 80px clamp(34px, 6vw, 100px) 65px;
  color: var(--white);
}

.home-discover-content h2 {
  margin: 19px 0 46px;
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.home-discover-content h2 em {
  color: var(--lime);
}

.home-topic-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-topic-list a {
  min-height: 122px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 37px minmax(160px, 0.85fr) 1.2fr 28px;
  align-items: center;
  gap: 14px;
  transition: padding 180ms ease, background 180ms ease;
}

.home-topic-list a:hover {
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.home-topic-list a > span {
  color: var(--pink);
  font-size: 0.66rem;
  font-weight: 900;
}

.home-topic-list strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.home-topic-list small {
  color: #b9d2df;
  font-size: 0.7rem;
  line-height: 1.5;
}

.home-topic-list b {
  color: var(--pink);
  font-size: 1.1rem;
}

.home-programme {
  padding: 94px 0 105px;
  background:
    linear-gradient(rgba(52, 127, 182, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 127, 182, 0.08) 1px, transparent 1px),
    #f7fafb;
  background-size: 42px 42px;
}

.home-programme-head {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 8vw;
}

.home-programme-intro {
  padding-bottom: 4px;
}

.home-programme-intro p {
  margin-bottom: 23px;
  color: #59717e;
  font-size: 0.92rem;
}

.home-date-list {
  border-top: 4px solid var(--blue-deep);
}

.home-date-list article {
  position: relative;
  min-height: 142px;
  padding: 18px 0;
  border-bottom: 1px solid #bfcfd7;
  display: grid;
  grid-template-columns: 150px 1fr 1.3fr 125px;
  align-items: center;
  gap: 26px;
  transition: padding 180ms ease, background 180ms ease;
  cursor: pointer;
}

.home-date-list article:hover {
  padding-inline: 18px;
  background: var(--white);
}

.home-date-list article:focus-within {
  outline: 3px solid rgba(52, 127, 182, 0.42);
  outline-offset: 3px;
}

.home-date-stamp {
  display: flex;
  align-items: center;
  gap: 13px;
}

.home-date-stamp strong {
  color: var(--blue);
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.home-date-stamp span {
  padding-left: 12px;
  border-left: 1px solid #b9cbd4;
  color: #6b808b;
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1.4;
}

.home-date-city > span {
  color: var(--pink-deep);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.home-date-city h3 {
  margin: 4px 0 0;
  color: var(--blue-deep);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.home-date-venue {
  display: grid;
  color: #6a7c85;
  font-size: 0.88rem;
}

.home-date-venue strong {
  color: #304a59;
  font-size: 0.92rem;
}

.home-date-list article > a {
  padding: 11px 0;
  border-bottom: 2px solid var(--pink);
  display: flex;
  justify-content: space-between;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.home-date-list article > a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.home-date-list article > a span {
  color: var(--pink-deep);
}

.home-day {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  background: #2e79ad;
  color: var(--white);
}

.home-day::before {
  position: absolute;
  top: -180px;
  left: -140px;
  width: 460px;
  height: 460px;
  border: 75px solid rgba(239, 178, 206, 0.18);
  border-radius: 50%;
  content: "";
}

.home-day-grid {
  min-height: 735px;
  padding: 92px 51% 82px 0;
  display: grid;
  align-content: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 55px;
}

.home-day-copy {
  position: relative;
  z-index: 2;
}

.home-day h2 {
  color: var(--white);
  font-size: clamp(3rem, 4.6vw, 5rem);
}

.home-day h2 em {
  color: var(--lime);
}

.home-day-copy > p {
  margin: 28px 0 31px;
  color: #e0eff6;
  font-size: 0.9rem;
}

.home-day-steps {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.home-day-steps article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 17px;
}

.home-day-steps article > span {
  color: var(--pink);
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-day-steps strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.home-day-steps p {
  margin: 4px 0 0;
  color: #d0e6f0;
  font-size: 0.69rem;
  line-height: 1.5;
}

.home-day-portrait {
  position: absolute;
  inset: 0 0 0 51%;
  overflow: hidden;
}

.home-day-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46, 121, 173, 0.62), transparent 26%);
  content: "";
}

.home-day-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.home-day-portrait > span {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  max-width: 240px;
  padding: 20px 22px;
  background: var(--pink);
  color: #482238;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-invitation {
  padding: 92px 0 90px;
  background: var(--pink);
  color: #442239;
}

.home-invitation-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 8vw;
}

.home-invitation-small {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-invitation h2 {
  max-width: 760px;
  margin: 20px 0 0;
  color: #442239;
  font-size: clamp(3.1rem, 5.8vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.home-invitation-action {
  display: grid;
  grid-template-columns: 1fr 145px;
  align-items: end;
  gap: 27px;
}

.home-invitation-action p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.home-round-link {
  width: 145px;
  height: 145px;
  padding: 25px;
  border-radius: 50%;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.25;
  transition: transform 220ms ease, background 220ms ease;
}

.home-round-link span {
  color: var(--lime);
}

.home-round-link:hover {
  background: #0a2d44;
  transform: rotate(-5deg) scale(1.04);
}

.home-organisations {
  background: var(--lime);
  color: #344330;
}

.home-organisations .shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.home-organisations .shell > span {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-organisations p {
  margin: 0 auto 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

.home-organisations a {
  font-size: 0.72rem;
  font-weight: 900;
}

.home-organisations a:first-of-type {
  padding-bottom: 5px;
  border-bottom: 2px solid var(--pink-deep);
}

@media (max-width: 1080px) {
  .home-stage-copy {
    width: 70%;
  }

  .home-stage h1 {
    font-size: clamp(4rem, 7.8vw, 6.3rem);
  }

  .home-next {
    right: 24px;
    width: 260px;
  }

  .home-stage-foot .shell {
    padding-right: 285px;
    gap: 22px;
  }

  .home-stage-foot span {
    white-space: normal;
  }

  .home-day-grid {
    padding-right: 48%;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .home-day-portrait {
    left: 55%;
  }

  .home-invitation-action {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-stage {
    min-height: auto;
  }

  .home-stage-photo {
    inset: 0;
    background-position: 64% center;
  }

  .home-stage-shade {
    background:
      linear-gradient(90deg, rgba(9, 49, 75, 0.97), rgba(9, 49, 75, 0.72) 68%, rgba(9, 49, 75, 0.38)),
      linear-gradient(0deg, rgba(5, 30, 46, 0.8), transparent 50%);
  }

  .home-stage-inner {
    min-height: 690px;
    padding-top: 65px;
    padding-bottom: 210px;
    align-items: flex-start;
  }

  .home-stage-copy {
    width: min(680px, 94%);
  }

  .home-stage h1 {
    font-size: clamp(4rem, 11.5vw, 6.6rem);
  }

  .home-next {
    right: 24px;
    bottom: 0;
    width: 300px;
    min-height: 185px;
    padding-block: 21px;
  }

  .home-next-date {
    margin: 9px 0;
  }

  .home-next-date strong {
    font-size: 3.5rem;
  }

  .home-next > a {
    margin-top: 10px;
    padding-top: 10px;
  }

  .home-stage-foot {
    display: none;
  }

  .home-opening-grid,
  .home-programme-head,
  .home-invitation-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-opening {
    padding-block: 78px;
  }

  .home-opening-copy {
    max-width: 680px;
  }

  .home-discover {
    grid-template-columns: 1fr;
  }

  .home-discover-photo {
    min-height: 520px;
  }

  .home-discover-content {
    padding: 68px 48px 75px;
  }

  .home-date-list article {
    grid-template-columns: 130px 1fr 1fr 105px;
    gap: 18px;
  }

  .home-day {
    padding-top: 500px;
  }

  .home-day-portrait {
    inset: 0 0 auto;
    height: 500px;
  }

  .home-day-portrait::after {
    background: linear-gradient(0deg, rgba(46, 121, 173, 0.9), transparent 35%);
  }

  .home-day-grid {
    min-height: auto;
    padding: 72px 0 78px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .home-day-portrait > span {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 680px) {
  .home-stage::after {
    right: -110px;
    bottom: 70px;
    opacity: 0.65;
  }

  .home-stage-inner {
    min-height: 700px;
    padding: 48px 0 230px;
  }

  .home-kicker {
    margin-bottom: 20px;
    font-size: 0.59rem;
  }

  .home-stage h1 {
    max-width: 520px;
    font-size: clamp(3.45rem, 16vw, 5.15rem);
    line-height: 0.89;
  }

  .home-stage-intro {
    margin-top: 26px;
    font-size: 0.96rem;
  }

  .home-stage-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-stage-actions .home-button {
    width: 100%;
  }

  .home-next {
    right: 16px;
    bottom: 0;
    left: 16px;
    width: auto;
    min-height: 184px;
  }

  .home-marquee-track {
    min-height: 56px;
  }

  .home-marquee span {
    padding-left: 24px;
    gap: 24px;
    font-size: 0.76rem;
  }

  .home-opening {
    padding: 65px 0 69px;
  }

  .home-opening-grid {
    gap: 31px;
  }

  .home-opening h2,
  .home-programme h2 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  .home-opening-copy .home-opening-lead {
    font-size: 1.25rem;
  }

  .home-discover-photo {
    min-height: 390px;
  }

  .home-photo-quote {
    width: 88%;
    padding: 20px 23px;
  }

  .home-photo-quote span {
    font-size: 1.1rem;
  }

  .home-discover-content {
    padding: 57px 24px 63px;
  }

  .home-discover-content h2 {
    font-size: 3.45rem;
  }

  .home-topic-list a {
    min-height: 145px;
    grid-template-columns: 30px 1fr 22px;
    gap: 10px;
  }

  .home-topic-list strong {
    font-size: 1.08rem;
  }

  .home-topic-list small {
    grid-column: 2;
  }

  .home-topic-list b {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .home-programme {
    padding: 68px 0 76px;
  }

  .home-programme-head {
    margin-bottom: 45px;
    gap: 28px;
  }

  .home-date-list article {
    min-height: 0;
    padding: 25px 0;
    grid-template-columns: 95px 1fr;
    gap: 15px 18px;
  }

  .home-date-stamp strong {
    font-size: 3.4rem;
  }

  .home-date-venue {
    grid-column: 2;
  }

  .home-date-list article > a {
    grid-column: 2;
    width: 120px;
  }

  .home-day {
    padding-top: 375px;
  }

  .home-day-portrait {
    height: 375px;
  }

  .home-day-portrait > span {
    right: 16px;
    bottom: 15px;
    max-width: 205px;
    padding: 15px 17px;
    font-size: 1.02rem;
  }

  .home-day-grid {
    padding: 62px 0 67px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-day h2 {
    font-size: 3.6rem;
  }

  .home-invitation {
    padding: 67px 0;
  }

  .home-invitation h2 {
    font-size: 3.55rem;
  }

  .home-invitation-action {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .home-invitation-action p {
    font-size: 0.85rem;
  }

  .home-round-link {
    align-self: flex-end;
  }

  .home-organisations .shell {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .home-organisations p {
    margin: 0;
  }
}

/* Event pages with embedded reservations */
.reservation-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.event-page-reservation-hero {
  min-height: 360px;
}

.event-page-reservation-hero-inner {
  min-height: 360px;
  padding: 24px 0 38px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.event-landing-logo {
  width: 244px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 3;
  display: flex;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(5, 30, 45, 0.18);
}

.event-landing-logo img {
  width: 100%;
  height: auto;
}

.event-page-reservation-hero .reservation-hero-copy {
  max-width: 850px;
  padding-top: 70px;
}

.event-page-reservation-hero .reservation-hero-copy h1 {
  max-width: 800px;
  margin: 13px 0 14px;
  font-size: clamp(3.1rem, 4.5vw, 4.45rem);
}

.event-page-reservation-hero .reservation-hero-copy > p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1rem;
}

.event-page-reservation-flow {
  padding-top: 30px;
  padding-bottom: 58px;
}

.event-page-reservation-grid {
  margin-top: 0;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.event-page-reservation-card,
.event-landing-map-panel {
  min-height: 100%;
  height: auto;
  align-self: stretch;
}

.event-landing-map-panel {
  border-radius: 12px 12px 48px 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 110% 92%, rgba(239, 178, 206, 0.22), transparent 36%),
    var(--blue-deep);
  box-shadow: 0 28px 70px rgba(22, 65, 91, 0.17);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.event-reservation-page:has(.christmas-reservation) .event-landing-map-panel {
  background:
    radial-gradient(circle at 110% 92%, rgba(220, 232, 174, 0.24), transparent 36%),
    #173f54;
}

.event-landing-map-frame {
  height: 300px;
  margin: 9px 9px 0;
  border-radius: 7px 7px 31px 7px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--blue-pale);
}

.event-landing-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.event-landing-map-content {
  padding: 27px 31px 31px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-landing-map-content .eyebrow {
  color: var(--pink);
  font-size: 0.67rem;
}

.event-reservation-page:has(.christmas-reservation) .event-landing-map-content .eyebrow {
  color: var(--lime);
}

.event-landing-map-content h2 {
  margin: 13px 0 11px;
  color: var(--white);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
}

.event-landing-address {
  margin-bottom: 20px;
  color: #c8dde7;
  font-size: 0.78rem;
  line-height: 1.55;
}

.event-landing-time {
  padding: 17px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 4px;
}

.event-landing-time span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.event-landing-time strong {
  color: #acc9d7;
  font-size: 0.7rem;
}

.event-landing-map-content .button {
  margin-top: 22px;
  align-self: flex-start;
}

.event-landing-checkin {
  margin-top: auto;
  padding-top: 23px;
  color: #b9d2dd;
  font-size: 0.7rem;
  line-height: 1.55;
}

.event-landing-checkin b {
  color: var(--white);
}

.event-expect-section {
  padding: 72px 0 96px;
}

.event-reservation-section {
  padding: 54px 0 68px;
  background:
    radial-gradient(circle at 7% 12%, rgba(67, 143, 202, 0.1), transparent 22%),
    linear-gradient(135deg, #eef6fa 0%, #f9fbfc 54%, #f6f1e9 100%);
}

.event-reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
  align-items: start;
  gap: 22px;
}

.event-reservation-card {
  padding: 35px 38px 38px;
  border: 1px solid rgba(216, 227, 233, 0.95);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(22, 65, 91, 0.13);
}

.event-reservation-heading {
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: end;
  gap: 28px;
}

.event-reservation-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(2.15rem, 3.2vw, 3rem);
}

.event-reservation-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.event-reservation-form .form-grid {
  gap: 14px 16px;
}

.event-reservation-form .field {
  gap: 6px;
}

.event-reservation-form .field input,
.event-reservation-form .field select {
  min-height: 49px;
  border-radius: 7px;
  background: #fbfdfe;
}

.event-reservation-form .consent-field {
  margin: 17px 0 5px;
}

.event-at-a-glance {
  border-radius: 12px 12px 46px 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 112% -5%, rgba(239, 178, 206, 0.27), transparent 34%),
    var(--blue-deep);
  box-shadow: 0 24px 58px rgba(22, 65, 91, 0.15);
  color: var(--white);
}

.event-reservation-page:has(.christmas-event) .event-at-a-glance {
  background:
    radial-gradient(circle at 112% -5%, rgba(220, 232, 174, 0.27), transparent 34%),
    #173f54;
}

.event-glance-kicker {
  padding: 30px 31px 0;
  display: block;
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-reservation-page:has(.christmas-event) .event-glance-kicker {
  color: var(--lime);
}

.event-at-a-glance > h2 {
  margin: 10px 31px 22px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.event-compact-facts {
  margin: 0;
  padding: 0 31px;
}

.event-compact-facts > div {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 57px 1fr;
  gap: 12px;
}

.event-compact-facts dt {
  color: #9fc0d0;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-compact-facts dd {
  margin: 0;
  color: #d3e4ec;
  font-size: 0.73rem;
  line-height: 1.48;
}

.event-compact-facts dd strong {
  color: var(--white);
  font-size: 0.78rem;
}

.event-compact-map {
  height: 255px;
  margin: 0 9px;
  border-radius: 6px 6px 29px 6px;
  overflow: hidden;
  background: var(--blue-pale);
}

.event-compact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.event-map-link {
  margin: 0 31px;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.event-map-link span {
  color: var(--pink);
}

.event-reservation-page:has(.christmas-event) .event-map-link span {
  color: var(--lime);
}

@media (max-width: 900px) {
  .event-page-reservation-hero,
  .event-page-reservation-hero-inner {
    min-height: 340px;
  }

  .event-page-reservation-hero-inner {
    padding: 20px 0 32px;
  }

  .event-landing-logo {
    top: 20px;
  }

  .event-page-reservation-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .event-landing-map-panel {
    min-height: auto;
    order: -1;
  }

  .event-landing-map-frame {
    height: 260px;
  }

  .event-reservation-page .event-detail-hero-grid,
  .event-reservation-layout {
    grid-template-columns: 1fr;
  }

  .event-reservation-page .event-detail-summary {
    width: min(100%, 600px);
  }

  .event-at-a-glance {
    border-radius: 12px 12px 42px 12px;
  }
}

@media (max-width: 680px) {
  .event-page-reservation-hero,
  .event-page-reservation-hero-inner {
    min-height: auto;
  }

  .event-page-reservation-hero-inner {
    width: min(100% - 32px, 1180px);
    padding: 18px 0 34px;
    align-items: flex-start;
    flex-direction: column;
  }

  .event-landing-logo {
    width: 180px;
    margin-bottom: 27px;
    padding: 8px 11px;
    position: relative;
    top: auto;
    left: auto;
  }

  .event-page-reservation-hero .reservation-hero-copy {
    padding-top: 0;
  }

  .event-page-reservation-hero .reservation-hero-copy h1 {
    font-size: 2.85rem;
  }

  .event-page-reservation-hero .reservation-hero-copy > p {
    font-size: 0.92rem;
  }

  .event-page-reservation-flow {
    padding-top: 20px;
  }

  .event-page-reservation-grid {
    width: min(100% - 24px, 1180px);
  }

  .event-landing-map-frame {
    height: 220px;
  }

  .event-landing-map-content {
    padding: 23px 22px 25px;
  }

  .event-landing-map-content h2 {
    font-size: 2.15rem;
  }

  .event-expect-section {
    padding: 62px 0 78px;
  }

  .event-reservation-section {
    padding: 32px 0 52px;
  }

  .event-reservation-card {
    padding: 27px 21px 29px;
  }

  .event-reservation-heading {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .event-reservation-heading h2 {
    font-size: 2.35rem;
  }

  .event-reservation-form .form-grid {
    grid-template-columns: 1fr;
  }

  .event-reservation-form .field-wide {
    grid-column: 1;
  }

  .event-glance-kicker {
    padding: 26px 23px 0;
  }

  .event-at-a-glance > h2 {
    margin-inline: 23px;
  }

  .event-compact-facts {
    padding-inline: 23px;
  }

  .event-compact-experience {
    margin-inline: 23px;
  }

  .event-map-link {
    margin-inline: 23px;
  }
}

/* Facebook attendee landing pages */
.fb-landing-nav {
  position: relative;
  z-index: 10;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(5, 35, 54, 0.18);
}

.fb-landing-nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.fb-nav-logo {
  width: 220px;
  display: flex;
}

.fb-nav-logo img {
  width: 100%;
  height: auto;
}

.fb-landing-nav nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.fb-landing-nav nav a {
  padding: 25px 0 22px;
  border-bottom: 3px solid transparent;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fb-landing-nav nav a:hover,
.fb-landing-nav nav a:focus-visible {
  border-bottom-color: var(--lime);
  color: var(--lime);
}

.fb-landing-hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
}

.fb-landing-hero > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 46%;
}

.fb-landing-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 42, 67, 0.98) 0%, rgba(12, 61, 92, 0.9) 38%, rgba(12, 61, 92, 0.42) 66%, rgba(7, 38, 59, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 38, 59, 0.35), transparent 48%);
}

.fb-landing-grid {
  min-height: 900px;
  padding: 38px 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.88fr);
  align-items: center;
  gap: 58px;
}

.fb-landing-copy {
  max-width: 610px;
  color: var(--white);
}

.fb-landing-logo {
  width: 255px;
  margin-bottom: 27px;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(5, 28, 43, 0.22);
}

.fb-landing-logo img {
  width: 100%;
  height: auto;
}

.fb-date-pill {
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 15px;
  border-radius: 8px;
  display: block;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.fb-christmas .fb-date-pill {
  background: var(--lime);
  color: #39511a;
}

.fb-landing-copy h1 {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.75rem, 5.4vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.fb-landing-copy h1 + .fb-date-pill {
  margin-bottom: 22px;
}

.fb-event-essentials {
  max-width: 555px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.fb-event-essential {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
}

.fb-event-essential + .fb-event-essential {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.fb-event-essential span {
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fb-event-essential strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.45;
}

.fb-event-parking strong {
  color: #d8e8ef;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.55;
}

.fb-landing-intro {
  max-width: 540px;
  margin: 22px 0 0;
  color: #d8e8ef;
  font-size: 1rem;
  line-height: 1.6;
}

.fb-landing-reassurance {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fb-landing-reassurance span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e7f1f5;
  font-size: 0.66rem;
  font-weight: 800;
}

.fb-hero-map {
  max-width: 555px;
  height: 245px;
  margin-top: 25px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px 10px 34px 10px;
  position: relative;
  overflow: hidden;
  background: var(--blue-pale);
  box-shadow: 0 18px 42px rgba(4, 29, 45, 0.25);
}

.fb-hero-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.fb-hero-map-link {
  padding: 10px 14px;
  border-radius: 7px 7px 20px 7px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 8px 24px rgba(5, 35, 54, 0.22);
  font-size: 0.68rem;
  font-weight: 900;
}

.fb-hero-map-link:hover,
.fb-hero-map-link:focus-visible {
  background: var(--lime);
  color: var(--blue-deep);
}

.fb-parking-note {
  max-width: 555px;
  margin: 12px 0 0;
  padding: 10px 13px;
  border-left: 3px solid var(--lime);
  border-radius: 0 6px 6px 0;
  background: rgba(7, 38, 59, 0.66);
  color: #e7f1f5;
  font-size: 0.72rem;
  line-height: 1.5;
}

.fb-parking-note strong {
  color: var(--lime);
}

.fb-reservation-card {
  width: 100%;
  padding: 31px 32px 28px;
  border: 1px solid rgba(218, 229, 235, 0.95);
  border-radius: 16px 16px 48px 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(5, 30, 46, 0.3);
  backdrop-filter: blur(8px);
}

.fb-reservation-heading {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: end;
  gap: 22px;
}

.fb-reservation-heading .eyebrow {
  font-size: 0.66rem;
}

.fb-reservation-heading h2 {
  margin: 10px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.fb-reservation-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.fb-reservation-card .attendee-form {
  margin-top: 0;
}

.fb-reservation-card .form-grid {
  gap: 12px 14px;
}

.fb-reservation-card .field {
  gap: 5px;
}

.fb-reservation-card .field > span {
  font-size: 0.67rem;
}

.fb-reservation-card .field input,
.fb-reservation-card .field select {
  min-height: 47px;
  border-radius: 7px;
  background: #f9fbfd;
}

.fb-reservation-card .consent-field {
  margin: 15px 0 3px;
}

.fb-reservation-card .reservation-submit {
  min-height: 55px;
}

.fb-reservation-card .reservation-privacy {
  margin-top: 10px;
}

.fb-map-strip {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
}

.fb-map-frame {
  min-height: 116px;
  border-radius: 8px 8px 24px 8px;
  overflow: hidden;
  background: var(--blue-pale);
}

.fb-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 116px;
  border: 0;
  display: block;
}

.fb-map-copy {
  padding: 3px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fb-map-copy > span {
  color: var(--pink-deep);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fb-christmas .fb-map-copy > span {
  color: #718b20;
}

.fb-map-copy strong {
  margin-top: 6px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  line-height: 1.35;
}

.fb-map-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.fb-map-copy a {
  margin-top: auto;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
}

.fb-landing-hero + .event-expect-section {
  padding: 76px 0 94px;
}

.fb-expect-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: start;
  gap: 72px;
}

.fb-expect-copy h2 {
  max-width: 700px;
  margin: 15px 0 24px;
  color: var(--blue-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.fb-expect-copy p {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

.fb-expect-copy p:first-of-type {
  color: var(--blue-deep);
  font-size: 1.04rem;
  font-weight: 700;
}

.fb-services-panel {
  padding: 34px 34px 30px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 42px 14px;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(12, 61, 92, 0.1);
}

.fb-services-panel h3 {
  margin: 12px 0 22px;
  color: var(--blue-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.fb-service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fb-service-list li {
  padding: 11px 0 11px 24px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.fb-service-list li::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 1px;
  background: var(--pink-deep);
  content: "";
}

.fb-service-list li:nth-child(even)::before {
  background: var(--lime);
}

.fb-expect-extras {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.fb-expect-extras span {
  padding: 10px 12px;
  border-radius: 7px;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .fb-landing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.9fr);
    gap: 34px;
  }

  .fb-landing-copy h1 {
    font-size: 4.1rem;
  }

  .fb-reservation-card {
    padding-inline: 26px;
  }

  .fb-expect-layout {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .fb-landing-hero,
  .fb-landing-grid {
    min-height: auto;
  }

  .fb-landing-overlay {
    background: linear-gradient(90deg, rgba(7, 42, 67, 0.96), rgba(12, 61, 92, 0.78));
  }

  .fb-landing-grid {
    padding: 34px 0 48px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fb-landing-copy {
    max-width: 670px;
  }

  .fb-reservation-card {
    width: min(100%, 680px);
    justify-self: center;
  }

  .fb-expect-layout {
    grid-template-columns: 1fr;
  }

  .fb-services-panel {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .fb-landing-nav-inner {
    width: min(100% - 28px, 1180px);
    min-height: 62px;
    gap: 16px;
  }

  .fb-nav-logo {
    width: 158px;
  }

  .fb-landing-nav nav {
    gap: 14px;
  }

  .fb-landing-nav nav a {
    padding: 21px 0 18px;
    font-size: 0.58rem;
  }

  .fb-landing-grid {
    width: min(100% - 28px, 1180px);
    padding: 20px 0 30px;
    gap: 24px;
  }

  .fb-landing-logo {
    width: 190px;
    margin-bottom: 22px;
    padding: 8px 11px;
  }

  .fb-date-pill {
    margin-bottom: 19px;
    padding: 8px 11px;
    font-size: 0.62rem;
  }

  .fb-landing-copy h1 {
    margin-bottom: 17px;
    font-size: 3rem;
  }

  .fb-event-essential {
    padding: 12px 0;
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }

  .fb-event-essential strong {
    font-size: 0.9rem;
  }

  .fb-landing-intro {
    margin-top: 18px;
    font-size: 0.9rem;
  }

  .fb-landing-reassurance {
    margin-top: 17px;
  }

  .fb-hero-map {
    height: 215px;
    margin-top: 20px;
    border-radius: 8px 8px 28px 8px;
  }

  .fb-reservation-card {
    padding: 24px 20px 22px;
    border-radius: 12px 12px 34px 12px;
  }

  .fb-reservation-heading {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .fb-reservation-heading h2 {
    font-size: 2rem;
  }

  .fb-reservation-heading > p {
    margin: 0;
  }

  .fb-reservation-card .form-grid {
    grid-template-columns: 1fr;
  }

  .fb-reservation-card .field-wide {
    grid-column: 1;
  }

  .fb-map-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fb-map-frame,
  .fb-map-frame iframe {
    min-height: 155px;
  }

  .fb-map-copy a {
    margin-top: 10px;
  }

  .fb-landing-hero + .event-expect-section {
    padding: 62px 0 78px;
  }

  .fb-expect-layout {
    gap: 34px;
  }

  .fb-expect-copy h2 {
    margin-bottom: 20px;
    font-size: 2.55rem;
  }

  .fb-expect-copy p {
    font-size: 0.86rem;
  }

  .fb-services-panel {
    padding: 26px 22px 24px;
    border-radius: 12px 12px 32px 12px;
  }

  .fb-services-panel h3 {
    font-size: 1.55rem;
  }

  .fb-expect-extras {
    grid-template-columns: 1fr;
  }
}

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

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

  .home-marquee-track {
    animation: none;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  html,
  body {
    width: 100%;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body.event-reservation-page > header,
  body.event-reservation-page > main {
    display: none !important;
  }

  #reservation-print-sheet {
    position: static;
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: 277mm;
    padding: 0;
    display: block;
    background: #fff;
    color: #173c54;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9.4pt;
    line-height: 1.38;
    page-break-after: avoid;
    break-after: avoid-page;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .no-print {
    display: none !important;
  }

  .reservation-print-header {
    margin-bottom: 5mm;
    padding: 0 0 3mm;
    border-bottom: 2px solid #0c5f91;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0c5f91;
  }

  .reservation-print-brand {
    display: flex;
    align-items: center;
    gap: 3mm;
  }

  .reservation-print-brand-mark {
    width: 27mm;
    height: 16mm;
    flex: 0 0 27mm;
    display: block;
    overflow: hidden;
  }

  .reservation-print-brand-mark img {
    width: auto;
    height: 16mm;
    max-width: none;
    display: block;
  }

  .reservation-print-brand-name {
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17pt;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
  }

  .reservation-print-header > span {
    padding: 1.7mm 2.5mm;
    border-radius: 1.5mm;
    background: #edf5f8;
    font-size: 8pt;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .reservation-print-sheet p {
    margin: 0 0 2.8mm;
  }

  .reservation-print-sheet h1 {
    margin: 0 0 3mm;
    color: #0c3d5c;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18pt;
    line-height: 1.05;
  }

  .reservation-print-sheet h2 {
    margin: 3mm 0 1.5mm;
    color: #0c5f91;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
  }

  .reservation-print-details {
    margin: 3mm 0 4mm;
    padding: 3.5mm 4.5mm;
    border: 1px solid #cbdce5;
    border-left: 4px solid #e53784;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3mm 8mm;
    break-inside: avoid;
  }

  .reservation-print-details strong {
    margin-bottom: 0.5mm;
    display: block;
    color: #0c5f91;
    font-size: 7.3pt;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .reservation-print-note {
    margin: 3.5mm 0;
    padding: 3mm 4mm;
    border-radius: 2mm;
    background: #edf5f8;
    color: #0c3d5c;
    font-weight: 700;
    break-inside: avoid;
  }

  .reservation-print-lower {
    margin-top: 4mm;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72mm;
    gap: 7mm;
    align-items: start;
    break-inside: avoid;
  }

  .reservation-print-travel h2 {
    margin-top: 0;
  }

  .reservation-print-map {
    border: 1px solid #cbdce5;
    border-radius: 2mm;
    overflow: hidden;
    break-inside: avoid;
  }

  .reservation-print-map-image {
    width: 100%;
    height: 34mm;
    object-fit: cover;
    display: block;
  }

  .reservation-print-map-caption {
    padding: 2.5mm 3mm 2mm;
    background: #fff;
  }

  .reservation-print-map-caption strong,
  .reservation-print-map-caption span {
    display: block;
  }

  .reservation-print-map-caption strong {
    color: #0c3d5c;
    font-size: 8.3pt;
  }

  .reservation-print-map-caption span {
    margin-top: 0.6mm;
    color: #557080;
    font-size: 7.4pt;
    line-height: 1.25;
  }

  .reservation-print-map a {
    padding: 1.5mm 0 0;
    display: block;
    color: #0c5f91;
    font-size: 7.5pt;
    font-weight: 800;
    text-decoration: none;
  }

  .reservation-print-signoff {
    margin-top: 4mm;
    color: #0c5f91;
    font-size: 10pt;
    font-weight: 800;
  }
}

/* Individual exhibitor profiles */
.provider-profile-loading,
.provider-profile-error {
  min-height: 52vh;
  padding: 90px 0;
  background: #f4f9fb;
}

.provider-profile-loading p {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.provider-profile-error h1 {
  max-width: 720px;
  margin: 10px 0 15px;
  color: var(--blue-deep);
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.provider-profile-error p {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.1rem;
}

.provider-profile-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 50px;
  background:
    radial-gradient(circle at 89% 17%, rgba(216, 239, 75, 0.92) 0 90px, transparent 91px),
    radial-gradient(circle at 76% 110%, rgba(238, 59, 123, 0.62) 0 190px, transparent 191px),
    linear-gradient(125deg, #075d91 0%, #0d78ad 58%, #17475f 100%);
  color: var(--white);
}

.provider-profile-hero::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 410px;
  height: 410px;
  border: 36px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.provider-profile-hero .shell {
  position: relative;
  z-index: 1;
}

.provider-profile-back {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.provider-profile-back:hover,
.provider-profile-back:focus-visible {
  color: var(--lime);
}

.provider-profile-heading {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 54px);
}

.provider-profile-logo-frame {
  width: 205px;
  min-height: 170px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px 14px 42px 14px;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 44px rgba(7, 48, 74, 0.22);
}

.provider-profile-logo-frame img {
  width: 100%;
  max-height: 142px;
  object-fit: contain;
}

.provider-profile-logo-fallback {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--blue-deep);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 900;
}

.provider-profile-heading h1 {
  max-width: 850px;
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(2.55rem, 5.2vw, 4.65rem);
  line-height: 1;
}

.provider-profile-heading > div:last-child > p {
  max-width: 770px;
  margin: 0;
  color: #dcedf5;
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.provider-profile-hero-actions {
  margin-top: 21px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.provider-profile-text-link {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 5px;
}

.provider-profile-text-link:hover,
.provider-profile-text-link:focus-visible {
  color: var(--lime);
}

.provider-profile-body {
  padding: 58px 0 72px;
  background: #f6fafc;
}

.provider-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(280px, 0.78fr);
  align-items: start;
  gap: clamp(28px, 4.5vw, 54px);
}

.provider-profile-main-column {
  display: grid;
  gap: 26px;
}

.provider-profile-section {
  padding: clamp(25px, 3.5vw, 38px);
  border: 1px solid #d5e3e9;
  border-radius: 14px 14px 44px 14px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(18, 61, 87, 0.07);
}

.provider-profile-section h2,
.provider-profile-details-card h2 {
  margin: 8px 0 22px;
  color: var(--blue-deep);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.provider-profile-description {
  color: var(--ink);
  white-space: pre-line;
  font-size: 1.08rem;
  line-height: 1.72;
}

.provider-profile-sidebar {
  position: sticky;
  top: 24px;
}

.provider-profile-details-card {
  padding: 26px;
  border: 1px solid #c7dce6;
  border-radius: 14px 14px 38px 14px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(18, 61, 87, 0.09);
}

.provider-profile-details-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.provider-profile-details-card dl {
  margin: 0;
}

.provider-profile-details-card dl > div {
  padding: 14px 0;
  border-top: 1px solid #dce8ed;
}

.provider-profile-details-card dt {
  margin-bottom: 5px;
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.provider-profile-details-card dd {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.55;
}

.provider-profile-sidebar-actions {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.provider-profile-sidebar-actions .button {
  width: 100%;
  text-align: center;
}

.provider-profile-phone-link {
  padding: 10px 2px;
  color: var(--blue);
  font-size: 1.03rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.provider-profile-phone-link:hover,
.provider-profile-phone-link:focus-visible {
  color: var(--pink-deep);
  text-decoration: underline;
}

.provider-page-gallery {
  outline: none;
}

.provider-page-gallery:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 6px;
}

.provider-page-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 30px 12px;
  background: #dce9ef;
}

.provider-page-gallery-stage > img {
  width: 100%;
  height: clamp(285px, 39vw, 415px);
  display: block;
  object-fit: cover;
}

.provider-page-gallery-stage > img.provider-page-gallery-image-scale-down {
  object-fit: scale-down;
}

.provider-page-gallery-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7, 48, 74, 0.9);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
}

.provider-page-gallery-control {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(7, 48, 74, 0.22);
  transform: translateY(-50%);
}

.provider-page-gallery-control:hover,
.provider-page-gallery-control:focus-visible {
  background: var(--lime);
}

.provider-page-gallery-control.previous {
  left: 16px;
}

.provider-page-gallery-control.next {
  right: 16px;
}

.provider-page-gallery-thumbnails {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.provider-page-gallery-thumbnails button {
  padding: 3px;
  border: 3px solid transparent;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.provider-page-gallery-thumbnails button:hover,
.provider-page-gallery-thumbnails button.active {
  border-color: var(--blue);
}

.provider-page-gallery-thumbnails img {
  width: 100%;
  height: 62px;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.provider-profile-expos > p {
  margin: -10px 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.provider-profile-expo-list {
  display: grid;
  gap: 12px;
}

.provider-profile-expo {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #c7dce6;
  border-radius: 10px;
  background: #f4f9fb;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.provider-profile-expo:hover,
.provider-profile-expo:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(18, 61, 87, 0.12);
  transform: translateY(-2px);
}

.provider-profile-expo-date {
  width: 66px;
  height: 66px;
  border-radius: 8px 8px 20px 8px;
  background: var(--blue);
  display: grid;
  place-content: center;
  color: var(--white);
  text-align: center;
}

.provider-profile-expo-date strong {
  font-size: 1.65rem;
  line-height: 1;
}

.provider-profile-expo-date span {
  margin-top: 3px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.provider-profile-expo > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.provider-profile-expo > span:nth-child(2) > strong {
  color: var(--blue-deep);
  font-size: 1.08rem;
}

.provider-profile-expo small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.provider-profile-expo > b {
  color: var(--blue);
  font-size: 0.9rem;
}

.provider-profile-contact {
  padding: 62px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 239, 75, 0.86) 0 92px, transparent 93px),
    linear-gradient(120deg, var(--blue-deep), #075d91);
}

.provider-profile-contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(30px, 4.5vw, 56px);
}

.provider-profile-contact-intro {
  position: sticky;
  top: 30px;
  padding-top: 20px;
}

.provider-profile-contact-intro h2 {
  margin: 10px 0 17px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.04;
}

.provider-profile-contact-intro p {
  max-width: 480px;
  margin: 0;
  color: #cde0e9;
  font-size: 1.1rem;
  line-height: 1.65;
}

.provider-profile-contact-form {
  padding: clamp(24px, 3.5vw, 34px);
  border-radius: 14px 14px 42px 14px;
  background: var(--white);
  display: grid;
  gap: 22px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
}

.provider-profile-contact-form .directory-contact-choice {
  gap: 10px;
}

.provider-profile-contact-form .button {
  width: max-content;
}

.provider-profile-return {
  padding: 44px 0;
  background: var(--pink);
  color: var(--white);
}

.provider-profile-return .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.provider-profile-return h2 {
  margin: 6px 0 0;
  color: var(--white);
  font-size: clamp(1.85rem, 3.3vw, 2.7rem);
}

@media (max-width: 920px) {
  .provider-profile-heading {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 26px;
  }

  .provider-profile-logo-frame {
    width: 170px;
    min-height: 145px;
  }

  .provider-profile-layout,
  .provider-profile-contact-layout {
    grid-template-columns: 1fr;
  }

  .provider-profile-sidebar,
  .provider-profile-contact-intro {
    position: static;
  }

  .provider-profile-sidebar {
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .provider-profile-hero {
    padding: 20px 0 40px;
  }

  .provider-profile-heading {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .provider-profile-logo-frame {
    width: min(210px, 70vw);
    min-height: 150px;
  }

  .provider-profile-heading h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .provider-profile-body {
    padding: 38px 0 48px;
  }

  .provider-profile-section,
  .provider-profile-details-card {
    padding: 24px 20px;
  }

  .provider-page-gallery-stage > img {
    height: 280px;
  }

  .provider-page-gallery-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .provider-profile-expo {
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 12px;
  }

  .provider-profile-expo-date {
    width: 60px;
    height: 60px;
  }

  .provider-profile-expo > b {
    grid-column: 2;
  }

  .provider-profile-contact {
    padding: 44px 0;
  }

  .provider-profile-contact-form .directory-contact-choice {
    grid-template-columns: 1fr;
  }

  .provider-profile-return .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Exhibitor directory */
.directory-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.directory-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 48, 74, 0.97) 0%, rgba(7, 93, 145, 0.8) 48%, rgba(7, 93, 145, 0.18) 100%),
    url("../images/expo-floor.png") center 42% / cover;
}

.directory-hero-inner {
  position: relative;
  min-height: 420px;
  padding-block: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.directory-hero h1 {
  max-width: 760px;
  margin: 14px 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.94;
}

.directory-hero p {
  max-width: 680px;
  margin: 0;
  color: #d8ebf3;
  font-size: 1.2rem;
  line-height: 1.65;
}

.directory-section {
  padding: 70px 0 90px;
  background: #f5f9fb;
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.directory-search {
  display: grid;
  gap: 9px;
}

.directory-search span {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-search input {
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid #bfd1db;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(18, 61, 87, 0.06);
}

.directory-count {
  min-width: 140px;
  padding-bottom: 3px;
  display: grid;
  color: var(--muted);
  text-align: right;
}

.directory-count strong {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.directory-count span {
  font-size: 0.9rem;
}

.directory-categories {
  margin: 24px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.directory-categories button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #bfd1db;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.directory-categories button:hover,
.directory-categories button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.directory-status {
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

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

.directory-card {
  min-width: 0;
  border: 1px solid #d5e3e9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  display: grid;
  grid-template-rows: 128px 1fr;
  box-shadow: 0 15px 40px rgba(18, 61, 87, 0.06);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.directory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(18, 61, 87, 0.12);
}

.directory-card-visual {
  position: relative;
  padding: 18px;
  border-bottom: 1px solid #e0eaee;
  background: #ffffff;
  display: grid;
  align-items: center;
  justify-items: start;
}

.directory-card-logo {
  max-width: 92%;
  max-height: 78px;
  padding: 2px;
  border: 0;
  border-radius: 3px;
  background: var(--logo-background, #ffffff);
  object-fit: contain;
  justify-self: start;
  box-shadow: none;
}

.directory-logo-fallback {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.directory-card-copy {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.directory-card-copy > span {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.directory-card-copy h2 {
  margin: 7px 0 8px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.directory-card-copy > p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.directory-card-copy > div {
  margin-top: auto;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.directory-card-copy small {
  color: #758791;
  font-size: 0.82rem;
  line-height: 1.45;
}

.directory-card-copy button,
.directory-card-link {
  width: max-content;
  min-height: 44px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
}

.directory-visit {
  padding: 58px 0;
  background: var(--blue-deep);
  color: var(--white);
}

.directory-visit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.directory-visit h2 {
  margin: 8px 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.directory-visit p {
  max-width: 650px;
  margin: 0;
  color: #c7dce6;
}

.directory-dialog {
  width: min(920px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: auto;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.directory-dialog::backdrop {
  background: rgba(10, 35, 50, 0.78);
}

.directory-dialog-close {
  position: sticky;
  z-index: 3;
  top: 14px;
  float: right;
  width: 40px;
  height: 40px;
  margin: 14px 14px -54px 0;
  border: 0;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.directory-dialog header {
  min-height: 190px;
  padding: 45px 68px 35px;
  background: var(--blue-mist);
  display: flex;
  align-items: center;
  gap: 30px;
}

.directory-dialog-logo {
  width: 170px;
  height: 100px;
  padding: 6px;
  border: 1px solid rgba(18, 61, 87, 0.08);
  border-radius: 5px;
  background: var(--logo-background, #ffffff);
  object-fit: contain;
}

.directory-dialog header .directory-logo-fallback {
  flex: 0 0 auto;
}

.directory-dialog h2 {
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.directory-dialog-body {
  padding: 42px 68px 55px;
}

.directory-dialog-description {
  margin: 0;
  color: var(--ink);
  white-space: pre-line;
  font-size: 1.12rem;
  line-height: 1.75;
}

.directory-dialog-areas {
  margin: 28px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--lime);
  background: #f4f8e6;
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.directory-dialog-location {
  margin: 14px 0 0;
  padding: 15px 18px;
  border-left: 4px solid var(--pink);
  background: #fff4f8;
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.directory-dialog-location strong {
  color: var(--blue-deep);
}

.directory-card-location::before {
  margin-right: 5px;
  color: var(--pink-deep);
  content: "Location:";
  font-weight: 850;
}

.directory-dialog-areas strong {
  color: var(--blue-deep);
}

.directory-dialog-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.directory-phone {
  color: var(--blue);
  font-weight: 900;
}

.directory-profile-gallery {
  margin-top: 32px;
  outline: none;
}

.directory-profile-gallery:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 5px;
}

.directory-gallery-stage {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #dce9ef;
}

.directory-gallery-stage > img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

.directory-gallery-count {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(7, 48, 74, 0.88);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.directory-gallery-control {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  box-shadow: 0 8px 25px rgba(7, 48, 74, 0.2);
  transform: translateY(-50%);
}

.directory-gallery-control:hover,
.directory-gallery-control:focus-visible {
  background: var(--lime);
}

.directory-gallery-control.previous {
  left: 16px;
}

.directory-gallery-control.next {
  right: 16px;
}

.directory-gallery-thumbnails {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.directory-gallery-thumbnails button {
  padding: 3px;
  border: 3px solid transparent;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.directory-gallery-thumbnails button:hover,
.directory-gallery-thumbnails button.active {
  border-color: var(--blue);
}

.directory-gallery-thumbnails img {
  width: 100%;
  height: 68px;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.directory-contact-panel {
  margin-top: 38px;
  padding: 30px;
  border: 1px solid #c7dce6;
  border-radius: 12px 12px 34px 12px;
  background: #f4f9fb;
}

.directory-contact-panel h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.directory-contact-panel > p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.directory-contact-form {
  display: grid;
  gap: 22px;
}

.directory-contact-choice {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.directory-contact-choice legend {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 900;
}

.directory-contact-choice label {
  min-height: 78px;
  padding: 14px 16px;
  border: 2px solid #bfd1db;
  border-radius: 9px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.directory-contact-choice label:has(input:checked) {
  border-color: var(--blue);
  background: #eaf5fa;
}

.directory-contact-choice input,
.directory-contact-consent input {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.directory-contact-choice span {
  display: grid;
  gap: 3px;
}

.directory-contact-choice strong {
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.directory-contact-choice small {
  color: var(--muted);
  font-size: 0.9rem;
}

.directory-contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.directory-contact-fields label {
  display: grid;
  gap: 8px;
}

.directory-contact-fields label:first-child,
.directory-contact-fields .directory-contact-message {
  grid-column: 1 / -1;
}

.directory-contact-fields span {
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 850;
}

.directory-contact-fields .required-contact > span::after {
  margin-left: 4px;
  color: var(--pink);
  content: "*";
}

.directory-contact-fields input,
.directory-contact-fields textarea {
  min-height: 54px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid #afc6d2;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.05rem;
}

.directory-contact-fields textarea {
  min-height: 126px;
  padding-block: 13px;
  line-height: 1.55;
  resize: vertical;
}

.directory-contact-fields input:focus,
.directory-contact-fields textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(7, 93, 145, 0.16);
}

.directory-contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.96rem;
  line-height: 1.5;
}

.directory-contact-consent input {
  margin-top: 2px;
}

.directory-contact-form .button {
  min-height: 52px;
  width: max-content;
  font-size: 1rem;
}

.directory-contact-status {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.5;
}

.directory-contact-status:empty {
  display: none;
}

.directory-contact-status[data-type="success"] {
  padding: 14px 16px;
  border-left: 4px solid #6e9d22;
  background: #eff8df;
  color: #35520f;
}

.directory-contact-status[data-type="warning"] {
  padding: 14px 16px;
  border-left: 4px solid #d48b14;
  background: #fff5df;
  color: #6b4308;
}

.directory-contact-status[data-type="error"] {
  color: #a12636;
}

.directory-contact-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  .directory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .directory-hero,
  .directory-hero-inner {
    min-height: 360px;
  }

  .directory-hero-inner {
    padding-block: 60px;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-count {
    text-align: left;
  }

  .directory-visit-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-dialog header {
    padding: 64px 24px 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-dialog-body {
    padding: 30px 24px 38px;
  }

  .directory-gallery-stage > img {
    height: 250px;
  }

  .directory-gallery-thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .directory-contact-panel {
    padding: 24px 18px;
    border-radius: 10px 10px 28px 10px;
  }

  .directory-contact-choice,
  .directory-contact-fields {
    grid-template-columns: 1fr;
  }

  .directory-contact-fields label:first-child,
  .directory-contact-fields .directory-contact-message {
    grid-column: auto;
  }

  .directory-contact-form .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .directory-grid {
    grid-template-columns: 1fr;
  }
}

/* Alternate exhibitor directory based on the Disability Care Expo structure */
.directory-simple-page {
  background: #f5f9fb;
}

.directory-simple-hero {
  padding: 50px 0 42px;
  background:
    radial-gradient(circle at 8% 15%, rgba(220, 232, 174, 0.52), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(239, 178, 206, 0.3), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #eef6fa 100%);
}

.directory-simple-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 44px;
}

.directory-simple-hero-copy h1 {
  margin: 14px 0 16px;
  color: var(--blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.4vw, 4.65rem);
  line-height: 1;
}

.directory-simple-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.directory-simple-hero-photo {
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.directory-simple-hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.directory-simple-section {
  padding: 46px 0 78px;
  background: linear-gradient(180deg, #f9fbfd 0%, #f3f8fb 100%);
}

.directory-simple-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.directory-simple-heading h2 {
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
}

.directory-simple-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}

.directory-simple-filter {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid #d5e2e9;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.directory-simple-filter details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e5edf1;
}

.directory-simple-filter summary {
  margin-bottom: 12px;
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 900;
}

.directory-simple-filter .directory-search {
  gap: 7px;
}

.directory-simple-filter .directory-search span {
  color: var(--blue-deep);
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: none;
}

.directory-simple-filter .directory-search input {
  min-height: 48px;
  padding: 11px 13px;
  border: 1.5px solid #bed0da;
  border-radius: 14px;
  box-shadow: none;
  font-size: 1rem;
}

.directory-simple-check-list {
  display: grid;
  gap: 10px;
}

.directory-simple-check-list-tall {
  max-height: 360px;
  padding-right: 6px;
  overflow: auto;
}

.directory-simple-check-list label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
}

.directory-simple-check-list input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--pink-deep);
}

.directory-simple-clear {
  width: 100%;
  margin-top: 18px;
  border-color: #bfd0da;
  background: var(--blue-pale);
}

.directory-simple-count {
  margin: 10px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.directory-simple-count strong {
  color: var(--blue-deep);
}

.directory-simple-page .directory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.directory-card-simple {
  min-height: 220px;
  grid-template-columns: 140px minmax(0, 1fr);
  grid-template-rows: 1fr;
  border-color: #d5e2e9;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.directory-card-simple:hover,
.directory-card-simple:focus-visible {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.directory-card-simple .directory-card-visual {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid #e1eaee;
  border-bottom: 0;
  background: var(--white);
  place-items: center;
}

.directory-card-simple img.directory-card-logo {
  width: 100%;
  height: 100px;
  max-width: 108px;
  max-height: 100px;
  padding: 8px;
  border: 0;
  border-radius: 5px;
  object-fit: contain;
  object-position: center;
  justify-self: center;
}

.directory-card-simple .directory-logo-fallback {
  width: 78px;
  height: 78px;
  padding: 0;
  background: var(--blue);
  justify-self: center;
}

.directory-card-simple .directory-card-copy {
  min-width: 0;
  padding: 20px;
}

.directory-card-simple .directory-card-copy > span {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue-deep);
  font-size: 0.72rem;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.directory-card-simple .directory-card-copy h2 {
  margin: 10px 0 6px;
  font-size: 1.28rem;
}

.directory-card-simple .directory-card-copy > p {
  font-size: 0.91rem;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}

.directory-card-simple .directory-card-copy > div {
  padding-top: 14px;
  gap: 8px;
}

.directory-card-simple .directory-card-copy small {
  display: none;
}

.directory-card-simple .directory-card-link {
  min-height: auto;
  padding: 0;
  color: var(--pink-deep);
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .directory-simple-hero-grid,
  .directory-simple-layout {
    grid-template-columns: 1fr;
  }

  .directory-simple-filter {
    position: static;
  }

  .directory-simple-page .directory-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .directory-simple-hero {
    padding: 40px 0 34px;
  }

  .directory-simple-hero-grid {
    gap: 28px;
  }

  .directory-simple-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .directory-simple-heading {
    grid-template-columns: 1fr;
  }

  .directory-simple-heading .button {
    width: max-content;
  }

  .directory-card-simple {
    min-height: 200px;
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .directory-card-simple .directory-card-visual {
    padding: 10px;
  }

  .directory-card-simple img.directory-card-logo {
    max-width: 80px;
    height: 82px;
    max-height: 82px;
    padding: 6px;
  }

  .directory-card-simple .directory-card-copy {
    padding: 17px 15px;
  }
}

#reservation-print-sheet {
  display: none;
}

@media print {
  #reservation-print-sheet {
    display: block;
  }
}

.event-day-summary {
  padding: 58px 0 68px;
  border-top: 1px solid #dce8ed;
  background: var(--white);
}

.event-day-summary-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(38px, 7vw, 90px);
}

.event-day-summary-heading h2 {
  max-width: 570px;
  margin: 10px 0 0;
  color: var(--blue-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.event-day-summary-copy > p {
  max-width: 780px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.event-day-highlights {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #dce8ed;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.event-day-highlights span {
  position: relative;
  padding-left: 15px;
  color: var(--blue-deep);
  font-size: 0.93rem;
  font-weight: 850;
}

.event-day-highlights span::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
  transform: translateY(-50%);
}

.event-day-highlights span:nth-child(2)::before {
  background: var(--lime-deep);
}

.event-day-highlights span:nth-child(3)::before {
  background: var(--blue);
}

@media (max-width: 760px) {
  .event-day-summary {
    padding: 44px 0 50px;
  }

  .event-day-summary-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-day-summary-copy > p {
    font-size: 1rem;
  }

  .event-day-highlights {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

.past-exhibitor-registration-page .login-layout {
  width: min(900px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.past-exhibitor-registration-page .login-brand-bar {
  position: relative;
  background: var(--blue);
}

.past-exhibitor-registration-page .login-photo {
  width: min(100%, 740px);
  height: clamp(270px, 29vw, 330px);
  min-height: 0;
  margin: 34px auto 0;
  display: block;
  border: 8px solid var(--white);
  border-radius: 10px 10px 38px 10px;
  box-shadow: 0 18px 45px rgba(7, 48, 74, 0.18);
}

.past-exhibitor-registration-page .login-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
}

.past-exhibitor-registration-page .login-photo-content {
  right: 6%;
  bottom: 24px;
  left: 6%;
}

.past-exhibitor-registration-page .login-photo-content h2 {
  max-width: 650px;
  margin: 8px 0 12px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.past-exhibitor-registration-page .login-photo-content ul {
  gap: 6px 18px;
  font-size: 0.7rem;
}

.past-exhibitor-registration-page .login-form-wrap {
  width: 100%;
  min-height: 0;
  padding: 0 0 55px;
  display: block;
  align-items: flex-start;
  overflow: visible;
}

.past-exhibitor-registration-card {
  width: min(100%, 780px);
  margin: 2rem auto;
}

.past-exhibitor-registration-card .form-grid {
  margin-top: 1.1rem;
}

.past-exhibitor-registration-card textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #bfcfd8;
  border-radius: 5px;
  font: inherit;
  resize: vertical;
}

.past-exhibitor-profile-heading {
  margin: 2rem 0 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d8e5ea;
}

.past-exhibitor-profile-heading h2 {
  margin: 0.35rem 0 0.5rem;
  color: var(--blue-deep);
}

.past-exhibitor-profile-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .past-exhibitor-registration-page .login-layout {
    width: calc(100% - 28px);
  }

  .past-exhibitor-registration-page .login-photo {
    width: 100%;
    height: 235px;
    margin-top: 18px;
    border-width: 5px;
    border-radius: 8px 8px 28px 8px;
  }

  .past-exhibitor-registration-page .login-photo-content {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .past-exhibitor-registration-page .login-photo-content h2 {
    font-size: 1.3rem;
  }

  .past-exhibitor-registration-page .login-photo-content ul {
    gap: 4px 12px;
    font-size: 0.64rem;
  }

  .past-exhibitor-registration-page .login-form-wrap {
    padding-bottom: 32px;
  }

  .past-exhibitor-registration-card {
    margin-top: 22px;
  }
}

.provider-contact-panel {
  margin-top: 22px;
}

.provider-contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1.28fr);
  gap: 26px;
}

.provider-contact-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.provider-contact-identity {
  padding: 17px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 5px;
  background: var(--blue-pale);
  display: grid;
  gap: 4px;
}

.provider-contact-identity span {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provider-contact-identity strong {
  color: var(--blue-deep);
  font-size: 1rem;
}

.provider-contact-identity small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.provider-contact-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7fafb;
  display: grid;
  gap: 14px;
}

.provider-contact-form textarea {
  min-height: 154px;
  resize: vertical;
}

.provider-contact-form .button {
  width: 100%;
}

@media (max-width: 760px) {
  .provider-contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Provider dashboard mobile containment — v124 */
.provider-dashboard-page,
.provider-dashboard-page .dashboard-shell,
.provider-dashboard-page .dashboard-main,
.provider-dashboard-page .dashboard-content {
  max-width: 100%;
}

.provider-dashboard-page .dashboard-main,
.provider-dashboard-page .dashboard-content,
.provider-dashboard-page .dashboard-panel,
.provider-dashboard-page .dashboard-lower-grid,
.provider-dashboard-page .dashboard-lower-grid > *,
.provider-dashboard-page .dashboard-bookings,
.provider-dashboard-page .provider-team-grid,
.provider-dashboard-page .provider-contact-layout {
  min-width: 0;
}

.provider-dashboard-page .dashboard-booking-table-wrap {
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

@media (max-width: 680px) {
  html:has(.provider-dashboard-page),
  body.provider-dashboard-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .provider-dashboard-page .dashboard-shell {
    width: 100%;
    overflow-x: clip;
  }

  .provider-dashboard-page .dashboard-sidebar,
  .provider-dashboard-page .dashboard-header,
  .provider-dashboard-page .dashboard-content {
    box-sizing: border-box;
    max-width: 100vw;
  }

  .provider-dashboard-page .dashboard-content {
    width: 100%;
    padding: 26px 14px 52px;
  }

  .provider-dashboard-page .dashboard-panel {
    width: 100%;
    padding: 21px 16px;
  }

  .provider-dashboard-page .dashboard-panel-heading,
  .provider-dashboard-page .dashboard-welcome,
  .provider-dashboard-page .provider-directory-expiry,
  .provider-dashboard-page .provider-team-member {
    max-width: 100%;
  }

  .provider-dashboard-page input,
  .provider-dashboard-page select,
  .provider-dashboard-page textarea,
  .provider-dashboard-page button,
  .provider-dashboard-page .button {
    max-width: 100%;
  }

  .provider-dashboard-page .dashboard-booking-table {
    min-width: 900px;
  }
}

/* Centre the requested public mobile navigation panels — v137 */
@media (max-width: 980px) {
  body.exhibit-page .sea-unified-header .header-inner,
  body.events-page .sea-unified-header .header-inner,
  body.book-page .sea-unified-header .header-inner {
    position: relative;
  }

  body.exhibit-page .sea-unified-header .sea-unified-mobile-menu,
  body.events-page .sea-unified-header .sea-unified-mobile-menu,
  body.book-page .sea-unified-header .sea-unified-mobile-menu {
    position: static;
  }

  body.exhibit-page .sea-unified-header .sea-unified-mobile-panel,
  body.events-page .sea-unified-header .sea-unified-mobile-panel,
  body.book-page .sea-unified-header .sea-unified-mobile-panel {
    top: 100%;
    right: auto;
    left: 50%;
    width: min(420px, calc(100vw - 32px));
    transform: translateX(-50%);
  }
}

/* Centre the individual provider profile mobile navigation panel — v127 */
@media (max-width: 980px) {
  body.provider-profile-page .sea-unified-header .header-inner {
    position: relative;
  }

  body.provider-profile-page .sea-unified-header .sea-unified-mobile-menu {
    position: static;
  }

  body.provider-profile-page .sea-unified-header .sea-unified-mobile-panel {
    top: 100%;
    right: auto;
    left: 50%;
    width: min(420px, calc(100vw - 32px));
    transform: translateX(-50%);
  }
}

/* Simple, conversion-focused exhibitor booking page — v141 */
.book-page .booking-hero {
  min-height: 0;
  padding: 0;
}

.book-page .booking-hero .unified-hero-grid {
  min-height: 340px;
  padding-block: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(34px, 5vw, 66px);
}

.book-page .booking-hero .unified-hero-copy h1 {
  max-width: 650px;
  margin: 13px 0 16px;
  font-size: clamp(3rem, 4.5vw, 4.15rem);
  letter-spacing: -.035em;
  line-height: .98;
}

.book-page .booking-hero .unified-hero-copy > p {
  max-width: 610px;
  margin: 0;
  font-size: .98rem;
  line-height: 1.65;
}

.book-page .booking-hero .unified-hero-visual {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  border-width: 7px;
  border-radius: 8px 8px 28px 8px;
  box-shadow: 0 18px 44px rgba(6, 36, 56, .28);
  transform: rotate(.45deg);
}

.book-page .booking-hero .unified-hero-visual img {
  height: 230px;
  object-position: center 42%;
}

.book-page .booking-section.section {
  padding: 32px 0 84px;
}

.book-page .booking-information {
  margin-bottom: 18px;
  padding: 24px 26px;
  border-color: #d8e5ea;
  border-radius: 8px 8px 24px 8px;
  grid-template-columns: minmax(0, 1.6fr) minmax(270px, .78fr);
  align-items: center;
  gap: 26px;
  box-shadow: 0 10px 28px rgba(18, 63, 94, .055);
}

.book-page .booking-information h2 {
  margin: 7px 0 9px;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  letter-spacing: -.015em;
}

.book-page .booking-information p {
  max-width: 760px;
  font-size: .8rem;
  line-height: 1.62;
}

.book-page .booking-promotion-callout {
  min-height: 0;
  padding: 19px 21px;
  border: 1px solid #cfdd98;
  border-left: 7px solid var(--lime);
  border-radius: 7px;
  background: #f4f8e7;
  color: var(--blue-deep);
}

.book-page .booking-promotion-callout span {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: .61rem;
}

.book-page .booking-promotion-callout strong {
  font-size: 1.16rem;
  line-height: 1.28;
}

.book-page .booking-promotion-callout small {
  margin-top: 7px;
  color: #5d7280;
  line-height: 1.45;
}

.book-page .booking-form {
  grid-template-columns: minmax(0, 1fr) 310px;
  column-gap: 18px;
  row-gap: 0;
}

.book-page .form-section {
  padding: 28px 30px;
  border-color: #d8e5ea;
  border-bottom: 0;
  border-radius: 0;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 17px;
  box-shadow: none;
}

.book-page .form-section:first-of-type {
  border-radius: 8px 8px 0 0;
}

.book-page .form-section:nth-of-type(3) {
  border-bottom: 1px solid #d8e5ea;
  border-radius: 0 0 26px 8px;
}

.book-page .form-section-number {
  width: 28px;
  height: 28px;
  border-radius: 6px 6px 15px 6px;
  background: var(--pink);
  color: #4d2034;
  font-size: .68rem;
}

.book-page .form-heading {
  margin-bottom: 20px;
}

.book-page .form-heading h2 {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 1.48rem;
  letter-spacing: -.015em;
}

.book-page .form-heading p {
  line-height: 1.55;
}

.book-page .form-grid {
  column-gap: 16px;
  row-gap: 15px;
}

.book-page .field {
  align-content: start;
}

.book-page .field input,
.book-page .field select {
  min-height: 46px;
  border-color: #b9cbd4;
  border-radius: 6px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.book-page .field textarea {
  border-color: #b9cbd4;
  border-radius: 6px;
}

.book-page .field input:focus,
.book-page .field select:focus,
.book-page .field textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(52, 127, 182, .16);
}

.book-page .booking-email-account-note {
  margin: -5px 0 0;
  padding: 8px 11px;
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  background: #eef6fa;
  color: #5d7280;
  font-size: .64rem;
  line-height: 1.45;
}

.book-page .event-selector {
  gap: 8px;
}

.book-page .event-option {
  min-height: 70px;
  padding: 11px 12px;
  background: #fff;
}

.book-page .site-choice-grid {
  gap: 11px;
}

.book-page .site-choice {
  min-height: 112px;
  padding: 17px 19px;
}

.book-page .site-choice strong {
  margin-top: 4px;
  font-size: 1.48rem;
}

.book-page .requirements-row {
  margin-top: 13px;
  gap: 10px;
}

.book-page .toggle-field {
  padding: 13px;
}

.book-page .booking-extra-fields {
  margin-top: 1rem;
}

.book-page .payment-methods {
  margin-top: 19px;
}

.book-page .payment-choice-grid {
  gap: 10px;
}

.book-page .payment-choice {
  min-height: 78px;
  padding: 14px;
}

.book-page .booking-summary {
  top: 18px;
  padding: 25px 23px;
  border-top-width: 7px;
  border-radius: 8px 8px 26px 8px;
  box-shadow: 0 16px 38px rgba(8, 39, 59, .17);
}

.book-page .booking-summary h2 {
  margin: 9px 0 19px;
  font-size: 1.58rem;
}

.book-page .summary-lines {
  padding: 15px 0;
  gap: 9px;
}

.book-page .booking-summary > p {
  margin: 15px 0;
}

@media (max-width: 900px) {
  .book-page .booking-hero .unified-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 370px);
    gap: 30px;
  }

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

  .book-page .booking-summary {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .book-page .booking-hero .unified-hero-grid {
    min-height: 0;
    padding-block: 27px 31px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .book-page .booking-hero .unified-hero-copy h1 {
    margin-block: 10px 13px;
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .book-page .booking-hero .unified-hero-copy > p {
    font-size: .9rem;
    line-height: 1.55;
  }

  .book-page .booking-hero .unified-hero-visual {
    max-width: 500px;
    justify-self: start;
    border-width: 5px;
    transform: none;
  }

  .book-page .booking-hero .unified-hero-visual img {
    height: min(48vw, 205px);
  }

  .book-page .booking-section.section {
    padding: 20px 0 58px;
  }

  .book-page .booking-information {
    margin-bottom: 14px;
    padding: 21px 19px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .book-page .booking-promotion-callout {
    padding: 16px 17px;
  }

  .book-page .form-section {
    padding: 23px 18px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .book-page .form-section-number {
    width: 27px;
    height: 27px;
  }

  .book-page .form-grid,
  .book-page .event-selector,
  .book-page .site-choice-grid,
  .book-page .requirements-row,
  .book-page .payment-choice-grid {
    grid-template-columns: 1fr;
  }

  .book-page .booking-summary {
    padding: 24px 20px;
  }
}
