
/* ============================================================
   ACCO HOSPITALITY REFRESH - editorial public site + staff app
   ============================================================ */
:root {
  --navy-900: #071a38;
  --navy-800: #0b2852;
  --navy-700: #123a6e;
  --blue-600: #087fc4;
  --blue-500: #1597d4;
  --blue-100: #e9f5fb;
  --blue-50: #f5fbfe;
  --gold: #b98a3d;
  --gold-soft: #d8b66b;
  --bg: #ffffff;
  --bg-warm: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f4f7fa;
  --text: #071a38;
  --text-2: #33445b;
  --text-3: #58677a;
  --border: rgba(7, 26, 56, .14);
  --border-2: rgba(7, 26, 56, .24);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --sh-sm: 0 8px 24px rgba(7, 26, 56, .06);
  --sh-md: 0 20px 50px rgba(7, 26, 56, .1);
}

body {
  background: #fff;
  color: var(--navy-900);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -.003em;
}
body::before { display: none; }
h1, h2, h3 { text-wrap: balance; }
.container { width: min(1320px, calc(100% - 64px)); }
.section { padding: 90px 0; }
.section-alt { background: var(--bg-warm); }
.orbs, .float-card { display: none !important; }
.reveal,
.reveal.in {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(8, 127, 196, .32);
  outline-offset: 3px;
}

.nav {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: none;
  height: 78px;
  padding: 0 max(32px, calc((100vw - 1320px) / 2));
  background: rgba(255,255,255,.96);
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
}
.nav-logo { min-width: 190px; }
.nav-logo img { width: 154px; height: 58px; object-fit: contain; object-position: left center; }
.nav-logo-name { display: none; }
.nav-links { gap: 32px; }
.nav-links a { color: var(--navy-900); font-size: .96rem; font-weight: 600; padding: 28px 0 25px; border-bottom: 2px solid transparent; border-radius: 0; background: transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-600); border-bottom-color: var(--blue-500); background: transparent; }
.btn { border-radius: 5px; min-height: 44px; font-weight: 600; letter-spacing: 0; box-shadow: none; }
.btn-primary { background: var(--blue-600); border-color: var(--blue-600); }
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(8,127,196,.2); }
.btn-ghost { background: #fff; color: var(--navy-900); border-color: rgba(7,26,56,.28); }
.btn-ghost:hover { border-color: var(--blue-600); color: var(--blue-600); background: #fff; }

.hero-split { min-height: 660px; padding: 78px 0 0; background: #fff; overflow: hidden; }
.hero-split .container { width: 100%; max-width: none; margin: 0; padding-left: clamp(48px, calc((100vw - 1320px) / 2), 240px); padding-right: 0; }
.hero-split-grid { grid-template-columns: minmax(440px, .95fr) minmax(560px, 1.25fr); align-items: stretch; gap: 54px; min-height: 580px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px 0 72px; }
.hero-copy h1 { max-width: 660px; margin: 0; font-size: clamp(3.55rem, 5vw, 5.7rem); line-height: 1; letter-spacing: -.052em; font-weight: 400; color: var(--navy-900); }
.display-grad { color: var(--blue-600); background: none; -webkit-text-fill-color: currentColor; }
.hero-copy .lead { max-width: 600px; margin-top: 24px; font-size: 1.16rem; line-height: 1.62; color: var(--text-2); }
.hero-visual { min-height: 580px; aspect-ratio: auto; border-radius: 0; max-width: none; margin: 0; }
.hero-vid-card, .hero-photo-panel { height: 100%; min-height: 580px; border: 0; border-radius: 0; box-shadow: none; overflow: hidden; }
.hero-photo-panel::before { display: none; }
.hero-photo-panel .hero-photo { width: 100%; height: 100%; padding: 0; object-fit: cover; object-position: 58% center; display: block; }
.zip-form { max-width: 620px; margin-top: 34px; }
.zip-row { gap: 10px; }
.zip-row { align-items: start; }
.zip-row .btn { flex: 0 0 auto; }
.zip-input { border: 1px solid var(--border-2); border-radius: 5px; background: #fff; box-shadow: none; }
.zip-input:focus-within { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(21,151,212,.12); }
.zip-meta { color: var(--text-2); font-size: .8rem; }
.hero-call { color: var(--text-2); }

/* Address search */
.address-lookup { position: relative; min-width: 0; }
.address-input-shell { position: relative; }
.address-input-shell input[type="search"]::-webkit-search-cancel-button { appearance: none; }
.address-spinner {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-right: 2px;
  border: 2px solid rgba(8,127,196,.2);
  border-top-color: var(--blue-600);
  border-radius: 50%;
  animation: address-spin .72s linear infinite;
}
@keyframes address-spin { to { transform: rotate(360deg); } }
.address-results {
  position: absolute;
  z-index: 40;
  top: 52px;
  left: 0;
  right: 0;
  max-height: 286px;
  overflow-y: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7,26,56,.16);
}
.address-lookup-hero .address-results { top: 59px; right: auto; width: min(380px, calc(100vw - 48px)); }
.address-results[hidden] { display: none; }
.address-option {
  width: 100%;
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--navy-900);
  text-align: left;
  font-family: var(--f-sans);
  cursor: pointer;
}
.address-option:hover, .address-option.is-active { background: var(--blue-50); }
.address-option-primary { font-size: .91rem; font-weight: 650; line-height: 1.35; }
.address-option-secondary { color: var(--text-2); font-size: .82rem; line-height: 1.4; }
.address-status {
  min-height: 0;
  margin: 6px 0 0;
  color: var(--text-2);
  font-size: .875rem;
  line-height: 1.4;
}
.address-status:empty { display: none; }
.address-status[data-state="success"] { color: #16734d; }
.address-status[data-state="manual"] { color: #735a23; }
.address-status[data-state="error"] { color: #9b3d31; }
.address-status-hero { padding-left: 4px; }
.address-helper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  color: var(--text-2);
  font-size: .875rem;
  line-height: 1.4;
}
.address-manual-toggle {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-600);
  font: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.address-manual-toggle:hover { color: var(--navy-700); }
.address-manual-toggle:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 3px; }
.address-attribution { margin-top: 5px; color: var(--text-2); font-size: .8rem; }
.address-attribution a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.form-address-input {
  display: flex;
  align-items: center;
  min-height: 45px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-warm);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.form-address-input:focus-within {
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58,138,255,.1);
}
.form-address-input .address-input-icon { position: absolute; left: 14px; color: var(--text-3); pointer-events: none; }
.form-group .form-address-input input {
  width: 100%;
  padding: 12px 40px 12px 42px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}
.form-group .form-address-input input:focus { border: 0; background: transparent; box-shadow: none; }
.form-address-input .address-spinner { position: absolute; right: 13px; margin: 0; }
.form-row-address-meta { grid-template-columns: minmax(0,1.25fr) minmax(84px,.55fr) minmax(112px,.7fr); }

.customer-address-strip {
  position: relative;
  z-index: 4;
  padding: 34px 0 36px;
  background: linear-gradient(105deg, #f7fbfd 0%, #fff 58%, #f2f8fc 100%);
  border-bottom: 1px solid var(--border);
}
.customer-address-strip-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}
.customer-address-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.06;
}
.customer-address-copy p {
  max-width: 460px;
  margin: 10px 0 0;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.58;
}
.customer-address-form { min-width: 0; }
.customer-address-form > label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.customer-address-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}
.customer-address-input {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--border-2);
  border-radius: 5px;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.customer-address-input:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(21,151,212,.12);
}
.customer-address-input .address-input-icon {
  position: absolute;
  left: 16px;
  color: var(--blue-600);
  pointer-events: none;
}
.customer-address-input input {
  width: 100%;
  min-width: 0;
  padding: 14px 42px 14px 16px;
  border: 0;
  border-radius: inherit;
  outline: 0;
  background: transparent;
  color: var(--navy-900);
  font: inherit;
  box-shadow: none;
}
.customer-address-input input::placeholder { color: var(--text-3); }
.customer-address-input input:focus { border: 0; outline: 0; background: transparent; box-shadow: none; }
.customer-address-input .address-spinner { position: absolute; right: 14px; margin: 0; }
.customer-address-form-row .btn { min-height: 52px; white-space: nowrap; }
.customer-address-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  margin: 7px 0 0;
  color: var(--text-2);
  font-size: .84rem;
  line-height: 1.45;
}
.customer-address-meta a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.marquee { border-top: 0; border-bottom: 0; background: var(--navy-900); color: #fff; }
.marquee-item { color: rgba(255,255,255,.92); background: transparent; border-color: rgba(255,255,255,.2); box-shadow: none; font-family: var(--f-sans); font-size: .78rem; letter-spacing: .12em; }
.marquee-item svg { color: var(--gold-soft); }

.section-head { max-width: 780px; margin-bottom: 46px; }
.section-head .eyebrow, .eyebrow { color: var(--blue-600); background: transparent; border: 0; padding: 0; border-radius: 0; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.section-head h2, .section h2 { color: var(--navy-900); font-size: clamp(2.35rem, 4.5vw, 4.25rem); font-weight: 400; letter-spacing: -.043em; line-height: 1.07; }
.section-head p { max-width: 650px; font-size: 1.08rem; line-height: 1.65; }

/* Readable conversion banner type on every customer page. */
.section .cta-banner h2 {
  max-width: 980px;
  margin: 0 auto 16px;
  color: #fff;
  font-family: var(--f-sans);
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  font-style: normal;
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.06;
  -webkit-text-fill-color: currentColor;
}
.section .cta-banner h2 .italic-serif {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  -webkit-text-fill-color: currentColor;
}
.section .cta-banner p { color: rgba(255,255,255,.88); }
.section .portal-shell .portal-topbar h2 { color: #fff; }
.section .portal-shell .portal-topbar p,
.portal-note-board p,
.app-note-board p { color: rgba(255,255,255,.82); }
.service-grid { gap: 0; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.service-card { border: 0; border-right: 1px solid var(--border); border-radius: 0; padding: 38px 36px 42px; background: #fff; box-shadow: none; }
.service-card:last-child { border-right: 0; }
.service-card:hover { transform: none; box-shadow: inset 0 3px var(--blue-500); }
.service-icon { background: transparent !important; color: var(--blue-600) !important; width: 34px; height: 34px; border-radius: 0; }
.service-card h3 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 400; }
.service-features { border-top: 1px solid var(--border); padding-top: 18px; }
.service-link { color: var(--blue-600); }
.split { gap: clamp(56px, 8vw, 120px); }
.split-visual { border-radius: 4px; box-shadow: var(--sh-md); }
.feature-item { align-items: flex-start; border-bottom: 1px solid var(--border); padding: 20px 0; }
.fi-icon { background: transparent; color: var(--gold); border-radius: 0; }
.path-grid, .quick-nav-grid, .portal-feature-grid, .value-grid { gap: 18px; }
.path-card, .quick-nav-card, .portal-feature-card, .value-card { border-radius: 8px; box-shadow: none; border-color: var(--border); }
.path-card:hover, .quick-nav-card:hover { border-color: rgba(21,151,212,.45); transform: translateY(-2px); box-shadow: var(--sh-sm); }

.page-hero { padding: 128px 0 72px; min-height: 380px; background: linear-gradient(110deg,#fff 0%,#fff 58%,#edf7fc 100%); border-bottom: 1px solid var(--border); }
.page-hero .breadcrumbs { color: var(--text-3); font-size: .8rem; font-weight: 500; line-height: 1.5; }
.page-hero h1 { font-size: clamp(3.2rem, 5.4vw, 5.25rem); font-weight: 400; letter-spacing: -.052em; }
.page-hero p { max-width: 720px; color: var(--text-2); font-size: 1.12rem; line-height: 1.64; }

.contact-grid > * { min-width: 0; }
.info-item .value { overflow-wrap: anywhere; }
.info-item .label { color: var(--text-2); font-size: .85rem; font-weight: 650; }
.form-card {
  padding: 40px;
  border-color: var(--border-2);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(7, 26, 56, .09);
}
.form-group { gap: 8px; margin-bottom: 16px; }
.form-group label { color: var(--navy-900); font-size: .9rem; font-weight: 650; }
.form-group input,
.form-group select,
.form-group textarea {
  min-height: 48px;
  padding: 12px 14px;
  border-color: var(--border-2);
  border-radius: 6px;
  background: #fff;
  color: var(--navy-900);
  font-size: 1rem;
}
.form-group textarea { min-height: 128px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #697689; opacity: 1; }
.form-legal { color: var(--text-2); font-size: .875rem; line-height: 1.55; }
.calc-label,
.career-pay-card .label,
.form-section-title { color: var(--text-2); font-size: .86rem; font-weight: 650; }
.calc-chip { min-height: 48px; border-color: var(--border-2); background: #fff; font-size: .92rem; }
.calc-chip small { color: var(--blue-600); font-size: .78rem; }
.calc-result .label { color: rgba(255,255,255,.84); font-size: .86rem; font-weight: 600; }
.calc-result .range { color: rgba(255,255,255,.82); font-size: .92rem; line-height: 1.5; }

.footer { background: var(--navy-900); color: #fff; border-top: 0; }
.footer h5 { color: var(--gold-soft); letter-spacing: .08em; text-transform: uppercase; }
.footer a, .footer p, .footer li { color: rgba(255,255,255,.82); }
.footer a:hover { color: #fff; }
.footer-brand img { filter: brightness(0) invert(1); opacity: .96; }
.footer-bottom { border-top-color: rgba(255,255,255,.12); }

/* Staff portal */
.portal-app-page { background: var(--bg-warm); }
.portal-app-page > .nav, .portal-app-page > .page-hero, .portal-app-page > .footer, .portal-workspace-top { display: none; }
.portal-workspace-section { padding: 0; min-height: 100vh; }
.portal-workspace-container { width: 100%; max-width: none; }
.portal-auth-shell, .portal-auth-shell-full { border: 0; border-radius: 0; box-shadow: none; background: transparent; padding: 0; min-height: 100vh; }
[data-portal-root] { min-height: 100vh; }
.portal-auth-experience { width: min(1120px, calc(100% - 48px)); min-height: 640px; margin: 0 auto; padding: 48px 0; display: grid; grid-template-columns: .88fr 1.25fr; align-items: stretch; }
.portal-auth-brand-panel { display: flex; flex-direction: column; padding: 48px; background: var(--navy-900); color: #fff; border-radius: 12px 0 0 12px; border-top: 4px solid var(--gold); }
.portal-auth-logo img { width: 168px; height: 72px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.portal-auth-brand-panel > div { margin-top: auto; }
.portal-auth-kicker { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 700; }
.portal-auth-brand-panel h2 { margin-top: 16px; color: #fff; font-family: var(--f-display); font-size: clamp(2.5rem,4vw,3.8rem); line-height: 1; font-weight: 400; letter-spacing: -.045em; }
.portal-auth-brand-panel p { margin-top: 22px; color: rgba(255,255,255,.75); line-height: 1.7; }
.portal-auth-benefits { display: grid; gap: 11px; margin: 34px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); list-style: none; }
.portal-auth-benefits li { position: relative; padding-left: 24px; color: rgba(255,255,255,.9); font-size: .9rem; }
.portal-auth-benefits li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold-soft); }
.portal-auth-brand-panel small { color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .09em; }
.portal-app-page .portal-auth-experience .portal-auth-card { max-width: none; margin: 0; padding: 48px; border-radius: 0 12px 12px 0; border: 1px solid var(--border); border-left: 0; box-shadow: var(--sh-md); }
.portal-app-frame { display: grid; grid-template-columns: 230px minmax(0,1fr); min-height: 100vh; background: var(--bg-warm); }
.portal-app-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 28px 18px 24px; background: var(--navy-900); color: #fff; }
.portal-app-brand { display: block; padding: 0 10px 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
.portal-app-brand img { width: 158px; height: 68px; object-fit: contain; filter: brightness(0) invert(1); }
.portal-app-nav { display: grid; gap: 5px; padding-top: 26px; }
.portal-app-nav a { color: rgba(255,255,255,.76); padding: 13px 14px; border-radius: 6px; font-size: .93rem; font-weight: 600; }
.portal-app-nav a:hover, .portal-app-nav a.active { color: #fff; background: var(--blue-600); }
.portal-app-support { margin-top: auto; display: grid; gap: 3px; color: rgba(255,255,255,.72); padding: 14px; font-size: .88rem; border-top: 1px solid rgba(255,255,255,.12); }
.portal-app-support span { color: #6cc5ef; }
.portal-app-main { min-width: 0; }
.portal-app-page .portal-live-shell { max-width: 1480px; margin: 0 auto; padding: 30px 34px 50px; }
.portal-toolbar { padding: 0 0 26px; border: 0; background: transparent; align-items: center; }
.portal-toolbar h3 { font-family: var(--f-display); font-size: clamp(2.2rem,3vw,3rem); font-weight: 500; color: var(--navy-900); }
.portal-toolbar p { margin-top: 3px; color: var(--text-2); font-size: 1rem; }
.portal-stat-grid { gap: 0; border: 1px solid var(--border); background: #fff; border-radius: 8px; box-shadow: var(--sh-sm); }
.portal-stat-card { border: 0; border-right: 1px solid var(--border); border-radius: 0; background: #fff; box-shadow: none; padding: 24px 26px; }
.portal-stat-card:last-child { border-right: 0; }
.portal-stat-card strong { color: var(--navy-900); }
.portal-live-grid { grid-template-columns: minmax(0,1.65fr) minmax(330px,.75fr); align-items: start; gap: 20px; }
.portal-section-card { border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 4px 18px rgba(7,26,56,.04); padding: 24px; background: #fff; }
.portal-section-head h4 { font-size: 1.12rem; color: var(--navy-900); }
.portal-job-card-live, .portal-user-card, .portal-code-card { border-radius: 6px; box-shadow: none; border-color: var(--border); }
.portal-field input, .portal-field select, .portal-field textarea { border-radius: 5px; border-color: var(--border-2); background: #fff; font-size: .93rem; }
.portal-field label { color: var(--navy-900); font-size: .82rem; font-weight: 600; }
.portal-badge, .portal-pill { border-radius: 4px; }
.portal-resource-panel { order: -2; }
.portal-resource-list { display: grid; }
.portal-resource-list a { display: grid; gap: 3px; padding: 14px 2px; border-bottom: 1px solid var(--border); color: var(--navy-900); }
.portal-resource-list a:last-child { border-bottom: 0; }
.portal-resource-list a strong { font-size: .94rem; }
.portal-resource-list a span { color: var(--text-2); font-size: .86rem; }
.portal-resource-list a:hover strong { color: var(--blue-600); }
.portal-onboarding-card { border-color: rgba(21,151,212,.3); }
.portal-onboarding-row { border-radius: 6px; background: #fff; }

/* Employee handbook */
.handbook-page { background: #fff; }
.handbook-hero { padding: 150px 0 84px; background: linear-gradient(115deg,#fff 0 62%,#eef7fb 62%); border-bottom: 1px solid var(--border); }
.handbook-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 88px; align-items: center; }
.handbook-kicker { color: var(--blue-600); text-transform: uppercase; letter-spacing: .13em; font-size: .8rem; font-weight: 700; }
.handbook-hero h1 { margin-top: 16px; font-family: var(--f-display); font-size: clamp(3.5rem,6vw,6rem); line-height: .98; font-weight: 500; letter-spacing: -.055em; }
.handbook-hero h1 .italic-serif { font-style: normal; font-weight: inherit; }
.handbook-hero > .container > div > p:not(.handbook-kicker) { max-width: 650px; margin-top: 24px; color: var(--text-2); font-size: 1.12rem; line-height: 1.7; }
.handbook-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.handbook-welcome { padding: 38px; background: var(--navy-900); color: #fff; border-top: 4px solid var(--gold); box-shadow: var(--sh-md); }
.handbook-welcome strong { font-family: var(--f-display); font-size: 2rem; font-weight: 400; }
.handbook-welcome p { margin: 16px 0 24px; color: rgba(255,255,255,.78); line-height: 1.7; }
.handbook-welcome span { color: var(--gold-soft); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.handbook-section { padding: 90px 0 120px; }
.handbook-layout { display: grid; grid-template-columns: 230px minmax(0,760px); gap: 90px; justify-content: center; align-items: start; }
.handbook-toc { position: sticky; top: 110px; display: grid; gap: 5px; padding-right: 24px; border-right: 1px solid var(--border); }
.handbook-toc strong { margin-bottom: 12px; color: var(--navy-900); }
.handbook-toc a { color: var(--text-2); padding: 8px 0; font-size: .92rem; }
.handbook-toc a:hover { color: var(--blue-600); }
.handbook-content { display: grid; gap: 0; }
.handbook-content article { padding: 0 0 62px; margin-bottom: 62px; border-bottom: 1px solid var(--border); scroll-margin-top: 110px; }
.handbook-content article > span { color: var(--gold); font-family: var(--f-mono); font-size: .8rem; }
.handbook-content h2 { margin: 8px 0 20px; font-family: var(--f-display); font-size: clamp(2rem,4vw,3rem); font-weight: 500; letter-spacing: -.04em; }
.handbook-content p, .handbook-content li { color: var(--text-2); line-height: 1.75; }
.handbook-principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 28px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.handbook-principles > div { padding: 24px 20px; border-right: 1px solid var(--border); }
.handbook-principles > div:first-child { padding-left: 0; }
.handbook-principles > div:last-child { border-right: 0; }
.handbook-principles strong { color: var(--navy-900); }
.handbook-principles p { margin-top: 5px; font-size: .9rem; }
.handbook-steps { display: grid; gap: 0; list-style: none; counter-reset: step; }
.handbook-steps li { counter-increment: step; position: relative; padding: 18px 0 18px 54px; border-bottom: 1px solid var(--border); }
.handbook-steps li::before { content: counter(step); position: absolute; left: 0; top: 17px; display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--blue-500); border-radius: 50%; color: var(--blue-600); font-weight: 700; }
.handbook-checks { display: grid; gap: 13px; list-style: none; }
.handbook-checks li { position: relative; padding-left: 30px; }
.handbook-checks li::before { content: '\2713'; position: absolute; left: 0; color: var(--blue-600); font-weight: 700; }
.handbook-callout { margin-top: 26px; padding: 20px 24px; border-left: 3px solid var(--gold); background: #fbf8f1; color: var(--navy-900) !important; }
.handbook-ack { padding: 40px !important; background: var(--bg-warm); border: 1px solid var(--border) !important; }

@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .hero-split .container { padding-left: 32px; }
  .hero-split-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: clamp(3.4rem,5vw,4.7rem); }
  .portal-app-frame { grid-template-columns: 190px minmax(0,1fr); }
  .portal-live-grid { grid-template-columns: 1fr; }
  .portal-resource-panel { order: 0; }
}

@media (max-width: 820px) {
  .container { width: 100%; padding-left: 18px; padding-right: 18px; }
  .nav { height: 68px; padding: 0 18px; }
  .nav-logo { min-width: 0; }
  .nav-logo img { width: 132px; height: 52px; }
  .nav-cta .btn { display: none; }
  .handbook-page .nav-cta .btn { display: inline-flex; min-height: 40px; padding: 10px 14px; font-size: .82rem; }
  .menu-toggle { border-radius: 5px; background: var(--navy-900); color: #fff; }
  .hero-split { padding-top: 68px; }
  .hero-split .container { padding: 0; width: 100%; }
  .hero-split-grid { display: flex; flex-direction: column; gap: 0; }
  .hero-copy { padding: 56px 24px 46px; }
  .hero-copy h1 { font-size: clamp(2.9rem,12vw,4.15rem); }
  .hero-visual, .hero-vid-card, .hero-photo-panel { min-height: 440px; }
  .hero-photo { object-position: 62% center; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--border); }
  .page-hero { min-height: 0; padding: 108px 0 58px; }
  .portal-auth-experience { width: min(100% - 28px, 620px); grid-template-columns: 1fr; padding: 18px 0; }
  .portal-auth-brand-panel { min-height: 360px; padding: 30px; border-radius: 12px 12px 0 0; }
  .portal-auth-brand-panel > div { margin-top: 46px; }
  .portal-auth-brand-panel h2 { font-size: 2.55rem; }
  .portal-app-page .portal-auth-experience .portal-auth-card { padding: 30px; border-left: 1px solid var(--border); border-top: 0; border-radius: 0 0 12px 12px; }
  .portal-app-frame { display: block; }
  .portal-app-sidebar { position: static; height: auto; padding: 12px 18px; flex-direction: row; align-items: center; gap: 12px; }
  .portal-app-brand { padding: 0; border: 0; }
  .portal-app-brand img { width: 106px; height: 48px; }
  .portal-app-nav { display: flex; overflow-x: auto; padding: 0; gap: 4px; margin-left: auto; }
  .portal-app-nav { scrollbar-width: none; }
  .portal-app-nav::-webkit-scrollbar { display: none; }
  .portal-app-nav a { padding: 9px 11px; white-space: nowrap; font-size: .82rem; }
  .portal-app-support { display: none; }
  .portal-app-page .portal-live-shell { padding: 24px 18px 42px; }
  .portal-stat-grid { grid-template-columns: repeat(2,1fr); }
  .portal-stat-card:nth-child(2) { border-right: 0; }
  .portal-stat-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .handbook-hero { padding: 120px 0 70px; background: #fff; }
  .handbook-hero-grid, .handbook-layout { grid-template-columns: 1fr; gap: 42px; }
  .handbook-toc { position: static; display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 14px; }
  .handbook-toc strong { display: none; }
  .handbook-toc a { white-space: nowrap; padding-right: 18px; }
  .form-row-address-meta { grid-template-columns: 1fr; }
  .customer-address-strip { padding: 30px 0 32px; }
  .customer-address-strip-grid { grid-template-columns: 1fr; gap: 22px; }
  .customer-address-copy p { max-width: 620px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero-copy h1 { font-size: clamp(2.85rem, 14vw, 3.45rem); }
  .hero-copy .lead { font-size: 1.06rem; }
  .page-hero h1 { font-size: clamp(2.7rem, 13vw, 3.55rem); }
  .page-hero p { font-size: 1.04rem; }
  .section-head { margin-bottom: 36px; }
  .section-head h2, .section h2 { font-size: clamp(2.2rem, 11vw, 3.1rem); }
  .zip-row { display: grid; }
  .address-helper { align-items: flex-start; }
  .customer-address-form-row { grid-template-columns: 1fr; }
  .customer-address-form-row .btn { width: 100%; }
  .customer-address-copy h2 { font-size: 2.1rem; }
  .customer-address-meta { font-size: .76rem; }
  .form-card { padding: 26px 20px; }
  .hero-visual, .hero-vid-card, .hero-photo-panel { min-height: 360px; }
  .portal-app-sidebar { align-items: flex-start; }
  .portal-app-nav { max-width: calc(100vw - 140px); }
  .portal-toolbar { align-items: flex-start; }
  .portal-toolbar-actions { width: 100%; flex-direction: row; align-items: center; }
  .portal-stat-grid { grid-template-columns: 1fr 1fr; }
  .portal-stat-card { padding: 18px; }
  .portal-onboarding-actions { margin-left: 68px; }
  .handbook-hero h1 { font-size: 3.2rem; }
  .handbook-welcome { padding: 28px; }
  .handbook-principles { grid-template-columns: 1fr; }
  .handbook-principles > div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .handbook-principles > div:last-child { border-bottom: 0; }
}
