/* ═══════════════════════════════════════════════════════════════
   AMERIPRISE EXHIBITOR KIT — Web Stylesheet
   Matches NPARALLEL / Atomic Props PDF visual language
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;600;700&display=swap');

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --navy:        #1A252D;
  --navy-mid:    #243340;
  --lake:        #AFCEE5;
  --lake-light:  #ddeef8;
  --lake-pale:   #eef6fc;
  --poppy:       #F4364C;
  --white:       #ffffff;
  --off-white:   #f7f9fb;
  --border:      #d4dde5;
  --mid-grey:    #8a9baa;
  --text:        #1A252D;
  --text-light:  #4a5c6a;
  --radius:      3px;
  --shadow-sm:   0 1px 4px rgba(26,37,45,.10);
  --shadow-md:   0 4px 16px rgba(26,37,45,.14);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
       color: var(--text); background: var(--off-white); line-height: 1.6; }
a { color: var(--poppy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════════════════════════════════════
   HEADER — mirrors document: logo left | event info right
   ══════════════════════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 200;
}

/* Red accent line under header — matches PDF rule */
.site-header::after {
  content: ''; display: block;
  height: 3px; background: var(--poppy);
}

.header-inner {
  display: flex; align-items: stretch;
  max-width: 1100px; margin: 0 auto;
  padding: 0 28px; min-height: 64px;
}

/* Logo block — left side */
.logo-block {
  display: flex; align-items: center;
  padding: 10px 24px 10px 0;
  border-right: 1px solid rgba(175,206,229,.2);
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  width: 170px; height: auto;
  display: block;
}

/* Event info — right side of header */
.header-event {
  display: flex; flex-direction: column; justify-content: center;
  padding: 10px 0 10px 24px; flex: 1;
}
.header-event-title {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .78rem; color: var(--white); letter-spacing: .02em;
}
.header-event-meta {
  font-size: .68rem; color: var(--lake); margin-top: 2px;
  letter-spacing: .02em;
}

/* Nav */
.header-nav {
  display: flex; align-items: center; gap: 2px;
  padding-left: 20px; border-left: 1px solid rgba(175,206,229,.15);
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  color: var(--lake); font-size: .75rem; font-weight: 500;
  padding: 8px 10px; border-radius: var(--radius);
  cursor: pointer; white-space: nowrap;
  background: none; border: none; text-decoration: none;
  letter-spacing: .02em; transition: background .15s, color .15s;
  font-family: 'Inter', sans-serif;
}
.nav-link:hover, .nav-link.active {
  background: rgba(175,206,229,.12); color: var(--white);
  text-decoration: none;
}
.nav-link .caret { font-size: .6rem; opacity: .7; }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: calc(100% + 3px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--poppy);
  min-width: 240px; box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 300;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 16px;
  color: var(--navy); font-size: .8rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background .1s; font-family: 'Inter', sans-serif;
  letter-spacing: .01em;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  background: var(--lake-pale); color: var(--navy);
  text-decoration: none; padding-left: 20px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--lake); border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO — wavy lake-blue texture matching cover page
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--lake-light);
  position: relative; overflow: hidden;
  padding: 0;
}

/* Abstract wave shapes — echoes the PDF cover texture */
.page-hero::before {
  content: '';
  position: absolute; right: -80px; top: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse at 60% 40%, rgba(175,206,229,.55) 0%, rgba(175,206,229,.0) 70%);
  border-radius: 40% 60% 55% 45%;
  transform: rotate(-20deg);
}
.page-hero::after {
  content: '';
  position: absolute; right: 60px; bottom: -40px;
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(175,206,229,.4) 0%, transparent 70%);
  border-radius: 50% 40% 60% 50%;
}

.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 36px 28px 32px;
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; gap: 32px;
}

.hero-badge {
  display: inline-block; background: var(--poppy);
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 2px; margin-bottom: 10px;
}

.hero-title {
  font-family: 'Bebas Neue', 'Oswald', Arial Black, sans-serif;
  font-size: 3rem; letter-spacing: .06em; line-height: .95;
  color: var(--navy); text-transform: uppercase; margin-bottom: 14px;
}

.hero-meta {
  display: flex; flex-direction: column; gap: 3px;
}
.hero-meta-row {
  display: flex; gap: 10px; align-items: baseline;
  font-family: 'Inter', sans-serif; font-size: .78rem;
}
.hero-meta-label {
  font-weight: 700; color: var(--navy); text-transform: uppercase;
  letter-spacing: .08em; font-size: .65rem; width: 72px; flex-shrink: 0;
}
.hero-meta-value { color: var(--navy); font-weight: 500; }

/* Right side accent on hero */
.hero-accent {
  margin-left: auto; flex-shrink: 0; text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.hero-deadline-box {
  background: var(--navy); color: var(--white);
  padding: 12px 16px; border-radius: var(--radius);
  text-align: center; min-width: 180px;
}
.hero-deadline-label {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lake); font-weight: 600; margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
}
.hero-deadline-date {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 1.4rem; letter-spacing: .06em; color: var(--white);
}
.hero-deadline-note {
  font-size: .62rem; color: var(--lake); margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

/* ══════════════════════════════════════════════════════════════
   SECTION DIVIDER — matches the document's colored section bars
   ══════════════════════════════════════════════════════════════ */
.section-bar {
  background: var(--navy); color: var(--white);
  padding: 9px 18px; margin: 28px 0 0;
  display: flex; align-items: center; gap: 10px;
  border-left: 4px solid var(--poppy);
  border-radius: var(--radius) var(--radius) 0 0;
}
.section-bar h2, .section-bar h3 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   CARDS — white content panels
   ══════════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px; overflow: hidden;
}
.card-header {
  background: var(--navy); color: var(--white);
  padding: 10px 18px;
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-left: 4px solid var(--poppy);
}
.card-body { padding: 20px 22px; }

/* ══════════════════════════════════════════════════════════════
   INFO BLOCKS — the "FOR / SHOW / LOCATION" label-value rows
   ══════════════════════════════════════════════════════════════ */
.info-row-group { display: flex; flex-direction: column; gap: 0; }
.info-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
}
.info-row:last-child { border-bottom: none; }
.info-row-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--mid-grey);
  width: 140px; flex-shrink: 0;
}
.info-row-value {
  font-size: .88rem; color: var(--navy); font-weight: 500;
}
.info-row-value.highlight { color: var(--poppy); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   DATES GRID
   ══════════════════════════════════════════════════════════════ */
.dates-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.date-item {
  background: var(--white); padding: 12px 16px;
}
.date-item:hover { background: var(--lake-pale); }
.date-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--mid-grey);
  font-family: 'Inter', sans-serif;
}
.date-value {
  font-family: 'Inter', sans-serif; font-weight: 700;
  color: var(--navy); font-size: .9rem; margin-top: 3px;
}
.date-item.action .date-value { color: var(--poppy); }

/* ══════════════════════════════════════════════════════════════
   TABLES — exact match to PDF table style
   ══════════════════════════════════════════════════════════════ */
.doc-table {
  width: 100%; border-collapse: collapse;
  font-family: 'Inter', sans-serif; font-size: .82rem;
  border: 1px solid var(--border);
}
.doc-table thead tr {
  background: var(--navy);
}
.doc-table thead th {
  color: var(--white); text-align: left;
  padding: 9px 14px; font-size: .68rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.doc-table thead th:first-child { border-left: 3px solid var(--poppy); }
.doc-table tbody tr { border-bottom: 1px solid var(--border); }
.doc-table tbody tr:nth-child(even) td { background: var(--lake-pale); }
.doc-table tbody tr:last-child { border-bottom: none; }
.doc-table td { padding: 9px 14px; color: var(--text); vertical-align: top; }
.doc-table td.bold { font-weight: 700; }
.doc-table td.price { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.doc-table tr.sub-header td {
  background: var(--lake); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .07em; color: var(--navy);
  border-left: 3px solid var(--poppy);
}

/* ══════════════════════════════════════════════════════════════
   DEADLINE / NOTICE BOXES
   ══════════════════════════════════════════════════════════════ */
.deadline-box {
  background: var(--navy);
  border-left: 5px solid var(--poppy);
  padding: 14px 20px; margin-bottom: 20px;
  border-radius: var(--radius);
}
.deadline-title {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600; font-size: .88rem;
  color: var(--white); letter-spacing: .04em;
}
.deadline-note {
  font-size: .75rem; color: var(--lake);
  margin-top: 5px; font-family: 'Inter', sans-serif;
  font-style: italic;
}

.notice {
  border-left: 4px solid var(--lake);
  background: var(--lake-pale);
  padding: 12px 16px; border-radius: var(--radius);
  font-size: .82rem; color: var(--navy);
  margin-bottom: 16px; font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.notice.warn { border-color: #e8a020; background: #fffbf0; color: #5a3d00; }
.notice.danger { border-color: var(--poppy); background: #fff0f2; color: #7a0010; }

/* ══════════════════════════════════════════════════════════════
   TEXT CONTENT
   ══════════════════════════════════════════════════════════════ */
.info-text {
  font-size: .88rem; color: var(--text-light); line-height: 1.65;
  margin-bottom: 12px; font-family: 'Inter', sans-serif;
}
.info-text:last-child { margin-bottom: 0; }

.info-list { list-style: none; padding: 0; }
.info-list li {
  font-size: .85rem; color: var(--text-light); padding: 6px 0 6px 18px;
  position: relative; border-bottom: 1px solid var(--border);
  line-height: 1.55; font-family: 'Inter', sans-serif;
}
.info-list li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--poppy); font-size: .75rem; top: 8px;
}
.info-list li:last-child { border-bottom: none; }

.regs-list { list-style: decimal; padding-left: 18px; }
.regs-list li {
  font-size: .85rem; color: var(--text-light);
  margin-bottom: 10px; line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* ══════════════════════════════════════════════════════════════
   FORMS — matching document form style
   ══════════════════════════════════════════════════════════════ */
.form-section-label {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy);
  border-bottom: 2px solid var(--lake); padding-bottom: 5px;
  margin: 20px 0 14px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 6px; }
.form-grid.full { grid-template-columns: 1fr; }
.form-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 4px; }

.form-group label {
  font-size: .65rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: .08em;
  font-family: 'Inter', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 8px 10px; font-size: .88rem;
  font-family: 'Inter', sans-serif; background: #fafcfd;
  transition: border-color .15s, background .15s; color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-bottom-color: var(--poppy);
  background: var(--white);
}
.form-group textarea { min-height: 80px; resize: vertical; border-radius: var(--radius); border-bottom: 2px solid var(--navy); }

/* Order row items */
.order-table { width: 100%; border-collapse: collapse; margin-bottom: 4px; }
.order-table th {
  background: var(--lake); color: var(--navy);
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 8px 12px;
  text-align: left; border-bottom: 2px solid var(--navy);
  font-family: 'Inter', sans-serif;
}
.order-table th:first-child { border-left: 3px solid var(--poppy); }
.order-table td {
  padding: 9px 12px; border-bottom: 1px solid var(--border);
  font-size: .84rem; font-family: 'Inter', sans-serif;
  vertical-align: middle;
}
.order-table tbody tr:last-child td { border-bottom: none; }
.order-table tbody tr:nth-child(even) td { background: var(--lake-pale); }
.order-table tr.sub-header td {
  background: var(--lake); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .07em; color: var(--navy);
  border-left: 3px solid var(--poppy);
}
.order-table td.item-price { font-weight: 700; color: var(--navy); }
.order-table td.ext-price { font-weight: 700; text-align: right; color: var(--text-light); }
.order-table td input[type="number"] {
  width: 64px; text-align: center; padding: 5px 6px;
  border: 1px solid var(--border); border-bottom: 2px solid var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  font-family: 'Inter', sans-serif; font-size: .85rem;
  background: #fafcfd;
}
.order-table td input[type="number"]:focus {
  outline: none; border-bottom-color: var(--poppy);
}

.total-bar {
  background: var(--navy); color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 1px;
}
.total-bar .total-label { font-size: .75rem; color: var(--lake); font-family: 'Inter', sans-serif; letter-spacing: .04em; }
.total-bar .total-amt {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 1.5rem; letter-spacing: .06em; color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   CARPET SWATCHES
   ══════════════════════════════════════════════════════════════ */
.color-grid { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0 20px; }
.color-swatch { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; }
.color-swatch input { position: absolute; opacity: 0; width: 0; }
.swatch-box {
  width: 54px; height: 54px; border-radius: 3px;
  background: var(--sw, #ccc);
  border: 3px solid transparent; transition: all .15s;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.2);
}
.color-swatch input:checked ~ .swatch-box,
.color-swatch:hover .swatch-box { border-color: var(--poppy); box-shadow: 0 0 0 2px var(--poppy); }
.swatch-label { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); font-family: 'Inter', sans-serif; }

/* ══════════════════════════════════════════════════════════════
   ADDRESS BOX — matches the two-column address blocks in doc
   ══════════════════════════════════════════════════════════════ */
.address-box {
  border: 1px solid var(--border); border-top: 3px solid var(--navy);
  padding: 14px 18px; font-size: .84rem; line-height: 1.8;
  font-family: 'Inter', sans-serif; background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}
.address-box strong { color: var(--navy); font-weight: 700; display: block; }
.address-box .addr-label {
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--mid-grey); margin-bottom: 4px; display: block;
}

/* Two-up address blocks side by side (like doc) */
.addr-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.addr-pair-header {
  background: var(--lake); font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy); padding: 8px 14px;
  border-left: 3px solid var(--poppy); border-radius: var(--radius) var(--radius) 0 0;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius);
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: .88rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
  border: none; text-decoration: none; transition: opacity .15s;
}
.btn-primary { background: var(--poppy); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn:hover { opacity: .85; text-decoration: none; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

.submit-area { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; align-items: center; }

/* ══════════════════════════════════════════════════════════════
   TWO-COL LAYOUT
   ══════════════════════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ══════════════════════════════════════════════════════════════
   QUICK LINK GRID (index page)
   ══════════════════════════════════════════════════════════════ */
.quick-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.quick-link-item {
  background: var(--white); padding: 14px 16px;
  text-decoration: none; transition: background .15s;
  display: flex; flex-direction: column; gap: 4px;
}
.quick-link-item:hover { background: var(--lake-pale); text-decoration: none; }
.quick-link-cat {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--mid-grey); font-family: 'Inter', sans-serif;
}
.quick-link-name {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: .88rem; font-weight: 600; color: var(--navy);
  letter-spacing: .03em;
}
.quick-link-arrow {
  font-size: .75rem; color: var(--poppy); margin-top: 4px;
  font-family: 'Inter', sans-serif; font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   PRINT LABELS
   ══════════════════════════════════════════════════════════════ */
.label-print-card {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 20px; margin-bottom: 20px; background: var(--white);
  max-width: 520px; font-family: 'Inter', sans-serif;
}
.lp-header {
  font-family: 'Oswald', sans-serif; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--white);
  background: var(--navy); border-left: 4px solid var(--poppy);
  padding: 7px 12px; margin: -20px -20px 14px; border-radius: var(--radius) var(--radius) 0 0;
}
.lp-header.direct { background: var(--poppy); border-color: var(--navy); }
.lp-to { font-size: .75rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.lp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 10px; }
.lp-field label { font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mid-grey); display: block; font-weight: 700; }
.lp-field .lp-value { font-size: .92rem; font-weight: 700; color: var(--navy); border-bottom: 1px solid var(--border); padding: 3px 0; min-height: 26px; }
.lp-bottom { font-size: .7rem; color: var(--text-light); border-top: 2px solid var(--navy); padding-top: 8px; margin-top: 10px; }

/* ══════════════════════════════════════════════════════════════
   MAIN
   ══════════════════════════════════════════════════════════════ */
main { padding: 30px 0 60px; }
.form-error { display: none; color: var(--poppy); font-size: .82rem; margin-bottom: 12px; font-family: 'Inter', sans-serif; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — matches doc footer with logo + contact info
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--navy); color: var(--lake);
  padding: 28px 0 20px; margin-top: 40px;
}
footer::before {
  content: ''; display: block; height: 3px;
  background: var(--poppy); margin-bottom: 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 24px; }
.footer-logo-img {
  width: 150px; height: auto; display: block;
  margin-bottom: 6pt;
}
.footer-exhibitor-tag {
  font-size: .62rem; letter-spacing: .16em; color: var(--lake);
  text-transform: uppercase; font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}
.footer-contact-name {
  font-size: .78rem; color: var(--white) !important;
  font-weight: 600; margin-bottom: 2px !important;
}
.footer-col h4 {
  font-family: 'Oswald', 'Inter', sans-serif; font-size: .75rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
  border-bottom: 1px solid rgba(175,206,229,.2); padding-bottom: 6px;
}
.footer-col p, .footer-col a {
  font-size: .78rem; color: var(--lake); display: block;
  margin-bottom: 4px; font-family: 'Inter', sans-serif; line-height: 1.5;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-deadline {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 1.2rem; letter-spacing: .06em; color: var(--poppy);
}
.footer-bottom {
  border-top: 1px solid rgba(175,206,229,.15); padding-top: 16px;
  font-size: .7rem; text-align: center; color: rgba(175,206,229,.5);
  font-family: 'Inter', sans-serif; letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .header-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 12px 16px; gap: 4px; z-index: 400; border-top: 3px solid var(--poppy); }
  .header-nav.open { display: flex; }
  .header-event { display: none; }
  .dropdown { position: static; border-top: none; box-shadow: none; background: rgba(255,255,255,.06); margin: 2px 0 2px 12px; }
  .dropdown a { color: var(--lake); font-size: .78rem; padding: 8px 12px; }
  .hero-inner { flex-direction: column; gap: 16px; }
  .hero-accent { margin-left: 0; align-items: flex-start; width: 100%; }
  .hero-deadline-box { min-width: unset; text-align: left; }
  .hero-title { font-size: 2.2rem; }
  .dates-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .addr-pair { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid.three { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media print {
  header, footer, .submit-area, .no-print { display: none !important; }
  .card { box-shadow: none; border: 1px solid #ccc; page-break-inside: avoid; }
  main { padding: 0; }
  body { background: white; }
}

/* ═══════════════════════════════════════════════════════════
   AUTH / PORTAL  STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── Header auth area ─────────────────────────────────────── */
.header-auth-area {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-user-name {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-portal-link, .header-signin-link {
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.header-signin-link {
  background: var(--poppy);
  color: #fff;
}
.header-portal-link {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.header-portal-link.admin-link {
  background: var(--poppy);
  border-color: var(--poppy);
}
.header-signout {
  font-size: .75rem;
  font-weight: 600;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.header-signout:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── Auth page (login.html) ────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #24404f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.auth-shell {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth-brand { text-align: center; }
.auth-logo {
  display: inline-block;
  text-decoration: none;
}
.auth-logo .logo-img { width: 220px; height: auto; display: block; margin: 0 auto; }
.auth-brand-sub {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
}
.auth-event {
  font-size: .85rem;
  color: var(--lake);
  margin-top: 6px;
}
.auth-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  overflow: hidden;
}
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
}
.auth-tab {
  flex: 1;
  padding: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--lake-pale);
  border: none;
  cursor: pointer;
  color: var(--navy-60);
  transition: all .2s;
}
.auth-tab.active {
  background: #fff;
  color: var(--navy);
  border-bottom: 2px solid var(--poppy);
  margin-bottom: -2px;
}
.auth-panel { padding: 28px; }
.auth-intro {
  font-size: .85rem;
  color: var(--navy-60);
  margin-bottom: 18px;
  line-height: 1.5;
}
.auth-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: .85rem;
  color: #b91c1c;
  margin-bottom: 14px;
}
.auth-success {
  background: #f0fdf4;
  border-color: #86efac;
  color: #15803d;
}
.btn-full { width: 100%; margin-top: 4px; }
.auth-link-btn {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: .82rem;
  color: var(--navy-60);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.auth-footer {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.auth-footer a { color: rgba(255,255,255,.65); }

/* ── Dashboard order cards ─────────────────────────────────── */
.order-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--lake-pale);
  border-bottom: 1px solid var(--border);
}
.order-card-type {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-card-icon { font-size: 1.2rem; }
.order-card-meta { display: flex; align-items: center; gap: 10px; }
.order-date { font-size: .78rem; color: var(--navy-60); }
.order-card-body { padding: 14px 18px; }
.order-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.order-item-list {
  margin: 0;
  padding-left: 18px;
  font-size: .85rem;
  color: var(--navy-60);
}
.order-item-list li { margin-bottom: 2px; }

/* ── Status badges ─────────────────────────────────────────── */
.order-status {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 20px;
}
.status-submitted  { background: #fef3c7; color: #92400e; }
.status-confirmed  { background: #dbeafe; color: #1e40af; }
.status-processing { background: #ede9fe; color: #5b21b6; }
.status-fulfilled  { background: #d1fae5; color: #065f46; }

/* ── Admin page ────────────────────────────────────────────── */
.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.stat-card {
  background: var(--lake-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  min-width: 110px;
}
.stat-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.stat-label { font-size: .72rem; font-weight: 700; color: var(--navy-60); text-transform: uppercase; margin-top: 4px; }
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--lake-pale);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--navy); }
.filter-group input, .filter-group select { padding: 7px 10px; border: 1px solid var(--border); border-radius: 4px; font-size: .85rem; min-width: 150px; }
.admin-table td { font-size: .85rem; vertical-align: middle; }
.btn-detail {
  font-size: .78rem; font-weight: 700; padding: 4px 10px;
  background: var(--navy); color: #fff; border: none; border-radius: 4px; cursor: pointer;
}
.btn-detail:hover { background: var(--poppy); }

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 20px;
}
.modal-card {
  background: #fff; border-radius: 10px; width: 100%; max-width: 680px;
  max-height: 90vh; display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 2px solid var(--poppy);
  font-family: 'Oswald',sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase;
}
.modal-close { background:none; border:none; font-size:1.4rem; cursor:pointer; color:var(--navy-60); line-height:1; }
.modal-body { flex:1; overflow-y:auto; padding:20px; }
.modal-footer {
  padding:14px 20px; border-top:1px solid var(--border);
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.modal-footer label { font-size:.82rem; font-weight:700; color:var(--navy); }
.modal-footer select { padding:6px 10px; border:1px solid var(--border); border-radius:4px; font-size:.85rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 720px) {
  .header-user-name { display: none; }
  .header-auth-area { gap: 5px; }
  .auth-page { padding: 20px 12px; }
  .admin-filters { flex-direction: column; }
  .modal-card { max-height: 95vh; }
}
