:root {
  --ink: #111111;
  --soft-ink: #3e3e3e;
  --paper: #ffffff;
  --cream: #f7f4ee;
  --gold: #b67b12;
  --gold-2: #d2a24c;
  --line: #e7e1d6;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.12);
  --radius: 22px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.container {
  width: min(var(--max), calc(100% - 36px));
  margin: auto;
}
.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  background: #fff;
  padding: 10px 14px;
  z-index: 9999;
}
.skip-link:focus {
  top: 14px;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold);
}
h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.03;
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  max-width: 900px;
}
h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
}
h3 {
  font-size: 1.7rem;
}
p {
  margin: 0 0 18px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  background: #99650c;
}
.button--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}
.button--dark {
  background: #111;
  border-color: #111;
}
.button--full {
  width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 300px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}
.site-nav a:hover {
  color: var(--gold);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  background: #111;
  margin: 6px;
}
.hero {
  position: relative;
  min-height: 750px;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  background-size: cover;
  background-position: center;
  transition:
    opacity 0.9s,
    transform 6s;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.84),
    rgba(0, 0, 0, 0.52) 55%,
    rgba(0, 0, 0, 0.18)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 750px;
  display: flex;
  align-items: center;
  padding: 90px 0;
}
.hero-copy {
  max-width: 790px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 1.18rem;
  max-width: 680px;
  color: #eee;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  background: rgba(0, 0, 0, 0.24);
}
.hero-controls {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-dot {
  width: 44px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}
.hero-dot.is-active {
  background: var(--gold-2);
}
.section {
  padding: 100px 0;
}
.section--cream {
  background: var(--cream);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.intro-grid,
.split-grid,
.rent-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card,
.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: 0.25s;
}
.feature-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #d2b77f;
}
.feature-card span,
.service-card span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 800;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.image-panel {
  min-height: 560px;
  border-radius: var(--radius);
  background: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1500&q=85")
    center/cover;
  box-shadow: var(--shadow);
}
.tick-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.tick-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.tick-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-weight: 900;
}
.dark-section {
  background: #111;
  color: #fff;
}
.rent-form {
  background: #fff;
  color: #111;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d8d1c5;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.check-row {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  margin: 12px 0 20px;
}
.notice {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(182, 123, 18, 0.09);
  margin-top: 24px;
}
.map-shell {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
#coverage-map {
  height: 520px;
  width: 100%;
}
.area-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}
.area-button {
  border: 1px solid var(--gold);
  background: #fff;
  color: #7a4d00;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  cursor: pointer;
}
.area-button:hover,
.area-button.is-active {
  background: var(--gold);
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  padding: 28px;
  border-top: 3px solid var(--gold);
  background: #fff;
}
.faq-list {
  max-width: 860px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border: 0;
  background: none;
  font: 800 1.06rem Inter;
  text-align: left;
  cursor: pointer;
}
.faq-answer {
  padding: 0 0 22px;
  color: var(--soft-ink);
}
.cta {
  background: linear-gradient(135deg, #111, #2a1d08);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner .button {
  width: auto;
  flex-shrink: 0;
  align-self: center;
  padding: 14px 24px;
}
@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-inner .button {
    width: auto;
    align-self: center;
  }
}
.site-footer {
  background: #090909;
  color: #ddd;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-logo {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 20px;
}
.footer-col h3 {
  font-family: Inter;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}
.footer-col a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}
.footer-bottom {
  border-top: 1px solid #292929;
  margin-top: 42px;
  padding-top: 22px;
  font-size: 0.84rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #111, #2d2008);
  color: #fff;
}
.content-page {
  padding: 80px 0;
}
.content-page article {
  max-width: 820px;
}
.contact-details {
  display: grid;
  gap: 14px;
}
.contact-detail {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.mobile-contact {
  display: none;
}
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 92px;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open {
    display: flex;
  }
  .intro-grid,
  .split-grid,
  .rent-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand img {
    width: 240px;
    height: 58px;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }
  .nav-wrap {
    min-height: 78px;
  }
  .brand img {
    width: 205px;
    height: 50px;
  }
  .site-nav {
    top: 78px;
  }
  .hero,
  .hero-content {
    min-height: 690px;
  }
  .hero-content {
    padding: 74px 0;
  }
  .hero-shade {
    background: rgba(0, 0, 0, 0.68);
  }
  .section {
    padding: 72px 0;
  }
  .feature-grid,
  .services-grid,
  .process-grid,
  .footer-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
  .image-panel {
    min-height: 380px;
  }
  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile-contact {
    display: flex;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    background: var(--gold);
    color: #fff;
    padding: 12px 17px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
  #coverage-map {
    height: 390px;
  }
  .footer-logo {
    width: 230px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.rent-tools {
  display: grid;
  gap: 22px;
}

.rent-estimator {
  position: relative;
  overflow: hidden;
}
.estimator-heading {
  margin-bottom: 24px;
}
.estimator-heading h3 {
  font-size: 2.15rem;
}
.estimator-step {
  padding-top: 4px;
}
.field-help {
  display: block;
  margin-top: 7px;
  color: #6b655d;
  font-size: 0.78rem;
}
.form-message {
  padding: 11px 13px;
  border-radius: 10px;
  background: #fff1ef;
  color: #a1281c;
  font-weight: 700;
  font-size: 0.86rem;
}
.rent-estimate-result {
  margin: 24px 0;
  padding: 26px;
  border: 1px solid rgba(182, 123, 18, 0.35);
  border-radius: 18px;
  background: linear-gradient(145deg, #111, #2b1d07);
  color: #fff;
  text-align: center;
}
.rent-estimate-result[hidden],
.contact-step[hidden] {
  display: none;
}
.estimate-label {
  margin: 0 0 5px;
  color: #e8c77f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 800;
}
.rent-estimate-result strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  line-height: 1.05;
  color: #fff;
  margin: 5px 0 10px;
}
#estimate-property-summary {
  font-weight: 800;
  color: #e9dfcf;
  margin-bottom: 12px;
}
.estimate-disclaimer {
  max-width: 520px;
  margin: 0 auto 14px;
  color: #d7d0c5;
  font-size: 0.8rem;
}
.estimate-edit {
  border: 0;
  background: transparent;
  color: #e8c77f;
  text-decoration: underline;
  font:
    700 0.82rem Inter,
    Arial,
    sans-serif;
  cursor: pointer;
}
.contact-step {
  border: 0;
  border-top: 1px solid #e5ddd0;
  margin: 26px 0 0;
  padding: 26px 0 0;
}
.contact-step legend {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0;
  margin-bottom: 8px;
}
.contact-step > p {
  color: #5f5a52;
  font-size: 0.92rem;
}
.floating-estimate-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px 12px 10px;
  border: 1px solid #d3ab5f;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}
.floating-estimate-button:hover {
  transform: translateY(-3px);
  background: #251907;
}
.floating-estimate-button__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.25rem;
}
@media (max-width: 640px) {
  .floating-estimate-button {
    right: 14px;
    bottom: 14px;
    padding: 9px 13px 9px 9px;
    font-size: 0.82rem;
  }
  .floating-estimate-button__icon {
    width: 31px;
    height: 31px;
  }
  .rent-estimate-result {
    padding: 22px 16px;
  }
  .contact-step legend {
    font-size: 1.55rem;
  }
}
.website-credit {
  margin: 0;
  color: #aaa39a;
  font-size: 0.8rem;
}

.website-credit a {
  color: #d3ab5f;
  font-weight: 700;
  text-decoration: none;
}

.website-credit a:hover {
  text-decoration: underline;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1400;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px 10px 10px;
  border: 1px solid #c99a43;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.chatbot-toggle:hover {
  transform: translateY(-3px);
  background: #faf7f1;
}

.chatbot-toggle__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b78318;
  color: #ffffff;
}

.chatbot-window {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(183, 131, 24, 0.4);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
}

.chatbot-window[hidden] {
  display: none;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  background: #111111;
  color: #ffffff;
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header strong {
  font-size: 1rem;
}

.chatbot-header span {
  margin-top: 3px;
  color: #d8bd8a;
  font-size: 0.76rem;
}

.chatbot-close {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  min-height: 210px;
  max-height: 310px;
  padding: 17px;
  overflow-y: auto;
  background: #f6f3ed;
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  margin-bottom: 11px;
  padding: 11px 13px;
  border-radius: 15px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.chat-message--bot {
  background: #ffffff;
  color: #29251f;
  border-bottom-left-radius: 4px;
}

.chat-message--user {
  margin-left: auto;
  background: #b78318;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-message a {
  color: inherit;
  font-weight: 800;
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 14px;
  border-top: 1px solid #e4dbcf;
}

.chatbot-quick-replies button {
  padding: 7px 10px;
  border: 1px solid #c99a43;
  border-radius: 999px;
  background: transparent;
  color: #76500f;
  font: inherit;
  font-size: 0.73rem;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-quick-replies button:hover {
  background: #b78318;
  color: #ffffff;
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 13px;
  border-top: 1px solid #e4dbcf;
}

.chatbot-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #d5cec3;
  border-radius: 10px;
  font: inherit;
}

.chatbot-form input:focus {
  outline: 2px solid rgba(183, 131, 24, 0.35);
  border-color: #b78318;
}

.chatbot-form button {
  padding: 10px 15px;
  border: 0;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chatbot-form button:hover {
  background: #b78318;
}

.chat-message--typing {
  color: #77716a;
  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .chatbot {
    right: 14px;
    bottom: 76px;
  }

  .chatbot-toggle {
    padding: 9px;
  }

  .chatbot-toggle__text {
    display: none;
  }

  .chatbot-window {
    position: fixed;
    right: 14px;
    bottom: 72px;
    left: 14px;
    width: auto;
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 335px;
  height: 74px;
  max-width: min(335px, 45vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.site-nav a {
  color: #111111;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.menu-toggle span {
  background: #111111;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 88px;
  }

  .brand img {
    width: 285px;
    height: 64px;
    max-width: 70vw;
  }

  .site-nav {
    top: 88px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    color: #111111;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: 220px;
    height: 52px;
    max-width: 72vw;
  }

  .site-nav {
    top: 76px;
  }
}

.site-footer {
  background: #080808;
  color: #d8d4cd;
  padding: 42px 0 16px;
  border-top: 1px solid rgba(210, 162, 76, 0.18);
}

.footer-grid {
  grid-template-columns: minmax(230px, 1.45fr) repeat(3, minmax(140px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 245px;
  height: auto;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: left center;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

.footer-col p {
  max-width: 330px;
  margin-bottom: 8px;
  color: #bdb7ae;
  font-size: 0.92rem;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 5px 0;
  color: #d8d4cd;
  line-height: 1.35;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold-2);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa49a;
  font-size: 0.8rem;
  align-items: center;
}

.footer-bottom p,
.website-credit {
  margin: 0;
}

.website-credit a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: none;
}

.website-credit a:hover,
.website-credit a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 24px 34px;
  }

  .footer-logo {
    width: 225px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 34px 0 14px;
  }

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

  .footer-logo {
    width: 210px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
    gap: 6px;
  }
}

body,
button,
input,
select,
textarea {
  font-family: "Montserrat", Arial, sans-serif;
}
h1,
h2,
h3,
.faq-question,
.contact-step legend,
.rent-estimate-result strong {
  font-family: "Montserrat", Arial, sans-serif;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.eyebrow {
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.18em;
}
.estimator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-message[hidden],
.rent-estimate-result[hidden] {
  display: none;
}
.estimate-contact-link {
  display: inline-flex;
}
.rent-estimator button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}
#coverage-map {
  width: 100%;
  height: 540px;
}
.area-button {
  font-family: "Montserrat", Arial, sans-serif;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.area-button:hover,
.area-button:focus-visible,
.area-button.is-active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(182, 123, 18, 0.2);
}
@media (max-width: 700px) {
  .estimator-grid {
    grid-template-columns: 1fr;
  }
  #coverage-map {
    height: 400px;
  }
}

.page-hero p {
  max-width: 760px;
  color: #eee;
  font-size: 1.05rem;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}
.footer-brand p {
  max-width: 360px;
}
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.page-hero--image {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0;
}
.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.38) 60%,
      rgba(0, 0, 0, 0.14)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 55%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 110px 0 64px;
}
.page-hero__content h1 {
  max-width: 900px;
}
.page-hero__content > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}
.page-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.page-hero__scroll span {
  width: 34px;
  height: 1px;
  background: var(--gold-2);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleX(0.5);
    transform-origin: left;
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.service-explorer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.service-tabs {
  display: flex;
  gap: 0;
  overflow: auto;
  border-bottom: 1px solid var(--line);
}
.service-tab {
  flex: 1;
  min-width: 170px;
  padding: 18px 16px;
  border: 0;
  background: #fff;
  font:
    700 0.84rem "Montserrat",
    sans-serif;
  cursor: pointer;
  color: #555;
  border-bottom: 3px solid transparent;
  transition: 0.25s;
}
.service-tab:hover,
.service-tab.is-active {
  color: var(--gold);
  background: #fcfaf6;
  border-bottom-color: var(--gold);
}
.service-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 520px;
}
.service-showcase__image {
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
}
.service-showcase__copy {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.interactive-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 26px;
}
.interactive-list li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.interactive-list li::before {
  content: "✓";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 900;
}

.image-card-grid,
.location-gallery,
.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.image-card,
.location-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.image-card:hover,
.location-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.image-card img,
.location-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.image-card:hover img,
.location-card:hover img {
  transform: scale(1.055);
}
.image-card > div,
.location-card > div {
  padding: 24px;
}
.image-card span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.stats-section {
  background: #111;
  color: #fff;
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  text-align: center;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-card:last-child {
  border-right: 0;
}
.stat-card strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
}
.stat-card span {
  display: block;
  margin-top: 10px;
  color: #d3d0ca;
  font-size: 0.82rem;
}

.rent-benefit-slider {
  position: relative;
  min-height: 225px;
  margin-top: 28px;
}
.rent-benefit {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(22px);
  transition: 0.4s;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}
.rent-benefit.is-active {
  opacity: 1;
  transform: none;
}
.rent-benefit span {
  color: var(--gold-2);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.rent-benefit-dot {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.rent-benefit-dot.is-active {
  background: var(--gold-2);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.journey-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  padding-bottom: 24px;
}
.journey-step__image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.journey-step > span,
.journey-step > h3,
.journey-step > p {
  margin-left: 24px;
  margin-right: 24px;
}
.journey-step > span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  margin-top: 22px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: start;
}
.area-panel {
  position: sticky;
  top: 120px;
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.area-panel .area-buttons {
  justify-content: flex-start;
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
  margin-bottom: 24px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.editorial-collage {
  position: relative;
  min-height: 620px;
}
.editorial-collage img {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.editorial-collage__large {
  width: 80%;
  height: 520px;
}
.editorial-collage__small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 270px;
  border: 8px solid #fff;
}
.editorial-badge {
  position: absolute;
  left: 36px;
  bottom: 52px;
  background: #111;
  color: #fff;
  padding: 19px 22px;
  border-radius: 14px;
}
.editorial-badge strong,
.editorial-badge span {
  display: block;
}
.editorial-badge strong {
  color: var(--gold-2);
  font-size: 1.5rem;
}

.value-accordion {
  margin: 24px 0;
  border-top: 1px solid var(--line);
}
.value-item {
  border-bottom: 1px solid var(--line);
}
.value-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 0;
  background: none;
  padding: 17px 0;
  font: 700 0.95rem "Montserrat";
  cursor: pointer;
  text-align: left;
}
.value-item div {
  padding-bottom: 14px;
  color: var(--soft-ink);
}

.principles-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.principles-track {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}
.principle-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  padding: 46px;
  border-radius: var(--radius);
  background: #111;
  color: #fff;
  transition: 0.45s;
}
.principle-slide.is-active {
  opacity: 1;
  transform: none;
}
.principle-slide span {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.15em;
}
.principles-arrow,
.gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #fff;
  color: #111;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.2s;
}
.principles-arrow:hover,
.gallery-arrow:hover {
  background: var(--gold);
  color: #fff;
}

.contact-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-visual {
  position: relative;
  min-height: 650px;
}
.contact-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.contact-visual__card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(9, 9, 9, 0.9);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(14px);
}
.contact-visual__card a,
.contact-visual__card span {
  display: block;
  margin-top: 7px;
  text-decoration: none;
}
.contact-route {
  display: block;
  text-decoration: none;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.3s;
}
.contact-route:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #d2b77f;
}
.contact-route > span {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
}

.property-gallery {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.property-gallery__track {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.property-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: 0.6s;
}
.property-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.property-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-gallery__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}
.property-gallery__slide > div {
  position: absolute;
  left: 40px;
  bottom: 34px;
  z-index: 1;
  color: #fff;
}
.property-gallery__slide span {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .service-showcase,
  .editorial-grid,
  .contact-experience,
  .map-layout {
    grid-template-columns: 1fr;
  }
  .service-showcase__image {
    min-height: 380px;
  }
  .area-panel {
    position: static;
  }
  .image-card-grid,
  .location-gallery,
  .contact-route-grid,
  .journey-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2) {
    border-right: 0;
  }
  .editorial-collage {
    min-height: 560px;
  }
}
@media (max-width: 640px) {
  .page-hero--image {
    min-height: 500px;
  }
  .page-hero__content {
    padding: 90px 0 42px;
  }
  .service-showcase__copy {
    padding: 30px 22px;
  }
  .image-card-grid,
  .location-gallery,
  .contact-route-grid,
  .journey-track,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .property-gallery,
  .principles-carousel {
    grid-template-columns: 1fr;
  }
  .gallery-arrow,
  .principles-arrow {
    display: none;
  }
  .property-gallery__track {
    min-height: 430px;
  }
  .property-gallery__slide > div {
    left: 22px;
    bottom: 22px;
    right: 18px;
  }
  .editorial-collage {
    min-height: 470px;
  }
  .editorial-collage__large {
    width: 88%;
    height: 390px;
  }
  .editorial-collage__small {
    width: 48%;
    height: 205px;
    border-width: 5px;
  }
  .editorial-badge {
    left: 18px;
    bottom: 30px;
  }
}

.support-selector-section {
  background: #111;
  color: #fff;
}

.support-selector-section .section-heading {
  max-width: 760px;
}

.support-selector-section .section-heading p:not(.eyebrow) {
  color: #d6d2ca;
}

.support-selector {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

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

.support-option {
  width: 100%;
  min-height: 165px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.support-option:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 162, 76, 0.62);
}

.support-option.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

.support-option span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.support-option.is-active span {
  color: #fff4dc;
}

.support-option strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.support-option small {
  display: block;
  color: #cfcac0;
  line-height: 1.5;
}

.support-option.is-active small {
  color: rgba(255, 255, 255, 0.88);
}

.support-selector__result {
  padding: clamp(30px, 5vw, 54px);
  border-radius: 22px;
  background: #f7f4ee;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.support-selector__result h3 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.support-selector__result > p:not(.eyebrow) {
  color: #4e4a44;
}

.support-selector__result ul {
  margin: 5px 0 28px;
  padding: 0;
  list-style: none;
}

.support-selector__result li {
  position: relative;
  padding: 10px 0 10px 27px;
  border-bottom: 1px solid #ded8cd;
}

.support-selector__result li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.support-selector__result .button {
  align-self: flex-start;
}

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

@media (max-width: 620px) {
  .support-selector__options {
    grid-template-columns: 1fr;
  }

  .support-option {
    min-height: auto;
  }
}

.website-credit--prominent {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(210, 162, 76, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.website-credit--prominent span {
  opacity: 0.78;
}

.website-credit--prominent a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: none;
}

.website-credit--prominent a:hover {
  text-decoration: underline;
}

h1,
.hero h1,
.hero-copy h1,
.page-hero h1,
.page-hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 900px;
}

h2,
.section-heading h2,
.cta h2,
.contact-card h2,
.service-showcase__copy h2,
.editorial-grid h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3,
.feature-card h3,
.service-card h3,
.contact-route h3,
.location-card h3,
.journey-step h3,
.principle-slide h3,
.support-selector__result h3,
.estimator-heading h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.contact-step legend {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}

.rent-estimate-result strong {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.stat-card strong {
  font-size: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 700px) {
  h1,
  .hero h1,
  .hero-copy h1,
  .page-hero h1,
  .page-hero__content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  h2,
  .section-heading h2,
  .cta h2,
  .contact-card h2,
  .service-showcase__copy h2,
  .editorial-grid h2 {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
  }

  h3,
  .feature-card h3,
  .service-card h3,
  .contact-route h3,
  .location-card h3,
  .journey-step h3,
  .principle-slide h3,
  .support-selector__result h3,
  .estimator-heading h3 {
    font-size: 1.15rem;
  }
}

.footer-credit {
  margin-top: 0;
}

.footer-credit p {
  margin: 0;
  color: #d8d4cd;
  font-size: 0.92rem;
}

.footer-credit a {
  display: inline;
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
  align-items: start;
}

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

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

  .footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(140px, 1fr));
    gap: 42px;
    align-items: start;
  }

  .footer-col,
  .footer-brand,
  .footer-credit {
    text-align: left;
  }
  .footer-logo {
    width: 220px;
    max-width: 100%;
    margin: 0 0 14px;
  }

  .footer-brand p {
    max-width: 280px;
    margin: 0;
  }

  .footer-col a {
    width: fit-content;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-credit {
    grid-column: 4;
    margin-top: -8px;
  }

  .footer-credit h3 {
    margin-top: 0;
  }

  .footer-credit p {
    max-width: 180px;
    margin: 0;
    color: #bdb7ae;
    font-size: 0.88rem;
  }

  .footer-credit a {
    display: inline;
    color: var(--gold-2);
    font-weight: 800;
    text-decoration: none;
  }

  .footer-credit a:hover,
  .footer-credit a:focus-visible {
    text-decoration: underline;
  }

  @media (max-width: 980px) {
    .footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 36px;
    }

    .footer-credit {
      grid-column: auto;
      margin-top: 0;
    }

    .footer-logo {
      width: 210px;
    }
  }

  @media (max-width: 640px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .footer-logo {
      width: 200px;
    }

    .footer-brand p,
    .footer-credit p {
      max-width: 100%;
    }
  }
}
.chatbot {
  bottom: 90px;
}

.floating-estimate-button {
  bottom: 40px;
}

@media (max-width: 640px) {
  .chatbot {
    bottom: 78px;
  }

  .floating-estimate-button {
    bottom: 38px;
  }
}
.chatbot-toggle,
.floating-estimate-button {
  padding: 8px 13px 8px 8px;
  font-size: 0.82rem;
}

.chatbot-toggle__icon,
.floating-estimate-button__icon {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .chatbot-toggle,
  .floating-estimate-button {
    padding: 7px 10px 7px 7px;
    font-size: 0.76rem;
  }

  .chatbot-toggle__icon,
  .floating-estimate-button__icon {
    width: 28px;
    height: 28px;
  }
}
.site-nav a.button,
.site-nav a.button:hover,
.site-nav a.button:focus-visible,
.site-nav a.button[aria-current="page"] {
  color: #fff;
}

.legal-section {
  padding: 80px 20px;
  background: #ffffff;
}

.legal-content {
  width: min(900px, 100%);
  margin: 0 auto;
  color: #222222;
}

.legal-updated {
  margin-bottom: 40px;
  color: #666666;
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.3;
  color: #111111;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  margin: 0 0 22px 22px;
  padding: 0;
}

.legal-content li {
  margin-bottom: 9px;
  line-height: 1.7;
}

.legal-content address {
  margin-top: 18px;
  padding: 24px;
  background: #f7f7f7;
  border-left: 4px solid #b48a3c;
  font-style: normal;
  line-height: 1.8;
}

.legal-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .legal-section {
    padding: 55px 20px;
  }

  .legal-content h2 {
    margin-top: 34px;
    font-size: 1.25rem;
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.95rem;
  }
}

.upfront-payment-section {
  padding: 100px 0;
  background: var(--cream);
}

.upfront-payment-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.upfront-payment-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.upfront-benefits {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.upfront-benefit {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.upfront-benefit > span {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.upfront-benefit strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.upfront-benefit p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.92rem;
}

.upfront-payment-tool {
  padding: 38px;
  border-radius: var(--radius);
  background: #111111;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.upfront-tool-label {
  margin-bottom: 15px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upfront-month-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 26px;
}

.upfront-month-button {
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.upfront-month-button:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}

.upfront-month-button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #ffffff;
}

.upfront-result {
  min-height: 190px;
  padding: 28px;
  border-radius: 16px;
  background: #ffffff;
  color: #111111;
}

.upfront-result span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.upfront-result strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.upfront-result p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.92rem;
}

.upfront-example {
  margin: 22px 0;
}

.upfront-example label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.upfront-rent-input {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: #ffffff;
  color: #111111;
}

.upfront-rent-input span {
  padding-left: 15px;
  font-weight: 800;
}

.upfront-rent-input input {
  width: 100%;
  padding: 13px 15px 13px 6px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.upfront-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.upfront-total span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.upfront-total strong {
  color: var(--gold-2);
  font-size: 1.4rem;
}

.upfront-disclaimer {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .upfront-payment-section {
    padding: 70px 0;
  }

  .upfront-payment-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 550px) {
  .upfront-payment-tool {
    padding: 24px 18px;
  }

  .upfront-month-buttons {
    gap: 6px;
  }

  .upfront-month-button {
    padding: 11px 5px;
    font-size: 0.76rem;
  }

  .upfront-result {
    min-height: 0;
    padding: 22px 18px;
  }

  .upfront-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
.moving-rent-banner {
  width: 100%;
  overflow: hidden;
  background: #b67b12;
  color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.moving-rent-banner a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.moving-rent-banner__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: rent-banner-scroll 24s linear infinite;
}

.moving-rent-banner__track span {
  display: inline-block;
  flex-shrink: 0;
  padding: 10px 42px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.moving-rent-banner:hover .moving-rent-banner__track {
  animation-play-state: paused;
}

@keyframes rent-banner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .moving-rent-banner__track {
    animation-duration: 18s;
  }

  .moving-rent-banner__track span {
    padding: 9px 28px;
    font-size: 0.72rem;
  }
}
.about-hero-highlights {
  display: flex;
  align-items: stretch;
  gap: 16px;
  max-width: 820px;
  margin-top: 28px;
}

.about-hero-stat,
.about-hero-points {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
  padding: 18px 22px;
}

.about-hero-stat strong {
  color: var(--gold-2);
  font-size: 2.8rem;
  line-height: 1;
}

.about-hero-stat span {
  max-width: 150px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  flex: 1;
  padding: 16px;
  border-radius: 16px;
}

.about-hero-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(232, 199, 127, 0.4);
  border-radius: 10px;
  background: rgba(182, 123, 18, 0.12);
  color: #ffffff;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 700px) {
  .page-hero--about {
    min-height: auto;
    background-position: center;
  }

  .page-hero--about .page-hero__shade {
    background: rgba(0, 0, 0, 0.72);
  }

  .page-hero--about .page-hero__content {
    max-width: none;
    padding-top: 70px;
    padding-bottom: 55px;
  }

  .page-hero--about h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    line-height: 1.05;
  }

  .page-hero--about .page-hero__lead {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .page-hero--about .page-hero__supporting {
    display: none;
  }

  .about-hero-highlights {
    display: block;
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }

  .about-hero-stat {
    display: flex;
    width: 100%;
    min-width: 0;
    margin-bottom: 10px;
    padding: 16px 18px;
    border-radius: 12px;
  }

  .about-hero-stat strong {
    font-size: 2.8rem;
  }

  .about-hero-stat span {
    max-width: none;
    font-size: 0.78rem;
  }

  .about-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .about-hero-points span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 5px;
    border-radius: 8px;
    font-size: 0.68rem;
    line-height: 1.25;
    text-align: center;
  }

  .page-hero--about .page-hero__scroll {
    display: none;
  }
}
.postcode-checker {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.postcode-checker label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.postcode-checker__row {
  display: flex;
  gap: 10px;
}

.postcode-checker__row input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  font: inherit;
  text-transform: uppercase;
}

.postcode-checker__row .button {
  width: auto;
  flex: 0 0 auto;
}

.postcode-checker__result {
  margin-top: 14px;
  padding: 15px;
  border-radius: 6px;
  line-height: 1.6;
}

.postcode-checker__result strong,
.postcode-checker__result span {
  display: block;
}

.postcode-checker__result a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: inherit;
}

.postcode-checker__result.is-covered {
  background: rgba(34, 122, 74, 0.12);
  border: 1px solid rgba(34, 122, 74, 0.3);
}

.postcode-checker__result.is-review {
  background: rgba(184, 132, 26, 0.12);
  border: 1px solid rgba(184, 132, 26, 0.3);
}

.postcode-checker__result.is-error {
  background: rgba(170, 45, 45, 0.1);
  border: 1px solid rgba(170, 45, 45, 0.25);
}

@media (max-width: 520px) {
  .postcode-checker__row {
    flex-direction: column;
  }

  .postcode-checker__row .button {
    width: 100%;
  }
}

/* CONTACT PAGE — DARK ENQUIRY FORM */
.contact-card {
  background: #111111;
  color: #ffffff;
  padding: 40px;
  border: 1px solid rgba(210, 162, 76, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.contact-card .eyebrow {
  color: var(--gold-2);
}

.contact-card h2 {
  color: #ffffff;
}

.contact-card__intro {
  margin: -8px 0 26px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-card .field label {
  color: rgba(255, 255, 255, 0.92);
}

.contact-card .field input,
.contact-card .field select,
.contact-card .field textarea {
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-card .field input::placeholder,
.contact-card .field textarea::placeholder {
  color: #777777;
}

.contact-card .field input:focus,
.contact-card .field select:focus,
.contact-card .field textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(210, 162, 76, 0.2);
}

.contact-card .check-row {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card .check-row a {
  color: var(--gold-2);
  font-weight: 700;
}

.contact-card .check-row input {
  accent-color: var(--gold);
}

.contact-card .button {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.contact-card .button:hover,
.contact-card .button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.optional-label {
  margin-left: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.65;
}

#contact-postcode {
  text-transform: uppercase;
}

/* CONTACT PAGE — CALLBACK */
.contact-callback__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-callback__inner > div {
  max-width: 720px;
}

.contact-callback__inner h2 {
  margin-bottom: 14px;
}

.contact-callback__inner p:last-child {
  margin-bottom: 0;
}

.contact-callback__inner .button {
  width: fit-content;
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .contact-callback__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-callback__inner .button {
    width: auto;
  }
}
