:root {
  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #133948;
  --ink-deep: #0b2430;
  --teal: #0f4a59;
  --teal-deep: #072d39;
  --coral: #ff6d57;
  --coral-deep: #e7553e;
  --lime: #c9dd2d;
  --lime-deep: #a5bc0f;
  --sand: #efe9de;
  --mist: rgba(255, 255, 255, 0.88);
  --line: rgba(19, 57, 72, 0.16);
  --shadow-soft: 0 22px 48px rgba(13, 37, 46, 0.14);
  --shadow-strong: 0 28px 64px rgba(10, 29, 36, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --font-display: "Iowan Old Style", "Baskerville Old Face", "Palatino Linotype", serif;
  --font-body: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  --landing-art: url("bloomlineevents_corporateevent_florist_landing.png");
  --about-art: url("bloomlineevents_corporateevent_florist_about_us.png");
  --services-art: url("bloomlineevents_corporateevent_florist_services.png");
  --contact-art: url("bloomlineevents_corporateevent_florist_contact_us.png");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 109, 87, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(201, 221, 45, 0.15), transparent 24%),
    linear-gradient(180deg, #fcfaf6 0%, #f2ece2 100%);
  font-family: var(--font-body);
  min-height: 100vh;
}

body[data-surface="public"] {
  background: linear-gradient(180deg, #f8f6f2 0%, #efe8dc 100%);
}

body[data-surface="app"] {
  background:
    radial-gradient(circle at top left, rgba(201, 221, 45, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 109, 87, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #ebe3d4 100%);
}

body[data-surface="print"] {
  background: #f1ece3;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(20, 46, 58, 0.12);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 50%;
  max-width: min(1120px, calc(100% - 32px));
  padding: 14px 22px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 30;
}

.site-brand {
  align-items: center;
  display: flex;
  gap: 14px;
  text-decoration: none;
}

.site-brand-mark {
  align-items: center;
  background: rgba(15, 74, 89, 0.1);
  border: 1px solid rgba(15, 74, 89, 0.16);
  border-radius: 999px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.site-brand-mark svg {
  height: 20px;
  width: 20px;
}

.site-brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.site-brand-copy span {
  color: rgba(19, 57, 72, 0.72);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-top: 6px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  min-width: 0;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  color: var(--coral-deep);
}

.site-nav a:hover {
  color: var(--teal);
}

.site-header-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.site-chip {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.site-chip:hover,
.site-chip:focus-visible {
  transform: translateY(-1px);
}

.site-chip--coral {
  background: linear-gradient(135deg, var(--coral) 0%, #ff8a59 100%);
  box-shadow: 0 18px 30px rgba(255, 109, 87, 0.28);
  color: #fff7f2;
}

.site-chip--ghost {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 57, 72, 0.16);
  color: var(--ink);
}

.site-cta-stack {
  bottom: 22px;
  display: grid;
  gap: 12px;
  position: fixed;
  right: 22px;
  width: min(240px, calc(100vw - 32px));
  z-index: 60;
}

.site-cta-stack a {
  align-items: center;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: #040404;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 52px;
  padding: 0 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.site-cta-stack a:hover {
  transform: translateY(-2px);
}

.site-cta-stack .cta-employee {
  background: linear-gradient(135deg, #ff8d2f 0%, #ffb45a 100%);
  box-shadow: 0 0 22px rgba(255, 150, 52, 0.58), var(--shadow-soft);
}

.site-cta-stack .cta-client {
  background: linear-gradient(135deg, #ff4e49 0%, #ff776f 100%);
  box-shadow: 0 0 22px rgba(255, 82, 77, 0.56), var(--shadow-soft);
}

.site-cta-stack .cta-back {
  background: linear-gradient(135deg, #9ad122 0%, #c9f149 100%);
  box-shadow: 0 0 22px rgba(154, 209, 34, 0.52), var(--shadow-soft);
}

.public-artboard-wrap {
  margin: 0 auto;
  max-width: 1540px;
  padding: 92px 16px 88px;
}

.public-artboard {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  min-height: 1720px;
  overflow: hidden;
  position: relative;
}

.public-artboard::before {
  background: linear-gradient(
    180deg,
    rgba(252, 248, 242, 0.92) 0,
    rgba(252, 248, 242, 0.84) 72px,
    rgba(252, 248, 242, 0.28) 138px,
    rgba(252, 248, 242, 0) 208px
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.public-artboard--landing {
  background-image: var(--landing-art);
}

.public-artboard--landing::before {
  background:
    radial-gradient(circle at 7% 3%, rgba(252, 248, 242, 1) 0, rgba(252, 248, 242, 1) 9%, rgba(252, 248, 242, 0) 18%),
    radial-gradient(circle at 84% 3%, rgba(252, 248, 242, 1) 0, rgba(252, 248, 242, 1) 10%, rgba(252, 248, 242, 0) 19%),
    linear-gradient(
      180deg,
      rgba(252, 248, 242, 0.98) 0,
      rgba(252, 248, 242, 0.98) 96px,
      rgba(252, 248, 242, 0.88) 136px,
      rgba(252, 248, 242, 0.4) 188px,
      rgba(252, 248, 242, 0) 242px
    );
}

.public-artboard--about {
  background-image: var(--about-art);
}

.public-artboard--services {
  background-image: var(--services-art);
}

.public-artboard--contact {
  background-image: var(--contact-art);
}

.artboard-hotspot {
  position: absolute;
  text-decoration: none;
  z-index: 2;
}

.artboard-hotspot:focus-visible {
  outline: 3px solid rgba(15, 74, 89, 0.35);
  outline-offset: 4px;
}

.landing-start {
  height: 82px;
  left: 6.4%;
  top: 33%;
  width: 30%;
}

.landing-plan {
  height: 78px;
  right: 3.4%;
  top: 88.8%;
  width: 22%;
}

.about-connect {
  bottom: 2.2%;
  height: 70px;
  right: 4.2%;
  width: 32%;
}

.services-consult {
  bottom: 2.4%;
  height: 76px;
  left: 4.8%;
  width: 36%;
}

.contact-map {
  height: 64px;
  left: 5%;
  top: 68.8%;
  width: 20%;
}

.contact-form-overlay {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  left: 49%;
  padding: 20px 28px 26px;
  position: absolute;
  top: 16.4%;
  width: 46%;
}

.contact-form-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 0.95;
  margin: 0 0 12px;
}

.contact-form-overlay p {
  color: rgba(19, 57, 72, 0.74);
  margin: 0 0 18px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-field {
  display: grid;
  gap: 8px;
}

.lead-field--full {
  grid-column: 1 / -1;
}

.lead-field span,
.app-field span,
.section-kicker {
  color: var(--coral-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-field input,
.lead-field select,
.lead-field textarea,
.app-field input,
.app-field select,
.app-field textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(19, 57, 72, 0.14);
  border-radius: 16px;
  color: var(--ink);
  min-height: 50px;
  padding: 14px 16px;
}

.lead-field textarea,
.app-field textarea {
  min-height: 130px;
  resize: vertical;
}

.check-grid {
  display: grid;
  gap: 10px;
}

.check-row {
  align-items: center;
  display: flex;
  gap: 10px;
}

.lead-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.lead-actions .site-chip {
  border: none;
  cursor: pointer;
}

.contact-info-cover {
  background:
    linear-gradient(145deg, rgba(10, 56, 67, 0.99) 0%, rgba(15, 74, 89, 0.99) 52%, rgba(255, 109, 87, 0.9) 100%);
  border-radius: 32px 0 34px 0;
  bottom: 0;
  color: #f7f5ed;
  min-height: 360px;
  padding: 26px 30px 30px;
  position: absolute;
  right: 0;
  width: 52%;
}

.contact-info-cover h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.98;
  margin: 0 0 12px;
}

.contact-info-cover p {
  color: rgba(247, 245, 237, 0.82);
  margin: 0 0 12px;
}

.contact-info-cover ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.contact-info-cover li {
  list-style: none;
}

.booking-page {
  margin: 0 auto;
  max-width: 1320px;
  padding: 120px 16px 96px;
}

.booking-hero,
.app-panel,
.app-card,
.print-sheet,
.map-card,
.dashboard-shell,
.client-shell,
.login-shell {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.booking-hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  overflow: hidden;
  padding: 34px;
}

.booking-copy h1,
.login-copy h1,
.app-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
  margin: 8px 0 14px;
}

.booking-copy p,
.login-copy p,
.app-muted {
  color: rgba(19, 57, 72, 0.72);
  line-height: 1.65;
}

.booking-bullets {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
}

.booking-bullets li {
  align-items: center;
  display: flex;
  gap: 12px;
  list-style: none;
}

.booking-bullets li::before {
  background: var(--lime);
  border-radius: 999px;
  content: "";
  height: 10px;
  width: 10px;
}

.booking-visual {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(15, 74, 89, 0.1)),
    var(--contact-art) center/cover no-repeat;
  min-height: 580px;
  position: relative;
}

.booking-visual::after {
  background: linear-gradient(180deg, transparent 0%, rgba(6, 34, 42, 0.36) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.booking-form-card {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 30px;
}

.booking-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-page {
  margin: 0 auto;
  max-width: 1440px;
  min-height: 100vh;
  padding: 100px 16px 96px;
}

.login-shell {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 0.95fr);
  overflow: hidden;
}

.login-copy {
  background:
    linear-gradient(180deg, rgba(6, 33, 41, 0.88), rgba(12, 61, 73, 0.92)),
    var(--landing-art) center/cover no-repeat;
  color: #f8f4ea;
  padding: 42px;
}

.login-copy p,
.login-copy ul {
  color: rgba(248, 244, 234, 0.82);
}

.login-copy ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.login-form-card {
  padding: 42px;
}

.login-form-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 10px 0 12px;
}

.app-grid {
  display: grid;
  gap: 18px;
}

.app-grid--two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.app-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-panel,
.app-card,
.map-card {
  padding: 26px;
}

.app-panel-head {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-panel-head h2,
.app-panel-head h3,
.app-subtitle {
  font-family: var(--font-display);
  margin: 0;
}

.app-panel-head h2 {
  font-size: 2rem;
}

.app-panel-head h3 {
  font-size: 1.4rem;
}

.app-actions,
.app-chip-row,
.dashboard-topline,
.print-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-button {
  align-items: center;
  background: linear-gradient(135deg, var(--coral) 0%, #ff8a5a 100%);
  border: none;
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(255, 109, 87, 0.22);
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.app-button:hover {
  transform: translateY(-1px);
}

.app-button--dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
  color: #fff;
}

.app-button--lime {
  background: linear-gradient(135deg, var(--lime) 0%, #dff069 100%);
}

.app-button--ghost {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(19, 57, 72, 0.18);
  box-shadow: none;
}

.app-button--danger {
  background: linear-gradient(135deg, #ea4a3d 0%, #ff7a61 100%);
  color: #fff;
}

.app-button--sand {
  background: linear-gradient(135deg, #f2dfb9 0%, #e8bc70 100%);
  color: var(--ink-deep);
}

.app-button--sky {
  background: linear-gradient(135deg, #9dc2ff 0%, #4f7ff0 100%);
  color: var(--ink-deep);
}

.app-form,
.app-form-grid {
  display: grid;
  gap: 14px;
}

.app-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-field {
  display: grid;
  gap: 8px;
}

.app-field--full {
  grid-column: 1 / -1;
}

.dashboard-shell,
.client-shell {
  min-height: calc(100vh - 196px);
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.dashboard-shell::before,
.client-shell::before {
  background:
    radial-gradient(circle at top left, rgba(255, 109, 87, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(201, 221, 45, 0.16), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.dashboard-shell > *,
.client-shell > * {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  justify-content: space-between;
  margin-bottom: 22px;
}

.dashboard-status {
  align-items: center;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
}

.dashboard-status strong {
  font-size: 1.1rem;
}

.top-corner-menu {
  left: 24px;
  position: fixed;
  top: 22px;
  z-index: 50;
}

.corner-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 57, 72, 0.16);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.corner-toggle svg {
  height: 22px;
  width: 22px;
}

.corner-menu-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(19, 57, 72, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  display: none;
  margin-top: 12px;
  min-width: 220px;
  padding: 12px;
}

.corner-menu-panel.is-open {
  display: grid;
  gap: 8px;
}

.corner-menu-panel a {
  border-radius: 14px;
  font-weight: 800;
  padding: 12px 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.corner-menu-panel a:hover,
.corner-menu-panel a[aria-current="page"] {
  background: rgba(15, 74, 89, 0.08);
  color: var(--coral-deep);
}

.stat-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 18px 20px;
}

.stat-card span {
  color: rgba(19, 57, 72, 0.7);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-top: 10px;
}

.clock-board {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
}

.clock-status {
  align-items: center;
  display: flex;
  gap: 12px;
}

.state-pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.12em;
  min-height: 36px;
  padding: 0 14px;
  text-transform: uppercase;
}

.state-pill--clocked-in,
.state-pill--on,
.state-pill--sent,
.state-pill--paid,
.state-pill--active,
.state-pill--completed {
  background: rgba(38, 173, 111, 0.14);
  color: #116a46;
}

.state-pill--lunch,
.state-pill--on-call,
.state-pill--queued,
.state-pill--pending {
  background: rgba(59, 107, 208, 0.14);
  color: #2b58b2;
}

.state-pill--clocked-out,
.state-pill--off,
.state-pill--draft,
.state-pill--new {
  background: rgba(234, 74, 61, 0.14);
  color: #b72c21;
}

.state-pill--requested,
.state-pill--waiting,
.state-pill--scheduled {
  background: rgba(201, 221, 45, 0.18);
  color: #667800;
}

.timer-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 233, 0.98));
  border: 1px solid rgba(19, 57, 72, 0.08);
  border-radius: 28px;
  padding: 24px;
}

.timer-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin: 10px 0;
}

.schedule-table-wrap,
.table-wrap {
  max-width: 100%;
  overflow: visible;
}

.schedule-table,
.app-table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 100%;
  table-layout: fixed;
  width: 100%;
}

.schedule-table th,
.schedule-table td,
.app-table th,
.app-table td {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(19, 57, 72, 0.08);
  overflow-wrap: anywhere;
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.schedule-table th,
.app-table th {
  color: rgba(19, 57, 72, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-toggle {
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  justify-content: center;
  min-height: 38px;
  min-width: 92px;
  padding: 0 12px;
  text-transform: uppercase;
}

.schedule-toggle--off {
  background: #f05047;
  color: #fff;
}

.schedule-toggle--on {
  background: #2fb161;
  color: #fff;
}

.schedule-toggle--on-call {
  background: #3f76ea;
  color: #fff;
}

.exact-note {
  color: rgba(19, 57, 72, 0.7);
  display: block;
  font-size: 0.82rem;
  margin-top: 8px;
}

.id-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.id-link:hover {
  color: var(--coral-deep);
}

.detail-stack {
  display: grid;
  gap: 16px;
}

.invoice-card-grid,
.portal-action-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portal-action-card,
.summary-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
}

.portal-action-card h3,
.summary-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.summary-card p,
.portal-action-card p {
  color: rgba(19, 57, 72, 0.72);
  margin: 0 0 14px;
}

.map-shell {
  border-radius: 26px;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.map-shell iframe {
  border: none;
  height: 100%;
  min-height: 520px;
  width: 100%;
}

.employee-pin {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 57, 72, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  padding: 10px 12px;
  position: absolute;
}

.employee-pin::before {
  background: var(--coral);
  border-radius: 999px;
  content: "";
  height: 12px;
  width: 12px;
}

.employee-pin:nth-child(3)::before {
  background: var(--lime-deep);
}

.employee-pin:nth-child(4)::before {
  background: var(--teal);
}

.print-page {
  background: #f1ece3;
  padding: 100px 16px 80px;
}

.print-sheet {
  background: #fff;
  border: 1px solid #dadada;
  margin: 0 auto;
  max-width: 860px;
  padding: 42px;
}

.print-sheet h1,
.print-sheet h2 {
  font-family: var(--font-display);
  margin: 0;
}

.print-sheet h1 {
  font-size: 2.4rem;
}

.print-sheet h2 {
  font-size: 1.4rem;
  margin-top: 6px;
}

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

.print-line-items {
  margin-top: 26px;
}

.print-line-items table {
  border-collapse: collapse;
  width: 100%;
}

.print-line-items th,
.print-line-items td {
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 6px;
  text-align: left;
}

.flash-message {
  border-radius: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-transform: uppercase;
}

.flash-message--success {
  background: rgba(38, 173, 111, 0.12);
  color: #116a46;
}

.flash-message--warn {
  background: rgba(255, 109, 87, 0.12);
  color: #ad3c2b;
}

.muted-list {
  color: rgba(19, 57, 72, 0.68);
  margin: 0;
  padding-left: 18px;
}

.hidden {
  display: none !important;
}

@media print {
  .site-header,
  .site-cta-stack,
  .top-corner-menu,
  .print-actions {
    display: none !important;
  }

  body[data-surface="print"] {
    background: #fff;
  }

  .print-page {
    padding: 0;
  }

  .print-sheet {
    border: none;
    box-shadow: none;
    margin: 0;
    max-width: none;
    padding: 0;
  }
}

@media (max-width: 1180px) {
  .site-header {
    border-radius: 34px;
    padding: 16px 18px;
  }

  .site-nav {
    gap: 12px;
  }

  .contact-form-overlay {
    left: 7%;
    top: 56%;
    width: 86%;
  }

  .contact-info-cover {
    bottom: auto;
    left: 7%;
    right: auto;
    top: 84%;
    width: 86%;
  }

  .invoice-card-grid,
  .portal-action-grid,
  .stat-strip,
  .app-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: start;
    border-radius: 26px;
    flex-direction: column;
  }

  .site-nav {
    justify-content: start;
  }

  .public-artboard-wrap {
    padding-top: 170px;
  }

  .booking-hero,
  .login-shell,
  .clock-board,
  .app-grid--two {
    grid-template-columns: 1fr;
  }

  .app-form-grid,
  .lead-form-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .public-artboard {
    min-height: 1380px;
  }

  .contact-form-overlay {
    left: 6%;
    padding: 18px;
    top: 48%;
    width: 88%;
  }

  .contact-info-cover {
    left: 6%;
    top: 82%;
    width: 88%;
  }
}

@media (max-width: 720px) {
  .site-cta-stack {
    bottom: 14px;
    right: 12px;
    width: min(240px, calc(100vw - 24px));
  }

  .public-artboard-wrap,
  .booking-page,
  .app-page,
  .print-page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .public-artboard {
    border-radius: 22px;
    min-height: 1120px;
  }

  .landing-start {
    height: 58px;
    left: 5%;
    top: 32.6%;
    width: 38%;
  }

  .landing-plan {
    height: 60px;
    right: 4%;
    top: 89.8%;
    width: 28%;
  }

  .about-connect,
  .services-consult,
  .contact-map {
    width: 40%;
  }

  .contact-form-overlay {
    top: 42%;
  }

  .contact-info-cover {
    top: 79%;
  }

  .stat-strip,
  .invoice-card-grid,
  .portal-action-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-shell,
  .client-shell,
  .login-copy,
  .login-form-card,
  .booking-hero,
  .booking-form-card,
  .app-panel,
  .app-card,
  .map-card,
  .print-sheet {
    padding: 20px;
  }

  .site-header-actions {
    width: 100%;
  }

  .site-header-actions .site-chip {
    flex: 1;
  }

  .site-cta-stack a {
    font-size: 0.8rem;
    min-height: 48px;
    padding: 0 14px;
  }

  .app-page-title,
  .booking-copy h1,
  .login-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 0.94;
  }

  .dashboard-topline .app-actions {
    width: 100%;
  }

  .dashboard-topline .app-actions .app-button {
    flex: 1 1 calc(50% - 10px);
  }

  .schedule-table-wrap,
  .table-wrap {
    overflow: visible;
  }

  .schedule-table,
  .app-table,
  .schedule-table tbody,
  .app-table tbody,
  .schedule-table tr,
  .app-table tr,
  .schedule-table td,
  .app-table td {
    display: block;
    width: 100%;
  }

  .schedule-table thead,
  .app-table thead {
    display: none;
  }

  .schedule-table tbody,
  .app-table tbody {
    display: grid;
    gap: 16px;
  }

  .schedule-table tr,
  .app-table tr {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(19, 57, 72, 0.1);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    padding: 16px;
  }

  .schedule-table td,
  .app-table td {
    background: transparent;
    border-bottom: 1px solid rgba(19, 57, 72, 0.08);
    display: grid;
    gap: 6px;
    padding: 10px 0;
  }

  .schedule-table td:last-child,
  .app-table td:last-child {
    border-bottom: none;
  }

  .schedule-table td::before,
  .app-table td::before {
    color: rgba(19, 57, 72, 0.72);
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}
