@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap");

:root {
  --pink: #e53935;
  --rose: #e4004f;
  --gold: #ffb300;
  --purple: #4a148c;
  --violet: #6b1fa2;
  --cyan: #18aee2;
  --blue: #2457b8;
  --green: #34a853;
  --orange: #ff6a00;
  --ink: #170e2b;
  --muted: #5d5570;
  --line: #e9e3f1;
  --paper: #ffffff;
  --wash: #fbf8ff;
  --shadow: 0 18px 45px rgba(43, 21, 78, 0.14);
  --soft-shadow: 0 10px 28px rgba(34, 18, 57, 0.1);
  --radius: 8px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 179, 0, 0.08), transparent 24rem),
    radial-gradient(circle at 92% 60%, rgba(24, 174, 226, 0.08), transparent 28rem),
    #fff;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(74, 20, 140, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 164px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 100%;
  height: 3px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #f52d6b);
  box-shadow: 0 12px 26px rgba(228, 0, 79, 0.22);
  font-size: 13px;
}

.btn {
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn svg,
.header-cta svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #f0426f);
  box-shadow: 0 14px 26px rgba(228, 0, 79, 0.18);
}

.btn-ghost {
  color: var(--purple);
  background: #fff;
  border: 2px solid var(--purple);
}

.btn-dark {
  color: #18072d;
  background: var(--gold);
}

.btn-gold {
  color: #160a24;
  background: var(--gold);
  min-height: 44px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--purple);
  background: #f8f1ff;
}

.section-pad,
.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 42px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.87fr) minmax(420px, 1.25fr);
  align-items: center;
  min-height: 520px;
  gap: 28px;
}

.hero > *,
.page-hero > * {
  min-width: 0;
}

.hero::before {
  position: absolute;
  inset: 0 42% 0 -14vw;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.86) 75%, transparent);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 58px 0 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--purple);
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 0.92;
  font-weight: 900;
}

h1::first-line {
  color: var(--purple);
}

.hero h1 {
  text-wrap: balance;
}

.hero h1 span,
.signature span {
  color: var(--rose);
}

.hero h1 span {
  display: block;
}

.hero-sub {
  max-width: 620px;
  margin: 22px 0;
  color: #231936;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.signature {
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  color: var(--purple);
  font-family: "Outfit", sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
}

.signature::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 84px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-art {
  position: relative;
  height: min(520px, 44vw);
  min-height: 390px;
  overflow: hidden;
  border-radius: 0 0 0 28px;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confetti {
  position: absolute;
  pointer-events: none;
}

.confetti::before,
.confetti::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background:
    conic-gradient(from 20deg, var(--rose) 0 13%, transparent 13% 19%, var(--gold) 19% 31%, transparent 31% 39%, var(--cyan) 39% 51%, transparent 51% 60%, var(--green) 60% 72%, transparent 72% 82%, var(--violet) 82% 94%, transparent 94%);
  clip-path: polygon(50% 0, 58% 34%, 100% 36%, 62% 52%, 80% 100%, 50% 64%, 20% 100%, 38% 52%, 0 36%, 42% 34%);
  opacity: 0.78;
}

.confetti-left {
  left: -120px;
  bottom: 58px;
  width: 180px;
  height: 180px;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  color: #fff;
  background: linear-gradient(105deg, #410d79, #6f178e 52%, #491076);
}

.metric {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 14px;
  min-height: 92px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.metric svg {
  grid-row: span 2;
  width: 31px;
  height: 31px;
  color: var(--gold);
}

.metric strong {
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.metric span {
  font-size: 13px;
  font-weight: 800;
}

.section-title {
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}

.section-title h2,
.split-section h2,
.event-preview h2,
.cta-banner h2,
.event-head h2,
.calendar-copy h2,
.why-exhibit h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 1.05;
}

.section-title span {
  width: 70px;
  height: 3px;
  margin-top: 10px;
  background: var(--gold);
}

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

.service-card {
  min-height: 182px;
  padding: 26px 24px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.icon-dot,
.check {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  flex: 0 0 auto;
}

.icon-dot {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
}

.icon-dot svg {
  width: 30px;
  height: 30px;
}

.pink { background: var(--rose); }
.gold { background: var(--gold); color: #351d00; }
.purple { background: var(--purple); }
.blue { background: var(--cyan); }
.green { background: var(--green); }
.orange { background: var(--orange); }

.service-card h3,
.expo-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.service-card p,
.expo-card p,
.about-card p,
.why-list p,
.event-preview p,
.calendar-copy p,
.reason-row p,
.footer-brand p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card p {
  min-height: 70px;
  margin: 0 0 16px;
  font-size: 14px;
}

.service-card a,
.expo-card a,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 166px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #241533;
  box-shadow: var(--soft-shadow);
}

.work-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 8, 28, 0.82), rgba(15, 8, 28, 0.34));
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card h3,
.work-card div {
  position: absolute;
  z-index: 2;
}

.work-card h3 {
  left: 22px;
  bottom: 22px;
  max-width: 290px;
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.08;
}

.work-card.large {
  grid-row: span 2;
  min-height: 350px;
}

.work-card.large div {
  left: 24px;
  bottom: 24px;
}

.work-card.large h3 {
  position: static;
  margin-bottom: 18px;
  font-size: 32px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #1b1025;
  font-weight: 900;
}

.round-link {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--purple);
  background: #fff;
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-row div {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 105px;
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.industry-row div:nth-child(1) svg { color: var(--rose); }
.industry-row div:nth-child(2) svg { color: var(--gold); }
.industry-row div:nth-child(3) svg { color: var(--purple); }
.industry-row div:nth-child(4) svg { color: var(--cyan); }
.industry-row div:nth-child(5) svg { color: var(--green); }
.industry-row div:nth-child(6) svg { color: var(--orange); }

.industry-row svg {
  width: 36px;
  height: 36px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  margin-top: 24px;
}

.why-list div {
  display: flex;
  gap: 16px;
}

.check {
  width: 38px;
  height: 38px;
  margin-top: 3px;
}

.why-list p {
  margin: 0;
  font-size: 14px;
}

.why-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.about-card {
  padding: 36px 46px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 232, 255, 0.92)),
    var(--wash);
  box-shadow: var(--soft-shadow);
}

.partner-box {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(74, 20, 140, 0.16);
}

.partner-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.partner-box strong {
  color: var(--purple);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
}

.event-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(74, 20, 140, 0.92), rgba(228, 0, 79, 0.88)),
    url("Stock Stall images/hf_20260506_121918_b2d45224-50a3-4559-aac6-399d4838ea83.png") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.event-preview h2,
.event-preview p,
.event-preview .eyebrow {
  color: #fff;
}

.event-preview p {
  max-width: 690px;
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
  padding: 34px clamp(24px, 6vw, 92px);
  color: #fff;
  background: linear-gradient(110deg, #4a148c 0%, #e4004f 48%, #f23763 100%);
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.lead-form input,
.lead-form select,
.expo-search input,
.expo-search select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(74, 20, 140, 0.14);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.9fr 0.9fr;
  gap: 42px;
  padding: 48px clamp(22px, 6vw, 86px) 24px;
  color: #fff;
  background: linear-gradient(140deg, #351064, #4a148c 52%, #2c0d52);
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(120deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: 170px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 7px 18px rgba(0,0,0,0.22));
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.site-footer a,
.site-footer p {
  display: flex;
  gap: 10px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 50%;
}

.footer-orb {
  position: absolute;
  right: 38px;
  bottom: 54px;
  width: 155px;
  height: 155px;
  object-fit: cover;
  object-position: 48% 24%;
  clip-path: circle(38%);
  opacity: 0.9;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
}

.events-hero {
  grid-template-rows: auto auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 46px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 54px;
}

.page-hero-copy h1 span {
  display: block;
  color: var(--rose);
}

.page-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: min(460px, 38vw);
  min-height: 360px;
  object-fit: cover;
}

.story-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card,
.service-detail,
.quote-form,
.contact-side,
.event-planner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.story-card {
  padding: 30px;
}

.story-card h2,
.service-detail h2,
.quote-form h2,
.event-content h2 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
}

.story-card p,
.service-detail p,
.service-detail li,
.image-feature p,
.case-study p,
.event-content p,
.recommend-list p,
.event-planner p,
.contact-side p {
  color: var(--muted);
  line-height: 1.62;
}

.timeline-section {
  padding-top: 58px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-track div {
  position: relative;
  min-height: 210px;
  padding: 26px 22px;
  color: #fff;
  background: linear-gradient(145deg, #3b0d6f, #6a168e);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-track div::after {
  position: absolute;
  right: -28px;
  bottom: -42px;
  content: attr(data-step);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.process-track strong {
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-size: 34px;
}

.process-track h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.process-track p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  align-items: end;
  gap: 18px;
}

.image-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  height: 360px;
}

.image-stack img:last-child {
  height: 270px;
  margin-bottom: -28px;
}

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

.service-detail {
  padding: 32px;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding-left: 20px;
}

.service-detail a,
.portfolio-item a,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose);
  font-weight: 900;
}

.deliverables-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: #fff;
  background: linear-gradient(105deg, #410d79, #78158f);
  border-radius: var(--radius);
  overflow: hidden;
}

.deliverables-band div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 16px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.deliverables-band svg {
  grid-row: span 2;
  color: var(--gold);
  width: 34px;
  height: 34px;
}

.deliverables-band strong {
  font-family: "Outfit", sans-serif;
  font-size: 23px;
}

.deliverables-band span {
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.image-feature,
.case-study {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.image-feature img,
.case-study img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-feature h2,
.case-study h2 {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-bottom: 20px;
}

.filter-bar button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.filter-bar button.active {
  color: #fff;
  border-color: var(--rose);
  background: var(--rose);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  padding-top: 10px;
}

.portfolio-item {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #201031;
  box-shadow: var(--soft-shadow);
}

.portfolio-item[hidden] {
  display: none;
}

.portfolio-item.feature {
  grid-row: span 2;
  min-height: 558px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

.portfolio-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 8, 34, 0.86), rgba(20, 8, 34, 0.08));
}

.portfolio-item div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.portfolio-item span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.portfolio-item h2,
.portfolio-item h3 {
  margin: 0;
  color: #fff;
}

.portfolio-item h2 {
  font-size: 38px;
  line-height: 1.02;
}

.portfolio-item h3 {
  font-size: 24px;
  line-height: 1.08;
}

.portfolio-item p {
  max-width: 430px;
  color: rgba(255,255,255,0.84);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 30px;
  align-items: start;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.contact-pill {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.contact-pill svg {
  grid-row: span 2;
  color: var(--rose);
}

.contact-pill span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-pill strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.quote-form {
  padding: 34px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--purple);
  font-weight: 900;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.dark-status {
  color: var(--purple);
}

.contact-side {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-side > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-side svg {
  color: var(--rose);
}

.contact-side h3 {
  margin: 8px 0 6px;
}

.contact-map {
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(74,20,140,0.9), rgba(228,0,79,0.78)),
    url("grok-bfc8fb8b-f5bf-42cd-9516-37271a4a8d33.jpg") center/cover;
  border-radius: var(--radius);
}

.contact-map span {
  font-family: "Outfit", sans-serif;
  font-size: 38px;
  font-weight: 900;
}

.contact-map p {
  color: rgba(255,255,255,0.86);
}

.event-detail-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.event-detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(40, 8, 70, 0.88), rgba(40, 8, 70, 0.28));
}

.event-detail-copy {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.event-detail-copy h1 {
  color: #fff;
  max-width: 760px;
}

.event-detail-copy h1::first-line {
  color: #fff;
}

.event-detail-copy p {
  max-width: 680px;
  color: rgba(255,255,255,0.88);
  font-size: 19px;
  line-height: 1.6;
}

.back-link {
  margin-bottom: 24px;
  color: #fff;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
}

.event-content {
  max-width: 780px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.insight-grid div,
.recommend-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.insight-grid strong {
  display: block;
  color: var(--purple);
  font-family: "Outfit", sans-serif;
  font-size: 28px;
}

.insight-grid span {
  color: var(--muted);
  font-weight: 800;
}

.recommend-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 30px;
}

.recommend-list div {
  display: flex;
  gap: 16px;
}

.recommend-list svg {
  color: var(--rose);
  flex: 0 0 auto;
}

.recommend-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.event-planner {
  position: sticky;
  top: 100px;
  padding: 26px;
}

.event-planner h3 {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 26px;
}

.event-planner div {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.event-planner span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-planner strong {
  display: block;
  margin-top: 6px;
}

.expo-search {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(460px, 4fr) repeat(4, minmax(112px, 1fr)) minmax(148px, auto);
  gap: 10px;
  max-width: 1160px;
  margin: -32px 0 0 70px;
  padding: 12px;
  border: 1px solid rgba(74, 20, 140, 0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--soft-shadow);
}

.search-wide {
  position: relative;
}

.search-wide svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-wide input {
  padding-left: 44px;
}

.event-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(980px, calc(100% - 40px));
  margin: -6px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.event-metrics div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 0 14px;
  min-height: 76px;
  padding: 15px 26px;
  border-right: 1px solid var(--line);
}

.event-metrics svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--purple);
}

.event-metrics strong {
  color: var(--purple);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
}

.event-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.event-discovery-strip {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 18px;
}

.event-discovery-strip h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.event-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.event-chip-row button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(34, 18, 57, 0.06);
}

.event-chip-row button.active {
  color: #fff;
  border-color: var(--rose);
  background: var(--rose);
}

.featured-event-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr 190px;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, #351064, #4a148c);
  box-shadow: var(--shadow);
}

.featured-copy {
  padding: 34px;
}

.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 4px;
  color: #200c24;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-copy h2 {
  margin: 22px 0 14px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
}

.event-meta span,
.event-stats p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-copy p {
  max-width: 540px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

.featured-readiness {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.featured-readiness span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 800;
}

.featured-readiness svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.featured-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-stats {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
}

.event-stats p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.event-stats strong {
  display: block;
  color: var(--purple);
  font-size: 18px;
}

.event-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.event-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.event-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.event-tools label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.event-tools select {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--purple);
  background: #fff;
  font-weight: 900;
}

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

.expo-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  padding: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.expo-card[hidden] {
  display: none;
}

.expo-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.date-box {
  position: absolute;
  left: 14px;
  top: 118px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 58px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(28, 14, 44, 0.16);
}

.date-box strong {
  font-size: 20px;
  line-height: 1;
}

.date-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.expo-card h3,
.expo-card p,
.expo-card .chip,
.expo-card .expo-card-meta,
.expo-card .expo-card-actions {
  margin-left: 78px;
  margin-right: 16px;
}

.expo-card h3 {
  margin-top: 20px;
  min-height: 44px;
}

.expo-card p {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 12px;
}

.chip {
  justify-self: start;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.pink-chip { color: #c90448; background: #ffe4ee; }
.orange-chip { color: #a94400; background: #ffe9d5; }
.purple-chip { color: #4a148c; background: #efe4ff; }
.blue-chip { color: #1555a4; background: #e2f4ff; }
.gold-chip { color: #7e5700; background: #fff0bf; }
.green-chip { color: #207334; background: #def8e5; }

.expo-card-meta {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.expo-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.expo-card-meta svg {
  width: 15px;
  height: 15px;
  color: var(--purple);
}

.expo-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.expo-card-actions a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.expo-card-actions a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--purple);
  background: #f4ecff;
  font-size: 12px;
  font-weight: 900;
}

.empty-state {
  display: none;
  margin: 28px 0 0;
  padding: 22px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
}

.empty-state.visible {
  display: block;
}

.event-planning-hub {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: stretch;
}

.planning-panel,
.event-alert-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.planning-panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(248,241,255,0.9)),
    #fff;
}

.planning-panel h2,
.event-alert-card h3 {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
}

.planning-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 24px;
}

.planning-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  line-height: 1.45;
}

.planning-checklist input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rose);
  flex: 0 0 auto;
}

.event-alert-card {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 28px;
  background: #fff;
}

.event-alert-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.event-alert-card input,
.event-alert-card select {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
}

.calendar-section {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  align-items: stretch;
}

.calendar-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.mini-month {
  min-height: 138px;
  padding: 16px 14px;
  border-left: 1px solid var(--line);
}

.mini-month h3 {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 15px;
  text-align: center;
}

.mini-month p {
  display: flex;
  justify-content: space-around;
  margin: 8px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.mini-month b {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #fff;
  background: var(--rose);
  border-radius: 50%;
}

.why-exhibit h2 {
  margin-bottom: 24px;
}

.reason-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.reason-row div {
  padding-right: 14px;
  border-right: 1px solid var(--line);
}

.reason-row strong {
  display: block;
  min-height: 38px;
  color: var(--purple);
  font-size: 14px;
}

.reason-row p {
  margin: 8px 0 0;
  font-size: 12px;
}

.coverage-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  overflow-x: auto;
  background: #fff;
  border-top: 1px solid var(--line);
  white-space: nowrap;
}

.coverage-strip div {
  color: var(--purple);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.coverage-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 650ms ease forwards;
}

.delay-1 { animation-delay: 90ms; }
.delay-2 { animation-delay: 180ms; }
.delay-3 { animation-delay: 270ms; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 14px 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 24px;
  }

  .hero-art {
    height: 420px;
    min-height: 360px;
  }

  .expo-search {
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .metric-band,
  .service-grid,
  .expo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero,
  .work-grid,
  .featured-event-card,
  .split-section,
  .calendar-section,
  .image-feature,
  .case-study,
  .contact-layout,
  .event-detail-layout {
    grid-template-columns: 1fr;
  }

  .reason-row,
  .calendar-strip,
  .process-track,
  .portfolio-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-grid,
  .service-detail-grid,
  .deliverables-band,
  .event-discovery-strip,
  .event-planning-hub {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-chip-row {
    justify-content: flex-start;
  }

  .portfolio-item.feature {
    grid-row: span 1;
    min-height: 360px;
  }

  .event-planner {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 8px 16px;
  }

  .brand img {
    width: 132px;
    height: 50px;
  }

  .section-pad,
  .section {
    width: min(100% - 28px, var(--container));
  }

  .hero-copy {
    padding: 28px 0 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 8.8vw, 39px);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-actions,
  .event-preview,
  .event-head,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-art {
    height: 320px;
    min-height: 320px;
    border-radius: var(--radius);
  }

  .page-hero,
  .story-grid,
  .service-detail-grid,
  .deliverables-band,
  .process-track,
  .portfolio-gallery,
  .contact-actions,
  .form-grid,
  .insight-grid,
  .event-detail-layout,
  .event-discovery-strip,
  .event-planning-hub,
  .planning-checklist,
  .metric-band,
  .service-grid,
  .industry-row,
  .why-list,
  .event-metrics,
  .expo-grid,
  .reason-row,
  .calendar-strip,
  .lead-form,
  .cta-banner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .event-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .event-tools label {
    align-items: stretch;
    flex-direction: column;
  }

  .event-tools select {
    width: 100%;
  }

  .expo-card h3,
  .expo-card p,
  .expo-card .chip,
  .expo-card .expo-card-meta,
  .expo-card .expo-card-actions {
    margin-left: 74px;
  }

  .planning-panel,
  .event-alert-card {
    padding: 24px 20px;
  }

  .page-hero {
    padding-top: 32px;
    gap: 24px;
  }

  .page-hero-media img {
    height: 300px;
    min-height: 300px;
  }

  .process-track div,
  .story-card,
  .service-detail,
  .quote-form {
    padding: 24px 20px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:first-child,
  .image-stack img:last-child,
  .image-feature img,
  .case-study img {
    height: 280px;
    margin-bottom: 0;
  }

  .portfolio-item,
  .portfolio-item.feature {
    min-height: 300px;
  }

  .portfolio-item h2 {
    font-size: 30px;
  }

  .form-grid .wide {
    grid-column: auto;
  }

  .event-detail-hero {
    min-height: 520px;
  }

  .event-detail-copy {
    width: min(100% - 28px, var(--container));
    padding: 48px 0;
  }

  .metric,
  .event-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .event-metrics div {
    border-bottom-color: var(--line);
  }

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

  .work-card,
  .work-card.large {
    min-height: 260px;
  }

  .industry-row div,
  .reason-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-card {
    padding: 28px 22px;
  }

  .partner-box {
    grid-template-columns: 1fr;
  }

  .expo-search {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .featured-event-card {
    grid-template-columns: 1fr;
  }

  .featured-event-card img {
    height: 210px;
  }

  .cta-banner {
    padding: 28px 18px;
  }

  .footer-orb {
    display: none;
  }
}
