@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap');
:root {
  --ink: #0d1d2d;
  --ink2: #12283c;
  --gold: #d8a44a;
  --cream: #f6f2e9;
  --paper: #fff;
  --muted: #63707b;
  --line: #dfe3e3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

.topbar {
  background: #081520;
  color: #cbd3d9;
  font-size: 12px;
  letter-spacing: .08em;
}

.topbar-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-shell {
  height: 84px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #edf0f1;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  font: italic 600 27px "Playfair Display";
  transform: rotate(45deg);
  border-radius: 4px;
}

.brand-mark::first-letter {
  transform: rotate(-45deg);
}

.brand>span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand b {
  font: 700 19px "Manrope";
  letter-spacing: .19em;
}

.brand small {
  font-size: 8px;
  font-weight: bolder;
  letter-spacing: .13em;
  margin-top: 5px;
  color: #687580;
}

.nav nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav nav a:hover {
  color: #bd8527;
}

.btn {
  background: var(--gold);
  color: #112131;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 23px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  border: 0;
  cursor: pointer;
  transition: .2s;
}

.btn:hover {
  background: #e2b45f;
  transform: translateY(-1px);
}

.btn-small {
  padding: 13px 18px;
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
}

.hero {
  min-height: 690px;
  position: relative;
  background: url('https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=2000&q=90') center/cover;
  color: white;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 31, .96) 0%, rgba(6, 19, 31, .82) 48%, rgba(6, 19, 31, .28) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  min-height: 690px;
  padding-block: 64px;
}

.eyebrow {
  font: 700 11px "Manrope";
  letter-spacing: .2em;
  color: #a16f1e;
  margin: 0 0 18px;
}

.eyebrow.light {
  color: #e2b45f;
}

.hero h1,
.section h2,
.dark-section h2,
.local h2,
.cta h2 {
  font: 500 clamp(40px, 5vw, 67px)/1.03 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.hero h1 em,
.section h2 em,
.dark-section h2 em,
.local h2 em,
.cta h2 em {
  font-family: "Playfair Display";
  font-weight: 600;
  color: var(--gold);
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: #d7dee3;
  max-width: 650px;
  margin: 28px 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 7px;
}

.text-link span {
  color: var(--gold);
  margin-left: 8px;
}

.text-link.dark {
  border-color: #b9c0c5;
}

.trust-row {
  display: flex;
  gap: 25px;
  margin-top: 45px;
  color: #bec9d0;
  font-size: 12px;
}

.trust-row b {
  color: var(--gold);
  margin-right: 5px;
}

.quote-card {
  background: #fff;
  color: var(--ink);
  padding: 35px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
}

.quote-card h2 {
  font: 600 30px "Manrope";
  margin: 0;
}

.quote-card>p:not(.eyebrow):not(.success) {
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 22px;
}

.quote-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 13px;
}

.quote-card input,
.quote-card select {
  border: 1px solid #d8dddf;
  background: #f9faf9;
  padding: 12px;
  color: var(--ink);
  outline: none;
}

.quote-card input:focus,
.quote-card select:focus {
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.full {
  width: 100%;
  margin-top: 4px;
}

.quote-card small {
  display: block;
  text-align: center;
  color: #8a949b;
  font-size: 9px;
  margin-top: 10px;
}

.success {
  font-size: 12px;
  color: #168150!important;
  background: #ecfaf3;
  padding: 10px;
  margin: 12px 0 0!important;
}

.stats {
  background: var(--ink);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font: 600 19px "Manrope";
}

.stats-grid span {
  font-size: 11px;
  color: #9eabb5;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(.8);
}

.image-stack:before {
  content: "";
  position: absolute;
  inset: -16px 40px 40px -16px;
  border: 1px solid #d7b26d;
  z-index: -1;
}

.image-note {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--gold);
  padding: 23px 30px;
  min-width: 270px;
}

.image-note b,
.image-note span {
  display: block;
}

.image-note b {
  font: 600 17px "Manrope";
}

.image-note span {
  font-size: 11px;
  margin-top: 5px;
}

.about-copy>p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.check-grid span {
  font-size: 13px;
  font-weight: 600;
}

.check-grid span::first-letter {
  color: var(--gold);
}

.services {
  background: var(--cream);
}

.section-head,
.process-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.section-head>p,
.process-top>p {
  color: var(--muted);
  max-width: 380px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.service-card {
  background: #fff;
  padding: 34px;
  position: relative;
  min-height: 300px;
  transition: .25s;
}

.service-card:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-5px);
  z-index: 2;
}

.service-num {
  position: absolute;
  right: 25px;
  top: 22px;
  font: 500 11px "Manrope";
  color: #a2abb0;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #dfc590;
  color: #b97f20;
  font-size: 24px;
  margin-bottom: 28px;
}

.service-card h3 {
  font: 600 20px "Manrope";
}

.service-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.service-card:hover p {
  color: #b9c3ca;
}

.service-card a {
  position: absolute;
  bottom: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.service-card a span {
  color: var(--gold);
  margin-left: 10px;
}

.dark-section {
  background: var(--ink);
  color: white;
  padding: 110px 0;
}

.process-top>p {
  color: #a8b4bc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #3b4955;
}

.process-grid article {
  padding: 40px 30px 10px 0;
  margin-right: 30px;
  border-right: 1px solid #3b4955;
}

.process-grid article:last-child {
  border: 0;
}

.process-grid article>span {
  font: 600 12px "Manrope";
  color: var(--gold);
}

.process-grid h3 {
  font: 600 19px "Manrope";
  margin-top: 38px;
  text-transform: capitalize;
}

.process-grid p {
  color: #a8b4bc;
  font-size: 13px;
  line-height: 1.7;
}

.promise-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.promise-grid>div>p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.promise-list>div {
  display: flex;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 27px 0;
}

.promise-list b {
  font: 600 12px "Manrope";
  color: #aa7621;
}

.promise-list span {
  display: flex;
  flex-direction: column;
}

.promise-list strong {
  font: 600 18px "Manrope";
}

.promise-list small {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.local {
  background: #142b3e;
  color: white;
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
}

.local-grid>.local-copy {
  padding: 60px 60px 60px 0;
}

.local-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.local h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.location-city {
  white-space: nowrap;
  overflow-wrap: normal;
}

.local-copy>p:not(.eyebrow) {
  max-width: 500px;
}

.local p:not(.eyebrow) {
  color: #bdc7ce;
  line-height: 1.7;
}

.local address {
  font-style: normal;
  color: #fff;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin: 25px 0;
}

.local-service-area {
  display: grid;
  gap: 10px;
  color: #bdc7ce;
  font-size: 12px;
}

.local-service-area span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.local-service-area i {
  width: 18px;
  color: var(--gold);
  text-align: center;
}

.local-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.map-embed {
  position: relative;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
}

.local .map-embed,
.local iframe {
  width: 100%;
  height: 360px;
}

.local iframe {
  border: 0;
  filter: saturate(.55) contrast(1.05);
}

.map-open-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(7, 19, 30, .28);
  font: 700 10px "Manrope";
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: .2s;
}

.map-open-link:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.map-open-link i {
  color: var(--gold);
}

.map-open-link:hover i {
  color: var(--ink);
}

@media(max-width:600px) {
  .local-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

.cta {
  background: var(--gold);
  padding: 70px 0;
}

.cta h2 em {
  color: #fff3d8;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dark-btn {
  background: var(--ink);
  color: white;
}

.dark-btn:hover {
  background: #20384c;
}

footer {
  background: #07131e;
  color: #d3d9dd;
  padding: 75px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr 1.3fr;
  gap: 55px;
}

.footer-brand .brand-mark {
  background: #172b3d;
}

.footer-brand b {
  color: white;
}

.footer-grid>div:first-child>p {
  color: #8f9ba4;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 25px;
  font-size: 13px;
}

.footer-grid h4 {
  color: var(--gold);
  font: 700 11px "Manrope";
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 22px;
}

.footer-grid>div>a:not(.brand) {
  display: block;
  color: #aab4bb;
  font-size: 13px;
  margin: 13px 0;
}

.footer-grid address {
  font-style: normal;
  color: #aab4bb;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid .footer-map {
  color: #dfb15f!important;
  margin-top: 18px!important;
}

.copyright {
  border-top: 1px solid #283744;
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #788692;
  font-size: 11px;
}

.brand-mark {
  transform: none;
}

@media(max-width:900px) {
  .nav nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 25px 30px;
    box-shadow: 0 10px 20px #0002;
  }
  .nav nav.open {
    display: flex;
  }
  .nav>.btn {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    background-position: 65% center;
  }
  .quote-card {
    max-width: 600px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .promise-grid,
  .local-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .local-grid>.local-copy {
    padding-right: 0;
  }
  .local-grid {
    gap: 0;
  }
  .local .map-embed,
  .local iframe {
    height: 300px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    gap: 40px;
  }
}

@media(max-width:600px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }
  .topbar-inner span:first-child {
    display: none;
  }
  .topbar-inner {
    justify-content: center;
  }
  .nav-shell {
    height: 72px;
  }
  .brand b {
    font-size: 15px;
  }
  .brand small {
    font-size: 6.5px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .nav nav {
    top: 72px;
  }
  .hero-grid {
    padding: 55px 0;
  }
  .hero h1 {
    font-size: 44px;
  }
  .lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .trust-row {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .quote-card {
    padding: 25px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid div {
    padding: 20px 13px;
  }
  .section,
  .dark-section {
    padding: 75px 0;
  }
  .split {
    gap: 65px;
  }
  .image-stack img {
    height: 420px;
  }
  .image-note {
    right: 0;
    min-width: 240px;
  }
  .check-grid,
  .service-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head,
  .process-top,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-card {
    min-height: 275px;
  }
  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid #3b4955;
    margin: 0;
  }
  .promise-grid {
    gap: 40px;
  }
  .local-grid>.local-copy {
    padding: 65px 0 35px;
  }
  .local .map-embed,
  .local iframe {
    height: 260px;
  }
  .cta h2 {
    font-size: 38px;
  }
  .footer-grid {
    gap: 35px;
  }
  .copyright {
    flex-direction: column;
    gap: 10px;
  }
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
}

.page-hero h1 {
  font: 500 clamp(42px, 6vw, 70px)/1.05 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.page-hero h1 em {
  font-family: "Playfair Display";
  color: var(--gold);
}

.page-hero p:last-child {
  max-width: 650px;
  color: #b9c4cb;
  line-height: 1.7;
  margin-top: 24px;
}

.page-content {
  min-height: 420px;
}

.nav nav a.active {
  color: #bd8527;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.contact-form-only {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.contact-cards article {
  border: 1px solid var(--line);
  padding: 35px;
}

.contact-cards address {
  font-style: normal;
  line-height: 1.8;
  color: var(--muted);
}

.contact-cards .map-embed,
.contact-cards iframe {
  width: 100%;
  height: 280px;
}

.contact-cards .map-embed {
  align-self: center;
}

.contact-cards iframe {
  border: 0;
}

.home-hero {
  background-image: url('assets/hero-moving.png');
  min-height: 700px;
}

.home-hero-grid {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.home-hero .hero-copy {
  max-width: 720px;
}

.home-hero .hero-copy>.eyebrow {
  font-size: 15px;
  line-height: 1.5;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.home-intro-grid>div:last-child p {
  color: var(--muted);
  line-height: 1.8;
}

.home-benefits {
  background: var(--cream);
  padding: 0 0 100px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}

.benefits-grid article {
  padding: 42px;
  border-right: 1px solid var(--line);
}

.benefits-grid article:last-child {
  border: 0;
}

.benefits-grid span {
  font: 700 11px "Manrope";
  color: var(--gold);
}

.benefits-grid h3 {
  font: 600 22px "Manrope";
  margin: 28px 0 12px;
}

.benefits-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.home-photo {
  position: relative;
}

.home-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.home-next {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
}

.home-next h2 {
  font: 500 clamp(40px, 5vw, 64px)/1.05 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.home-next h2 em {
  font-family: "Playfair Display";
  color: var(--gold);
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid #41505d;
}

.next-grid a {
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
  border-right: 1px solid #41505d;
  transition: .2s;
}

.next-grid a:hover {
  background: #142b3e;
}

.next-grid span {
  font-size: 11px;
  color: var(--gold);
}

.next-grid b {
  font: 600 19px "Manrope";
  margin: 28px 0 10px;
}

.next-grid small {
  color: #9facb5;
  line-height: 1.6;
}

.admin-body {
  background: #f3f1eb;
}

.admin-header {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
}

.admin-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header .wrap>div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-status {
  font-size: 11px;
  color: #9ed4b5;
}

.admin-back {
  padding: 11px 15px;
}

.admin-shell {
  padding: 65px 0;
}

.admin-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.admin-title h1 {
  font: 600 42px "Manrope";
  margin: 0;
}

.admin-title>div>p:last-child {
  color: var(--muted);
}

.admin-count {
  background: var(--ink);
  color: #fff;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
}

.admin-count strong {
  font: 600 30px "Manrope";
  color: var(--gold);
}

.admin-count span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 35px 0 18px;
}

.admin-toolbar input {
  flex: 1;
  max-width: 500px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 950px;
}

.admin-table th {
  text-align: left;
  background: #eae7df;
  padding: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.admin-table td {
  padding: 18px 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.admin-table td small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}

.service-pill {
  background: #f7ecd6;
  color: #8a5b12;
  padding: 6px 9px;
  font-size: 11px;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.row-actions button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 10px;
  cursor: pointer;
}

.row-actions .edit-btn {
  color: #1a658e;
}

.row-actions .delete-btn {
  color: #a93d3d;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state[hidden] {
  display: none;
}

.empty-state>span {
  font-size: 46px;
  color: var(--gold);
}

.empty-state p {
  color: var(--muted);
}

dialog {
  border: 0;
  padding: 0;
  box-shadow: 0 20px 80px #0005;
  width: min(560px, calc(100% - 30px));
}

dialog::backdrop {
  background: #07131ecc;
}

dialog form {
  padding: 35px;
}

dialog label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 15px 0;
}

dialog input,
dialog select {
  padding: 12px;
  border: 1px solid var(--line);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
}

.dialog-head h2 {
  margin: 0;
}

.dialog-close {
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}

.muted-btn {
  background: #d9dde0;
}

.admin-table-wrap .empty-state:not([hidden])+* {
  display: none;
}

@media(max-width:900px) {
  .home-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .benefits-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid article,
  .next-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-title {
    align-items: flex-start;
    gap: 25px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .admin-status {
    display: none;
  }
}

@media(max-width:600px) {
  .home-hero,
  .home-hero-grid {
    min-height: 660px;
  }
  .home-hero {
    background-position: 62% center;
  }
  .admin-header .brand small {
    display: block;
  }
  .admin-back {
    font-size: 9px;
  }
  .admin-shell {
    padding: 40px 14px;
  }
  .admin-title {
    flex-direction: column;
  }
  .admin-title h1 {
    font-size: 34px;
  }
  .admin-toolbar {
    flex-direction: column;
  }
  .admin-toolbar input {
    width: 100%;
  }
}

.admin-login {
  min-height: 100vh;
  background: radial-gradient(circle at 15% 20%, #203c53 0, transparent 34%), linear-gradient(135deg, #06121d, #10283c);
  display: grid;
  place-items: center;
  padding: 30px;
}

.admin-login[hidden],
#admin-dashboard[hidden] {
  display: none;
}

.admin-login-card {
  width: min(440px, 100%);
  background: #fff;
  padding: 42px;
  box-shadow: 0 30px 100px #0008;
}

.admin-login-card>.brand {
  margin: 0 0 45px;
}

.admin-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font: 600 24px "Manrope";
  margin-bottom: 25px;
}

.admin-login-card h1 {
  font: 600 38px "Manrope";
  margin: 0;
}

.admin-login-card>p:not(.eyebrow):not(.login-error) {
  color: var(--muted);
  margin: 8px 0 28px;
}

.admin-login-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 17px 0;
}

.admin-login-card input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  outline: none;
}

.admin-login-card input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px #d8a44a20;
}

.password-wrap {
  display: flex;
  position: relative;
}

.password-wrap button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  border: 0;
  background: transparent;
  color: #64717b;
  cursor: pointer;
}

.login-error {
  background: #fff0f0;
  color: #a43333;
  padding: 11px 13px;
  font-size: 12px;
  margin: 14px 0 0;
}

.back-home {
  display: block;
  text-align: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.admin-login-card .brand small {
  font-size: 7px;
}

@media(max-width:500px) {
  .admin-login {
    padding: 16px;
  }
  .admin-login-card {
    padding: 28px 22px;
  }
  .admin-login-card>.brand {
    margin-bottom: 35px;
  }
}

/* Merged from enhancements.css */
.topbar {
  display: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  width: 38px;
  height: 38px!important;
  display: grid!important;
  place-items: center;
  background: #14283a;
  color: #fff!important;
  border: 1px solid #314252;
  border-radius: 50%;
  margin: 0!important;
  transition: .2s;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--ink)!important;
  transform: translateY(-2px);
}

.social-links i {
  font-size: 15px;
}

.footer-social-standalone {
  padding-top: 36px;
}

.service-icon i {
  font-size: 21px;
}

.compact-footer-address {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  color: #aab4bb;
  font-size: 12px;
}

.compact-footer-address i {
  color: var(--gold);
}

.compact-footer-address address {
  font-style: normal;
  line-height: 1.5;
}

.compact-footer-address a {
  color: var(--gold);
  margin-left: auto;
  white-space: nowrap;
}

.home-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: .5s;
}

.gallery-card:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #07131ee8);
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card>div {
  position: absolute;
  z-index: 2;
  left: 45px;
  bottom: 38px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}

.gallery-card>div>i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 20px;
}

.gallery-card span {
  display: flex;
  flex-direction: column;
}

.gallery-card b {
  font: 600 19px "Manrope";
}

.gallery-card small {
  color: #c3cdd3;
  margin-top: 6px;
}

.benefits-grid article:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: 22px;
  display: block;
  margin-bottom: 18px;
}

.benefits-grid article:nth-child(1):before {
  content: "\f49e";
}

.benefits-grid article:nth-child(2):before {
  content: "\f5fd";
}

.benefits-grid article:nth-child(3):before {
  content: "\f058";
}

@media(max-width:700px) {
  .home-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    min-height: 340px;
  }
  .gallery-card>div {
    left: 24px;
    bottom: 25px;
  }
}

.home-services {
  background: #fff;
}

.expanded-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.expanded-service-grid a {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: .2s;
}

.expanded-service-grid a:hover {
  background: var(--ink);
  color: #fff;
}

.expanded-service-grid i {
  color: var(--gold);
  font-size: 23px;
}

.expanded-service-grid b {
  font: 600 18px "Manrope";
  margin: 24px 0 9px;
}

.expanded-service-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.expanded-service-grid a:hover span {
  color: #aebbc4;
}

.moving-guide {
  background: var(--ink);
  color: #fff;
  padding: 90px 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.guide-grid h2 {
  font: 500 clamp(40px, 5vw, 62px)/1.05 "Manrope";
  letter-spacing: -.045em;
  margin: 0;
}

.guide-grid h2 em {
  font-family: "Playfair Display";
  color: var(--gold);
}

.guide-grid p:last-child {
  color: #a9b5bd;
  line-height: 1.7;
}

.material-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.material-list span {
  background: #142b3e;
  padding: 18px;
  font-size: 13px;
}

.material-list i {
  color: var(--gold);
  width: 25px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-grid details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.faq-grid summary {
  cursor: pointer;
  font: 600 15px "Manrope";
}

.faq-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-page {
  max-width: 900px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-grid figure {
  margin: 0;
  background: var(--ink);
  color: #fff;
}

.photo-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 18px;
  font-size: 13px;
}

.more-menu {
  position: relative;
}

.more-menu summary {
  list-style: none;
  cursor: pointer;
}

.more-menu summary::-webkit-details-marker {
  display: none;
}

.more-menu summary i {
  font-size: 9px;
  margin-left: 5px;
}

.more-menu>div {
  display: none;
  position: absolute;
  right: 0;
  top: 28px;
  background: #fff;
  min-width: 190px;
  padding: 10px;
  box-shadow: 0 15px 35px #0003;
  border: 1px solid var(--line);
  z-index: 30;
}

.more-menu[open]>div {
  display: block;
}

.more-menu>div a {
  display: block;
  padding: 10px!important;
  white-space: nowrap;
}

.more-menu>div i {
  color: var(--gold);
  width: 23px;
}

@media(max-width:900px) {
  .expanded-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .more-menu>div {
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 15px;
  }
}

@media(max-width:600px) {
  .expanded-service-grid,
  .material-list,
  .faq-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Merged from service-locations.css */
.service-location-section {
  background: var(--cream);
}

.location-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 18px;
  margin-bottom: 28px;
}

.location-search i {
  color: var(--gold);
}

.location-search input {
  flex: 1;
  padding: 17px 13px;
  border: 0;
  outline: none;
  background: transparent;
}

.location-search span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.service-location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.service-location-grid a {
  background: #fff;
  padding: 24px;
  min-height: 145px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: .2s;
}

.service-location-grid a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.service-location-grid a>span {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 9px;
  color: #9ba6ad;
}

.service-location-grid i {
  color: var(--gold);
  margin-bottom: 20px;
}

.service-location-grid b {
  font: 600 14px/1.4 "Manrope";
}

.service-location-grid small {
  color: var(--muted);
  margin-top: auto;
  padding-top: 12px;
}

.service-location-grid a:hover small {
  color: #b9c4cb;
}

.location-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
}

.location-note i {
  color: var(--gold);
  margin-right: 7px;
}

@media(max-width:1000px) {
  .service-location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:700px) {
  .service-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:450px) {
  .service-location-grid {
    grid-template-columns: 1fr;
  }
}

/* Merged from home-details.css */
.move-detail-section {
  background: #fff;
}

.move-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.move-detail-grid article {
  border: 1px solid var(--line);
  padding: 36px;
  background: #fff;
}

.move-detail-grid article>i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--gold);
  font-size: 21px;
}

.move-detail-grid h3 {
  font: 600 21px "Manrope";
  margin: 25px 0 12px;
}

.move-detail-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.move-detail-grid ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.move-detail-grid li {
  font-size: 12px;
  color: #344552;
}

.move-detail-grid li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-right: 7px;
}

.move-prep {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
  margin-top: 35px;
}

.move-prep>div {
  padding: 28px;
  border-right: 1px solid #344655;
}

.move-prep>div:last-child {
  border: 0;
}

.move-prep h3 {
  font: 600 19px "Manrope";
  margin: 0;
}

.move-prep span {
  font-size: 10px;
  color: var(--gold);
}

.move-prep p {
  font-size: 12px;
  line-height: 1.65;
  color: #b7c2c9;
  margin-bottom: 0;
}

@media(max-width:950px) {
  .move-prep {
    grid-template-columns: 1fr 1fr;
  }
  .move-prep>div {
    border-bottom: 1px solid #344655;
  }
}

@media(max-width:650px) {
  .move-detail-grid,
  .move-prep {
    grid-template-columns: 1fr;
  }
  .move-detail-grid ul {
    grid-template-columns: 1fr;
  }
}

/* Merged from location-preview.css */
.home-location-preview {
  background: #fff;
}

.home-location-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.home-location-chips a {
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--cream);
  font: 600 13px "Manrope";
  transition: .2s;
}

.home-location-chips a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.home-location-chips i {
  color: var(--gold);
  margin-right: 10px;
}

.locations-button {
  margin-top: 6px;
}

@media(max-width:850px) {
  .home-location-chips {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .home-location-chips {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Merged from content-expansion.css */
.relocation-information {
  background: var(--cream);
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9ddd9;
  border: 1px solid #d9ddd9;
}

.info-columns article {
  background: #fff;
  padding: 34px;
}

.info-columns span {
  font-size: 10px;
  color: var(--gold);
}

.info-columns h3 {
  font: 600 19px/1.35 "Manrope";
  margin: 25px 0 13px;
}

.info-columns p,
.content-split p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
}

.info-band>div {
  padding: 28px;
  border-right: 1px solid #344655;
}

.info-band i {
  color: var(--gold);
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}

.info-band b {
  font: 600 15px "Manrope";
}

.info-band p {
  color: #aeb9c0;
  font-size: 12px;
  line-height: 1.6;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: #fff;
  padding: 55px;
  margin-top: 30px;
}

.content-split h3 {
  font: 600 27px/1.25 "Manrope";
}

.expectations {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  background: var(--ink);
  color: #fff;
  padding: 50px;
  margin-top: 30px;
}

.expectations h3 {
  font: 600 26px/1.3 "Manrope";
}

.expectations ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.expectations li {
  display: flex;
  gap: 13px;
  color: #b8c3ca;
  font-size: 12px;
  line-height: 1.6;
}

.expectations li i {
  color: var(--gold);
  margin-top: 4px;
}

.expectations li b {
  display: block;
  color: #fff;
  font-size: 13px;
}

.service-guidance {
  background: #fff;
}

.guidance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.guidance-list article {
  display: flex;
  gap: 22px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guidance-list article>i {
  color: var(--gold);
  font-size: 22px;
  width: 28px;
}

.guidance-list h3 {
  font: 600 18px "Manrope";
  margin: 0 0 10px;
}

.guidance-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.service-note {
  display: flex;
  gap: 15px;
  background: var(--cream);
  padding: 22px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

.service-note i {
  color: var(--gold);
}

.service-note p {
  margin: 0;
}

@media(max-width:900px) {
  .info-columns {
    grid-template-columns: 1fr;
  }
  .info-band {
    grid-template-columns: 1fr 1fr;
  }
  .content-split,
  .expectations {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .guidance-list {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .info-band,
  .expectations ul {
    grid-template-columns: 1fr;
  }
  .content-split,
  .expectations {
    padding: 30px 22px;
  }
}

/* Home transport options */
.transport-showcase {
  background: #f6f2e9;
}

.transport-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.transport-visual-grid article {
  background: #fff;
  border: 1px solid #dfe3e3;
  overflow: hidden;
}

.transport-visual-grid img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.transport-visual-grid article>div {
  padding: 28px 30px 32px;
}

.transport-visual-grid span {
  font: 700 10px "Manrope";
  letter-spacing: .16em;
  color: #a16f1e;
}

.transport-visual-grid h3 {
  font: 600 23px "Manrope";
  margin: 12px 0 10px;
}

.transport-visual-grid p,
.transport-type-grid p,
.transport-note p {
  color: #63707b;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.transport-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.transport-type-grid article {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 26px;
  min-height: 145px;
}

.transport-type-grid i {
  color: #b97f20;
  font-size: 22px;
  margin-top: 4px;
  width: 27px;
  text-align: center;
}

.transport-type-grid h3 {
  font: 600 17px "Manrope";
  margin: 0 0 8px;
}

.transport-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: #0d1d2d;
  color: #fff;
  padding: 26px 30px;
  margin-top: 24px;
}

.transport-note>i {
  color: #d8a44a;
  font-size: 20px;
}

.transport-note p {
  color: #bdc7ce;
}

.transport-note b {
  color: #fff;
}

@media(max-width:900px) {
  .transport-type-grid {
    grid-template-columns: 1fr 1fr;
  }
  .transport-note {
    grid-template-columns: auto 1fr;
  }
  .transport-note .btn {
    grid-column: 1/-1;
  }
}

@media(max-width:600px) {
  .transport-visual-grid,
  .transport-type-grid {
    grid-template-columns: 1fr;
  }
  .transport-visual-grid img {
    height: 250px;
  }
  .transport-note {
    grid-template-columns: 1fr;
  }
  .transport-note .btn {
    grid-column: auto;
  }
}

/* Detailed process page */
.process-detail-section {
  background: #fff;
  position: relative;
  z-index: 1;
  clear: both;
  overflow: hidden;
}

.process-detail-list {
  display: grid;
  gap: 80px;
}

.process-detail-list article {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 70px;
  align-items: center;
  position: relative;
  min-width: 0;
}

.process-detail-list article:nth-child(even) .process-detail-image {
  order: 2;
}

.process-detail-list article:nth-child(even) .process-detail-copy {
  order: 1;
}

.process-detail-image,
.process-detail-copy {
  min-width: 0;
}

.process-detail-image {
  position: relative;
  overflow: hidden;
  background: #0d1d2d;
}

.process-detail-image img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform .5s ease;
}

.process-detail-list article:hover .process-detail-image img {
  transform: scale(1.025);
}

.process-detail-image span {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #d8a44a;
  color: #0d1d2d;
  padding: 14px 20px;
  font: 700 11px "Manrope";
  letter-spacing: .14em;
}

.process-detail-copy h3 {
  font: 600 31px/1.25 "Manrope";
  letter-spacing: -.025em;
  margin: 0 0 20px;
}

.process-detail-copy>p:not(.eyebrow) {
  color: #63707b;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 14px;
}

.process-detail-copy ul {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid #dfe3e3;
}

.process-detail-copy li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #263848;
  font-size: 13px;
  margin: 12px 0;
}

.process-detail-copy li i {
  color: #b97f20;
  width: 16px;
}

.process-preparation {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  background: #0d1d2d;
  color: #fff;
  margin-top: 90px;
  padding: 48px;
}

.process-preparation h3 {
  font: 600 30px/1.25 "Manrope";
  margin: 0;
}

.process-preparation ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.process-preparation li {
  color: #bdc7ce;
  font-size: 13px;
  line-height: 1.7;
  border-top: 1px solid #354656;
  padding-top: 15px;
}

.process-preparation li span {
  display: block;
  color: #d8a44a;
  font: 700 11px "Manrope";
  margin-bottom: 8px;
}

@media(max-width:900px) {
  .process-detail-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }
  .process-detail-list article:nth-child(even) .process-detail-image,
  .process-detail-list article:nth-child(even) .process-detail-copy {
    order: 0;
  }
  .process-preparation {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .process-detail-list {
    gap: 60px;
  }
  .process-detail-image img {
    height: 300px;
  }
  .process-detail-copy h3 {
    font-size: 25px;
  }
  .process-preparation {
    padding: 30px 24px;
  }
  .process-preparation ol {
    grid-template-columns: 1fr;
  }
}

/* Expanded services page */
.service-deep-dive {
  background: #fff;
}

.service-feature-list {
  display: grid;
  gap: 70px;
}

.service-feature-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 65px;
  align-items: center;
  min-width: 0;
}

.service-feature-list article:nth-child(even) img {
  order: 2;
}

.service-feature-list img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  min-width: 0;
}

.service-feature-list article>div {
  min-width: 0;
}

.service-feature-list article>div>i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #dfc590;
  color: #b97f20;
  font-size: 22px;
  margin-bottom: 24px;
}

.service-feature-list h3 {
  font: 600 29px/1.3 "Manrope";
  letter-spacing: -.025em;
  margin: 0 0 16px;
}

.service-feature-list article>div>p:not(.eyebrow) {
  color: #63707b;
  font-size: 14px;
  line-height: 1.8;
}

.service-feature-list ul {
  padding: 15px 0 15px 20px;
  color: #435463;
  font-size: 13px;
  line-height: 1.9;
  border-top: 1px solid #dfe3e3;
}

.service-feature-list a {
  font: 700 11px "Manrope";
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a16f1e;
}

.service-planning {
  background: #f6f2e9;
}

.service-planning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d8ddd9;
  border: 1px solid #d8ddd9;
}

.service-planning-grid article {
  background: #fff;
  padding: 28px;
  min-height: 230px;
  position: relative;
}

.service-planning-grid span {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #9ca7ae;
  font: 600 11px "Manrope";
}

.service-planning-grid i {
  font-size: 24px;
  color: #b97f20;
  margin: 8px 0 25px;
}

.service-planning-grid h3 {
  font: 600 19px "Manrope";
  margin: 0 0 12px;
}

.service-planning-grid p {
  color: #63707b;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.service-scope-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 42px;
  background: #0d1d2d;
  color: #fff;
  padding: 42px;
  margin-top: 28px;
}

.service-scope-band h3 {
  font: 600 25px/1.3 "Manrope";
  margin: 0;
}

.service-scope-band>p {
  color: #bdc7ce;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

@media(max-width:900px) {
  .service-feature-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .service-feature-list article:nth-child(even) img {
    order: 0;
  }
  .service-planning-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-scope-band {
    grid-template-columns: 1fr 1fr;
  }
  .service-scope-band .btn {
    grid-column: 1/-1;
  }
}

@media(max-width:600px) {
  .service-feature-list {
    gap: 55px;
  }
  .service-feature-list img {
    height: 300px;
  }
  .service-feature-list h3 {
    font-size: 24px;
  }
  .service-planning-grid,
  .service-scope-band {
    grid-template-columns: 1fr;
  }
  .service-scope-band {
    padding: 30px 24px;
  }
  .service-scope-band .btn {
    grid-column: auto;
  }
}

/* Previous moving images retained on Services and Process */
.previous-image-section {
  background: #fff;
}

.previous-image-block {
  margin-top: 90px;
}

.previous-image-section .previous-image-block {
  margin-top: 0;
}

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

.previous-image-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid #dfe3e3;
  overflow: hidden;
  min-width: 0;
}

.previous-image-grid img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.previous-image-grid figcaption {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 24px;
}

.previous-image-grid figcaption>i {
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border: 1px solid #dfc590;
  color: #b97f20;
  font-size: 18px;
}

.previous-image-grid figcaption span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.previous-image-grid figcaption b {
  font: 600 16px "Manrope";
}

.previous-image-grid figcaption small {
  color: #63707b;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 5px;
}

@media(max-width:600px) {
  .previous-image-block {
    margin-top: 65px;
  }
  .previous-image-grid {
    grid-template-columns: 1fr;
  }
  .previous-image-grid img {
    height: 250px;
  }
}

/* Glossy icon tiles and card motion */
:root {
  --glass-line: rgba(255, 255, 255, .72);
  --glass-shadow: 0 18px 45px rgba(13, 29, 45, .11);
  --glass-shadow-hover: 0 25px 55px rgba(13, 29, 45, .18);
}

.service-card,
.expanded-service-grid>a,
.move-detail-grid>article,
.faq-grid>details,
.next-grid>a,
.transport-visual-grid>article,
.transport-type-grid>article,
.info-columns>article,
.info-band>div,
.guidance-list>article,
.service-planning-grid>article,
.previous-image-grid>figure,
.process-detail-list>article,
.service-feature-list>article,
.promise-list>div,
.contact-cards>article {
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform .35s cubic-bezier(.2, .75, .25, 1), box-shadow .35s ease, border-color .35s ease, background-color .35s ease;
  animation: cardReveal .65s both;
  box-shadow: 0 8px 25px rgba(13, 29, 45, .055);
}

.service-card,
.expanded-service-grid>a,
.move-detail-grid>article,
.transport-visual-grid>article,
.transport-type-grid>article,
.info-columns>article,
.info-band>div,
.guidance-list>article,
.service-planning-grid>article,
.previous-image-grid>figure,
.contact-cards>article {
  background-image: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .72) 52%, rgba(216, 164, 74, .055));
  border-color: rgba(177, 188, 194, .62);
}

.service-card:hover,
.expanded-service-grid>a:hover,
.move-detail-grid>article:hover,
.faq-grid>details:hover,
.next-grid>a:hover,
.transport-visual-grid>article:hover,
.transport-type-grid>article:hover,
.info-columns>article:hover,
.info-band>div:hover,
.guidance-list>article:hover,
.service-planning-grid>article:hover,
.previous-image-grid>figure:hover,
.contact-cards>article:hover {
  transform: translateY(-7px) translateZ(0);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(216, 164, 74, .7);
}

.process-detail-list>article:hover,
.service-feature-list>article:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 18px 22px rgba(13, 29, 45, .09));
}

.service-icon,
.expanded-service-grid i,
.move-detail-grid>article>i,
.transport-type-grid>article>i,
.info-band>div>i,
.guidance-list>article>i,
.service-feature-list article>div>i,
.service-planning-grid article>i,
.previous-image-grid figcaption>i,
.process-detail-copy li i,
.social-links a {
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, #fffdf8 0%, #f5e6c7 43%, #d8a44a 100%);
  border: 1px solid rgba(216, 164, 74, .7);
  color: #815615;
  box-shadow: inset 1px 1px 0 var(--glass-line), inset -3px -3px 8px rgba(137, 89, 16, .13), 0 8px 18px rgba(13, 29, 45, .14);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .82);
  transition: transform .3s cubic-bezier(.2, .75, .25, 1), box-shadow .3s ease, filter .3s ease;
}

.service-icon::after,
.expanded-service-grid i::after,
.move-detail-grid>article>i::after,
.transport-type-grid>article>i::after,
.info-band>div>i::after,
.guidance-list>article>i::after,
.service-feature-list article>div>i::after,
.previous-image-grid figcaption>i::after,
.social-links a::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 12%;
  top: 8%;
  height: 38%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-card:hover .service-icon,
.expanded-service-grid>a:hover i,
.move-detail-grid>article:hover>i,
.transport-type-grid>article:hover>i,
.info-band>div:hover>i,
.guidance-list>article:hover>i,
.service-feature-list article:hover>div>i,
.previous-image-grid figure:hover figcaption>i {
  transform: translateY(-3px) scale(1.06);
  box-shadow: inset 1px 1px 0 #fff, 0 12px 24px rgba(174, 116, 29, .27);
  filter: saturate(1.08);
}

.previous-image-grid img,
.transport-visual-grid img,
.service-feature-list img,
.process-detail-image img,
.gallery-card img,
.home-photo img,
.image-stack img {
  transition: transform .65s cubic-bezier(.2, .75, .25, 1), filter .5s ease;
  filter: saturate(.94) contrast(1.02);
}

.previous-image-grid figure:hover img,
.transport-visual-grid article:hover img,
.service-feature-list article:hover img,
.process-detail-list article:hover .process-detail-image img,
.gallery-card:hover img,
.home-photo:hover img,
.image-stack:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.04);
}

.service-card:nth-child(2n),
.expanded-service-grid>a:nth-child(2n),
.move-detail-grid>article:nth-child(2n),
.guidance-list>article:nth-child(2n),
.previous-image-grid>figure:nth-child(2n) {
  animation-delay: .07s;
}

.service-card:nth-child(3n),
.expanded-service-grid>a:nth-child(3n),
.service-planning-grid>article:nth-child(3n) {
  animation-delay: .14s;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:600px) {
  .service-card:hover,
  .expanded-service-grid>a:hover,
  .move-detail-grid>article:hover,
  .faq-grid>details:hover,
  .next-grid>a:hover,
  .transport-visual-grid>article:hover,
  .transport-type-grid>article:hover,
  .info-columns>article:hover,
  .info-band>div:hover,
  .guidance-list>article:hover,
  .service-planning-grid>article:hover,
  .previous-image-grid>figure:hover,
  .contact-cards>article:hover {
    transform: translateY(-3px);
  }
}

@media(prefers-reduced-motion:reduce) {
  .service-card,
  .expanded-service-grid>a,
  .move-detail-grid>article,
  .faq-grid>details,
  .next-grid>a,
  .transport-visual-grid>article,
  .transport-type-grid>article,
  .info-columns>article,
  .info-band>div,
  .guidance-list>article,
  .service-planning-grid>article,
  .previous-image-grid>figure,
  .process-detail-list>article,
  .service-feature-list>article,
  .promise-list>div,
  .contact-cards>article {
    animation: none;
    transition: none;
  }
  .previous-image-grid img,
  .transport-visual-grid img,
  .service-feature-list img,
  .process-detail-image img,
  .gallery-card img,
  .home-photo img,
  .image-stack img {
    transition: none;
  }
}

/* Prevent text and animated card edges from being clipped */
.process-detail-section {
  overflow: visible;
}

main,
.wrap,
.section-head>*,
.split>*,
.hero-grid>*,
.home-intro-grid>*,
.service-grid>*,
.expanded-service-grid>*,
.process-grid>*,
.promise-grid>*,
.local-grid>*,
.footer-grid>*,
.move-detail-grid>*,
.info-columns>*,
.content-split>*,
.transport-visual-grid>*,
.transport-type-grid>*,
.process-detail-list>*,
.service-feature-list>*,
.service-planning-grid>*,
.previous-image-grid>*,
.contact-cards>* {
  min-width: 0;
}

h1,
h2,
h3,
h4,
p,
li,
a,
small,
b,
strong,
address,
figcaption {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-feature-list article>div,
.process-detail-copy,
.service-card,
.expanded-service-grid>a,
.move-detail-grid>article,
.guidance-list article>div,
.previous-image-grid figcaption span,
.transport-type-grid article>div,
.footer-grid>div {
  min-width: 0;
  max-width: 100%;
}

.service-feature-list h3,
.process-detail-copy h3,
.section-head h2,
.page-hero h1,
.hero h1 {
  white-space: normal;
}

@media(max-width:600px) {
  h1,
  h2,
  h3,
  h4,
  p,
  li,
  a,
  small,
  b,
  strong,
  address,
  figcaption {
    overflow-wrap: break-word;
  }
  .section-head,
  .process-top {
    width: 100%;
  }
}

/* Show complete landscape photographs without cutting their side content */
.service-feature-list img,
.process-detail-image img,
.transport-visual-grid img,
.previous-image-grid img,
.gallery-card img,
.home-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: contain;
  object-position: center;
  background: #f6f2e9;
}

.process-detail-image,
.service-feature-list article,
.transport-visual-grid article,
.previous-image-grid figure,
.gallery-card,
.home-photo {
  overflow: hidden;
}

.service-feature-list article:hover img,
.process-detail-list article:hover .process-detail-image img,
.transport-visual-grid article:hover img,
.previous-image-grid figure:hover img,
.gallery-card:hover img,
.home-photo:hover img {
  transform: none;
}

@media(max-width:900px) {
  .service-feature-list img,
  .process-detail-image img,
  .transport-visual-grid img,
  .previous-image-grid img,
  .gallery-card img,
  .home-photo img {
    height: auto;
    aspect-ratio: 3/2;
    object-fit: contain;
  }
}

@media(max-width:600px) {
  .service-feature-list img,
  .process-detail-image img,
  .transport-visual-grid img,
  .previous-image-grid img,
  .gallery-card img,
  .home-photo img {
    height: auto;
    aspect-ratio: 3/2;
    object-fit: contain;
  }
}

/* Merged from location-controls.css */
.location-toggle {
  display: flex;
  margin: 28px auto 0;
}

.location-toggle[hidden] {
  display: none;
}
