:root {
  color-scheme: light;
  --paper: #f4efe4;
  --surface: #fffaf0;
  --ink: #181713;
  --body: #413d34;
  --muted: #665f52;
  --line: #d4c8b3;
  --accent: #725012;
  --accent-strong: #2a2418;
  --accent-soft: #e5c978;
  --focus: #005fcc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 35, 28, 0.11);
  --radius: 22px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 78% 7%, color-mix(in srgb, var(--accent-soft) 22%, transparent), transparent 31%);
}
a { color: var(--accent); }
a:focus, button:focus, input:focus, textarea:focus, summary:focus,
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.site-header, .site-footer, .hero, .section, .page-hero {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  background: var(--accent-strong);
  color: var(--white);
  border: 2px solid color-mix(in srgb, var(--accent-soft) 75%, white);
  font-size: 0.67rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.brand-mark span { position: relative; z-index: 2; }
.brand-mark--booth { border-radius: 4px; box-shadow: inset -10px 0 var(--accent); }
.brand-mark--meetings { border-radius: 12px 12px 3px 12px; }
.brand-mark--meetings::after { content: ""; position: absolute; width: 18px; height: 6px; right: -1px; top: 7px; background: var(--accent-soft); }
.brand-mark--expo { border-radius: 8px; clip-path: polygon(50% 0, 100% 20%, 100% 88%, 50% 100%, 0 88%, 0 20%); }
.brand-mark--connect { transform: rotate(45deg); border-radius: 8px; }
.brand-mark--connect span { transform: rotate(-45deg); }
.site-header nav, .site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.site-header nav a, .site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}
.site-header nav a:hover, .site-header nav a[aria-current="page"], .site-footer nav a:hover {
  color: var(--ink);
  background: color-mix(in srgb, var(--accent-soft) 20%, transparent);
}
.site-header .nav-contact { margin-left: 6px; color: white; background: var(--accent-strong); }
.site-header .nav-contact:hover, .site-header .nav-contact[aria-current="page"] { color: white; background: var(--accent); }
main { min-height: 68vh; overflow: clip; }
.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  padding-block: 84px 96px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { color: var(--ink); line-height: 1.04; letter-spacing: -0.045em; }
h1 { max-width: 850px; margin: 0; font-size: clamp(3.2rem, 7.6vw, 6.6rem); }
h2 { margin: 0; font-size: clamp(2.25rem, 4.8vw, 4.5rem); }
h3 { margin: 0; font-size: 1.25rem; }
.theme-booth h1, .theme-booth h2, .theme-expo h1, .theme-expo h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}
.theme-meetings h1, .theme-meetings h2 { font-weight: 900; letter-spacing: -0.06em; }
.theme-meetings h1 { font-size: clamp(3rem, 5.2vw, 4.8rem); }
.theme-connect h1, .theme-connect h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
.theme-connect h1 { font-size: clamp(3rem, 5.4vw, 5rem); }
.lede {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--body);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--accent-strong);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-strong) 20%, transparent);
}
.button:hover { background: var(--accent); transform: translateY(-1px); }
.text-link { min-height: 46px; display: inline-flex; align-items: center; color: var(--ink); font-weight: 850; text-decoration: none; }
.text-link:hover { color: var(--accent); }
.text-link span { margin-left: 4px; }
.hero-note { margin: 28px 0 0; color: var(--muted); font-size: 0.92rem; font-weight: 700; }
.hero-note span { padding-inline: 7px; color: var(--accent); }
.booth-plan, .operations-board, .booking-card, .workflow-map {
  min-height: 490px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booth-plan { padding: 24px; background: #171612; color: #f4efe4; transform: rotate(1.2deg); }
.booth-plan__top, .operations-board__header, .booking-card__header {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em;
}
.booth-grid { height: 275px; display: grid; grid-template-columns: 1fr 1fr 0.7fr; grid-template-rows: 1fr 1fr; gap: 12px; margin-top: 22px; padding: 18px; border: 1px solid #51492f; background-image: linear-gradient(#2d2a20 1px, transparent 1px), linear-gradient(90deg, #2d2a20 1px, transparent 1px); background-size: 24px 24px; }
.booth-grid__wall { border: 4px solid #d3b45a; border-bottom: 0; }
.booth-grid__wall:nth-child(2) { border-color: #f4efe4; }
.booth-grid__wall:nth-child(3) { border-color: #85733f; }
.booth-grid__table { grid-column: 1 / 3; display: grid; place-items: center; margin: 4px 30px; border: 2px solid #d3b45a; border-radius: 50%; color: #d3b45a; font-weight: 900; letter-spacing: 0.16em; }
.booth-grid__station { display: grid; place-items: center; border: 1px solid #85733f; color: #d3b45a; font-weight: 900; }
.booth-plan__brief { display: grid; grid-template-columns: 80px 1fr; gap: 6px 14px; margin-top: 22px; font-size: 0.88rem; }
.booth-plan__brief span { color: #d3b45a; text-transform: uppercase; letter-spacing: 0.08em; }
.operations-board { padding: 26px; background: #0b2942; color: white; }
.live-pill { padding: 7px 12px; border-radius: 999px; background: #f0672e; color: white; }
.operations-board__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-block: 28px; }
.operations-board__stats div { padding: 16px; border: 1px solid #2a5672; border-radius: 14px; background: #123a55; }
.operations-board__stats span, .operations-board__stats strong { display: block; }
.operations-board__stats span { color: #9bc9d0; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.schedule-row { display: grid; grid-template-columns: 54px 1fr 34px; gap: 14px; align-items: center; padding: 18px 0; border-top: 1px solid #2a5672; }
.schedule-row time { color: #73d3d8; font-weight: 850; }
.schedule-row div span { display: block; color: #abc5d1; font-size: 0.82rem; }
.schedule-row b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #f0672e; font-size: 0.75rem; }
.booking-card { padding: 28px; background: #fffaf4; transform: rotate(-1deg); }
.booking-card__header { padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--accent); }
.booking-card__header strong { color: var(--ink); letter-spacing: 0; text-transform: none; }
.booking-timeline { list-style: none; margin: 28px 0 0; padding: 0; }
.booking-timeline li { min-height: 82px; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; position: relative; }
.booking-timeline li::after { content: ""; position: absolute; left: 23px; top: 44px; bottom: -4px; width: 2px; background: var(--line); }
.booking-timeline li:last-child::after { display: none; }
.booking-timeline > li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-strong); color: white; font-weight: 900; }
.booking-timeline strong, .booking-timeline small { display: block; }
.booking-timeline small { margin-top: 4px; color: var(--muted); }
.workflow-map { min-height: 520px; background: #0c2d20; overflow: hidden; }
.workflow-map::before, .workflow-map::after { content: ""; position: absolute; inset: 50% auto auto 50%; width: 390px; height: 390px; transform: translate(-50%, -50%); border: 1px solid #38634f; border-radius: 50%; }
.workflow-map::after { width: 260px; height: 260px; border-color: #5f846f; }
.workflow-map__center { position: absolute; inset: 50% auto auto 50%; z-index: 2; transform: translate(-50%, -50%); width: 150px; height: 150px; display: grid; place-items: center; align-content: center; border-radius: 28px; background: #f1f4ec; color: #123526; box-shadow: 0 24px 50px rgba(0,0,0,.28); }
.workflow-map__center span { font: 700 2.3rem Georgia, serif; }
.workflow-map__center strong { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; }
.workflow-node { position: absolute; z-index: 2; min-width: 104px; padding: 12px 14px; border: 1px solid #567866; border-radius: 14px; background: #123d2c; color: white; }
.workflow-node b, .workflow-node span { display: block; }
.workflow-node b { color: #d6ae65; font-size: 0.72rem; }
.workflow-node span { font-weight: 800; }
.workflow-node--1 { left: 8%; top: 14%; }.workflow-node--2 { right: 8%; top: 12%; }.workflow-node--3 { right: 4%; bottom: 19%; }.workflow-node--4 { left: 36%; bottom: 6%; }.workflow-node--5 { left: 4%; bottom: 25%; }
.section { padding-block: 100px; border-top: 1px solid var(--line); scroll-margin-top: 24px; }
.section-intro { max-width: 780px; margin-bottom: 48px; }
.section-intro > p:last-child { max-width: 660px; margin: 20px 0 0; font-size: 1.08rem; }
.section-intro--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: 70px; align-items: end; }
.section-intro--split > p { margin: 0 0 8px; }
.process-grid { display: grid; gap: 14px; }
.process-grid--3 { grid-template-columns: repeat(3, 1fr); }
.process-grid--4 { grid-template-columns: repeat(4, 1fr); }
.process-grid--5 { grid-template-columns: repeat(5, 1fr); }
.process-card { min-height: 280px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 14px 35px rgba(18,35,28,.06); }
.process-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: auto; color: var(--accent); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.process-card h3 { margin-top: 44px; }
.process-card p { margin: 14px 0 0; color: var(--body); }
.theme-booth .process-card:nth-child(2) { background: var(--accent-strong); border-color: var(--accent-strong); }
.theme-booth .process-card:nth-child(2) h3, .theme-booth .process-card:nth-child(2) p { color: white; }
.theme-meetings .process-card { border-top: 5px solid var(--accent); }
.theme-expo .process-card { border-radius: 60px 18px 18px; }
.deliverables-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.deliverable-card { min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.deliverable-card--1, .deliverable-card--4 { grid-column: span 7; }
.deliverable-card--2, .deliverable-card--3 { grid-column: span 5; }
.deliverable-card--5 { grid-column: span 12; min-height: 190px; }
.deliverable-card h3 { margin-top: auto; }
.deliverable-card p { max-width: 520px; margin: 12px 0 0; }
.status-chip { align-self: flex-start; margin-bottom: 42px; padding: 7px 11px; border-radius: 999px; background: color-mix(in srgb, var(--accent-soft) 24%, transparent); color: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.theme-meetings .deliverable-card { background: #0b2942; border-color: #254c65; }
.theme-meetings .deliverable-card h3, .theme-meetings .deliverable-card p { color: white; }
.scenario-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.scenario-copy > p:not(.eyebrow):not(.fine-print) { margin: 24px 0 0; font-size: 1.08rem; }
.fine-print { margin-top: 24px; color: var(--muted); font-size: .86rem; }
.brief-board { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.brief-board__header { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; background: var(--accent-strong); color: white; font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.status-dot { padding: 6px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-strong); }
.brief-board dl { margin: 0; }
.brief-board dl div { display: grid; grid-template-columns: minmax(120px, .4fr) 1fr; gap: 20px; padding: 17px 24px; border-top: 1px solid var(--line); }
.brief-board dt { color: var(--muted); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.brief-board dd { margin: 0; color: var(--ink); font-weight: 750; }
.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.faq-section .section-intro { position: sticky; top: 30px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; color: var(--ink); font-size: 1.05rem; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0; padding: 0 52px 22px 0; }
.closing-section { width: min(var(--content), calc(100% - 40px)); margin-bottom: 70px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; padding: 56px; border: 0; border-radius: 28px; background: var(--accent-strong); color: white; }
.closing-section h2, .closing-section p, .closing-section .eyebrow, .closing-section a { color: white; }
.closing-section p:not(.eyebrow) { max-width: 720px; margin: 20px 0 0; }
.closing-actions { display: grid; gap: 14px; justify-items: start; }
.button--light { background: white; color: var(--accent-strong) !important; }
.page-hero { padding-block: 100px 62px; }
.page-hero h1 { max-width: 1030px; font-size: clamp(3rem, 6vw, 5.5rem); }
.page-hero--contact h1, .page-hero--legal h1 { max-width: 980px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-card { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.about-number { display: inline-block; margin-bottom: 70px; color: var(--accent); font-weight: 900; }
.about-card h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.identity-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.identity-panel p { margin-top: 0; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; }
input, textarea { width: 100%; border: 1px solid color-mix(in srgb, var(--ink) 32%, var(--line)); border-radius: 12px; padding: 14px 15px; background: var(--surface); color: var(--ink); font: inherit; }
textarea { resize: vertical; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }
.form-note { margin: 0; color: var(--muted); font-size: .88rem; }
.contact-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--accent-strong); color: white; box-shadow: var(--shadow); }
.contact-card h2, .contact-card .eyebrow, .contact-card a { color: white; }
.contact-email { display: inline-block; margin: 10px 0 30px; font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 850; }
.contact-card dl { margin: 0; }
.contact-card dl div { display: grid; grid-template-columns: 88px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.22); }
.contact-card dt { color: color-mix(in srgb, white 70%, var(--accent-soft)); }
.contact-card dd { margin: 0; font-weight: 800; }
.contact-card .fine-print { color: rgba(255,255,255,.78); }
.legal-copy { max-width: 880px; }
.legal-copy h2 { margin-top: 48px; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { font-size: 1.02rem; }
.response-page { min-height: 64vh; display: grid; align-content: center; }
.response-mark { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; background: var(--accent-strong); color: white; font-size: 1.8rem; font-weight: 900; }
.response-mark--404 { width: auto; padding-inline: 18px; border-radius: 14px; font-size: 1rem; }
.site-footer { min-height: 220px; display: grid; grid-template-columns: 1fr .8fr auto; gap: 44px; align-items: start; padding-block: 45px 58px; border-top: 1px solid var(--line); }
.footer-brand p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }
.footer-contact p { margin: 0 0 5px; }
.footer-label { color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 800; }
.site-footer nav { justify-content: flex-end; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 850px; }
  .booth-plan, .operations-board, .booking-card, .workflow-map { width: min(680px, 100%); min-height: 460px; }
  .process-grid--4, .process-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .faq-section, .scenario-section { grid-template-columns: 1fr; }
  .faq-section .section-intro { position: static; }
}

@media (max-width: 800px) {
  .site-header { align-items: flex-start; padding-block: 18px; }
  .site-header, .site-footer, .identity-panel, .contact-layout, .closing-section, .section-intro--split { grid-template-columns: 1fr; }
  .site-header { display: grid; }
  .site-header nav { width: 100%; gap: 2px; }
  .site-header nav a { padding-inline: 9px; }
  .site-header .nav-contact { margin-left: 0; }
  .hero { padding-block: 64px 78px; }
  .process-grid--3, .process-grid--4, .process-grid--5, .about-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 230px; }
  .deliverable-card--1, .deliverable-card--2, .deliverable-card--3, .deliverable-card--4, .deliverable-card--5 { grid-column: span 12; }
  .about-number { margin-bottom: 42px; }
  .closing-section { align-items: start; padding: 38px 28px; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .site-header, .site-footer, .hero, .section, .page-hero, .closing-section { width: min(100% - 28px, var(--content)); }
  .brand-name { font-size: .96rem; }
  .hero { gap: 42px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.5rem); }
  .booth-plan, .operations-board, .booking-card, .workflow-map { min-height: 410px; border-radius: 18px; }
  .booth-plan, .operations-board, .booking-card { padding: 18px; }
  .operations-board__stats { grid-template-columns: 1fr; }
  .operations-board__stats div:nth-child(3) { display: none; }
  .schedule-row { grid-template-columns: 46px 1fr; }
  .schedule-row b { display: none; }
  .workflow-node { min-width: 88px; padding: 9px; font-size: .78rem; }
  .workflow-node--1 { left: 3%; }.workflow-node--2 { right: 3%; }.workflow-node--4 { left: 31%; }
  .form-row { grid-template-columns: 1fr; }
  .brief-board dl div { grid-template-columns: 1fr; gap: 5px; }
  .section { padding-block: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
