:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #607080;
  --line: #d8e0e8;
  --paper: #fbfcfd;
  --white: #ffffff;
  --navy: #11263d;
  --blue: #246b9f;
  --red: #bb3e35;
  --jazuz-yellow: #f3c222;
  --green: #4d8464;
  --gold: #d49b3d;
  --shadow: 0 18px 50px rgba(14, 35, 54, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

section {
  scroll-margin-top: 96px;
}

.anchor-target {
  position: relative;
  top: -110px;
  display: block;
  height: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(340px, auto) 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 224, 232, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 330px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 1.22rem;
  color: var(--navy);
}

.brand small,
.site-footer p {
  color: var(--muted);
  margin: 0;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 16px;
  color: #314250;
  font-size: 0.95rem;
}

.main-nav a {
  white-space: nowrap;
}

.phone-link {
  color: var(--navy);
  font-weight: 800;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-items: end;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
  font-size: 1.12rem;
}

.call-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e9f2ff;
  color: #0069e7;
}

.call-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 132px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  isolation: isolate;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1420px, 100%);
  margin: 0 auto;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 24, 37, 0.84) 0%, rgba(10, 24, 37, 0.66) 38%, rgba(10, 24, 37, 0.2) 72%),
    url("/assets/moving-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), rgba(251, 252, 253, 0));
}

.hero-content {
  max-width: 720px;
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb46e;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3.4rem, 6.3vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.14rem;
  line-height: 1.6;
}

.hero-actions,
.checks,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  background: var(--jazuz-yellow);
  color: white;
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(243, 194, 34, 0.28);
}

.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.wide {
  width: 100%;
}

.hero-actions {
  margin-top: 28px;
}

.hero-quote {
  align-self: center;
  box-shadow: 0 24px 70px rgba(7, 29, 48, 0.2);
}

.quote-card-header {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.quote-card-header h2 {
  color: var(--navy);
  font-size: 2rem;
}

.quote-card-header p:not(.eyebrow) {
  color: var(--muted);
  margin: 8px 0 0;
}

.quote-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.quote-perks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #4d8464;
  font-weight: 800;
}

.quote-perks span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dff5e9;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-top: 34px;
}

.stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -20px auto 0;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

.trust-band div {
  min-height: 112px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
}

.trust-band div:first-child {
  border-radius: 8px 0 0 8px;
}

.trust-band div:last-child {
  border-radius: 0 8px 8px 0;
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band span {
  margin-top: 7px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 104px;
}

.section-intro p:not(.eyebrow),
.section-heading p,
.status-text {
  color: var(--muted);
  line-height: 1.7;
}

.quote-panel,
.booking-form,
.tool-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  color: #344554;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 107, 159, 0.12);
}

.checks {
  margin: 16px 0;
}

.checks label {
  display: inline-flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 700;
}

.checks input {
  width: auto;
}

.quote-result {
  display: block;
  min-height: 76px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: #eef7f0;
  color: #274a35;
  line-height: 1.6;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 26px;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.seo-service-copy {
  max-width: 980px;
  margin: -8px 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.service-card,
.review-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.google-review-head {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.google-review-head span:last-child {
  display: grid;
  gap: 2px;
}

.google-review-head small,
.google-review-meta small {
  color: var(--muted);
}

.review-avatar {
  align-items: center;
  background: #1a73e8;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex: 0 0 42px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.google-review-meta {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card h3,
.service-card p,
.service-card .service-icon {
  margin-left: 22px;
  margin-right: 22px;
}

.service-card p {
  margin-bottom: 22px;
}

.service-image {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 18px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e9f1f7;
  color: var(--blue);
  font-weight: 900;
}

.service-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 30px;
}

.inline-form,
.inventory-builder {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
}

.inventory-builder {
  grid-template-columns: 1fr 1fr 48px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.inventory-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.inventory-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f3f6f8;
}

.booking-section {
  border-block: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #eef3f6;
}

.field-section {
  padding-top: 24px;
}

.compact-heading {
  max-width: 780px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.field-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  min-height: 260px;
}

.field-card.large {
  grid-row: span 2;
  min-height: 540px;
}

.field-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  color: white;
}

.field-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.field-copy .button {
  justify-self: start;
}

.field-video {
  display: block;
  width: 100%;
  max-height: 520px;
  margin-top: 18px;
  border-radius: 8px;
  background: var(--navy);
}

.contact-strip span,
.contact-strip a {
  padding: 10px 12px;
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 900;
}

.booking-form {
  box-shadow: none;
}

.booking-form label:has(textarea) {
  margin-top: 14px;
}

.review-card {
  min-height: 250px;
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
}

.review-star-picker {
  display: flex;
  gap: 6px;
}

.review-star-picker button {
  background: transparent;
  border: 0;
  color: #d3d7de;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  padding: 2px;
}

.review-star-picker button.active {
  color: var(--gold);
}

.blog-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card video {
  width: 100%;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--navy);
}

.blog-card > div {
  padding: 20px;
}

.blog-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-top: 16px;
}

.reaction-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fafc;
  color: var(--navy);
  font-size: 1.15rem;
  cursor: pointer;
}

.reaction-button[data-active="true"] {
  border-color: var(--jazuz-yellow);
  background: #fff5c7;
  box-shadow: 0 8px 18px rgba(243, 194, 34, 0.22);
}

.comment-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin-top: 16px;
}

.blog-comment,
.admin-comment {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  padding: 12px;
}

.blog-comment p,
.admin-comment p {
  margin: 6px 0 0;
}

.comment-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
}

.comment-form .button {
  justify-self: start;
}

.video-fallback {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.blog-card p:not(.eyebrow),
.contact-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.faq-section {
  padding-top: 38px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: white;
  padding: 20px;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item[data-open="true"] p {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: white;
}

.admin-page {
  background: #eef3f6;
}

.ops-page {
  background: #eef3f6;
  color: var(--ink);
}

.ops-toast {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 50;
  width: min(360px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid #b8e1c2;
  border-radius: 8px;
  background: #effaf1;
  color: #12411f;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(7, 29, 48, 0.18);
}

.ops-toast.error {
  border-color: #f1b6b6;
  background: #fff1f1;
  color: #7b1818;
}

.admin-shell {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.ops-shell {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 60px;
}

.ops-hero {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f6fbff);
  border: 1px solid var(--line);
}

.ops-hero h1 {
  margin: 6px 0 12px;
  color: var(--navy);
}

.ops-token-card,
.ops-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.ops-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.compact-summary {
  margin-top: 18px;
}

.ops-summary article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.ops-summary article.clickable-summary {
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ops-summary article.clickable-summary:hover,
.ops-summary article.clickable-summary:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(0, 86, 179, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.ops-summary strong {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
}

.ops-summary span {
  color: var(--muted);
  font-weight: 800;
}

.ops-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: start;
}

.ops-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.ops-sidebar button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

.ops-sidebar button.active,
.ops-sidebar button:hover {
  background: var(--yellow);
  color: var(--navy);
}

.ops-workspace {
  display: grid;
  gap: 18px;
}

.ops-tab {
  display: none;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.ops-tab.active {
  display: grid;
  gap: 18px;
}

.ops-list {
  display: grid;
  gap: 12px;
}

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

.schedule-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.schedule-controls input {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ops-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.ops-card:has(.ops-avatar) {
  grid-template-columns: 82px 1fr auto;
}

.ops-avatar {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: white;
}

.ops-card.low-stock {
  border-color: #f0b8b8;
  background: #fffafa;
}

.mover-shell {
  width: min(1120px, calc(100% - 28px));
}

.mover-hero {
  grid-template-columns: 1fr minmax(280px, 380px);
}

.mover-profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.mover-profile h2 {
  margin: 4px 0;
  color: var(--navy);
}

.mover-jobs {
  display: grid;
  gap: 18px;
}

.mover-job {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.mover-job-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.mover-job-head h2 {
  margin: 8px 0;
  color: var(--navy);
}

.mover-job-step {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 210px;
}

.mover-detail-grid,
.mover-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mover-detail-grid div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.mover-detail-grid strong {
  color: var(--navy);
}

.mover-detail-grid span {
  color: var(--muted);
}

.mover-stops {
  display: grid;
  gap: 12px;
}

.mover-stop {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.mover-stop h3 {
  margin: 8px 0;
  color: var(--navy);
}

.mover-notes,
.mover-events,
.mover-stop-events {
  color: var(--muted);
}

.mover-proof-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.mover-proof-form h3 {
  margin: 0;
  color: var(--navy);
}

.mover-events h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.mover-events p,
.mover-stop-events p {
  margin: 6px 0;
}

.ops-card h3 {
  margin: 8px 0 8px;
  color: var(--navy);
}

.ops-card p {
  margin: 4px 0;
  color: var(--muted);
}

.ops-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.ops-card-actions .secondary {
  border-color: rgba(0, 86, 179, 0.26);
  background: white;
  color: var(--blue);
  box-shadow: none;
}

.ops-card-actions .secondary:hover,
.ops-card-actions .secondary:focus-visible {
  border-color: var(--blue);
  background: #eef6ff;
}

.ops-pill {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e9f5ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: capitalize;
}

.ops-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ops-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: white;
}

.ops-table th,
.ops-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.ops-table th {
  background: #f6f9fc;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.ops-day {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.ops-day.locked-day {
  border-color: #f2caca;
  background: #fffafa;
}

.ops-day-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.ops-day h3 {
  margin: 0 0 4px;
  color: var(--navy);
}

.ops-day-head span,
.schedule-note {
  color: var(--muted);
  font-weight: 700;
}

.danger-pill {
  background: #fff1f1;
  color: #9d1b1b;
}

.schedule-day-actions {
  justify-content: start;
  margin-top: 12px;
}

.ops-schedule-item {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.ops-schedule-item span {
  color: var(--muted);
}

.danger-link {
  color: #9d1b1b;
}

.admin-panel h1 {
  color: var(--navy);
}

.admin-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button.danger {
  background: #fff1f1;
  color: #9d1b1b;
  border-color: #f2caca;
}

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

.check-row input {
  width: auto;
}

.admin-post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.admin-post-card > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.admin-post-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.admin-comments {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.admin-comments h4 {
  margin: 0;
  color: var(--navy);
}

.admin-comment {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

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

  .main-nav,
  .header-contact {
    display: none;
  }

  .main-nav[data-open="true"] {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav[data-open="true"] a {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .trust-band,
  .split,
  .field-grid,
  .service-grid,
  .review-grid,
  .blog-grid,
  .contact-grid,
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .hero-stats,
  .trust-band,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .ops-hero,
  .mover-hero,
  .ops-layout,
  .ops-summary,
  .ops-dashboard,
  .ops-calendar,
  .mover-detail-grid,
  .mover-action-grid {
    grid-template-columns: 1fr;
  }

  .ops-sidebar {
    position: static;
    grid-template-columns: repeat(8, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .field-card.large {
    grid-row: auto;
    min-height: 360px;
  }

  .trust-band div,
  .trust-band div:first-child,
  .trust-band div:last-child {
    border-radius: 8px;
  }

  .section-intro {
    position: static;
  }

  .service-card,
  .review-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
  }

  .hero {
    min-height: 92vh;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .form-grid,
  .quote-perks,
  .section-heading,
  .site-footer,
  .service-grid,
  .review-grid,
  .blog-grid,
  .contact-grid,
  .admin-posts,
  .field-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-post-card,
  .admin-comment,
  .ops-card:has(.ops-avatar),
  .ops-card,
  .mover-profile,
  .mover-job-head {
    grid-template-columns: 1fr;
  }

  .mover-job-step {
    justify-items: start;
    min-width: 0;
  }

  .ops-tab {
    padding: 16px;
  }

  .ops-card-actions {
    justify-content: start;
  }

  .admin-post-card > img {
    min-height: 190px;
    max-height: 260px;
  }

  .field-card,
  .field-card.large {
    min-height: 250px;
  }

  .field-video {
    max-height: 360px;
  }

  .inventory-builder {
    grid-template-columns: 1fr 48px;
  }

.inventory-builder select {
    grid-column: 1 / -1;
  }
}

.agreement-shell {
  max-width: 1080px;
}

.agreement-text {
  white-space: pre-wrap;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #11263d;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-height: none;
  overflow: visible;
  padding: 0;
  position: relative;
  z-index: 1;
}

.agreement-document {
  background: #fff;
  border: 1px solid #dce7ef;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(9, 33, 57, 0.08);
  color: #11263d;
  margin: 18px 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.agreement-document-header {
  align-items: center;
  background: #fff;
  border-bottom: 5px solid var(--gold);
  display: flex;
  gap: 18px;
  padding: 22px;
  position: relative;
  z-index: 1;
}

.agreement-document-header img {
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.agreement-document-header h2 {
  margin: 4px 0 6px;
}

.agreement-document-header p {
  margin: 0;
}

.agreement-document .agreement-text {
  padding: 28px;
}

.agreement-watermark {
  height: 360px;
  left: 50%;
  opacity: 0.055;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  z-index: 0;
}

.agreement-document-footer {
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 16px 22px;
  position: relative;
  z-index: 1;
}

.agreement-document-footer span {
  color: #dce7ef;
}

.agreement-audio {
  margin: 18px 0;
}

.checkbox-line {
  align-items: center;
  display: flex;
  gap: 12px;
}

.checkbox-line input {
  width: auto;
}

.password-input-wrap {
  display: block;
  position: relative;
}

.password-input-wrap input {
  padding-right: 52px;
  width: 100%;
}

.password-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #526276;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  background: #eef5fb;
  color: var(--navy);
  outline: none;
}

.password-toggle svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

@media print {
  .agreement-shell .ops-hero,
  .agreement-audio,
  #agreementForm,
  [data-agreement-status],
  .agreement-shell > .ops-section > [data-agreement-card] > .ops-card:first-child {
    display: none !important;
  }

  .agreement-shell,
  .ops-section {
    margin: 0;
    max-width: none;
    padding: 0;
  }

  .agreement-document {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
    padding-bottom: 64px;
  }

  .agreement-document-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .agreement-document .agreement-text {
    padding-top: 130px;
  }

  .agreement-watermark {
    opacity: 0.06;
    position: fixed;
  }

  .agreement-document-footer {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
  }
}
