@font-face {
  font-family: "Brushline";
  src: url("assets/fonts/Brushline.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Heightall";
  src: url("assets/fonts/Heightall.otf") format("opentype");
  font-display: swap;
}

:root {
  --inge: "inge-variable", sans-serif;
  --low: "dunbar-low", sans-serif;
  --tall: "dunbar-tall", sans-serif;
  --text: "dunbar-text", sans-serif;
  --bebas: "bebas-kai", "Bebas Neue", sans-serif;
  --brush: "Brushline", cursive;
  --engle: "Englebert", "Brush Script MT", cursive;
  --height: "Heightall", serif;

  --purple: #70309e;
  --purple2: #7219a8;
  --pink: #df4094;
  --pink2: #df388e;
  --hotpink: #ff62da;
  --magenta: #ff5edf;
  --cream: #fffae7;
  --yellow: #fff15c;

  --maxw: 100%;
  --pad: clamp(16px, 3vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #fff; color: #000; font-family: var(--text); overflow-x: hidden; font-synthesis: none; -webkit-font-synthesis: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* font helpers */
.inge { font-family: var(--inge); font-weight: 400; font-style: normal; }
/* force Inge variable font to its upright (non-slanted) axis */
.inge, .display, .hero__la, .eb-la, .dc-la, .exhibit-brand span, .contact h3, .regrid .cell--cta .r1,
.spk-hero-title, .spk-event .la, .sched-section__title, .life-partners__heading {
  font-variation-settings: "slnt" 0;
  font-style: normal;
}
.low { font-family: var(--low); }
.tall { font-family: var(--tall); }
.text { font-family: var(--text); }
.bebas { font-family: var(--bebas); }
.brush { font-family: var(--brush); }
.engle { font-family: var(--engle); }
.w300 { font-weight: 300; } .w400 { font-weight: 400; }
.w500 { font-weight: 500; } .w600 { font-weight: 600; } .w700 { font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(48px, 7vw, 110px); }
.center { text-align: center; }

/* big display headings (fluid) */
.display {
  font-family: var(--inge);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.02;
  text-align: center;
  word-break: break-word;
}
.display--hot { color: var(--hotpink); }
.display--magenta { color: var(--magenta); }
.display--purple { color: var(--purple); }

/* ===== buttons / links ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 4px solid var(--purple2);
  border-radius: 999px;
  color: var(--purple2);
  font-family: var(--text);
  font-weight: 500;
  padding: 0.5em 1.4em;
  cursor: pointer;
  transition: transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.04); }
.btn--lg { font-size: clamp(20px, 2vw, 30px); border-width: 5px; }
.navlink { cursor: pointer; transition: opacity 0.15s ease; }
.navlink:hover { opacity: 0.6; }

/* ===== header ===== */
.site-header { position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 56px);
  padding-block: 12px;
}
.header-nav { display: flex; align-items: center; justify-content: space-between; color: var(--purple); font-family: var(--low); font-size: clamp(13px, 1.1vw, 18px); white-space: nowrap; }
.header-logo img { height: clamp(84px, 9vw, 129px); width: auto; transition: height 0.3s ease; }
.site-header.scrolled .header-logo img { height: clamp(56px, 6vw, 86px); }
.header-logo { margin-inline: clamp(20px, 3vw, 56px); }

.more-menu { position: relative; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.more-caret { width: 13px; height: 13px; transition: transform 0.2s ease; stroke: currentColor; }
.more-menu:hover .more-caret { transform: rotate(180deg); }
.more-dropdown {
  position: absolute; top: 100%; right: 0; min-width: 180px;
  background: #fff; border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  padding: 20px 22px; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 60;
}
.more-menu:hover .more-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.more-dropdown a { color: #7b1fd0; font-size: 18px; white-space: nowrap; transition: opacity 0.15s; }
.more-dropdown a:hover { opacity: 0.6; }

/* ===== hamburger + mobile menu ===== */
.hamburger { display: none; width: 48px; height: 48px; border: none; border-radius: 50%; background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.18); cursor: pointer; align-items: center; justify-content: center; }
.hamburger svg { width: 24px; height: 24px; stroke: var(--purple); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1150; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 12px; left: 12px; bottom: 12px; width: 80%; max-width: 330px; background: #fff; border-radius: 26px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); z-index: 1200; transform: translateX(calc(-100% - 24px)); transition: transform 0.34s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; padding: 26px 30px; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mobile-menu__head img { width: 64px; }
.mobile-close { border: none; background: none; cursor: pointer; font-size: 30px; color: var(--purple); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu nav a { font-family: var(--low); font-size: 21px; color: var(--purple); }
.mobile-menu nav a.sub { font-size: 18px; color: #7b1fd0; padding-left: 14px; }
.mobile-menu__divider { height: 1px; background: rgba(114,25,168,0.18); margin: 6px 0; }
.mobile-menu__label { font-family: var(--low); font-weight: 500; font-size: 14px; letter-spacing: 0.08em; color: #b06fd6; text-transform: uppercase; }

/* ===== full-height hero with nested frosted event bar ===== */
.hero-wrap { position: relative; }
.hero-banner {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 560px;
  border-radius: clamp(20px, 3vw, 46px);
  overflow: hidden;
}
.hero-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner__overlay { position: absolute; inset: 0; background: #294fa0; mix-blend-mode: lighten; }

.eventbar {
  position: absolute;
  left: clamp(12px, 1.6vw, 26px);
  right: clamp(12px, 1.6vw, 26px);
  bottom: clamp(12px, 1.6vw, 26px);
  z-index: 2;
  background: rgba(255, 255, 255, 0.34);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: clamp(20px, 2.6vw, 38px);
  padding: clamp(16px, 2vw, 26px) clamp(20px, 3vw, 44px);
  display: grid; grid-template-columns: repeat(3, 1fr); align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}
.eb-group { display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(2px, 0.4vw, 6px); }
.eb-date { justify-content: center; }
.eb-wordmark { width: clamp(150px, 16vw, 250px); }
.eb-la { font-family: var(--inge); color: var(--purple2); font-size: clamp(44px, 6.5vw, 96px); line-height: 0.86; }
.eb-summit { width: clamp(150px, 16vw, 230px); margin-top: clamp(-10px, -1.2vw, -4px); margin-bottom: clamp(-8px, -1vw, -3px); }
.eb-peri { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(22px, 2.4vw, 34px); text-align: center; }
.eb-peri .brush { font-family: var(--brush); }
.eb-sub { font-family: var(--low); font-weight: 400; color: var(--pink); font-size: clamp(13px, 1.3vw, 18px); text-align: center; background: linear-gradient(90deg, rgba(97,244,255,0), #f9dcec 50%, rgba(96,228,255,0)); padding: 0 16px; }
.eb-loc { font-family: var(--low); font-weight: 400; color: var(--purple); font-size: clamp(18px, 1.8vw, 26px); }
.eb-seat { font-family: var(--low); font-weight: 500; color: var(--pink); font-size: clamp(12px, 1.1vw, 15px); }
.eb-date { display: flex; align-items: flex-start; gap: 5px; color: var(--purple); font-family: var(--low); }
.eb-date .d-when { font-weight: 400; font-size: clamp(13px, 1.3vw, 17px); text-align: left; line-height: 1.15; padding-top: 2px; }
.eb-date .d-num { font-weight: 500; color: var(--pink2); font-size: clamp(44px, 5vw, 66px); line-height: 0.78; letter-spacing: -0.06em; }
.eb-date .d-yr { display: flex; flex-direction: column; align-items: flex-start; }
.eb-date .d-year { font-weight: 500; font-size: clamp(20px, 2.4vw, 35px); line-height: 0.95; }
.eb-date .d-time { font-weight: 500; color: var(--pink2); font-size: clamp(11px, 1vw, 13px); }
.eb-reg { font-size: clamp(18px, 1.8vw, 28px); border-width: 5px; }
/* register pill below the frosted bar, centered */
.hero-register {
  position: absolute;
  left: 50%;
  bottom: clamp(-30px, -1.8vw, -18px);
  transform: translateX(-50%);
  z-index: 3;
  padding: 0.45em 1.8em;
}
.hero-register:hover { transform: translateX(-50%) scale(1.04); }

/* ===== hero card ===== */
.hero { text-align: center; }
.hero__wordmark { width: min(70%, 420px); margin: 0 auto clamp(-8px, -0.5vw, 0px); }
.hero__la { font-family: var(--inge); color: var(--purple2); font-size: clamp(64px, 14vw, 200px); line-height: 1; }
.card {
  position: relative;
  background: var(--cream); border: 1.3px solid var(--purple2); border-radius: clamp(28px, 4vw, 58px);
  max-width: 460px; margin: clamp(20px, 3vw, 40px) auto 0;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px) clamp(44px, 5vw, 64px);
  display: flex; flex-direction: column; align-items: center; gap: clamp(10px, 1.4vw, 18px);
}
.card__register {
  position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%);
  border-width: 7px; z-index: 2;
}
.card__register:hover { transform: translate(-50%, 50%) scale(1.04); }
.card__register { padding-right: 0.35em; gap: 0.5em; }
.reg-price { display: inline-flex; align-items: center; justify-content: center; flex: none; box-sizing: border-box; width: 2.4em; height: 2.4em; border-radius: 50%; background: var(--yellow); border: 0.16em solid #2e7d6e; color: #2e7d6e; font-weight: 800; font-size: 0.6em; line-height: 1; }
.card__peri { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(28px, 4vw, 42px); }
.card__peri .brush { font-family: var(--brush); }
.card__peri-sub { font-family: var(--low); font-weight: 400; color: var(--pink); font-size: clamp(15px, 1.8vw, 22px); background: linear-gradient(90deg, rgba(97,244,255,0), #f9dcec 50%, rgba(96,228,255,0)); padding: 4px 18px; }
.card__summit { width: min(90%, 360px); margin-block: 6px; }
.card__loc { font-family: var(--low); font-weight: 400; color: var(--purple); font-size: clamp(24px, 3vw, 36px); }
.card__seating { font-family: var(--low); font-weight: 500; color: var(--pink); font-size: clamp(18px, 2.2vw, 29px); }
.card__date { display: flex; align-items: flex-start; justify-content: center; gap: 6px; color: var(--purple); font-family: var(--low); }
.card__date .d-when { font-weight: 400; font-size: clamp(16px, 1.8vw, 21px); text-align: left; line-height: 1.2; padding-top: 4px; }
.card__date .d-num { font-weight: 500; color: var(--pink2); font-size: clamp(64px, 9vw, 101px); line-height: 0.78; letter-spacing: -0.06em; }
.card__date .d-yr { display: flex; flex-direction: column; align-items: flex-start; }
.card__date .d-year { font-weight: 500; font-size: clamp(28px, 4vw, 45px); line-height: 0.95; }
.card__date .d-time { font-weight: 500; color: var(--pink2); font-size: clamp(13px, 1.4vw, 18px); }

/* hero 3-column grid: photos | center content | photos */
.hero-grid { display: grid; grid-template-columns: 0.55fr minmax(380px, 1.35fr) 0.55fr; gap: clamp(20px, 3.5vw, 70px); align-items: start; }
.hero-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__wordmark { margin: 0 auto clamp(-6px, -0.4vw, 0px); }
.hero__la { font-family: var(--inge); color: var(--purple2); font-size: clamp(56px, 9vw, 150px); line-height: 1; }
.hero-tagline { color: #dd4092; font-size: clamp(30px, 3.4vw, 57px); line-height: 1.05; letter-spacing: 0.01em; margin-top: clamp(50px, 6vw, 72px); }
.hero-col { display: flex; flex-direction: column; gap: clamp(30px, 5vw, 80px); }
.hero-col img { width: 100%; height: auto; border: 1px solid #000; border-radius: clamp(18px, 2vw, 30px); animation: floaty 8s ease-in-out infinite; will-change: transform; }
.hero-col img:nth-child(2) { animation-duration: 9.3s; animation-delay: -2s; }
.hero-col img:nth-child(3) { animation-duration: 7.4s; animation-delay: -4s; }
.hero-col img:nth-child(4) { animation-duration: 8.6s; animation-delay: -1s; }
.hero-col--left { margin-top: clamp(0px, 1.5vw, 24px); }
.hero-col--right { margin-top: 0; align-items: flex-end; }
.hero-col--right img:nth-child(2) { width: 58%; align-self: flex-start; } /* podium portrait, small */
.hero-col--right img:nth-child(4) { width: 88%; }                          /* two-women portrait */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-22px) rotate(1.2deg); }
}

/* ===== speakers ticker ===== */
.lead { font-family: var(--low); font-weight: 300; color: var(--purple); font-size: clamp(28px, 4vw, 63px); text-align: center; line-height: 1.05; }
.intro { font-family: var(--text); font-weight: 500; text-align: center; max-width: 720px; margin: clamp(20px,3vw,32px) auto 0; line-height: 1.5; }
.intro--purple { color: var(--purple2); font-size: clamp(18px, 2vw, 26px); }
.intro--pink { color: #ff5acb; font-size: clamp(15px, 1.6vw, 22px); }
.ticker-mask { overflow: hidden; }
.ticker-track { display: flex; gap: 14px; width: max-content; animation: ticker 36s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-track img { flex: none; width: clamp(180px, 20vw, 266px); aspect-ratio: 266 / 322; object-fit: cover; border: 1px solid #000; border-radius: 28px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pill-center { display: flex; justify-content: center; margin-top: clamp(24px, 3vw, 40px); }
.pill { display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 6px solid var(--purple); border-radius: 999px; color: var(--purple); font-family: var(--text); font-weight: 700; letter-spacing: 0.02em; padding: 0.5em 1.6em; font-size: clamp(16px, 1.6vw, 22px); cursor: pointer; transition: transform 0.15s; }
.pill:hover { transform: scale(1.04); }

/* ===== date card row ===== */
.datecards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(14px, 2vw, 28px); }
.datecard { background: var(--cream); border: 1px solid var(--purple2); border-radius: clamp(20px, 2.4vw, 39px); padding: clamp(20px, 2.4vw, 34px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.datecard .dc-summit { width: min(80%, 300px); }
.datecard .dc-peri { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(26px, 3vw, 44px); }
.datecard .dc-peri .brush { font-family: var(--brush); }
.datecard .dc-perisub { font-family: var(--low); color: var(--pink); font-size: clamp(18px, 2vw, 31px); }
.datecard .dc-loc { font-family: var(--low); color: var(--purple); font-size: clamp(22px, 2.4vw, 38px); }
.datecard .dc-la { font-family: var(--inge); color: var(--purple); font-size: clamp(54px, 9vw, 154px); line-height: 0.95; }
.datecard .dc-seat { font-family: var(--low); font-weight: 500; color: var(--pink); font-size: clamp(18px, 1.9vw, 28px); }

/* ===== top attractions ===== */
.attractions { display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(30px, 4vw, 60px); margin-inline: calc(-1 * var(--pad)); border-top: 1px solid #000; border-bottom: 1px solid #000; }
.attr { display: flex; gap: clamp(16px, 2vw, 30px); align-items: flex-start; padding: clamp(22px, 3.2vw, 46px) clamp(16px, 2.6vw, 44px); border-bottom: 1px solid #000; }
.attr:nth-child(odd) { border-right: 1px solid #000; }
.attr img { flex: none; width: clamp(120px, 14vw, 208px); aspect-ratio: 1; object-fit: cover; border: 1px solid #000; border-radius: 28px; }
.attr h3 { font-family: var(--low); font-weight: 400; color: var(--purple); font-size: clamp(22px, 2.4vw, 37px); margin-bottom: 10px; }
.attr p { font-family: var(--text); font-weight: 500; font-size: clamp(14px, 1.1vw, 16px); line-height: 1.31; max-width: clamp(190px, 18vw, 260px); }

/* ===== what to expect ===== */
.expect-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: start; margin-bottom: clamp(30px, 5vw, 70px); }
.expect-list {
  display: flex; flex-direction: column; gap: clamp(28px, 4vw, 56px);
  padding: clamp(30px, 5vw, 70px) 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: clamp(32px, 3.6vw, 48px) clamp(32px, 3.6vw, 48px);
}
.expect-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(16px, 3vw, 50px); }
/* hand-placed horizontal randomness on the wide layout */
@media (min-width: 761px) {
  .expect-row:nth-child(1) { grid-template-columns: 1.4fr auto 0.7fr; transform: translateX(3%); }
  .expect-row:nth-child(2) { grid-template-columns: 0.95fr auto 1.15fr; transform: translateX(-5%); }
  .expect-row:nth-child(3) { grid-template-columns: 1.2fr auto 0.95fr; transform: translateX(4.5%); }
  .expect-row:nth-child(4) { grid-template-columns: 1.05fr auto 1.05fr; transform: translateX(-2.5%); }
}
.expect-q { font-family: var(--low); font-weight: 300; font-size: clamp(26px, 3.4vw, 50px); text-align: right; }
.expect-a { font-family: var(--engle); color: #db4092; font-size: clamp(34px, 4.4vw, 58px); text-align: left; }
.blob { position: relative; width: clamp(150px, 18vw, 230px); aspect-ratio: 1; flex: none; }
.blob img.photo { width: 100%; height: 100%; object-fit: cover; -webkit-mask: var(--m) center/contain no-repeat; mask: var(--m) center/contain no-repeat; }
.blob img.outline { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ===== register today grid ===== */
.regrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 22px); margin-top: clamp(24px, 3vw, 40px); }
.regrid .cell { position: relative; border-radius: clamp(24px, 3vw, 56px); overflow: hidden; aspect-ratio: 444 / 272; }
.regrid .cell img { width: 100%; height: 100%; object-fit: cover; }
.regrid .tag { position: absolute; left: 14px; bottom: 14px; background: var(--magenta); color: var(--yellow); font-family: var(--text); font-size: clamp(13px, 1.3vw, 22px); padding: 4px 14px; border-radius: 999px; }
.regrid .cell--cta { background: var(--hotpink); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; transition: transform 0.15s ease; }
.regrid .cell--cta:hover { transform: scale(1.02); }
.regrid .cell--cta .r1 { font-family: var(--inge); font-weight: 400; font-synthesis: none; color: var(--yellow); font-size: clamp(56px, 13vw, 200px); line-height: 0.92; }
.regrid .cell--cta .r2 { font-family: var(--low); color: var(--yellow); font-size: clamp(32px, 7.5vw, 110px); line-height: 0.9; }

/* ===== exhibit / sponsor ===== */
.exhibit-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(16px, 2.5vw, 44px); }
.exhibit-title { text-align: left; font-size: clamp(54px, 12vw, 150px); flex: 1 1 360px; }
.exhibit-brand { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 22px); flex: 0 1 auto; }
.exhibit-brand img { width: clamp(170px, 22vw, 360px); }
.exhibit-brand span { font-family: var(--inge); font-weight: 400; font-size: clamp(40px, 7vw, 130px); line-height: 1; }
.exhibit { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 60px); align-items: center; margin-top: clamp(20px, 3vw, 40px); }
.exhibit h2 { font-family: var(--tall); font-weight: 300; color: var(--purple); font-size: clamp(36px, 5vw, 77px); line-height: 1.04; margin-bottom: 0.4em; }
.exhibit p { font-family: var(--low); font-size: clamp(16px, 1.5vw, 25px); line-height: 1.31; margin-bottom: 1.4em; }
.exhibit__imgs { position: relative; display: flex; justify-content: center; gap: 16px; }
.exhibit__imgs img { width: 46%; border: 1px solid #000; border-radius: 32px; object-fit: cover; }
.exhibit__imgs img:first-child { transform: rotate(-6deg); }
.exhibit__imgs img:last-child { transform: rotate(2deg); }

/* ===== testimonials carousel ===== */
.tcarousel { overflow: hidden; margin-top: clamp(24px, 3vw, 40px); }
.tcarousel__track { display: flex; gap: clamp(16px, 2vw, 32px); transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.tcard { flex: 0 0 calc((100% - 2 * clamp(16px, 2vw, 32px)) / 3); background: #fff; border: 1px solid #000; border-radius: 26px; padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; }
.tcard .quote { width: 54px; height: auto; aspect-ratio: 56 / 40; object-fit: contain; margin-bottom: 14px; }
.tcard p { font-family: var(--text); font-weight: 500; font-size: clamp(15px, 1.3vw, 24px); line-height: 1.31; }
.tcard .who { display: flex; align-items: center; gap: 18px; margin-top: auto; padding-top: 24px; }
.tcard .who img { width: clamp(90px, 12vw, 184px); aspect-ratio: 1; object-fit: cover; border-radius: 28px; }
.tcard .who span { font-family: var(--text); font-weight: 700; color: var(--pink2); font-size: clamp(18px, 1.6vw, 24px); line-height: 1.2; }

/* ===== contact ===== */
.contact { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(24px, 3vw, 44px); margin-inline: calc(-1 * var(--pad)); border-top: 1px solid #000; border-bottom: 1px solid #000; }
.contact > div { padding: clamp(28px, 4.5vw, 70px) clamp(20px, 3vw, 50px); }
.contact > div:not(:last-child) { border-right: 1px solid #000; }
.contact h3 { font-family: var(--inge); font-weight: 400; font-synthesis: none; font-size: clamp(40px, 6vw, 117px); line-height: 1; margin-bottom: clamp(20px, 3vw, 50px); }
.contact p { font-family: var(--text); font-weight: 500; font-size: clamp(18px, 1.5vw, 28px); line-height: 1.31; }
.contact a { text-decoration: underline; }

/* ===== newsletter / footer top ===== */
.footer-top { display: grid; grid-template-columns: 1.7fr 0.55fr; gap: clamp(30px, 5vw, 90px); align-items: start; }
.footer-subscribe h2 { font-family: var(--tall); font-size: clamp(38px, 6vw, 90px); line-height: 1; text-align: left; }
.subscribe-bar { display: flex; align-items: stretch; background: #000; margin-top: clamp(14px, 2vw, 24px); }
.subscribe-bar input { flex: 1; min-width: 0; background: #000; color: #fff; border: none; padding: clamp(16px, 2vw, 28px) clamp(18px, 2.2vw, 32px); font-family: var(--text); font-size: clamp(16px, 1.5vw, 26px); }
.subscribe-bar input::placeholder { color: #fff; }
.subscribe-bar button { background: #000; color: #fff; border: none; font-family: var(--inge); font-size: clamp(26px, 3vw, 48px); line-height: 1; padding: 0 clamp(18px, 2.2vw, 40px); cursor: pointer; }
.footer-privacy { display: block; text-align: right; margin-top: 10px; color: #000; font-size: clamp(12px, 1vw, 15px); }
.footer-cta { display: flex; flex-direction: column; align-items: center; gap: clamp(12px, 1.8vw, 22px); }
.footer-summit { width: clamp(150px, 17vw, 220px); }

/* ===== footer ===== */
.footer { padding-block: clamp(40px, 5vw, 70px); border-top: 1px solid rgba(0,0,0,0.12); }
.footer__cols { display: grid; grid-template-columns: repeat(5, auto); gap: clamp(24px, 3vw, 60px); justify-content: space-between; }
.footer__cols .col { display: flex; flex-direction: column; gap: 14px; font-family: var(--low); font-size: clamp(15px, 1.2vw, 20px); }
.footer__cols .col a:hover { opacity: 0.6; }
.social-link { display: flex; align-items: center; gap: 10px; }
.social-link svg { flex: none; width: 20px; height: 20px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: clamp(30px, 4vw, 50px); font-family: var(--low); font-size: clamp(14px, 1.1vw, 20px); }
.footer__legal { display: flex; gap: 30px; }

/* ===== lifestyle series page ===== */
.life-intro { text-align: center; margin-top: clamp(8px, 1.5vw, 18px); }
.life-intro__sub { font-family: var(--low); font-weight: 300; color: var(--pink); font-size: clamp(20px, 2.6vw, 38px); line-height: 1.1; }
.life-intro__title { font-family: var(--tall); font-weight: 300; color: var(--purple); font-size: clamp(32px, 5vw, 72px); line-height: 1.05; margin-top: 0.25em; }
/* speaker / talk list — speaker card (left) + talk content (right) */
.life-list { max-width: 1180px; margin: clamp(30px, 4vw, 56px) auto 0; display: flex; flex-direction: column; gap: clamp(40px, 5vw, 80px); }
.life-row { display: grid; grid-template-columns: clamp(240px, 30%, 320px) 1fr; gap: clamp(28px, 4vw, 70px); align-items: start; background: #f1e8d6; border: 1px solid rgba(112, 48, 158, 0.06); border-radius: clamp(26px, 3vw, 44px); box-shadow: 0 26px 54px rgba(223, 64, 148, 0.07); padding: clamp(26px, 3.4vw, 56px); }

/* the speaker card */
.life-spk { background: #fff; border: 1px solid rgba(112, 48, 158, 0.14); border-radius: clamp(22px, 2vw, 30px); box-shadow: 0 18px 44px rgba(112, 48, 158, 0.08); padding: clamp(16px, 1.5vw, 22px); }
.life-spk__photo { border-radius: clamp(14px, 1.4vw, 20px); overflow: hidden; aspect-ratio: 0.86; }
.life-spk__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.life-spk__name { font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(24px, 2.2vw, 34px); line-height: 1.08; margin: clamp(16px, 1.6vw, 24px) 4px clamp(12px, 1.2vw, 18px); }
.life-spk__divider { border: none; border-top: 1px solid rgba(112, 48, 158, 0.22); margin: 0 4px clamp(14px, 1.4vw, 20px); }
.life-spk__role { font-family: var(--low); font-weight: 400; color: var(--pink); font-size: clamp(14px, 1.15vw, 18px); margin: 0 4px clamp(6px, 0.8vw, 12px); line-height: 1.3; }

/* the talk content */
.life-talk { padding-top: clamp(4px, 1vw, 14px); }
.life-talk__title { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(28px, 3.2vw, 48px); line-height: 1.12; }
.life-talk__meta { font-family: var(--low); font-weight: 500; color: #1cb8c8; font-size: clamp(14px, 1.2vw, 17px); letter-spacing: 0.02em; margin-top: clamp(8px, 1vw, 14px); }
.life-talk__desc { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.6; margin-top: clamp(14px, 1.6vw, 22px); }
.life-talk__sub { font-family: var(--low); font-weight: 600; color: #3a3a3a; font-size: clamp(16px, 1.4vw, 21px); margin-top: clamp(18px, 2vw, 28px); }
.life-talk ul, .life-talk ol { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.55; margin: clamp(8px, 1vw, 14px) 0 0; padding-left: 1.5em; }
.life-talk li { margin-bottom: 6px; }
.life-talk ul { list-style: disc; }
.life-talk ul ul { list-style: circle; margin-top: 8px; }
.life-talk ol { list-style: decimal; }
.life-talk__footer { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); margin-top: clamp(20px, 2.4vw, 32px); flex-wrap: wrap; }
.life-mins { height: clamp(46px, 4.4vw, 64px); width: auto; display: block; }
.life-talk__btn { display: inline-block; background: var(--hotpink); color: #fff; font-family: var(--low); font-weight: 500; font-size: clamp(15px, 1.2vw, 18px); letter-spacing: 0.02em; padding: 11px 28px; border-radius: 999px; text-decoration: none; transition: transform 0.18s ease, filter 0.18s ease; }
.life-talk__btn:hover { transform: scale(1.05); filter: brightness(1.05); }
@media (max-width: 760px) {
  .life-row { grid-template-columns: 1fr; gap: clamp(18px, 4vw, 28px); }
  .life-spk { max-width: 340px; }
}

/* lifestyle partner logos */
.life-partners-sec { padding-top: clamp(40px, 6vw, 90px); }
.life-partners__heading { font-family: var(--low); font-weight: 600; color: var(--purple); text-align: center; font-size: clamp(40px, 6vw, 80px); line-height: 1; margin-bottom: clamp(28px, 4vw, 56px); }
.life-partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.6vw, 24px); max-width: 1280px; margin: 0 auto; }
.life-partner { display: flex; flex-direction: column; align-items: center; text-decoration: none; }
.life-partner__logo { width: 100%; aspect-ratio: 0.82; background: #fff; border-radius: clamp(14px, 1.4vw, 20px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; padding: clamp(18px, 2vw, 30px); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.life-partner:hover .life-partner__logo { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.life-partner__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.life-partner__url { font-family: var(--low); font-weight: 400; color: #2d6fd6; font-size: clamp(11px, 0.95vw, 14px); margin-top: clamp(12px, 1.5vw, 20px); text-align: center; word-break: break-word; }
@media (max-width: 900px) { .life-partners { grid-template-columns: repeat(3, 1fr); row-gap: clamp(24px, 4vw, 40px); } }
@media (max-width: 520px) { .life-partners { grid-template-columns: repeat(2, 1fr); } }

/* ===== schedule page ===== */
.schedule { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 56px); margin: clamp(20px, 3vw, 40px) auto 0; max-width: 1200px; }
.sched-section { background: #fff8ec; border: 1px solid rgba(114, 25, 168, 0.12); border-radius: clamp(22px, 2.6vw, 36px); padding: clamp(20px, 2.6vw, 40px) clamp(18px, 2.4vw, 36px); }
.sched-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: clamp(16px, 2vw, 26px); }
.sched-section__title { font-family: var(--low); font-weight: 600; color: var(--hotpink); font-size: clamp(34px, 4.5vw, 64px); line-height: 1; }
.sched-section__range { font-family: var(--text); font-weight: 700; color: var(--purple); font-size: clamp(16px, 1.4vw, 22px); white-space: nowrap; }
.sched-items { display: flex; flex-direction: column; gap: clamp(8px, 1vw, 14px); }
.sched-item { background: #fff; border: 1px solid rgba(114, 25, 168, 0.15); border-radius: 12px; overflow: hidden; }
.sched-item__head { width: 100%; font: inherit; text-align: left; background: none; border: none; cursor: pointer; display: grid; grid-template-columns: clamp(120px, 18%, 200px) 1fr 32px; align-items: center; gap: clamp(10px, 2vw, 24px); padding: clamp(14px, 1.6vw, 22px) clamp(16px, 2vw, 28px); transition: background 0.15s ease; }
.sched-item__head:hover { background: rgba(114, 25, 168, 0.04); }
.sched-item__time { font-family: var(--low); font-weight: 400; color: #1cb8c8; font-size: clamp(14px, 1.3vw, 19px); white-space: nowrap; }
.sched-item__title { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(15px, 1.3vw, 19px); line-height: 1.25; }
.sched-item__icon { width: 22px; height: 22px; position: relative; justify-self: end; }
.sched-item__icon::before, .sched-item__icon::after { content: ''; position: absolute; background: var(--purple); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.sched-item__icon::before { top: 50%; left: 0; right: 0; height: 2px; margin-top: -1px; }
.sched-item__icon::after { left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px; }
.sched-item.open .sched-item__icon::after { transform: scaleY(0); opacity: 0; }
/* animated reveal via grid-template-rows */
.sched-item__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.sched-item.open .sched-item__body { grid-template-rows: 1fr; }
.sched-item__body-inner { overflow: hidden; min-height: 0; padding: 0 clamp(16px, 2vw, 28px); }
.sched-item.open .sched-item__body-inner { padding-top: clamp(10px, 1.4vw, 18px); padding-bottom: clamp(16px, 2vw, 22px); }
.sched-item__body-inner p { font-family: var(--low); font-weight: 300; color: #333; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; margin-bottom: 0.8em; }
.sched-item__body-inner > :last-child { margin-bottom: 0; }
.sched-item__body-inner .sched-sub { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(15px, 1.3vw, 19px); margin: 0.2em 0 0.6em; }
.sched-item__body-inner ul, .sched-item__body-inner ol { margin: 0 0 0.8em 1.5em; }
.sched-item__body-inner ul { list-style: disc; }
.sched-item__body-inner ol { list-style: decimal; }
.sched-item__body-inner li { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(14px, 1.1vw, 17px); line-height: 1.5; margin-bottom: 0.5em; padding-left: 0.3em; }
.sched-item__body-inner ol li { margin-bottom: 0.85em; }
.sched-item__body-inner strong, .sched-item__body-inner b { font-family: var(--low); font-weight: 700; color: #c41e92; }
.sched-item__body-inner a { color: #7b1fd0; }
/* two-column presenter layout (Presenter/Speaker | description) */
.sched-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 56px); align-items: start; }
.sched-col--full { grid-column: 1 / -1; }
.sched-label { font-family: var(--low); font-weight: 300; color: var(--purple); font-size: clamp(28px, 3vw, 46px); line-height: 1; margin: 0; }
.sched-divider { border: none; border-top: 1px solid rgba(0,0,0,0.18); width: 82%; margin: clamp(10px,1.4vw,18px) 0 clamp(14px,1.8vw,26px); }
.sched-item__body-inner p.sched-name { font-family: var(--low); font-weight: 700; color: #c41e92; font-size: clamp(20px, 1.7vw, 25px); line-height: 1.2; margin-bottom: 0.1em; }
.sched-item__body-inner p.sched-role { font-family: var(--low); font-weight: 300; color: #5b2a86; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.3; margin-bottom: 0.1em; }
.sched-soln { font-family: var(--low); font-weight: 300; color: #333; font-size: clamp(14px, 1.1vw, 17px); }
@media (max-width: 640px) { .sched-cols { grid-template-columns: 1fr; gap: 14px; } }

@media (max-width: 600px) {
  .sched-item__head { grid-template-columns: 1fr 26px; row-gap: 4px; }
  .sched-item__time { grid-column: 1 / -1; font-size: 14px; }
  .sched-item__title { grid-column: 1; }
  .sched-item__icon { grid-column: 2; grid-row: 1 / 3; align-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  .sched-item__body { transition: none; }
}

/* ===== speakers page ===== */
.speakers-hero { padding-block: clamp(28px, 4vw, 56px); }
.spk-hero-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(16px, 3vw, 48px); max-width: 1440px; margin-inline: auto; }
.spk-hero-title { font-family: var(--inge); font-weight: 400; color: var(--hotpink); font-size: clamp(70px, 15vw, 244px); line-height: 1; text-align: center; }
.spk-lockup { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.spk-lockup .peri { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(22px, 2vw, 30px); }
.spk-lockup .peri .brush { font-family: var(--brush); }
.spk-lockup .perisub { font-family: var(--low); font-weight: 400; color: var(--pink); font-size: clamp(13px, 1.3vw, 18px); background: linear-gradient(90deg, rgba(97,244,255,0), #f9dcec 50%, rgba(96,228,255,0)); padding: 2px 18px; }
.spk-lockup .summit { width: clamp(150px, 15vw, 200px); margin: 2px 0; }
.spk-event { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.spk-event .la { font-family: var(--inge); font-weight: 400; color: var(--purple); font-size: clamp(40px, 6vw, 89px); line-height: 1; }
.spk-event .loc { font-family: var(--low); font-weight: 400; color: var(--purple); font-size: clamp(14px, 1.4vw, 18px); }
.spk-event .seat { font-family: var(--low); font-weight: 500; color: #7219a8; font-size: clamp(10px, 1vw, 12px); }
.spk-event .spk-date { display: flex; align-items: flex-start; justify-content: center; gap: 4px; color: var(--purple); font-family: var(--low); margin-top: 2px; }
.spk-date .w { font-weight: 400; font-size: clamp(10px, 0.9vw, 11px); text-align: left; line-height: 1.15; padding-top: 2px; }
.spk-date .num { font-weight: 500; color: var(--pink2); font-size: clamp(34px, 4vw, 51px); line-height: 0.78; letter-spacing: -0.06em; }
.spk-date .yrcol { display: flex; flex-direction: column; align-items: flex-start; }
.spk-date .yr { font-weight: 300; font-size: clamp(16px, 2vw, 28px); line-height: 0.95; }
.spk-date .t { font-weight: 500; font-size: clamp(9px, 0.8vw, 10px); color: var(--pink2); }

.speakers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.2vw, 36px); margin: clamp(20px, 3vw, 40px) auto 0; max-width: 1440px; }
.spk-card { display: grid; grid-template-columns: 42% 58%; background: #fff0e6; border-radius: clamp(24px, 2.6vw, 41px); overflow: hidden; }
.spk-photo { position: relative; min-height: 100%; }
.spk-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spk-info { padding: clamp(16px, 1.6vw, 26px) clamp(16px, 1.6vw, 24px) clamp(14px, 1.4vw, 22px); display: flex; flex-direction: column; min-height: clamp(280px, 26vw, 342px); }
.spk-name { font-family: var(--low); font-weight: 400; color: #066858; font-size: clamp(22px, 2.3vw, 37px); line-height: 1.12; }
.spk-name .cred { display: block; font-size: 0.62em; line-height: 1.2; margin-top: 0.4em; }
.spk-role { font-family: var(--text); font-weight: 600; color: var(--pink); font-size: clamp(11.5px, 1vw, 13px); line-height: 1.31; margin-top: clamp(8px, 0.9vw, 14px); }
.spk-bio { font-family: var(--text); font-weight: 500; color: #444; font-size: 11px; line-height: 1.45; margin-top: clamp(12px, 1.4vw, 20px); }
.spk-fullbio { margin-top: auto; align-self: flex-end; display: inline-flex; align-items: center; gap: 8px; border: 3px solid #066858; color: #066858; background: transparent; border-radius: 12px; font-family: var(--text); font-weight: 700; font-size: 11px; letter-spacing: 0.02em; padding: 8px 14px; cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
.spk-fullbio:hover { background: #066858; color: #fff; }
.spk-fullbio .ico { width: 12px; height: 12px; background: currentColor; -webkit-mask: url(assets/svg/expand.svg) center/contain no-repeat; mask: url(assets/svg/expand.svg) center/contain no-repeat; }

/* full-bio modal */
.bio-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: clamp(12px, 3vw, 32px); }
.bio-modal.open { display: flex; }
.bio-modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.45); }
.bio-modal__box { position: relative; width: 100%; max-width: 860px; max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch; background: #f8d6e8; border-radius: clamp(20px, 2.6vw, 32px); padding: clamp(28px, 4vw, 56px); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3); }
.bio-modal__close { position: absolute; top: clamp(16px, 2vw, 26px); right: clamp(16px, 2vw, 26px); background: none; border: none; color: #066858; font-size: 30px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.bio-modal__name { font-family: var(--low); font-weight: 400; color: #066858; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; padding-right: 40px; }
.bio-modal__role { font-family: var(--low); font-weight: 500; color: #066858; font-size: clamp(17px, 1.9vw, 24px); margin-top: 0.5em; }
.bio-modal__body { font-family: var(--text); font-weight: 500; color: #000; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.5; margin-top: clamp(18px, 2.4vw, 30px); }
.bio-modal__body p { margin-bottom: 1em; }
.bio-modal__body a { color: #7b1fd0; word-break: break-word; text-decoration: none; }
.bio-modal__body a:hover { text-decoration: underline; }
body.modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .spk-hero-grid { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 36px); }
  .spk-hero-title { order: -1; font-size: clamp(96px, 30vw, 200px); }
  .speakers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .spk-name { font-size: clamp(20px, 6vw, 30px); }
  .spk-info { min-height: 0; padding: 14px 14px 14px; }
  .spk-bio { font-size: 10.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery img, .ticker-track { animation: none; }
  .tcarousel__track { transition: none; }
}

/* ===== breakpoints ===== */
@media (max-width: 1024px) {
  .contact { grid-template-columns: 1fr; }
  .contact > div:not(:last-child) { border-right: none; border-bottom: 1px solid #000; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 36px); }
  .hero-center { order: -1; }
  .hero-col { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: clamp(12px, 3vw, 22px); margin-top: 0 !important; }
  .hero-col img,
  .hero-col--left img:nth-child(2),
  .hero-col--right img:nth-child(2),
  .hero-col--right img:nth-child(4) {
    width: calc(50% - clamp(12px, 3vw, 22px)) !important;
    align-self: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
}
@media (max-width: 860px) {
  .header-nav { display: none; }
  .hamburger { display: inline-flex; }
  .header-inner { display: flex; justify-content: center; position: relative; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .datecards { grid-template-columns: 1fr; }
  .regrid { grid-template-columns: 1fr 1fr; }
  .exhibit { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: clamp(24px, 5vw, 40px); }
  .footer-cta { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .expect-head { grid-template-columns: 1fr; gap: 16px; }
  .expect-row { grid-template-columns: 1fr; justify-items: center; gap: 12px; }
  .expect-q, .expect-a { text-align: center; }
  .expect-row .blob { order: -1; }
  .tcard { flex-basis: calc((100% - clamp(16px,2vw,32px)) / 2); }
}
@media (max-width: 980px) {
  /* the hero card below repeats this info — hide the overlay bar on small screens */
  .hero-banner { height: clamp(360px, 52vh, 620px); min-height: 320px; }
  .eventbar, .hero-register { display: none; }
}
@media (max-width: 560px) {
  /* scale up the hero-center block on phones */
  .hero__la { font-size: clamp(132px, 34vw, 180px); }
  .card { padding: clamp(30px, 7vw, 44px) clamp(18px, 4vw, 30px) clamp(44px, 9vw, 60px); }
  .card__peri { font-size: clamp(34px, 8.5vw, 46px); }
  .card__peri-sub { font-size: clamp(17px, 4.4vw, 23px); }
  .card__summit { width: min(94%, 320px); }
  .card__loc { font-size: clamp(28px, 7.2vw, 40px); }
  .card__seating { font-size: clamp(21px, 5.4vw, 28px); }
  .card__date .d-num { font-size: clamp(78px, 21vw, 108px); }
  .card__date .d-when { font-size: clamp(17px, 4.4vw, 23px); }
  .card__date .d-year { font-size: clamp(30px, 7.6vw, 40px); }
  .card__date .d-time { font-size: clamp(14px, 3.6vw, 19px); }
  .hero-tagline { font-size: clamp(30px, 8vw, 44px); margin-top: clamp(64px, 15vw, 96px); }

  .attractions { grid-template-columns: 1fr; }
  .attr { flex-direction: column; align-items: center; text-align: center; }
  .attr:nth-child(odd) { border-right: none; }
  .attr p { max-width: none; }
  .regrid { grid-template-columns: 1fr; }
  .tcard { flex-basis: 100%; }
  .footer__cols { grid-template-columns: 1fr; }
  .eventbar { flex-direction: column; }
}

/* ===================== generic content pages ===================== */
.cpage { max-width: 1100px; margin: 0 auto; }
.cpage--wide { max-width: 1280px; }
.cpage__vibe { font-family: var(--brush); color: var(--pink); text-align: center; font-size: clamp(30px, 4.5vw, 64px); line-height: 1; margin: 0 0 clamp(10px, 1.5vw, 18px); }
.cpage__quote { max-width: 760px; margin: clamp(8px,1.5vw,18px) auto clamp(24px,3vw,40px); text-align: center; }
.cpage__quote p { font-family: var(--low); font-weight: 300; font-style: italic; color: #6a4b86; font-size: clamp(16px, 1.5vw, 22px); line-height: 1.5; }
.cpage__quote cite { display: block; font-style: normal; font-weight: 600; color: var(--pink); margin-top: 10px; font-family: var(--low); font-size: clamp(14px,1.1vw,17px); }
.cpage__lead { font-family: var(--low); font-weight: 300; color: #4a4a4a; font-size: clamp(18px, 1.9vw, 27px); line-height: 1.45; text-align: center; max-width: 920px; margin: 0 auto clamp(24px,3.5vw,48px); }
.csection__title { font-family: var(--low); font-weight: 300; color: var(--pink); font-size: clamp(28px, 3.4vw, 50px); line-height: 1.05; text-align: center; margin: clamp(36px,5vw,72px) 0 clamp(20px,3vw,38px); }
.csection__title--purple { color: var(--purple); }
.csection__title--tall { font-family: var(--tall); font-weight: 300; }

/* about / founder */
.about-founder { display: grid; grid-template-columns: clamp(220px, 30%, 320px) 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; max-width: 1000px; margin: clamp(30px,4vw,56px) auto 0; }
.about-founder__photo { border-radius: clamp(18px,2vw,28px); overflow: hidden; box-shadow: 0 20px 50px rgba(112,48,158,0.12); }
.about-founder__photo img { width: 100%; display: block; }
.about-founder__name { font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(24px,2.2vw,34px); }
.about-founder p { font-family: var(--low); font-weight: 300; color: #4a4a4a; font-size: clamp(16px,1.3vw,19px); line-height: 1.6; margin-top: 12px; }

/* awards honoree cards — badge | text | photo */
.award-card { display: grid; grid-template-columns: clamp(150px,19%,230px) 1fr clamp(280px,33%,430px); align-items: stretch; background: #f6f0e2; border: 1px solid rgba(112,48,158,0.08); border-radius: clamp(20px,2.4vw,34px); overflow: hidden; margin-bottom: clamp(24px,3vw,44px); box-shadow: 0 22px 50px rgba(112,48,158,0.06); }
.award-card__badge { display: flex; align-items: center; justify-content: center; padding: clamp(22px,2.6vw,42px) clamp(12px,1.4vw,20px); }
.award-card__badge img { width: 100%; max-width: 220px; height: auto; display: block; }
.award-card__body { padding: clamp(26px,3.2vw,54px) clamp(8px,1.4vw,22px); display: flex; flex-direction: column; justify-content: center; }
.award-card__name { font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(26px,2.8vw,42px); line-height: 1.05; }
.award-card__role { font-family: var(--low); font-weight: 600; color: var(--pink); font-size: clamp(15px,1.3vw,19px); margin-top: 8px; line-height: 1.25; }
.award-card__bio { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(14px,1.15vw,17px); line-height: 1.6; margin-top: 16px; }
.award-card__link { display: inline-block; margin-top: 16px; font-family: var(--low); font-weight: 500; color: #2d6fd6; text-decoration: none; font-size: clamp(14px,1.1vw,16px); word-break: break-word; }
.award-card__link:hover { text-decoration: underline; }
.award-card__photo { align-self: stretch; }
.award-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .award-card { grid-template-columns: clamp(130px,28%,200px) 1fr; }
  .award-card__photo { grid-column: 1 / -1; max-height: 380px; }
}
@media (max-width: 560px) {
  .award-card { grid-template-columns: 1fr; }
  .award-card__badge img { max-width: 180px; }
}
@media (max-width: 720px) { .award-card { grid-template-columns: 1fr; } .award-card__photo { max-width: 280px; } }

/* sponsor cards */
.sponsor-list { display: flex; flex-direction: column; gap: clamp(22px,3vw,38px); max-width: 1000px; margin: clamp(20px,3vw,40px) auto 0; }
.sponsor-card { display: grid; grid-template-columns: clamp(180px,24%,240px) 1fr; gap: clamp(24px,3.5vw,52px); align-items: center; background: #fff; border: 1px solid rgba(112,48,158,0.1); border-radius: clamp(20px,2vw,28px); padding: clamp(22px,2.6vw,40px); box-shadow: 0 14px 38px rgba(112,48,158,0.06); }
.sponsor-card__logo { display: flex; align-items: center; justify-content: center; }
.sponsor-card__logo img { max-width: 100%; max-height: clamp(70px,8vw,120px); object-fit: contain; }
.sponsor-card__name { font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(20px,1.8vw,28px); }
.sponsor-card__desc { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(14px,1.1vw,17px); line-height: 1.6; margin-top: 8px; }
.sponsor-card__link { display:inline-block; margin-top:10px; font-family: var(--low); font-weight:600; color:#2d6fd6; text-decoration:none; font-size: clamp(13px,1vw,15px); }
.sponsor-card__link:hover { text-decoration: underline; }
@media (max-width: 640px) { .sponsor-card { grid-template-columns: 1fr; text-align: center; } .sponsor-card__logo img { margin: 0 auto; } }

/* press list */
.press-list { max-width: 920px; margin: clamp(20px,3vw,40px) auto 0; display: flex; flex-direction: column; gap: clamp(14px,1.6vw,22px); }
.press-item { display: flex; justify-content: space-between; align-items: center; gap: 20px; background: #fff8ec; border: 1px solid rgba(112,48,158,0.1); border-radius: clamp(16px,1.6vw,22px); padding: clamp(18px,2.2vw,30px) clamp(20px,2.6vw,36px); }
.press-item__main { flex: 1; }
.press-item__title { font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(16px,1.45vw,22px); line-height: 1.25; }
.press-item__date { font-family: var(--low); font-weight: 400; color: var(--pink); font-size: clamp(12px,1vw,14px); margin-top: 6px; }
.press-item__read { flex: none; background: var(--hotpink); color: #fff; font-family: var(--low); font-weight: 500; text-decoration: none; padding: 9px 22px; border-radius: 999px; font-size: clamp(13px,1.05vw,15px); transition: transform .18s ease, filter .18s ease; }
.press-item__read:hover { transform: scale(1.05); filter: brightness(1.05); }
@media (max-width: 600px) { .press-item { flex-direction: column; align-items: flex-start; } }

/* tickets features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,28px); max-width: 1100px; margin: clamp(24px,3vw,44px) auto 0; }
.feature { background: #fff8ec; border: 1px solid rgba(112,48,158,0.1); border-radius: clamp(18px,1.8vw,26px); padding: clamp(22px,2.6vw,36px); }
.feature__title { font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(18px,1.6vw,24px); line-height: 1.15; }
.feature__desc { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(14px,1.1vw,17px); line-height: 1.55; margin-top: 10px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.learn-list { list-style: none; padding: 0; max-width: 820px; margin: clamp(20px,3vw,40px) auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px,1.4vw,18px); }
.learn-list li { font-family: var(--low); font-weight: 400; color: #4a4a4a; font-size: clamp(15px,1.25vw,19px); background: #fff; border: 1px solid rgba(112,48,158,0.1); border-radius: 14px; padding: 14px 20px; padding-left: 46px; position: relative; }
.learn-list li::before { content: "✓"; position: absolute; left: 18px; color: var(--pink); font-weight: 700; }
@media (max-width: 600px) { .learn-list { grid-template-columns: 1fr; } }

/* resources directory */
.dir { columns: 3; column-gap: clamp(24px,3vw,44px); max-width: 1180px; margin: clamp(24px,3vw,44px) auto 0; }
.dir-group { break-inside: avoid; margin-bottom: clamp(24px,3vw,38px); }
.dir-group__title { font-family: var(--low); font-weight: 600; color: var(--pink); font-size: clamp(17px,1.5vw,22px); margin-bottom: 10px; }
.dir-group ul { list-style: none; padding: 0; margin: 0; }
.dir-group li { margin-bottom: 7px; }
.dir-group a { font-family: var(--low); font-weight: 300; color: #4a4a4a; text-decoration: none; font-size: clamp(14px,1.1vw,16px); line-height: 1.4; }
.dir-group a:hover { color: #2d6fd6; text-decoration: underline; }
@media (max-width: 900px) { .dir { columns: 2; } }
@media (max-width: 600px) { .dir { columns: 1; } }

/* showcase entries — two images side by side, text below */
.show-entry { background: #FFF0E6; border: 1px solid rgba(112,48,158,0.12); border-radius: clamp(18px,1.8vw,26px); padding: clamp(14px,1.4vw,22px); margin-bottom: clamp(22px,2.8vw,40px); box-shadow: 0 16px 42px rgba(112,48,158,0.06); }
.show-entry__imgs { display: grid; grid-template-columns: 60% 40%; gap: 0; border-radius: clamp(12px,1.4vw,18px); overflow: hidden; aspect-ratio: 2.3; }
.show-entry__imgs img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }
.show-entry__desc { font-family: var(--low); font-weight: 300; color: #4a4a4a; font-size: clamp(15px,1.2vw,19px); line-height: 1.6; margin: clamp(16px,1.8vw,26px) clamp(6px,1vw,16px) clamp(8px,1vw,14px); }
@media (max-width: 560px) { .show-entry__imgs { grid-template-columns: 60% 40%; aspect-ratio: 2; } }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px,4vw,64px); max-width: 1040px; margin: clamp(24px,3vw,44px) auto 0; align-items: start; }
.cform { display: flex; flex-direction: column; gap: 14px; }
.cform label { font-family: var(--low); font-weight: 500; color: var(--purple); font-size: clamp(14px,1.1vw,16px); }
.cform input, .cform textarea { font-family: var(--low); font-size: 16px; padding: 13px 16px; border: 1px solid rgba(112,48,158,0.22); border-radius: 12px; background: #fff; width: 100%; }
.cform textarea { min-height: 140px; resize: vertical; }
.cform button { align-self: flex-start; background: var(--hotpink); color: #fff; border: none; font-family: var(--low); font-weight: 500; font-size: clamp(15px,1.2vw,18px); padding: 12px 32px; border-radius: 999px; cursor: pointer; transition: transform .18s ease, filter .18s ease; }
.cform button:hover { transform: scale(1.04); filter: brightness(1.05); }
.contact-info__block { margin-bottom: clamp(20px,2.4vw,30px); }
.contact-info__block h5 { font-family: var(--low); font-weight: 600; color: var(--pink); font-size: clamp(18px,1.5vw,23px); }
.contact-info__block p { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(14px,1.15vw,17px); line-height: 1.55; margin-top: 6px; }
.contact-info__block a { color: #2d6fd6; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* sponsors page — 3-logo grid + full-image blocks */
.spon-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.8vw,26px); max-width: 1000px; margin: clamp(20px,3vw,40px) auto 0; }
.spon-logo-card { position: relative; background: #fff; border-radius: clamp(14px,1.4vw,20px); box-shadow: 0 12px 32px rgba(0,0,0,0.05); aspect-ratio: 0.82; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(22px,2.6vw,42px); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.spon-logo-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.1); }
.spon-logo-card__logo { max-width: 78%; max-height: clamp(90px,11vw,150px); object-fit: contain; }
.spon-logo-card__url { position: absolute; bottom: clamp(16px,2vw,28px); left: 0; right: 0; text-align: center; color: #2d6fd6; font-family: var(--low); font-weight: 400; font-size: clamp(11px,0.95vw,14px); }
.sponsor-brochure { display: inline-block; margin-top: clamp(16px,2vw,26px); background: #ffe1ef; color: var(--pink); font-family: var(--low); font-weight: 500; text-decoration: none; padding: 10px 24px; border-radius: 10px; font-size: clamp(13px,1.1vw,16px); transition: filter .18s ease, transform .18s ease; }
.sponsor-brochure:hover { filter: brightness(0.97); transform: scale(1.03); }
.sponsor-block { background: #fff; border: 1px solid rgba(112,48,158,0.08); border-radius: clamp(20px,2.4vw,34px); box-shadow: 0 26px 54px rgba(223,64,148,0.07); overflow: hidden; padding: 0; margin: clamp(28px,3.5vw,54px) 0; }
.sponsor-block__hero { width: 100%; }
.sponsor-block__hero img { width: 100%; display: block; }
.sponsor-block__row { display: grid; grid-template-columns: clamp(190px,28%,300px) 1fr; gap: clamp(24px,3.5vw,60px); align-items: center; padding: clamp(22px,3vw,48px) clamp(24px,3.5vw,60px); }
.sponsor-block__logo { display: flex; align-items: center; justify-content: center; }
.sponsor-block__logo img { max-width: 100%; max-height: clamp(80px,9vw,140px); object-fit: contain; }
.sponsor-block__desc { font-family: var(--low); font-weight: 300; color: #4a4a4a; font-size: clamp(15px,1.25vw,19px); line-height: 1.65; }
@media (max-width: 640px) { .sponsor-block__row { grid-template-columns: 1fr; text-align: center; } .sponsor-block__logo img { margin: 0 auto; } }

/* FAQ page tweaks */
.faq .sched-item__head { grid-template-columns: 1fr 32px; }
.faq .sched-item__title { white-space: nowrap; font-size: 25px; }
.faq .sched-item__body-inner p, .faq .sched-item__body-inner li { font-size: 20px; }
.faq-btn { display: inline-block; background: var(--hotpink); color: #fff !important; text-decoration: none; font-family: var(--low); font-weight: 500; padding: 7px 18px; border-radius: 999px; font-size: 14px; margin: 4px 6px 4px 0; transition: transform .18s ease, filter .18s ease; }
.faq-btn:hover { transform: scale(1.04); filter: brightness(1.05); }
@media (max-width: 640px) { .faq .sched-item__title { white-space: normal; font-size: 17px; } }

/* about page hero — 3-column */
.about-hero { display: grid; grid-template-columns: 1fr 0.92fr 0.82fr; gap: clamp(28px,4vw,70px); align-items: start; max-width: 1280px; margin: clamp(10px,2vw,26px) auto 0; }
.about-hero__lead { font-family: var(--tall); font-weight: 300; color: var(--purple); font-size: clamp(26px,2.9vw,42px); line-height: 1.18; }
.about-hero__sub { font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(15px,1.3vw,19px); line-height: 1.5; margin-top: clamp(20px,2.6vw,36px); }
.about-hero__photo img { width: 100%; display: block; border-radius: 4px; }
.about-hero__founder { font-family: var(--low); font-weight: 400; color: var(--pink); font-size: clamp(15px,1.35vw,20px); line-height: 1.5; }
.about-hero__li { display: inline-flex; align-items: center; gap: 14px; margin-top: clamp(20px,2.6vw,34px); border: 1.5px solid var(--purple); border-radius: 8px; padding: 9px 22px; color: var(--purple); font-family: var(--low); font-weight: 500; text-decoration: none; font-size: clamp(14px,1.1vw,16px); letter-spacing: 0.06em; transition: background .18s ease, color .18s ease; }
.about-hero__li svg { width: 22px; height: 22px; flex: none; }
.about-hero__li:hover { background: var(--purple); color: #fff; }
.about-hero__li:hover svg rect { fill: #fff; } .about-hero__li:hover svg path { fill: var(--purple); }
@media (max-width: 920px) {
  .about-hero { grid-template-columns: 1fr 1fr; }
  .about-hero__photo { grid-row: 1 / 3; grid-column: 2; }
}
@media (max-width: 620px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__photo { grid-row: auto; grid-column: auto; max-width: 360px; margin: 0 auto; }
}

/* resources — category blocks with name pills */
.res-group { background: #f1e8d6; border: 1px solid rgba(112,48,158,0.06); border-radius: clamp(20px,2.4vw,34px); padding: clamp(24px,3vw,50px); margin-bottom: clamp(22px,2.6vw,40px); box-shadow: 0 18px 44px rgba(112,48,158,0.05); }
.res-group__title { font-family: var(--low); font-weight: 300; color: var(--pink); font-size: clamp(26px,3.2vw,48px); line-height: 1.05; margin-bottom: clamp(18px,2.4vw,34px); }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,24px); }
.res-item { background: #fff; border-radius: 14px; padding: clamp(14px,1.4vw,20px) clamp(18px,2vw,28px); box-shadow: 0 6px 18px rgba(0,0,0,0.04); font-family: var(--low); font-weight: 500; color: var(--purple); text-decoration: none; font-size: clamp(15px,1.2vw,18px); display: flex; align-items: center; transition: transform .18s ease, box-shadow .18s ease, color .18s ease; }
.res-item:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); color: var(--pink); }
@media (max-width: 820px) { .res-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .res-grid { grid-template-columns: 1fr; } }

/* contact page — form + departments box */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(223,64,148,0.18); border-radius: 18px; overflow: hidden; max-width: 1280px; margin: clamp(10px,2vw,26px) auto 0; }
.contact-left { padding: clamp(26px,3.4vw,58px); }
.contact-right { padding: clamp(26px,3.4vw,58px); border-left: 1px solid rgba(223,64,148,0.18); }
.contact-intro { font-family: var(--low); font-weight: 400; color: var(--pink); font-size: clamp(15px,1.3vw,19px); margin-bottom: clamp(20px,2.6vw,36px); }
.cform2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,1.6vw,22px); }
.cfield.full, .cform2 .send { grid-column: 1 / -1; }
.cfield label { display: block; font-family: var(--low); font-weight: 600; color: #5b2a86; font-size: 13px; letter-spacing: 0.02em; margin-bottom: 6px; }
.cfield label .req { color: #e2356b; }
.cfield input, .cform2 textarea { width: 100%; font-family: var(--low); font-size: 15px; padding: 12px 15px; border: 1px solid rgba(112,48,158,0.22); border-radius: 8px; background: #fff; color: #333; }
.cfield input::placeholder, .cform2 textarea::placeholder { color: #b3a9bd; }
.cform2 textarea { min-height: 150px; resize: vertical; }
.csend-btn { background: var(--purple); color: #fff; border: none; font-family: var(--low); font-weight: 500; font-size: 15px; padding: 12px 28px; border-radius: 8px; cursor: pointer; transition: filter .18s ease, transform .18s ease; }
.csend-btn:hover { filter: brightness(1.08); transform: scale(1.02); }
.contact-block { padding: clamp(22px,2.8vw,42px) 0; }
.contact-block:first-child { padding-top: 0; }
.contact-block:not(:last-child) { border-bottom: 1px solid rgba(223,64,148,0.18); }
.contact-block__title { font-family: var(--low); font-weight: 300; color: var(--pink); font-size: clamp(26px,3vw,44px); line-height: 1.05; margin-bottom: clamp(16px,2vw,28px); }
.contact-block p { font-family: var(--low); font-weight: 300; color: var(--purple); font-size: clamp(15px,1.3vw,19px); line-height: 1.5; }
.contact-block a { color: var(--purple); text-decoration: underline; }
@media (max-width: 820px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-right { border-left: none; border-top: 1px solid rgba(223,64,148,0.18); }
}
@media (max-width: 520px) { .cform2 { grid-template-columns: 1fr; } }

/* press excerpts */
.press-item { align-items: flex-start; }
.press-item__excerpt { font-family: var(--low); font-weight: 300; color: #555; font-size: clamp(14px,1.1vw,16px); line-height: 1.55; margin-top: 10px; }
.press-item__read { align-self: center; }

/* ===== tickets page ===== */
.tk-tickets { display: grid; grid-template-columns: auto auto auto; justify-content: center; align-items: center; gap: clamp(24px,6vw,100px); margin: clamp(28px,4vw,60px) 0; }
.tk-tickets .tkt { height: clamp(230px,30vw,380px); width: auto; display: block; }
.tk-tickets .buy { display: inline-block; transition: transform .2s ease; }
.tk-tickets .buy:hover { transform: scale(1.05); }
.tk-tickets .buy img { height: clamp(58px,8vw,104px); width: auto; display: block; }
@media (max-width: 680px) { .tk-tickets { grid-template-columns: 1fr 1fr; } .tk-tickets .buy { grid-column: 1 / -1; order: -1; justify-self: center; } }

.tk-included { text-align: center; margin-top: clamp(30px,5vw,70px); }
.tk-included__title { font-family: var(--tall); font-weight: 300; color: var(--purple); font-size: clamp(44px,7.5vw,118px); line-height: 1; margin-bottom: clamp(24px,3.5vw,48px); }
.tk-pills { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(14px,1.8vw,28px); align-items: center; max-width: 1200px; margin: 0 auto; }
.tk-pills__col { display: flex; flex-direction: column; gap: clamp(14px,1.8vw,28px); }
.tk-pill { border-radius: 12px; padding: clamp(12px,1.5vw,20px) clamp(14px,2vw,26px); font-family: var(--low); font-weight: 600; color: var(--purple); font-size: clamp(15px,1.4vw,22px); text-align: center; line-height: 1.15; }
@media (max-width: 720px) { .tk-pills { grid-template-columns: 1fr; max-width: 460px; } }

.tk-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,64px); align-items: center; background: #f6f0e2; border-radius: clamp(20px,2.4vw,34px); padding: clamp(28px,4vw,66px); margin-bottom: clamp(22px,2.8vw,40px); }
.tk-detail__h { font-family: var(--tall); font-weight: 300; color: var(--pink); font-size: clamp(32px,4.2vw,62px); line-height: 1.04; }
.tk-detail__p { font-family: var(--low); font-weight: 300; color: var(--purple); font-size: clamp(15px,1.4vw,20px); line-height: 1.5; margin-top: clamp(16px,2vw,28px); max-width: 34ch; }
.tk-detail__media { position: relative; min-height: clamp(280px,32vw,420px); }
.tk-detail__media img { position: absolute; border: 6px solid #fff; border-radius: 10px; box-shadow: 0 14px 34px rgba(0,0,0,0.16); object-fit: cover; }
.tk-detail__media img:first-child { width: 70%; top: 0; left: 0; transform: rotate(-3deg); aspect-ratio: 0.92; }
.tk-detail__media img:last-child { width: 58%; right: 0; bottom: 0; transform: rotate(3deg); aspect-ratio: 1.1; }
.tk-detail--rev .tk-detail__text { order: 2; }
@media (max-width: 760px) {
  .tk-detail { grid-template-columns: 1fr; }
  .tk-detail--rev .tk-detail__text { order: 0; }
  .tk-detail__media { min-height: clamp(320px,82vw,440px); }
}

.tk-learn { position: relative; border-radius: clamp(16px,2vw,28px); overflow: hidden; padding: clamp(40px,6vw,96px) clamp(18px,3vw,50px) clamp(30px,4vw,60px); margin-top: clamp(34px,5vw,72px); text-align: center; background-image: linear-gradient(rgba(112,48,158,0.55), rgba(112,48,158,0.55)), url('assets/img/wp-wellness-women.jpg'); background-size: cover; background-position: center; }
.tk-learn__title { font-family: var(--bebas); font-weight: 400; color: #fff; font-size: clamp(40px,8vw,120px); line-height: 1; letter-spacing: 0.01em; }
.tk-learn__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(10px,1.4vw,20px); margin-top: clamp(30px,5vw,70px); }
.tk-learn__pill { border-radius: 999px; padding: 9px 22px; font-family: var(--low); font-weight: 600; color: #3a1a5e; font-size: clamp(13px,1.3vw,18px); }

/* ===== blur-up image loading ===== */
.blurup { background-size: cover; background-position: center; background-repeat: no-repeat; }
.blurup.is-loaded { background-image: none !important; }
