:root {
  --ink: #151827;
  --muted: #606879;
  --brand-blue: #3d4aa0;
  --brand-navy: #121b57;
  --brand-orange: #ff9900;
  --brand-orange-dark: #e78300;
  --brand-orange-light: #fff0d9;
  --brand-blue-light: #e9edfb;
  --paper: #f7f8fc;
  --white: #ffffff;
  --line: rgba(18, 27, 87, 0.14);
  --shadow: 0 22px 70px rgba(18, 27, 87, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.utility-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #0a1038;
  font-size: 0.78rem;
  font-weight: 700;
}

.utility-bar > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-bar a {
  color: var(--white);
}

.utility-bar a:hover {
  color: var(--brand-orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(18, 27, 87, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 34px rgba(10, 16, 56, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  flex: 0 0 58px;
  width: 58px;
  height: 40px;
  background-image: url("assets/happy-move-truck-mark-v2.png");
  background-repeat: no-repeat;
  background-position: 52% 49%;
  background-size: 160% auto;
}

.brand-name {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.header-cta {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--brand-navy);
  background: var(--brand-orange);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-cta:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: clamp(580px, calc(100svh - 150px), 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(10, 16, 56, 0.96) 0%, rgba(18, 27, 87, 0.88) 42%, rgba(18, 27, 87, 0.38) 72%, rgba(18, 27, 87, 0.18) 100%),
    url("assets/happy-move-real-hero.jpg");
  background-position: 58% center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 7px;
  background: var(--brand-orange);
  content: "";
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 88px);
  padding: 54px 0 64px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 12px;
  font-size: clamp(4.2rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero .eyebrow {
  color: var(--brand-orange);
}

.hero-tagline {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 850;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.22);
  line-height: 1;
}

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

.button-primary {
  color: var(--brand-navy);
  background: var(--brand-orange);
  box-shadow: 0 14px 30px rgba(255, 153, 0, 0.25);
}

.button-primary:hover {
  background: var(--brand-orange-dark);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
}

.hero .button-secondary:hover {
  color: var(--brand-navy);
  background: var(--white);
}

.button-secondary:hover {
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0;
}

.trust-strip div {
  min-height: 88px;
  padding: 16px;
  background: rgba(10, 16, 56, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: none;
}

.trust-strip dt {
  margin-bottom: 4px;
  color: var(--brand-orange);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 800;
}

.trust-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-section {
  background: var(--white);
}

.services-section .section-heading {
  max-width: 820px;
}

.section-heading p:not(.eyebrow),
.plan-copy p:not(.eyebrow),
.booking-copy > p:not(.eyebrow),
.quote-copy p:not(.eyebrow),
.reviews-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card,
.step,
.review-card,
.booking-form,
.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18, 27, 87, 0.08);
}

.service-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(61, 74, 160, 0.34);
  box-shadow: 0 22px 50px rgba(18, 27, 87, 0.14);
  transform: translateY(-4px);
}

.service-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--brand-navy);
}

.service-photo::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(10, 16, 56, 0), rgba(10, 16, 56, 0.74));
  content: "";
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.035);
}

.service-card-body {
  min-height: 164px;
  padding: 22px;
}

.service-card-body h3 {
  color: var(--brand-navy);
  font-size: 1.3rem;
}

.service-icon {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 0;
  color: var(--brand-navy);
  background: var(--brand-orange);
  border-radius: 8px;
  font-weight: 800;
}

.service-card:nth-child(2) .service-icon {
  background: var(--brand-orange);
}

.service-card:nth-child(3) .service-icon {
  background: var(--brand-orange);
}

.service-card:nth-child(4) .service-icon {
  background: var(--brand-orange);
}

.service-card p,
.step p,
.review-card figcaption {
  color: var(--muted);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--brand-navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.plan-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: var(--brand-navy);
  background: var(--brand-orange);
}

.plan-section .eyebrow {
  color: var(--brand-navy);
}

.plan-section .plan-copy p:not(.eyebrow) {
  color: rgba(18, 27, 87, 0.76);
}

.real-work-section {
  background: #f1f3f9;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(230px, 28vw);
  gap: 18px;
}

.move-photo {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 27, 87, 0.16);
}

.move-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}

.move-photo::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, rgba(21, 24, 39, 0), rgba(21, 24, 39, 0.8));
  content: "";
}

.move-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
}

.featured-photo {
  grid-row: span 2;
}

.instagram-follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.instagram-follow strong,
.instagram-follow span {
  display: block;
}

.instagram-follow strong {
  margin-bottom: 4px;
  color: var(--brand-navy);
  font-size: 1.15rem;
}

.instagram-follow span {
  color: var(--muted);
}

.plan-copy {
  position: sticky;
  top: 110px;
}

.plan-section .step {
  color: var(--white);
  background: var(--brand-navy);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(10, 16, 56, 0.18);
}

.plan-section .step p {
  color: rgba(255, 255, 255, 0.7);
}

.plan-section .step span {
  color: var(--brand-navy);
  background: var(--white);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  color: var(--white);
  background: var(--brand-navy);
}

.booking-section .eyebrow {
  color: var(--brand-orange);
}

.booking-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.booking-points {
  display: grid;
  gap: 18px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.booking-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.booking-points li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand-navy);
  background: var(--brand-orange);
  border-radius: 8px;
  font-weight: 800;
}

.booking-points strong {
  display: block;
  margin-bottom: 3px;
}

.booking-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.booking-callout {
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--brand-orange);
  border-radius: 8px;
}

.booking-callout strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 20px;
  min-height: 150px;
  padding: 24px;
}

.step span {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--brand-navy);
  background: var(--brand-orange);
  border-radius: 8px;
  font-weight: 800;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}

.quote-note {
  margin-top: 30px;
  padding: 18px;
  background: var(--white);
  border-left: 5px solid var(--brand-orange);
  border-radius: 8px;
  color: var(--muted);
  box-shadow: 0 14px 34px rgba(18, 27, 87, 0.07);
}

.quote-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.booking-consent.full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: #292f43;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid rgba(18, 27, 87, 0.18);
  border-radius: 8px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(61, 74, 160, 0.14);
}

.booking-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  cursor: pointer;
}

.booking-consent input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--brand-blue);
}

.form-submit {
  width: fit-content;
  min-width: 210px;
  margin-top: 4px;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

.form-status.is-error {
  color: #a4362c;
}

.reviews-section {
  background: var(--brand-blue-light);
}

.reviews-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.reviews-heading-row .section-heading {
  margin-bottom: 0;
}

.google-rating-summary {
  min-width: 240px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-blue);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18, 27, 87, 0.08);
}

.google-rating-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.google-label {
  color: var(--brand-blue);
  font-weight: 850;
}

.review-stars {
  color: var(--brand-orange);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.google-rating-summary > strong {
  display: block;
  margin: 8px 0 0;
  color: var(--brand-navy);
  font-size: 2.1rem;
  line-height: 1;
}

.google-rating-summary > span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  margin: 0;
  padding: 26px;
  border-top: 4px solid var(--brand-orange);
}

.review-card blockquote {
  margin: 22px 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.review-card figcaption strong,
.review-card figcaption small {
  display: block;
}

.review-card figcaption strong {
  color: var(--ink);
}

.review-card figcaption small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.review-avatar {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand-navy);
  background: var(--brand-orange-light);
  border-radius: 50%;
  font-weight: 850;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.areas-preview {
  background: var(--brand-blue-light);
}

.areas-preview .button {
  margin-top: 26px;
}

.area-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
  border-top: 1px solid rgba(18, 27, 87, 0.2);
}

.area-link-list a {
  display: grid;
  gap: 4px;
  min-height: 94px;
  align-content: center;
  padding: 18px 22px;
  border-right: 1px solid rgba(18, 27, 87, 0.2);
  border-bottom: 1px solid rgba(18, 27, 87, 0.2);
  transition: color 180ms ease, background-color 180ms ease;
}

.area-link-list a:nth-child(2n + 1) {
  border-left: 1px solid rgba(18, 27, 87, 0.2);
}

.area-link-list a:hover {
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.76);
}

.area-link-list strong {
  color: var(--brand-navy);
  font-size: 1.08rem;
}

.area-link-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--brand-navy);
}

.site-footer p {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-name {
  color: var(--white);
}

address {
  display: grid;
  gap: 10px;
  align-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

address a:hover {
  color: var(--brand-orange);
}

.areas-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.areas-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(10, 16, 56, 0.97) 0%, rgba(18, 27, 87, 0.88) 48%, rgba(18, 27, 87, 0.34) 100%),
    url("assets/real-move-01.jpg");
  background-position: center;
  background-size: cover;
}

.areas-hero-content {
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 88px);
  padding: 64px 0;
}

.areas-hero h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.94;
}

.areas-hero .eyebrow {
  color: var(--brand-orange);
}

.areas-hero-content > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.areas-hero .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.area-jump-section {
  background: var(--white);
}

.area-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-jump-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  color: var(--brand-navy);
  background: var(--brand-orange-light);
  border: 1px solid rgba(255, 153, 0, 0.38);
  border-radius: 8px;
  font-weight: 800;
}

.area-jump-links a:hover {
  background: #ffe0ad;
}

.area-directory {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--paper);
}

.area-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.area-row:nth-child(even) .area-photo {
  order: 2;
}

.area-photo {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--brand-navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.area-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.area-copy h2 {
  max-width: 12ch;
  color: var(--brand-navy);
}

.area-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.area-details {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 700;
}

.area-details li::marker {
  color: var(--brand-orange);
}

.text-link {
  display: inline-flex;
  color: var(--brand-blue);
  font-weight: 850;
}

.text-link:hover {
  color: var(--brand-orange-dark);
}

.areas-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  color: var(--white);
  background: var(--brand-navy);
}

.areas-cta-band .eyebrow {
  color: var(--brand-orange);
}

.areas-cta-band h2 {
  max-width: 14ch;
}

.areas-cta-band p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.areas-cta-band .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

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

.pricing-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(10, 16, 56, 0.96) 0%, rgba(18, 27, 87, 0.86) 48%, rgba(18, 27, 87, 0.38) 100%),
    url("assets/real-move-06.jpg");
  background-position: center;
  background-size: cover;
}

.pricing-hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 88px);
  padding: 64px 0;
}

.pricing-hero .eyebrow,
.pricing-cta-band .eyebrow {
  color: var(--brand-orange);
}

.pricing-hero h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 4.9rem;
  line-height: 0.94;
}

.pricing-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
}

.pricing-section {
  background: var(--white);
}

.pricing-heading {
  max-width: 840px;
}

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

.pricing-loading {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.pricing-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-orange);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18, 27, 87, 0.08);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.pricing-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand-navy);
  background: var(--brand-orange-light);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
}

.pricing-kicker {
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 850;
  text-align: right;
  text-transform: uppercase;
}

.pricing-card h3 {
  color: var(--brand-navy);
  font-size: 1.45rem;
}

.pricing-description {
  min-height: 78px;
  color: var(--muted);
}

.price-block {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 12px 0 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-value {
  color: var(--brand-navy);
  font-size: 2.3rem;
  line-height: 1;
}

.price-unit {
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.pricing-details {
  margin-bottom: 24px;
}

.pricing-minimum {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 0.88rem;
}

.pricing-includes {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-card-link {
  margin-top: auto;
  color: var(--brand-navy);
  font-weight: 850;
}

.pricing-card-link::after {
  content: " ->";
  color: var(--brand-orange-dark);
}

.pricing-card-link:hover {
  color: var(--brand-blue);
}

.pricing-disclaimer {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.pricing-disclaimer strong {
  color: var(--brand-navy);
  font-size: 1.1rem;
}

.pricing-disclaimer p {
  margin: 0;
  color: var(--muted);
}

.price-factors {
  background: var(--brand-blue-light);
}

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

.factor-grid > div {
  padding-top: 18px;
  border-top: 4px solid var(--brand-blue);
}

.factor-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--brand-orange-dark);
  font-weight: 850;
}

.factor-grid h3 {
  color: var(--brand-navy);
  font-size: 1.35rem;
}

.factor-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  color: var(--white);
  background: var(--brand-navy);
}

.pricing-cta-band h2 {
  max-width: 12ch;
}

.pricing-cta-band p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

.pricing-cta-band .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.admin-body {
  min-height: 100svh;
  background: #f1f3f9;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: var(--brand-navy);
  box-shadow: 0 12px 34px rgba(10, 16, 56, 0.18);
}

.admin-header .button-secondary {
  min-height: 42px;
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.pricing-admin-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 100px;
}

.admin-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.admin-intro h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--brand-navy);
  font-size: 3.6rem;
  line-height: 0.95;
}

.admin-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.admin-auth-panel {
  max-width: 620px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--brand-orange);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18, 27, 87, 0.08);
}

.admin-auth-panel h2 {
  font-size: 2rem;
}

.admin-auth-panel p {
  color: var(--muted);
}

.pricing-editor {
  display: grid;
  gap: 24px;
}

.editor-toolbar {
  position: sticky;
  top: 94px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--brand-navy);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(10, 16, 56, 0.18);
}

.editor-toolbar strong,
.editor-toolbar span {
  display: block;
}

.editor-toolbar span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

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

.editor-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18, 27, 87, 0.07);
}

.editor-card legend {
  padding: 0 8px;
  color: var(--brand-navy);
  font-size: 1.08rem;
  font-weight: 850;
}

.editor-field {
  display: grid;
  gap: 7px;
  color: #292f43;
  font-size: 0.82rem;
  font-weight: 800;
}

.editor-field textarea {
  min-height: 92px;
}

.editor-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
}

.editor-footer .form-status {
  min-height: 0;
  margin: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1020px) {
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .plan-section,
  .booking-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .plan-copy {
    position: static;
  }

  .reviews-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .google-rating-summary {
    width: min(100%, 360px);
  }

  .pricing-grid,
  .editor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-cta-band {
    grid-template-columns: 1fr;
  }

  .areas-cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-cta-actions {
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .utility-bar {
    gap: 12px;
    padding-inline: 14px;
    font-size: 0.7rem;
  }

  .utility-bar > div {
    gap: 10px;
  }

  .utility-bar > div a:last-child {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 72px;
    padding: 10px 16px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 18px;
    color: rgba(255, 255, 255, 0.82);
    background: var(--brand-navy);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 70svh;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(10, 16, 56, 0.95) 0%, rgba(18, 27, 87, 0.82) 64%, rgba(18, 27, 87, 0.62) 100%),
      url("assets/happy-move-real-hero.jpg");
    background-position: 62% center;
  }

  .hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 42px 0 48px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.8rem);
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .trust-strip div {
    min-height: 82px;
    padding: 12px 9px;
  }

  .trust-strip dt {
    font-size: 1.08rem;
  }

  .trust-strip dd {
    font-size: 0.74rem;
  }

  .service-grid,
  .review-grid,
  .photo-grid,
  .booking-form,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-auto-rows: minmax(245px, 76vw);
  }

  .featured-photo {
    grid-row: auto;
  }

  .form-submit {
    width: 100%;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .services-cta .button {
    width: 100%;
  }

  .instagram-follow {
    align-items: stretch;
    flex-direction: column;
  }

  .instagram-follow .button {
    width: 100%;
  }

  .review-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    min-height: 520px;
  }

  .areas-hero {
    min-height: 520px;
  }

  .areas-hero-bg {
    background-image:
      linear-gradient(180deg, rgba(10, 16, 56, 0.95) 0%, rgba(18, 27, 87, 0.78) 100%),
      url("assets/real-move-01.jpg");
  }

  .areas-hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 48px 0;
  }

  .areas-hero h1 {
    font-size: 3.4rem;
  }

  .area-link-list {
    grid-template-columns: 1fr;
  }

  .area-link-list a,
  .area-link-list a:nth-child(2n + 1) {
    border-left: 1px solid rgba(18, 27, 87, 0.2);
  }

  .area-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .area-row:nth-child(even) .area-photo {
    order: 0;
  }

  .area-photo,
  .area-photo img {
    min-height: 300px;
  }

  .pricing-hero-bg {
    background-image:
      linear-gradient(180deg, rgba(10, 16, 56, 0.94) 0%, rgba(18, 27, 87, 0.8) 100%),
      url("assets/real-move-06.jpg");
  }

  .pricing-hero-content {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
    padding: 48px 0;
  }

  .pricing-hero h1 {
    font-size: 3.25rem;
  }

  .pricing-grid,
  .factor-grid,
  .editor-list {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-description {
    min-height: 0;
  }

  .pricing-disclaimer {
    grid-template-columns: 1fr;
  }

  .pricing-cta-actions {
    width: 100%;
    min-width: 0;
  }

  .admin-header {
    min-height: 70px;
    padding: 10px 14px;
  }

  .admin-header .brand-name {
    display: none;
  }

  .admin-header .button-secondary {
    padding-inline: 14px;
  }

  .pricing-admin-page {
    padding-top: 42px;
  }

  .admin-intro h1 {
    font-size: 2.75rem;
  }

  .editor-toolbar {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .editor-toolbar .button,
  .editor-footer .button {
    width: 100%;
  }

  .editor-footer {
    align-items: stretch;
    flex-direction: column;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step span {
    grid-row: auto;
  }
}
