:root {
  --ink: #0b0b0c;
  --ink-soft: #151517;
  --paper: #f7f3ea;
  --paper-bright: #fffdf8;
  --gold: #d6a84f;
  --gold-light: #f0d28d;
  --gold-dark: #9c7228;
  --muted: #6d685f;
  --line: rgba(214, 168, 79, 0.32);
  --success: #2f684d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --radius: 24px;
  --serif: "Palatino Linotype", Palatino, "Book Antiqua", serif;
  --sans: "Trebuchet MS", "Avenir Next", Avenir, sans-serif;
}

* {
  box-sizing: border-box;
}

/* The browser's own [hidden] rule is a user-agent style, so any author rule
   that sets `display` — and several of the grid layouts below do — silently
   beats it. Panels that are shown and hidden from script rely on the attribute
   working, so it is restated here where it can win. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 15% 10%, rgba(214, 168, 79, 0.13), transparent 28%), radial-gradient(circle at 90% 68%, rgba(214, 168, 79, 0.08), transparent 26%);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(800px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 790px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  margin-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.25rem;
}

.section-heading p:last-child {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.announcement {
  padding: 0.55rem 1rem;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 12, 0.94);
  color: #fff;
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

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

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.08rem;
}

.brand-copy small {
  margin-top: 0.3rem;
  color: #b9b5ad;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: #ece8df;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:not(.button):hover {
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--gold-light);
  box-shadow: 0 14px 36px rgba(214, 168, 79, 0.2);
  transform: translateY(-2px);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #2a2928;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #fff;
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.65) contrast(1.08);
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(6, 6, 7, 0.97) 0%, rgba(6, 6, 7, 0.73) 48%, rgba(6, 6, 7, 0.18) 100%), linear-gradient(0deg, rgba(6, 6, 7, 0.65), transparent 55%);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 4rem;
  align-items: end;
  padding-block: 7rem 4rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 2rem;
  color: #d8d3ca;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-note {
  padding: 1.4rem;
  border: 1px solid rgba(240, 210, 141, 0.34);
  background: rgba(9, 9, 10, 0.66);
  backdrop-filter: blur(10px);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.hero-note p {
  margin: 0;
  color: #c9c4bc;
  font-size: 0.87rem;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: var(--gold);
}

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

.trust-item {
  min-height: 112px;
  padding: 1.55rem 1.35rem;
  border-right: 1px solid rgba(11, 11, 12, 0.2);
}

.trust-item:last-child {
  border-right: 0;
}

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

.trust-item strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.trust-item span {
  margin-top: 0.25rem;
  font-size: 0.78rem;
}

.section {
  padding-block: 7rem;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.section-dark::after {
  position: absolute;
  top: -160px;
  right: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(214, 168, 79, 0.22);
  border-radius: 50%;
  content: "";
}

.section-dark .section-heading p:last-child {
  color: #bdb7ae;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111113;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--gold);
  content: "";
  transition: width 260ms ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-number {
  display: block;
  margin-bottom: 5.4rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.service-card p {
  color: #bdb7ae;
}

.service-price {
  margin-top: 1.5rem;
  color: var(--gold-light);
  font-weight: 800;
}

.service-card a {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card a:hover {
  color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

.job-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.job-photo:first-child {
  grid-row: 1 / span 2;
}

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

.job-photo:first-child img {
  object-position: center;
}

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

.job-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(9, 9, 10, 0.76);
  color: #fff;
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.process-step::before {
  display: block;
  margin-bottom: 3rem;
  color: var(--gold-dark);
  content: "0" counter(steps);
  font-family: var(--serif);
  font-size: 1rem;
}

.process-step p {
  color: var(--muted);
}

.review-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.review-panel p:not(.eyebrow) {
  color: #c8c2b9;
}

.review-policy {
  padding: 1.5rem;
  border: 1px solid rgba(214, 168, 79, 0.4);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

.faq-list {
  border-top: 1px solid rgba(11, 11, 12, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(11, 11, 12, 0.18);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--gold-dark);
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 820px;
  padding: 0 0 1.7rem;
  color: var(--muted);
}

.cta-band {
  padding-block: 5rem;
  background: var(--gold);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-grid h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  padding-block: 4.5rem 2rem;
  background: #080809;
  color: #aaa59d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr;
  gap: 4rem;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.footer-legal {
  max-width: 80ch;
  margin: 1.25rem 0 0;
  color: #aaa59d;
  font-size: 0.75rem;
  line-height: 1.7;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: #aaa59d;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

/* Staff links sit here quietly; the page CSP blocks inline style attributes,
   so their muted colour has to come from the stylesheet. */
.footer-bottom a {
  color: #8b98ac;
}

.footer-bottom a:hover {
  color: #d6dbe4;
}

.page-hero {
  padding-block: 6rem 4rem;
  background: var(--ink);
  color: #fff;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: #c7c1b8;
  font-size: 1.1rem;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  align-items: start;
}

.estimate-form {
  display: grid;
  gap: 1.25rem;
}

.form-card,
.estimate-summary,
.legal-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(11, 11, 12, 0.12);
  background: var(--paper-bright);
  box-shadow: 0 18px 50px rgba(43, 36, 22, 0.07);
}

.form-card h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.form-intro {
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

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

.field label,
.group-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.field small {
  color: var(--muted);
  font-size: 0.72rem;
}

/* Says out loud which details are nice to have rather than needed, so an
   address the customer would rather give on the phone does not read as a
   blocked form. */
.field-optional {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #cfc8ba;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.18);
  outline: 0;
}

.quantity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.quantity-field {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ded7ca;
  background: #fff;
}

.quantity-field span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.quantity-field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfc8ba;
  text-align: center;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.check-card,
.consent-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid #ded7ca;
  background: #fff;
  cursor: pointer;
}

.check-card input,
.consent-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  accent-color: var(--gold-dark);
}

.check-card strong,
.check-card span {
  display: block;
}

.check-card span {
  color: var(--muted);
  font-size: 0.72rem;
}

.consent-check {
  color: var(--muted);
  font-size: 0.78rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.estimate-summary {
  position: sticky;
  top: 110px;
  border-top: 4px solid var(--gold);
  background: var(--ink);
  color: #fff;
}

.estimate-summary .eyebrow {
  color: var(--gold-light);
}

.estimate-total {
  margin: 0.5rem 0 1.4rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
}

.estimate-breakdown {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 1.2rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.estimate-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #c9c3ba;
  font-size: 0.76rem;
}

.estimate-breakdown strong {
  color: #fff;
  white-space: nowrap;
}

.estimate-breakdown .estimate-empty {
  display: block;
}

.estimate-note {
  margin-top: 1.2rem;
  color: #aaa49b;
  font-size: 0.75rem;
}

.move-promo-hero {
  position: relative;
  overflow: hidden;
}

.move-promo-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -11rem;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 168, 79, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(214, 168, 79, 0.05), 0 0 0 7rem rgba(214, 168, 79, 0.03);
  content: "";
}

.move-promo-hero .container {
  position: relative;
  z-index: 1;
}

.move-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.move-package-card {
  position: relative;
  display: grid;
  min-height: 100%;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid #d8d0c2;
  background: #fff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.move-package-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: 0 18px 40px rgba(43, 36, 22, 0.1);
}

.move-package-card:has(input:checked) {
  border-color: var(--gold-dark);
  box-shadow: inset 0 0 0 2px var(--gold), 0 18px 40px rgba(43, 36, 22, 0.12);
}

.move-package-card input {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 20px;
  height: 20px;
  accent-color: var(--gold-dark);
}

.move-package-tier {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.move-package-card h3 {
  max-width: calc(100% - 30px);
  margin: 0.25rem 0 0;
  font-size: 1.55rem;
}

.move-package-price {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.move-package-price small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.move-package-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  list-style: none;
}

.move-package-list li {
  position: relative;
  padding-left: 1.2rem;
}

.move-package-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
  font-weight: 900;
}

.move-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.move-choice {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid #d8d0c2;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.move-choice:has(input:checked) {
  border-color: var(--gold-dark);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.move-choice input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--gold-dark);
}

fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

.move-starting-label {
  margin-bottom: 0.4rem;
  color: #c9c3ba;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-status {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--gold-dark);
  background: #fff7e7;
  color: #5b4420;
  font-size: 0.82rem;
  font-weight: 800;
}

.move-confirmation {
  max-width: 820px;
  margin: 0 auto;
}

.legal-section {
  padding-block: 5rem;
}

.legal-card h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.legal-card h2 {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.legal-card li,
.legal-card p {
  color: #514d46;
}

.success-card {
  max-width: 760px;
  margin: 5rem auto;
  padding: clamp(2rem, 6vw, 5rem);
  border-top: 5px solid var(--gold);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 1.8rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-note {
    animation: reveal 700ms ease both;
  }

  .hero-note {
    animation-delay: 180ms;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1.25rem 20px 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ink);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links .button {
    margin-top: 0.4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-note {
    max-width: 420px;
  }

  .trust-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 11, 12, 0.2);
  }

  .section-heading,
  .review-panel,
  .estimate-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .estimate-summary {
    position: static;
    order: -1;
  }

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

  .move-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .brand-copy small {
    display: none;
  }

  .announcement {
    font-size: 0.7rem;
  }

  .hero,
  .hero-grid {
    min-height: 690px;
  }

  .hero-grid {
    padding-block: 5rem 2.5rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

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

  .trust-grid,
  .service-grid,
  .process-grid,
  .field-grid,
  .quantity-grid,
  .check-grid,
  .move-choice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 11, 12, 0.2);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 5rem;
  }

  .service-card {
    min-height: 310px;
  }

  .service-number {
    margin-bottom: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .job-photo:first-child {
    grid-row: auto;
  }

  .process-grid {
    gap: 1rem;
  }

  .review-panel {
    padding: 2rem 1.4rem;
  }

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

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

  .footer-bottom {
    display: grid;
  }

  .quantity-field {
    grid-template-columns: 1fr 76px;
  }
}

/* ============================================================ icons */

.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  flex: none;
  border-radius: 50%;
  background: rgba(214, 168, 79, 0.16);
  color: var(--gold-dark);
}

.section-dark .icon-badge,
.cta-band .icon-badge {
  background: rgba(240, 210, 141, 0.16);
  color: var(--gold-light);
}

.icon-list {
  display: grid;
  gap: 1.05rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: #514d46;
}

.icon-list .icon {
  margin-top: 0.15rem;
  color: var(--gold-dark);
}

.icon-list strong {
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 1.2rem;
  margin-top: 2.6rem;
}

.feature-card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
}

.feature-card h3 {
  margin: 1.1rem 0 0.6rem;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: #514d46;
  font-size: 0.95rem;
}

.section-dark .feature-card {
  border-color: rgba(240, 210, 141, 0.24);
  background: rgba(255, 253, 248, 0.05);
}

.section-dark .feature-card p {
  color: #cec9c0;
}

/* ====================================== before / after comparison */

.compare {
  --compare-pos: 50%;
  margin: 0;
}

.compare-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.compare-frame:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.compare-layer {
  position: absolute;
  inset: 0;
}

.compare-layer img,
.compare-layer svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-layer-before {
  clip-path: inset(0 calc(100% - var(--compare-pos)) 0 0);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  width: 2px;
  background: var(--gold);
  pointer-events: none;
}

.compare-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.75rem;
  height: 2.75rem;
  transform: translate(-50%, -50%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ink) linear-gradient(90deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.compare-tag {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 11, 12, 0.72);
  color: var(--paper-bright);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.compare-tag-before {
  left: 1rem;
}

.compare-tag-after {
  right: 1rem;
}

.compare figcaption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.section-dark .compare figcaption {
  color: #b3aea5;
}

/* =========================================================== diagrams */

.diagram {
  margin: 0;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
}

.diagram svg {
  display: block;
  width: 100%;
  height: auto;
}

.diagram figcaption {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.section-dark .diagram {
  border-color: rgba(240, 210, 141, 0.24);
  background: rgba(255, 253, 248, 0.05);
}

.section-dark .diagram figcaption {
  color: #b3aea5;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-top: 2.6rem;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.6rem;
}

.photo-row figure {
  margin: 0;
}

.photo-row img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.photo-row figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ==================================================== workmanship note */

.workmanship {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: center;
  margin-top: 2.4rem;
  padding: 1.5rem 1.7rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(214, 168, 79, 0.11);
}

.workmanship p {
  margin: 0;
  color: #3f3b35;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.6;
}

.section-dark .workmanship,
.cta-band .workmanship {
  background: rgba(240, 210, 141, 0.1);
}

.section-dark .workmanship p {
  color: var(--paper);
}

/* ===================================================== booking steps */

.step-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.step-rail li {
  display: flex;
}

.step-rail a,
.step-rail span {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.step-rail a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.step-rail .is-current {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.step-rail .step-index {
  opacity: 0.65;
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2.2rem;
}

.step-back {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.step-back:hover {
  color: var(--ink);
}

.step-skip {
  color: var(--muted);
  font-size: 0.85rem;
}

/* A form that refuses to send has to say why, somewhere the eye lands. Muted
   hint type is not enough for that, so this is the one message on a form card
   that is allowed to shout. */
.form-status {
  margin-top: 1.4rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(155, 44, 44, 0.35);
  border-radius: 14px;
  background: rgba(155, 44, 44, 0.07);
  color: #8c2f2f;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.quantity-hint {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.quantity-hint .icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  color: var(--gold-dark);
}

/* ========================================================== add-ons */

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.addon-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.05rem;
  align-items: start;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-bright);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.addon-card:hover {
  border-color: var(--gold);
}

.addon-card:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(214, 168, 79, 0.35);
}

.addon-card:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.addon-card input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.3rem 0 0;
  accent-color: var(--gold-dark);
}

.addon-body strong {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.addon-body strong .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-dark);
}

.addon-price {
  display: block;
  margin-top: 0.4rem;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.addon-note {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* ======================================================= promotion */

.promo-card {
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.promo-figure {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: baseline;
}

.promo-now {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
}

.promo-was {
  color: var(--muted);
  font-size: 1.1rem;
  text-decoration: line-through;
}

.promo-save {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(47, 104, 77, 0.14);
  color: var(--success);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-code {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border: 1px dashed var(--gold-dark);
  border-radius: 12px;
  background: rgba(214, 168, 79, 0.1);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.promo-terms {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.8;
}

.promo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 20px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.86rem;
  text-align: center;
}

.promo-strip a {
  color: var(--ink);
  font-weight: 700;
}

/* ============================================== estimate rail extras */

.summary-rail {
  display: grid;
  gap: 1.2rem;
}

.estimate-summary .button {
  width: 100%;
  margin-top: 1.3rem;
  text-align: center;
}

.review-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.4rem;
  font-size: 0.94rem;
}

.review-table th,
.review-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.review-table th {
  width: 45%;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .workmanship {
    grid-template-columns: 1fr;
  }

  .compare-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .step-rail a,
  .step-rail span {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .addon-grid,
  .feature-grid,
  .photo-row,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

/* ---------------------------------------------------------------------------
   Rebuilt internal pages
   --------------------------------------------------------------------------- */

/* An alternate band between sections, lighter than .section-dark. */
.section-alt {
  background: var(--paper-bright);
  border-block: 1px solid rgba(11, 11, 12, 0.07);
}

/* Breadcrumb trail. Sits inside .page-hero, so it inherits light text. */
.crumbs {
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.crumbs a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 168, 79, 0.5);
}

.crumbs a:hover {
  color: var(--gold-light);
}

.crumbs span {
  margin-inline: 0.35rem;
}

.crumbs [aria-current] {
  margin-inline: 0;
  color: #fff;
}

/* Three columns of running prose: housing stock, soil, access. */
.prose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem;
}

.prose-grid h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.prose-grid p {
  color: var(--muted);
}

/* The published-rate panel. */
.rate-card {
  align-self: start;
}

.rate-table {
  display: grid;
  gap: 0;
  margin-block: 1.5rem;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid rgba(11, 11, 12, 0.09);
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-row dt {
  color: var(--muted);
  font-size: 0.94rem;
}

.rate-row dd {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}

.rate-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Contact details rendered as a rate table with wrapping values. */
.contact-table .rate-row dd {
  white-space: normal;
  text-align: right;
}

/* Review and reference policy block. */
.review-policy {
  margin-top: 2.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.review-policy p {
  color: var(--muted);
}

.review-policy p:last-child {
  margin-top: 1.2rem;
  margin-bottom: 0;
}

/* The eighteen city links. */
.area-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.6rem 1.5rem;
  margin-top: 2rem;
}

.area-links a {
  padding-block: 0.5rem;
  border-bottom: 1px solid rgba(11, 11, 12, 0.09);
  font-size: 0.92rem;
  text-decoration: none;
}

.area-links a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

/* Ordered process copy where the numbering carries meaning. */
.numbered-list {
  margin: 1.5rem 0 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

/* Owner portrait on the About page. */
.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Pulls a panel level with the heading beside it. */
.stack-top {
  align-self: start;
}

/* Footer fine print and the label on the secondary phone line. */
.footer-fine {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.footer-fine a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

/* The Meta Pixel noscript fallback. An inline style attribute would be
   blocked by the page CSP, so it is hidden from here instead. */
.pixel-noscript {
  display: none;
}

@media (max-width: 900px) {
  .prose-grid {
    grid-template-columns: 1fr;
  }
}
