:root {
  --pf-paper: #f9f5ef;
  --pf-warm-paper: #f4e8de;
  --pf-cream: #fff1e7;
  --pf-ink: #321d24;
  --pf-dark: #20252b;
  --pf-deep: #4a2b32;
  --pf-coral: #e07a5f;
  --pf-sand: #d8a36a;
  --pf-muted: #684f53;
  --pf-line: #c8a9a0;
  --pf-white: #fffdf9;
  --pf-radius: .3rem;
  --pf-shadow: 0 .5rem 1.5rem rgba(50, 29, 36, .1);
  --pf-gutter: clamp(1rem, 3vw, 3.5rem);
  --pf-measure: 65ch;
  --bs-body-font-family: "Arial Narrow", Arial, sans-serif;
  --bs-body-color: var(--pf-ink);
  --bs-body-bg: var(--pf-paper);
  --bs-link-color: var(--pf-deep);
  --bs-link-hover-color: var(--pf-ink);
  --bs-primary: var(--pf-coral);
  --bs-primary-rgb: 224, 122, 95;
  --bs-border-color: var(--pf-line);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--pf-paper);
  color: var(--pf-ink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--pf-ink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p,
address {
  max-width: var(--pf-measure);
}

a {
  color: var(--pf-deep);
  text-decoration-thickness: .1em;
  text-underline-offset: .16em;
}

a:hover {
  color: var(--pf-ink);
}

img {
  border-radius: var(--pf-radius);
}

figure {
  margin: 0;
}

figcaption {
  color: var(--pf-ink);
  font-size: .9rem;
  line-height: 1.4;
  margin-top: .75rem;
}

.skip-link {
  background: var(--pf-ink);
  color: var(--pf-cream);
  left: 1rem;
  padding: .7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 2000;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: .2rem solid var(--pf-ink);
  outline-offset: .2rem;
}

.section {
  overflow: clip;
}

.section>.container,
.section>.container-fluid {
  max-width: 90rem;
}

.section-paper {
  background: var(--pf-warm-paper);
}

.section-dark {
  background: var(--pf-dark);
  color: var(--pf-cream);
}

.section-accent {
  background: var(--pf-sand);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .eyebrow,
.section-dark a,
.section-dark figcaption {
  color: var(--pf-cream);
}

.section-accent h2,
.section-accent h3,
.section-accent p,
.section-accent .eyebrow {
  color: var(--pf-ink);
}

.site-header {
  background: var(--pf-paper);
  position: relative;
  z-index: 20;
}

.site-header .navbar {
  min-height: 5.5rem;
}

.site-header .container-fluid {
  max-width: 90rem;
}

.navbar-brand {
  align-items: flex-start;
  color: var(--pf-ink);
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  margin-right: 1.5rem;
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--pf-deep);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand-tagline {
  color: var(--pf-muted);
  font-size: .72rem;
  letter-spacing: .04em;
  margin-top: .35rem;
}

.nav-link {
  color: var(--pf-ink);
  font-weight: 700;
  padding-left: .7rem !important;
  padding-right: .7rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pf-deep);
}

.navbar-toggler {
  border-color: var(--pf-ink);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(50, 29, 36, .3);
}

.navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(15%) sepia(18%) saturate(1050%) hue-rotate(300deg) brightness(86%);
}

.site-header--stacked-brand .navbar-brand,
.site-header--centered-brand .navbar-brand {
  margin-left: auto;
  margin-right: auto;
}

.site-header--centered-brand .navbar>.container-fluid {
  justify-content: center;
}

.site-header--wrapped-nav .navbar-collapse {
  flex-basis: 100%;
}

.btn {
  border-radius: var(--pf-radius);
  font-weight: 700;
  letter-spacing: .01em;
  padding: .7rem 1.15rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn-primary {
  background: var(--pf-coral);
  border-color: var(--pf-coral);
  color: var(--pf-ink);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--pf-deep) !important;
  border-color: var(--pf-deep) !important;
  color: var(--pf-cream) !important;
  transform: translateY(-1px);
}

.btn-outline-dark {
  border-color: var(--pf-ink);
  color: var(--pf-ink);
}

.btn-outline-dark:hover,
.btn-outline-dark:active {
  background: var(--pf-ink) !important;
  border-color: var(--pf-ink) !important;
  color: var(--pf-cream) !important;
}

.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 .22rem var(--pf-cream), 0 0 0 .4rem var(--pf-ink);
}

.eyebrow {
  color: var(--pf-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.hero-section {
  background: var(--pf-paper);
}

.hero-figure img {
  display: block;
  max-height: 55rem;
  object-fit: cover;
  width: 100%;
}

.hero-figure figcaption {
  padding: 0 var(--pf-gutter);
}

.section-layout--hero-stacked .hero-figure {
  margin-left: calc(var(--pf-gutter) * -1);
  margin-right: calc(var(--pf-gutter) * -1);
}

.section-layout--hero-stacked .hero-figure img {
  border-radius: 0;
}

.editorial-image,
.feature-figure img,
.comparison-card img {
  display: block;
  width: 100%;
}

.editorial-image {
  max-height: 38rem;
  object-fit: cover;
}

.method-note {
  border-left: .2rem solid var(--pf-coral);
  padding: .25rem 0 .25rem 1rem;
}

.method-note>span {
  color: var(--pf-deep);
  font-size: 1.5rem;
  font-weight: 700;
}

.method-note h3 {
  margin-top: .5rem;
}

.section-layout--trust-rail .editorial-image {
  border-bottom-right-radius: 3rem;
}

.path-card,
.comparison-card {
  background: var(--pf-cream);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  height: 100%;
  padding: 1.35rem;
}

.section-dark .path-card {
  background: var(--pf-deep);
  border-color: #ad8582;
}

.card-index {
  color: var(--pf-coral) !important;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}

.section-dark .path-card h3 {
  color: var(--pf-cream);
}

.section-dark .path-card p:not(.card-index) {
  color: #fff1e7;
}

.feature-figure {
  background: var(--pf-cream);
  padding: .7rem;
}

.feature-figure img {
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.story-list {
  border-top: 1px solid var(--pf-line);
}

.story-item {
  border-bottom: 1px solid var(--pf-line);
  padding: 1.35rem 0;
}

.story-item h3 {
  margin-bottom: .6rem;
}

.comparison-card {
  background: var(--pf-paper);
  border-color: rgba(50, 29, 36, .45);
}

.comparison-card img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.comparison-mark {
  align-items: center;
  background: var(--pf-deep);
  border-radius: 50%;
  color: var(--pf-cream);
  display: flex;
  font-size: 3rem;
  height: 5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 5rem;
}

.accordion {
  --bs-accordion-bg: var(--pf-cream);
  --bs-accordion-color: var(--pf-ink);
  --bs-accordion-border-color: var(--pf-line);
  --bs-accordion-btn-color: var(--pf-ink);
  --bs-accordion-active-color: var(--pf-ink);
  --bs-accordion-active-bg: #f0ddd0;
}

.accordion-button {
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 var(--pf-line);
}

.accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(50, 29, 36, .25);
}

.accordion-body {
  max-width: var(--pf-measure);
}

.contact-address {
  font-style: normal;
  line-height: 1.7;
}

.contact-address a {
  display: inline-block;
}

.form-label,
.form-check-label {
  font-weight: 700;
}

.form-control,
.form-select {
  background: var(--pf-white);
  border-color: var(--pf-muted);
  border-radius: var(--pf-radius);
  color: var(--pf-ink);
  min-height: 3rem;
}

.form-control::placeholder {
  color: var(--pf-muted);
  opacity: 1;
}

.form-text {
  color: var(--pf-ink);
}

.form-check-input {
  border-color: var(--pf-muted);
}

.form-check-input:checked {
  background-color: var(--pf-deep);
  border-color: var(--pf-deep);
}

.cookie-banner {
  background: var(--pf-cream);
  border-top: 1px solid var(--pf-ink);
  bottom: 0;
  box-shadow: 0 -0.4rem 1.2rem rgba(50, 29, 36, .12);
  color: var(--pf-ink);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1050;
}

.cookie-banner p {
  font-size: .95rem;
}

.cookie-banner a {
  margin-left: .3rem;
}

.site-footer {
  background: var(--pf-dark);
  color: var(--pf-cream);
  padding-top: 1.25rem;
}

.site-footer>address {
  margin: 0 auto;
  max-width: 90rem;
  padding: 0 var(--pf-gutter) 1rem;
}

.site-footer p,
.site-footer a,
.site-footer address {
  color: var(--pf-cream);
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer .container {
  max-width: 90rem;
}

.site-footer [data-site-copyright] {
  border-top: 1px solid #826b70;
  margin: 0;
  max-width: none;
  padding: 1rem var(--pf-gutter);
  text-align: center;
}

.policy-page {
  background: var(--pf-paper);
}

.policy-page__main {
  max-width: 90rem;
  margin: 0 auto;
  padding: 3rem var(--pf-gutter) 5rem;
}

.policy-document {
  max-width: 70ch;
  margin: 0 auto;
}

.policy-document__header {
  border-bottom: 1px solid var(--pf-line);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.policy-document__header h1 {
  max-width: 16ch;
}

.policy-document__content {
  font-size: 1.05rem;
}

.policy-document__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 2.5rem 0 .75rem;
}

.policy-document__content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 .6rem;
}

.policy-document__content p,
.policy-document__content ul,
.policy-document__content ol {
  max-width: var(--pf-measure);
}

.policy-document__content li+li {
  margin-top: .5rem;
}

.section-layout--editorial-feature .row,
.section-layout--showcase-story .story-list {
  align-items: stretch;
}

.section-layout--gallery-storyboard .feature-figure {
  border-left: .25rem solid var(--pf-coral);
}

.section-layout--services-menu .path-card {
  border-top: .35rem solid var(--pf-coral);
}

.section-layout--features-list .method-note {
  min-height: 9rem;
}

.section-layout--process-checklist .method-note {
  background: var(--pf-cream);
  padding: 1rem;
}

.section-layout--responsible-checklist .method-note {
  border-left-color: var(--pf-sand);
}

.section-layout--testimonials-featured .comparison-card:first-child {
  border-width: 2px;
}

@media (max-width: 991.98px) {
  .site-header--inline .navbar-brand {
    margin-right: 0;
  }

  .navbar-collapse {
    background: var(--pf-paper);
    border-top: 1px solid var(--pf-line);
    margin-top: 1rem;
    padding: .75rem 0 1rem;
  }

  .navbar-nav .btn {
    display: inline-block;
    margin-top: .5rem;
  }

  .site-header--centered-brand .navbar>.container-fluid {
    justify-content: space-between;
  }

  .site-header--centered-brand .navbar-brand {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .section-layout--amenities-grouped .path-card {
    padding: 1.75rem;
  }

  .section-layout--reviews-scorecard .comparison-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .section-layout--hero-stacked .row {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important;
  }

  .policy-page__main {
    padding-top: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .btn-primary:hover,
  .btn-outline-dark:hover {
    transform: none;
  }
}

/* Application-owned visual variation tokens v4. */
:root {
  --site-foreground: #FFF3ED;
  --site-background: #201F23;
  --site-accent: #F37C63;
  --site-surface: #302D32;
  --site-muted: #C0AAA3;
  --site-link: #F37C63;
  --site-text-muted: #C0AAA3;
}

body,
body * {
  font-family: Tahoma, Arial, sans-serif !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: Tahoma, Arial, sans-serif !important;
}

body .site-header {
  width: 100%;
  overflow: visible !important;
}

body .site-header .navbar {
  width: 100%;
  padding-inline: clamp(1rem, 3vw, 4rem);
}

body .site-header .navbar>.container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-wrap: wrap;
}

body .site-header .navbar-brand {
  min-width: 0;
  max-width: 38%;
  overflow-wrap: anywhere;
}

body .site-header .navbar-collapse {
  min-width: 0;
}

body .site-header .navbar-nav {
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body .site-header .nav-link,
body .site-header .navbar-nav .btn {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
  text-align: center;
}

@media (min-width: 992px) {

  body .site-header--stacked-brand .navbar>.container,
  body .site-header--centered-brand .navbar>.container {
    align-items: center;
  }

  body .site-header--stacked-brand .navbar>.container {
    flex-direction: column;
  }

  body .site-header--stacked-brand .navbar-brand,
  body .site-header--centered-brand .navbar-brand {
    max-width: 100%;
    margin-inline: auto;
  }

  body .site-header--stacked-brand .navbar-collapse,
  body .site-header--centered-brand .navbar-collapse {
    width: 100%;
    flex-grow: 0;
  }

  body .site-header--stacked-brand .navbar-nav,
  body .site-header--centered-brand .navbar-nav {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  body .site-header .navbar-collapse.show {
    flex-basis: 100%;
  }

  body .site-header .navbar-nav {
    align-items: stretch;
  }
}

body .btn,
body button[type="submit"] {
  background-color: var(--site-accent) !important;
  border-color: var(--site-accent) !important;
  color: var(--site-background) !important;
}


section.section-layout--hero-split .row {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
  align-items: center;
}

section.section-layout--hero-split .row>[class*="col-"] {
  max-width: none !important;
  width: auto !important;
}

section.section-layout--hero-stacked .row {
  display: block !important;
  max-width: 66rem;
  margin-inline: auto;
}

section.section-layout--hero-editorial .row {
  display: block !important;
  width: 100%;
  max-width: none !important;
  margin-inline: 0;
}

section.section-layout--hero-editorial .row>[class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0;
}

section.section-layout--hero-editorial .row>[class*="col-"]+[class*="col-"] {
  margin-top: clamp(2rem, 5vw, 4.5rem);
}

section.section-layout--hero-editorial img {
  display: block;
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

section.section-layout--hero-overlay .row>[class*="col-"]:first-child {
  padding: clamp(1.5rem, 5vw, 5rem);
  margin: clamp(1rem, 3vw, 3rem);
  max-width: min(52rem, calc(100% - 2rem)) !important;
}

section.section-layout--hero-overlay h1 {
  margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
}

section.section-layout--hero-overlay p {
  margin-bottom: 1.25rem;
}

section.section-layout--hero-image-top>.container,
section.section-layout--hero-image-top>.container-fluid {
  width: min(calc(100% - 2rem), 90rem) !important;
  max-width: 90rem !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

section.section-layout--hero-image-top>.container>.row:first-child,
section.section-layout--hero-image-top>.container-fluid>.row:first-child {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

section.section-layout--hero-image-top>.container>.row:first-child>[class*="col-"],
section.section-layout--hero-image-top>.container-fluid>.row:first-child>[class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;
  padding-inline: 0 !important;
}

section.section-layout--hero-image-top>.container>.row:first-child>[class*="col-"]:has(img),
section.section-layout--hero-image-top>.container-fluid>.row:first-child>[class*="col-"]:has(img) {
  order: -1;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

section.section-layout--hero-image-top h1,
section.section-layout--hero-image-top .display-1,
section.section-layout--hero-image-top .display-2,
section.section-layout--hero-image-top .display-3 {
  max-width: 64rem !important;
}

section.section-layout--hero-image-top img {
  display: block;
  width: 100%;
  max-height: 42rem;
  object-fit: cover;
}

section.section-layout--hero-overlay {
  position: relative;
  isolation: isolate;
}

section.section-layout--hero-overlay .row {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: center;
}

section.section-layout--hero-overlay .row>[class*="col-"] {
  grid-area: 1 / 1;
  max-width: none !important;
  width: auto !important;
}

section.section-layout--hero-overlay .row>[class*="col-"]:first-child {
  position: relative;
  z-index: 2;
  max-width: 42rem !important;
}

section.section-layout--hero-overlay .row>[class*="col-"]:last-child {
  z-index: 1;
}

@media (max-width: 767.98px) {
  section.section-layout--hero-split .row {
    display: block !important;
  }
}

/* Application-owned accessibility and viewport safeguards. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

pre,
code,
kbd,
samp {
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

table {
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

.container,
.container-fluid {
  min-width: 0;
}

main,
section,
header,
footer {
  min-width: 0;
  max-width: 100%;
}

/* Application-owned fluid homepage container safeguards v1. */
body main>section .container,
body main>section .container-fluid {
  width: min(calc(100% - clamp(2rem, 6vw, 6rem)), 90rem) !important;
  max-width: 90rem !important;
  margin-inline: auto !important;
}

.skip-link:not(:focus) {
  position: fixed !important;
  top: 0;
  left: 50% !important;
  transform: translate(-50%, -160%);
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (max-width: 575.98px) {
  .container>.row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .container>.row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}


.path-card .card-index {
  color: #ffd1c5;
}