:root {
  --bg: #050505;
  --surface: rgba(15, 15, 15, 0.84);
  --surface-strong: #0f0f0f;
  --surface-dark: #040404;
  --surface-dark-2: #0b0b0b;
  --text: #f5efe6;
  --muted: #b7ab98;
  --line: rgba(194, 156, 74, 0.12);
  --line-strong: rgba(194, 156, 74, 0.2);
  --accent: #c29c4a;
  --accent-deep: #836224;
  --accent-soft: rgba(194, 156, 74, 0.1);
  --trust: #decda1;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.54);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.34);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1180px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(194, 156, 74, 0.09), transparent 26%),
    radial-gradient(circle at 82% 10%, rgba(194, 156, 74, 0.05), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  font-family: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(194, 156, 74, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #151515;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  z-index: 50;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(4, 4, 4, 0.9);
  border-bottom: 1px solid rgba(222, 205, 161, 0.11);
}

.header-inner {
  width: min(calc(100% - 32px), var(--container));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand--official {
  width: clamp(126px, 14vw, 178px);
  height: 78px;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.48));
}

.brand-logo--footer {
  object-position: left center;
}

.brand-mark {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(216, 173, 66, 0.16), transparent 48%),
    linear-gradient(145deg, #11100d, #050505 68%);
  border: 1px solid rgba(222, 205, 161, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  padding: 7px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand-text span {
  font-size: 0.9rem;
  color: #c1b39a;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.92);
  color: var(--text);
  border-color: rgba(194, 156, 74, 0.12);
}

.menu-toggle__bars {
  width: 18px;
  height: 12px;
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after,
.menu-toggle__bars {
  content: "";
  display: block;
  border-top: 2px solid currentColor;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  position: absolute;
  left: 0;
  width: 100%;
}

.menu-toggle__bars::before {
  top: 0;
}

.menu-toggle__bars::after {
  bottom: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
  color: #c1b39a;
  padding: 6px;
  border: 1px solid rgba(222, 205, 161, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.nav-cta {
  color: #111 !important;
  background:
    linear-gradient(180deg, rgba(255, 244, 215, 0.98), rgba(194, 156, 74, 0.98));
  padding: 0 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 9px 20px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.62);
  border: 1px solid rgba(222, 205, 161, 0.16);
  white-space: nowrap;
  flex: 0 0 auto;
}

.header-call__label {
  font-size: 0.8rem;
  color: #b9ad98;
}

.header-call__number {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f8f1df;
}

.hero {
  position: relative;
  overflow: clip;
  color: #f6f1e8;
  background: #050505;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 48%, rgba(5, 5, 5, 0.74) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.22) 55%, rgba(5, 5, 5, 0.92) 100%),
    radial-gradient(circle at 20% 22%, rgba(194, 156, 74, 0.13), transparent 23%),
    radial-gradient(circle at 82% 20%, rgba(222, 205, 161, 0.08), transparent 22%),
    radial-gradient(circle at 64% 78%, rgba(194, 156, 74, 0.09), transparent 28%),
    linear-gradient(128deg, transparent 0 34%, rgba(255, 255, 255, 0.045) 35%, transparent 37% 100%),
    linear-gradient(38deg, transparent 0 48%, rgba(194, 156, 74, 0.06) 49%, transparent 51% 100%),
    linear-gradient(160deg, #050505 0%, #11100d 46%, #050505 100%);
  pointer-events: none;
}

.hero__background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(24deg, rgba(194, 156, 74, 0.035) 0 1px, transparent 1px 118px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 38%, rgba(0, 0, 0, 0.28));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 156, 74, 0.38), transparent);
}

.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--star-color, #222);
  opacity: 0.24;
  transform: translate(-50%, -50%);
  animation: starTwinkle var(--duration, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-star--glyph {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--star-color, #222);
  font-size: var(--size);
  line-height: 1;
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  min-height: calc(94svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 112px 0 82px;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero__badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(222, 205, 161, 0.18);
  color: #f1e7d0;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  font-weight: 800;
  color: rgba(214, 188, 118, 0.95);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  font-size: 6.4rem;
  max-width: 11ch;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.hero__lede {
  max-width: 60ch;
  margin: 20px 0 0;
  font-size: 1.2rem;
  color: rgba(245, 239, 230, 0.86);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button--primary {
  background: linear-gradient(180deg, #dcc379, #a98228);
  color: #111;
  box-shadow: 0 12px 28px rgba(201, 162, 74, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 30px rgba(201, 162, 74, 0.24);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #f8fbff;
  border: 1px solid rgba(201, 162, 74, 0.16);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(201, 162, 74, 0.08);
}

.button--full {
  width: 100%;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  overflow: hidden;
  border: 1px solid rgba(222, 205, 161, 0.13);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.62);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.trust-row li {
  padding: 18px 20px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 0;
  box-shadow: none;
}

.trust-row strong,
.visual-note strong,
.service-area__copy strong,
.feature-item p,
.process-card h3,
.review-card strong,
.faq-item summary,
.footer-list a,
.final-cta h2,
.section h2,
.service-card h3 {
  font-weight: 700;
}

.trust-row strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
}

.trust-row span {
  display: block;
  margin-top: 5px;
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.72);
}

.hero__visual {
  display: grid;
  gap: 16px;
  align-self: stretch;
  align-content: center;
}

.brand-poster {
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: var(--shadow-soft);
}

.brand-poster img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
  background: #000;
}

.visual-card,
.visual-note,
.service-area__panel,
.quote-form,
.process-card,
.review-card,
.service-card,
.faq-item,
.final-cta__inner,
.feature-list {
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.94), rgba(9, 9, 9, 0.96));
  border: 1px solid rgba(222, 205, 161, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    linear-gradient(135deg, rgba(201, 162, 74, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(201, 162, 74, 0.18), transparent 24%),
    radial-gradient(circle at 86% 88%, rgba(214, 188, 118, 0.14), transparent 28%);
  pointer-events: none;
}

.route-topline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.route-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  border: 1px solid rgba(201, 162, 74, 0.14);
  font-size: 0.84rem;
  font-weight: 700;
}

.route-pill--alt {
  background: rgba(201, 162, 74, 0.14);
}

.route-pill--trust {
  background: rgba(201, 162, 74, 0.11);
  color: #f2ead6;
  min-width: 138px;
  justify-content: center;
}

.route-map {
  position: relative;
  z-index: 1;
  min-height: 360px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(9, 9, 9, 0.92), rgba(24, 24, 24, 0.92));
  border: 1px solid rgba(201, 162, 74, 0.1);
  overflow: hidden;
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  opacity: 0.24;
}

.route-map::before {
  width: 160px;
  height: 160px;
  left: 22px;
  top: 24px;
  border: 1px solid rgba(201, 162, 74, 0.14);
}

.route-map::after {
  width: 250px;
  height: 250px;
  right: -55px;
  bottom: -60px;
  border: 1px solid rgba(201, 162, 74, 0.15);
}

.route-line {
  position: absolute;
  border-top: 3px dashed rgba(214, 188, 118, 0.42);
}

.route-line--one {
  width: 42%;
  left: 22%;
  top: 34%;
  transform: rotate(-14deg);
}

.route-line--two {
  width: 26%;
  left: 48%;
  top: 56%;
  transform: rotate(12deg);
}

.route-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(194, 156, 74, 0.06);
}

.route-dot--start {
  left: 18%;
  top: 28%;
}

.route-dot--end {
  right: 18%;
  bottom: 25%;
}

.truck {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(64%, 320px);
  height: 120px;
  transform: translate(-50%, -50%);
  animation: float 6s ease-in-out infinite;
}

.truck__cab,
.truck__box,
.truck__wheel {
  position: absolute;
}

.truck__cab {
  left: 0;
  bottom: 28px;
  width: 92px;
  height: 70px;
  border-radius: 18px 26px 14px 18px;
  background: linear-gradient(180deg, #f0eadb, #d7c8a4);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.24);
}

.truck__cab::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 42px;
  height: 22px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.82);
}

.truck__cab::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 14px;
  width: 14px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
}

.truck__box {
  left: 84px;
  bottom: 18px;
  width: 180px;
  height: 84px;
  border-radius: 20px 20px 16px 16px;
  background:
    linear-gradient(180deg, rgba(246, 239, 226, 0.98), rgba(218, 204, 170, 0.96));
  box-shadow: 0 22px 32px rgba(0, 0, 0, 0.24);
}

.truck__box::before {
  content: "";
  position: absolute;
  inset: 16px 18px auto 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111, var(--accent));
  opacity: 0.58;
}

.truck__box::after {
  content: "Five Star Movers";
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #141414;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.truck__wheel {
  bottom: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #101010;
  border: 4px solid #efe6d0;
}

.truck__wheel::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #77705d;
}

.truck__wheel--front {
  left: 16px;
}

.truck__wheel--back {
  left: 182px;
}

.visual-card figcaption {
  position: relative;
  z-index: 1;
  padding: 18px 4px 0;
  display: grid;
  gap: 6px;
}

.visual-card figcaption strong {
  font-size: 1.08rem;
}

.visual-card figcaption span {
  color: rgba(246, 241, 232, 0.72);
}

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

.visual-note {
  border-radius: 22px;
  padding: 18px;
  color: var(--text);
}

.visual-note__label {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #c1b39a;
}

.visual-note--accent {
  background:
    linear-gradient(180deg, rgba(201, 162, 74, 0.16), rgba(201, 162, 74, 0.07)),
    #161003;
}

.section {
  padding: 96px 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section--tinted {
  background:
    linear-gradient(180deg, rgba(222, 205, 161, 0.035), rgba(255, 255, 255, 0.006));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2,
.final-cta h2 {
  font-size: 3rem;
  color: #fbf5eb;
}

.section-heading p:last-child,
.final-cta p {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 68ch;
}

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

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

.gallery-item {
  margin: 0;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(222, 205, 161, 0.1);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: #111;
}

.gallery-item--tall img {
  aspect-ratio: 3 / 4;
}

.gallery-item--wide {
  grid-column: 1 / -1;
}

.gallery-item figcaption {
  margin-top: 12px;
  color: #b8aa94;
  font-size: 0.94rem;
}

.service-card {
  border-radius: 18px;
  padding: 24px;
  min-height: 100%;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 74, 0.18);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.15), rgba(201, 162, 74, 0.07));
  color: #111;
  margin-bottom: 18px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #fbf5eb;
}

.service-card p,
.process-card p,
.review-card p,
.faq-item p,
.service-area__copy p,
.feature-item p {
  margin: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.feature-list {
  border-radius: 20px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(201, 162, 74, 0.08);
}

.feature-item__icon {
  flex: none;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 162, 74, 0.08);
}

.feature-item p {
  color: #fbf5eb;
}

.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  border-radius: 18px;
  padding: 24px;
}

.process-card__step {
  display: inline-flex;
  margin-bottom: 14px;
  color: #d0b26d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

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

.review-grid--collapsed .review-card--more {
  display: none;
}

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

.rating-chip {
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(201, 162, 74, 0.1);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 4px;
}

.rating-chip strong {
  font-size: 1.2rem;
  color: #fbf5eb;
}

.rating-chip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.review-card {
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.stars {
  color: #d5bd79;
  letter-spacing: 0.14em;
  font-size: 1.1rem;
}

.review-card footer {
  display: grid;
  gap: 4px;
}

.review-card footer span {
  color: #beb199;
  font-size: 0.92rem;
}

.review-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.review-source {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.review-source:hover,
.review-source:focus-visible {
  color: #fbf5eb;
}

.service-area__panel {
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(201, 162, 74, 0.08);
}

.service-area__copy h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(201, 162, 74, 0.08);
  font-size: 0.94rem;
}

.service-area__visual {
  display: grid;
  place-items: center;
}

.map-shell {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(194, 156, 74, 0.11), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #0c0c0c;
  border: 1px solid rgba(194, 156, 74, 0.09);
  box-shadow: inset 0 0 0 20px rgba(194, 156, 74, 0.022);
}

.map-shell::before,
.map-shell::after {
  content: "";
  position: absolute;
  inset: 14% 18%;
  border-radius: 50%;
  border: 1px dashed rgba(194, 156, 74, 0.1);
}

.map-shell::after {
  inset: 28% 30%;
}

.map-ring {
  position: absolute;
  inset: 35% 35%;
  border-radius: 50%;
  border: 2px solid rgba(194, 156, 74, 0.4);
  box-shadow: 0 0 0 10px rgba(194, 156, 74, 0.06);
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 8px rgba(194, 156, 74, 0.07);
}

.map-pin::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #111;
}

.map-pin--one {
  left: 28%;
  top: 26%;
}

.map-pin--two {
  right: 24%;
  top: 42%;
}

.map-pin--three {
  left: 38%;
  bottom: 24%;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.quote-form {
  border-radius: 20px;
  padding: 24px;
}

.booking-card {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(201, 162, 74, 0.08);
  box-shadow: var(--shadow-soft);
}

.booking-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.booking-card__head h3 {
  margin: 2px 0 0;
  font-size: 1.2rem;
  color: #fbf5eb;
}

.booking-badge {
  flex: none;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.16);
  color: #ddd0b2;
  font-size: 0.82rem;
  font-weight: 700;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 162, 74, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: #fbf5eb;
  font-size: 0;
  line-height: 1;
  position: relative;
}

.calendar-nav span {
  display: none;
}

.calendar-nav::before {
  content: "‹";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: #fbf5eb;
}

.calendar-nav[data-calendar-next]::before {
  content: "›";
}

.calendar-title {
  text-align: center;
  font-weight: 800;
  color: #fbf5eb;
  letter-spacing: 0.02em;
}

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

.calendar-weekday {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c6b89f;
  padding-bottom: 2px;
}

.calendar-day {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 74, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fbf5eb;
  display: grid;
  place-items: center;
  gap: 2px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.calendar-day span {
  font-size: 0.98rem;
}

.calendar-day small {
  font-size: 0.68rem;
  color: #c6b89f;
  letter-spacing: 0.03em;
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(201, 162, 74, 0.26);
  background: rgba(201, 162, 74, 0.07);
}

.calendar-day:disabled {
  opacity: 0.24;
  cursor: not-allowed;
}

.calendar-day--empty {
  background: transparent;
  border: 1px dashed rgba(194, 156, 74, 0.06);
}

.calendar-day--selected {
  background: linear-gradient(180deg, #dcc379, #a98228);
  color: #111;
  border-color: transparent;
}

.calendar-day--selected small {
  color: rgba(17, 17, 17, 0.72);
}

.calendar-day--today {
  box-shadow: inset 0 0 0 1px rgba(201, 162, 74, 0.3);
}

.calendar-slots {
  margin-top: 16px;
}

.calendar-slots__label {
  margin: 0 0 10px;
  color: #c6b89f;
  font-size: 0.88rem;
  font-weight: 700;
}

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

.slot-chip {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(194, 156, 74, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fbf5eb;
  font-weight: 700;
}

.slot-chip:hover,
.slot-chip:focus-visible {
  border-color: rgba(194, 156, 74, 0.24);
  background: rgba(194, 156, 74, 0.07);
}

.slot-chip.is-selected {
  background: linear-gradient(180deg, #dcc379, #a98228);
  color: #111;
  border-color: transparent;
}

.booking-summary {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(194, 156, 74, 0.08);
  display: grid;
  gap: 4px;
}

.booking-summary__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c1b39a;
}

.booking-summary strong {
  color: #fbf5eb;
  font-size: 0.98rem;
}

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

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

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(201, 162, 74, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 14px 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.field select {
  background: linear-gradient(180deg, rgba(247, 240, 225, 0.98), rgba(232, 220, 193, 0.96));
  color: #16120d;
}

.field select option {
  color: #16120d;
  background: #f7f0e1;
}

.field select:required:invalid {
  color: #85735a;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201, 162, 74, 0.62);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.1);
  outline: none;
}

.field-error {
  min-height: 1.1em;
  font-size: 0.86rem;
  color: #b63232;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(194, 76, 76, 0.72);
  box-shadow: 0 0 0 4px rgba(182, 50, 50, 0.1);
}

.form-footer {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  font-weight: 700;
  color: var(--trust);
}

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

.faq-item {
  border-radius: 22px;
  padding: 4px 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  position: relative;
  color: #fbf5eb;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--accent);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 24px 22px;
}

.final-cta {
  padding: 0 0 88px;
}

.final-cta__inner {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(201, 162, 74, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #0c0c0c;
}

.final-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 36px 0 100px;
  background: #040404;
  color: rgba(244, 239, 230, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.brand--footer .brand-text strong,
.brand--footer .brand-text span {
  color: #fbf5eb;
}

.footer-note {
  max-width: 34ch;
  margin: 14px 0 0;
  color: rgba(244, 239, 230, 0.72);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #fbf5eb;
  font-size: 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(244, 239, 230, 0.72);
}

.footer-list a {
  color: #fbf5eb;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 6, 6, 0.92);
  border-top: 1px solid rgba(201, 162, 74, 0.1);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
}

.mobile-cta__call {
  background: #121212;
  color: #fbf5eb;
  border: 1px solid rgba(201, 162, 74, 0.12);
}

.mobile-cta__quote {
  background: linear-gradient(180deg, #dcc379, #a98228);
  color: #111;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

@media (max-width: 1120px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto auto;
  }

  .site-nav {
    order: 4;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-radius: 18px;
    padding: 8px;
  }

  .header-call {
    justify-self: end;
  }

  .hero__inner {
    min-height: 760px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 5.4rem;
  }
}

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

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

  .split-layout,
  .quote-layout,
  .service-area__panel,
  .final-cta__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .service-area__visual {
    order: -1;
  }

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

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

@media (max-width: 720px) {
  :root {
    --header-height: 84px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto auto;
    gap: 10px;
    min-height: var(--header-height);
  }

  .brand--official {
    width: 112px;
    height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    order: 5;
    padding: 10px 0 16px;
    gap: 12px;
    justify-content: flex-start;
    background: transparent;
    border: 0;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 74, 0.08);
  }

  .header-call {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    padding: 82px 0 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 3.7rem;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .route-topline {
    gap: 8px;
  }

  .route-pill {
    padding: 0 11px;
  }

  .route-pill--trust {
    min-width: 0;
    flex: 1 1 100%;
  }

  .route-map {
    min-height: 300px;
  }

  .visual-stack,
  .service-grid,
  .gallery-grid,
  .review-grid,
  .process-grid,
  .footer-grid,
  .form-grid,
  .rating-strip {
    grid-template-columns: 1fr;
  }

  .booking-card__head,
  .calendar-toolbar {
    grid-template-columns: 1fr;
    display: grid;
  }

  .booking-badge {
    width: fit-content;
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-day {
    min-height: 46px;
    border-radius: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .final-cta {
    padding-bottom: 92px;
  }

  .final-cta__actions,
  .hero__actions {
    width: 100%;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    flex: 1 1 100%;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
