:root {
  --home-bg: #f2f0eb;
  --home-surface: #ffffff;
  --home-surface-soft: #e8e5df;
  --home-text: #17191c;
  --home-muted: #656a70;
  --home-line: rgba(23, 25, 28, 0.13);
  --home-accent: #9b5e2c;
  --home-accent-soft: #f0dcc9;
  --home-dark: #0a0b0d;
  --home-dark-soft: #14161a;
  --home-on-dark: #f6f3ee;
  --home-on-dark-muted: #c3c0bb;
  --home-shadow: 0 24px 70px rgba(15, 18, 22, 0.14);
}

html[data-theme="dark"] {
  --home-bg: #07080a;
  --home-surface: #101216;
  --home-surface-soft: #171a1f;
  --home-text: #f5f2ed;
  --home-muted: #aaaeb4;
  --home-line: rgba(255, 255, 255, 0.11);
  --home-accent: #d2955b;
  --home-accent-soft: #322419;
  --home-dark: #050607;
  --home-dark-soft: #101216;
  --home-on-dark: #f7f3ed;
  --home-on-dark-muted: #bbb9b5;
  --home-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

html,
body {
  background: var(--home-bg) !important;
}

body {
  color: var(--home-text) !important;
  transition: background-color 180ms ease, color 180ms ease;
}

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

#root > main {
  width: 100%;
  overflow: hidden;
  background: var(--home-bg);
  color: var(--home-text);
}

#root > main > .top-note,
#root > main > .site-header {
  display: none !important;
}

#root a:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 4px;
}

.hero {
  position: relative !important;
  isolation: isolate;
  display: flex !important;
  align-items: flex-end !important;
  width: min(1180px, calc(100% - 64px)) !important;
  min-height: 610px !important;
  margin: 62px auto 28px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: var(--home-dark);
  box-shadow: var(--home-shadow);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.72) 43%, rgba(5, 6, 8, 0.16) 72%, rgba(5, 6, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.74) 0%, transparent 44%);
}

.hero-copy {
  position: relative !important;
  z-index: 3;
  width: min(690px, 64%) !important;
  padding: 64px !important;
  color: var(--home-on-dark) !important;
}

.hero .kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 0 0 20px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.48);
  color: #f3d0aa !important;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: none;
  backdrop-filter: blur(12px);
}

.hero .kicker::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--home-accent);
  content: "";
}

.hero h1 {
  max-width: 660px;
  margin: 0 !important;
  color: var(--home-on-dark) !important;
  font-size: clamp(48px, 5vw, 76px) !important;
  font-weight: 630 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  display: block;
  color: var(--home-on-dark) !important;
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
}

.hero-intro {
  max-width: 620px;
  margin: 24px 0 0 !important;
  color: rgba(247, 243, 237, 0.82) !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px !important;
}

.hero-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  border-radius: 999px !important;
  color: var(--home-on-dark) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  text-decoration: none !important;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hero-actions .button-dark {
  border-color: var(--home-accent) !important;
  background: var(--home-accent) !important;
  color: #17110c !important;
}

.hero-actions .button-outline {
  background: rgba(10, 12, 16, 0.36) !important;
  backdrop-filter: blur(10px);
}

.hero-actions .button:hover {
  transform: translateY(-2px);
  border-color: #fff !important;
}

.hero-trust {
  display: flex !important;
  align-items: center;
  width: max-content;
  margin-top: 30px !important;
  padding: 11px 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(9, 10, 13, 0.48) !important;
  backdrop-filter: blur(12px);
}

.hero-trust strong {
  color: var(--home-on-dark) !important;
}

.hero-trust p,
.hero-trust span {
  color: var(--home-on-dark-muted) !important;
}

.hero-gallery {
  position: absolute !important;
  z-index: 0;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.hero-image-main {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.hero-image-main img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 55% !important;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
}

.hero-image-main figcaption {
  display: none !important;
}

.hero-image-secondary {
  position: absolute !important;
  z-index: 3;
  right: 26px !important;
  bottom: 26px !important;
  width: 250px !important;
  height: 168px !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.hero-image-secondary img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.hero-image-secondary figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex !important;
  justify-content: space-between;
  padding: 30px 14px 12px !important;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: #fff !important;
}

.hero-image-secondary figcaption a,
.hero-image-secondary figcaption span {
  color: #fff !important;
}

.availability-note {
  display: none !important;
}

.value-strip {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  width: min(1180px, calc(100% - 64px)) !important;
  margin: 0 auto 92px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--home-line) !important;
  border-radius: 18px;
  background: var(--home-surface) !important;
  box-shadow: none !important;
}

.value-strip > div {
  min-height: 92px;
  padding: 23px 26px !important;
  border-right: 1px solid var(--home-line);
  background: transparent !important;
}

.value-strip > div:last-child {
  border-right: 0;
}

.value-strip span {
  color: var(--home-accent) !important;
}

.value-strip p {
  color: var(--home-text) !important;
}

.section,
.smart-access,
.home-quote-module,
.final-cta,
footer {
  width: min(1180px, calc(100% - 64px)) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.section {
  padding-top: 0 !important;
  padding-bottom: 104px !important;
}

.section-intro {
  align-items: end !important;
  margin-bottom: 34px !important;
}

.section-intro h2,
.story h2,
.smart-access h2,
.home-quote-module h2,
.final-cta h2 {
  color: inherit !important;
  font-size: clamp(36px, 4.2vw, 60px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

.section-intro > p,
.location-description,
.experience-grid p {
  color: var(--home-muted) !important;
}

.kicker {
  color: var(--home-accent) !important;
}

.location-grid {
  gap: 22px !important;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--home-line) !important;
  border-radius: 24px !important;
  background: var(--home-surface) !important;
  box-shadow: none !important;
}

.location-image {
  height: 390px !important;
  overflow: hidden;
}

.location-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 500ms ease;
}

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

.location-content {
  padding: 30px 32px 34px !important;
  color: var(--home-text) !important;
}

.location-content h3,
.location-links a {
  color: var(--home-text) !important;
}

.location-content li {
  border: 1px solid var(--home-line) !important;
  background: var(--home-surface-soft) !important;
  color: var(--home-text) !important;
}

.location-region,
.location-number {
  color: var(--home-accent) !important;
}

.location-links {
  border-color: var(--home-line) !important;
}

.location-primary {
  color: var(--home-accent) !important;
}

.story {
  display: grid !important;
  grid-template-columns: 1.03fr 0.97fr !important;
  gap: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: var(--home-dark-soft) !important;
  color: var(--home-on-dark) !important;
  box-shadow: var(--home-shadow);
}

.story-image {
  min-height: 550px;
}

.story-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: saturate(0.78) brightness(0.8);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px !important;
}

.story-copy > p:not(.kicker),
.story-facts span {
  color: var(--home-on-dark-muted) !important;
}

.story-facts {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.story-facts strong {
  color: var(--home-on-dark) !important;
}

.experience {
  padding-top: 104px !important;
}

.experience-grid {
  gap: 14px !important;
}

.experience-grid article {
  min-height: 250px;
  padding: 34px !important;
  border: 1px solid var(--home-line) !important;
  border-radius: 20px !important;
  background: var(--home-surface) !important;
}

.experience-grid article span {
  color: var(--home-accent) !important;
}

.section-intro.compact > a {
  color: var(--home-accent) !important;
}

.experience-grid h3 {
  color: var(--home-text) !important;
}

.smart-access {
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 0 !important;
  margin-bottom: 104px !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--home-line) !important;
  border-radius: 26px !important;
  background: var(--home-surface) !important;
  color: var(--home-text) !important;
}

.smart-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px !important;
}

.smart-copy > p:not(.kicker) {
  color: var(--home-muted) !important;
}

.smart-copy a {
  width: max-content;
  color: var(--home-accent) !important;
}

.smart-access figure {
  min-height: 520px;
  margin: 0 !important;
}

.smart-access figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.home-quote-module {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
  margin-bottom: 32px !important;
  padding: 48px 54px !important;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 26px;
  background: var(--home-surface);
  color: var(--home-text);
}

.home-quote-module::after {
  position: absolute;
  z-index: -1;
  top: -110px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--home-accent-soft) 78%, transparent);
  content: "";
}

.home-quote-module__copy {
  min-width: 0;
  max-width: 760px;
}

.home-quote-module__kicker {
  margin: 0 0 10px;
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-quote-module h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px) !important;
}

.home-quote-module__copy > p:last-child {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.home-quote-module__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--home-accent);
  color: #17110c !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
  transition: transform 160ms ease, filter 160ms ease;
}

.home-quote-module__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.final-cta {
  margin-bottom: 32px !important;
  padding: 82px 64px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 85% 15%, rgba(210, 149, 91, 0.2), transparent 30%),
    var(--home-dark) !important;
  color: var(--home-on-dark) !important;
}

.final-cta > p:not(.kicker) {
  color: var(--home-on-dark-muted) !important;
}

.final-cta .button-clay {
  border-radius: 999px !important;
  background: var(--home-accent) !important;
  color: #17110c !important;
}

.final-cta .phone-link {
  color: var(--home-on-dark) !important;
}

footer {
  margin-bottom: 28px !important;
  padding: 40px 44px !important;
  border: 1px solid var(--home-line) !important;
  border-radius: 22px !important;
  background: var(--home-surface) !important;
  color: var(--home-text) !important;
}

footer p,
.footer-nav p,
.footer-legal {
  color: var(--home-muted) !important;
}

.footer-nav a,
footer a {
  color: var(--home-text) !important;
}

@media (max-width: 920px) {
  .hero {
    width: min(100% - 36px, 1180px) !important;
    min-height: 650px !important;
    margin-top: 34px !important;
  }

  .hero-copy {
    width: 76% !important;
    padding: 44px !important;
  }

  .hero-image-secondary {
    width: 205px !important;
    height: 142px !important;
  }

  .value-strip,
  .section,
  .smart-access,
  .home-quote-module,
  .final-cta,
  footer {
    width: min(100% - 36px, 1180px) !important;
  }

  .value-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .value-strip > div:nth-child(2) {
    border-right: 0;
  }

  .value-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-line);
  }

  .story,
  .smart-access {
    grid-template-columns: 1fr !important;
  }

  .home-quote-module {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 42px !important;
  }

  .home-quote-module__button {
    width: max-content;
  }

  .story-image,
  .smart-access figure {
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  .hero {
    width: calc(100% - 24px) !important;
    min-height: 650px !important;
    margin-top: 20px !important;
    border-radius: 22px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.78) 58%, rgba(5, 6, 8, 0.24) 100%);
  }

  .hero-copy {
    width: 100% !important;
    padding: 30px 24px !important;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  .hero-intro {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-actions .button {
    padding: 0 12px !important;
    text-align: center;
  }

  .hero-trust {
    margin-top: 22px !important;
  }

  .hero-image-main img {
    object-position: 58% center !important;
  }

  .hero-image-secondary {
    display: none !important;
  }

  .value-strip,
  .section,
  .smart-access,
  .home-quote-module,
  .final-cta,
  footer {
    width: calc(100% - 24px) !important;
  }

  .value-strip {
    grid-template-columns: 1fr 1fr !important;
    margin-bottom: 72px !important;
  }

  .value-strip > div {
    min-height: 92px;
    padding: 18px !important;
  }

  .section {
    padding-bottom: 76px !important;
  }

  .section-intro {
    display: block !important;
  }

  .section-intro > p {
    margin-top: 18px !important;
  }

  .location-grid,
  .experience-grid {
    grid-template-columns: 1fr !important;
  }

  .location-image {
    height: 300px !important;
  }

  .location-content,
  .experience-grid article {
    padding: 26px !important;
  }

  .story,
  .smart-access,
  .home-quote-module,
  .final-cta {
    border-radius: 22px !important;
  }

  .story-image,
  .smart-access figure {
    min-height: 310px;
  }

  .story-copy,
  .smart-copy {
    padding: 34px 26px !important;
  }

  .story-facts {
    grid-template-columns: 1fr !important;
  }

  .experience {
    padding-top: 76px !important;
  }

  .smart-access {
    margin-bottom: 76px !important;
  }

  .home-quote-module {
    max-width: calc(100% - 24px) !important;
    min-width: 0;
    gap: 22px;
    padding: 34px 26px !important;
  }

  .home-quote-module__button {
    width: 100%;
    padding: 12px 18px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .home-quote-module h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .final-cta {
    padding: 56px 28px !important;
  }

  footer {
    padding: 32px 26px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
