
:root {
  --primary: #f05a16;
  --primary-dark: #42190f;
  --primary-soft: #fff1e6;
  --accent: #ff9f1c;
  --accent-soft: #fff7e8;
  --leaf: #0b8f49;
  --ink: #26140d;
  --muted: #67594f;
  --line: #ead8c8;
  --surface: #fff8f2;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(66, 25, 15, 0.13);
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}
img, video, iframe {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  color: var(--muted);
  line-height: 1.7;
}
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow-container {
  width: min(860px, calc(100% - 40px));
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  transform: translateY(-140%);
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(66, 25, 15, 0.1);
}
.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}
.site-header.is-scrolled .brand,
.site-header.menu-open .brand,
.site-header.is-scrolled .desktop-nav a,
.site-header.menu-open .desktop-nav a,
.site-header.is-scrolled .phone-link,
.site-header.menu-open .phone-link,
.site-header.is-scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
  color: var(--ink);
}
.brand img {
  width: 152px;
  height: 58px;
  object-fit: contain;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(66, 25, 15, 0.12);
}
.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.desktop-nav a,
.phone-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 650;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-menu {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  width: 238px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: all 0.16s ease;
}
.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.nav-dropdown a {
  display: block;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 6px;
}
.nav-dropdown a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  padding: 8px;
}
.mobile-panel {
  display: none;
  width: min(680px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}
.mobile-panel a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 650;
}
.mobile-panel a:hover {
  background: var(--primary-soft);
}
.mobile-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-small {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 14px;
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
}
.btn-light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-full {
  width: 100%;
}
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-visual,
.hero-media,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media,
.hero-fallback {
  object-fit: cover;
}
.hero-fallback {
  z-index: -2;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(38, 20, 13, 0.77), rgba(66, 25, 15, 0.58));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 145px 0 76px;
  max-width: 900px;
  text-align: center;
}
.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.12;
}
h1 {
  font-size: 56px;
  font-weight: 850;
}
.h1-accent {
  color: var(--accent);
  text-shadow: 0 12px 34px rgba(240, 90, 22, 0.28);
}
h2 {
  font-size: 38px;
  font-weight: 820;
}
h3 {
  font-size: 21px;
  font-weight: 780;
}
.hero p {
  max-width: 740px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}
.hero-actions,
.button-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions {
  justify-content: center;
  margin-top: 34px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.hero-stats span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 650;
}
.info-bar {
  background: var(--primary);
  color: var(--white);
}
.info-bar-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.info-bar a,
.info-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 650;
}
.section {
  padding: 86px 0;
}
.muted-section {
  background: var(--surface);
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading p {
  margin: 16px auto 0;
  font-size: 17px;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 58px;
  align-items: center;
}
.split-section .section-heading {
  text-align: left;
  margin-left: 0;
}
.body-copy {
  font-size: 17px;
}
.feature-image {
  position: relative;
  min-height: 420px;
}
.feature-image img,
.service-image img,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-image img {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.image-badge span {
  color: var(--muted);
  font-size: 13px;
}
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 620;
}
.check-list svg {
  flex: 0 0 auto;
  color: var(--leaf);
  font-size: 21px;
  margin-top: 2px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card,
.process-step,
.mini-service,
.contact-panel,
.faq-list,
.review-widget {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(66, 25, 15, 0.07);
}
.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 22px 22px;
}
.card-icon {
  position: absolute;
  top: -22px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(240, 90, 22, 0.18);
  font-size: 22px;
}
.service-card p {
  flex: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.process-step {
  padding: 24px;
}
.process-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-weight: 850;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}
.photo-highlight-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
}
.photo-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.photo-highlight {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(66, 25, 15, 0.07);
}
.photo-highlight img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-highlight div {
  padding: 22px;
}
.photo-highlight h3 {
  font-size: 20px;
}
.photo-highlight p {
  margin-bottom: 0;
}
.reviews-section {
  background: var(--surface);
}
.review-widget {
  overflow: hidden;
  padding: 10px;
}
.review-widget iframe {
  width: 100%;
  min-width: 100%;
  min-height: 520px;
  border: 0;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.city-grid a,
.nearby-links a,
.related-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 680;
}
.service-area-section {
  background: var(--primary-dark);
}
.service-area-section .section-heading h2,
.service-area-section .section-heading p {
  color: var(--white);
}
.service-area-section .section-heading span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.cta-band {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}
.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-grid h2 {
  color: var(--white);
}
.cta-grid p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}
.quote-section {
  background: var(--surface);
}
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.moving-form {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.moving-form label {
  font-weight: 750;
}
.moving-form input,
.moving-form select,
.moving-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c7d2df;
  border-color: #dec4ae;
  border-radius: 6px;
  font: inherit;
  background: var(--white);
}
.moving-form textarea {
  min-height: 130px;
  resize: vertical;
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500 !important;
}
.checkbox-row input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}
.hidden-field {
  display: none;
}
.btn-submit {
  width: 100%;
}
.form-note {
  margin: 0;
  font-size: 13px;
  text-align: center;
}
.contact-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.contact-panel a,
.contact-panel .hours,
.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}
.contact-panel svg,
.contact-list svg {
  color: var(--leaf);
  font-size: 21px;
}
.faq-list {
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 780;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin-top: 0;
  padding-bottom: 20px;
}
.map-frame {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}
.content-grid,
.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.content-grid > div,
.mini-service {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.related-links,
.nearby-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.related-links a {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-color: #ffd3b5;
}
.nearby-links a {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--line);
}
.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.site-footer {
  background: var(--primary-dark);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 58px 0 36px;
}
.footer-brand img {
  width: 190px;
  max-height: 86px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}
.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-phone {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
}
@media (max-width: 1040px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 32px;
  }
  .card-grid,
  .process-grid,
  .content-grid,
  .mini-service-grid,
  .photo-highlight-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    order: -1;
  }
  .city-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .container,
  .narrow-container {
    width: min(100% - 28px, 1180px);
  }
  .brand img {
    width: 126px;
    height: 50px;
    padding: 3px 6px;
  }
  .hero {
    min-height: 88vh;
  }
  .hero-content {
    padding-top: 120px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 27px;
  }
  h3 {
    font-size: 19px;
  }
  .hero p {
    font-size: 16px;
  }
  .info-bar-grid,
  .cta-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-grid,
  .process-grid,
  .content-grid,
  .mini-service-grid,
  .photo-highlight-grid,
  .footer-grid,
  .city-grid,
  .gallery-grid,
  .related-links,
  .nearby-links {
    grid-template-columns: 1fr;
  }
  .feature-image {
    min-height: 330px;
  }
  .section {
    padding: 64px 0;
  }
  .moving-form,
  .contact-panel {
    padding: 20px;
  }
}
