:root {
  --bg-soft: #faf5ef;
  --text-main: #1f1a17;
  --text-muted: #594c45;
  --accent: #2f6f5e;
  --accent-dark: #255a4c;
  --cta-brown: #4a2f23;
  --cta-brown-hover: #3b251c;
  --cta-brown-active: #2f1d16;
  --cta-brown-soft: #f2e7df;
  --cta-brown-soft-strong: #e9d9cd;
  --cta-brown-ring: rgba(74, 47, 35, 0.24);
  --anchor-offset: 1.25rem;
  --font-display: "Canela", "Playfair Display", "Libre Baskerville", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --measure: 72ch;
}

body {
  background: var(--bg-soft);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.68;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-dark);
}

a:hover {
  color: var(--accent);
}

main section {
  padding-top: clamp(3.25rem, 4.5vw, 5rem) !important;
  padding-bottom: clamp(3.25rem, 4.5vw, 5rem) !important;
}

main section[id] {
  scroll-margin-top: var(--anchor-offset);
}

main p,
main li,
main .accordion-body {
  line-height: 1.72;
}

main p {
  max-width: var(--measure);
}

main ul,
main ol {
  max-width: var(--measure);
}

main li {
  margin-bottom: 0.35rem;
}

main section > .container > h1,
main section > .container > h2 {
  margin-bottom: 1rem;
}

h1,
.h1,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h2,
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  line-height: 1.24;
  letter-spacing: -0.005em;
  font-weight: 600;
}

h3,
.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.1vw, 1.625rem);
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 600;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-body);
  letter-spacing: 0;
  font-weight: 600;
}

h4,
.h4 {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.4rem);
  line-height: 1.35;
}

h5,
.h5 {
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  line-height: 1.4;
}

h6,
.h6 {
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.08rem);
  line-height: 1.45;
}

.lead {
  font-size: clamp(1.1rem, 1.02rem + 0.5vw, 1.325rem);
  line-height: 1.7;
  letter-spacing: 0.012em;
  color: var(--text-muted);
  max-width: 60ch;
}

small,
.small,
.text-muted {
  font-size: clamp(0.8125rem, 0.79rem + 0.2vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.015em;
}

.type-accent,
.reference-quote,
blockquote,
.blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 1.04rem + 0.45vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0;
  color: #3b2d27;
}

.reference-quote {
  padding-left: var(--reference-quote-indent);
  padding-right: var(--reference-quote-indent);
}

.reference-quote::before {
  content: "„";
  display: inline-block;
  width: auto;
  margin-right: 0.08em;
  font-family: var(--font-display);
  font-size: 1.5em;
  line-height: 1;
  color: rgba(89, 76, 69, 0.45);
  font-style: normal;
  vertical-align: -0.14em;
}

.reference-quote::after {
  content: "“";
  margin-left: 0.08em;
  font-family: var(--font-display);
  font-size: 1.08em;
  line-height: 1;
  color: rgba(89, 76, 69, 0.62);
  font-style: normal;
}

.reference-card {
  --reference-quote-indent: 1.15rem;
  transition: transform 320ms ease-in-out, box-shadow 320ms ease-in-out;
}

.reference-card .card-body {
  padding-left: calc(var(--bs-card-spacer-x) + 4px);
}

.reference-author,
.reference-focus {
  padding-left: var(--reference-quote-indent);
}

.citation-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border-left: 3px solid rgba(150, 114, 88, 0.36);
  background: rgba(248, 240, 234, 0.62);
  text-align: center;
}

.citation-marker {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7d5f4e;
  line-height: 1;
}

.citation-marker svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.citation-block p {
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .citation-block p {
    white-space: normal;
  }
}

.site-header {
  z-index: 1030;
}

.site-header .site-navbar {
  background: rgba(250, 245, 239, 0.92) !important;
  backdrop-filter: blur(8px);
  transition: background-color 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header .site-navbar .navbar-brand,
.site-header .site-navbar .nav-link {
  transition: color 220ms ease, text-shadow 220ms ease;
}

body.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  --home-nav-progress: 0;
  --home-nav-progress-pct: 0%;
  --home-nav-inverse-pct: 100%;
  --home-nav-text-shadow-alpha: 0.42;
}

body.home-page .site-header .site-navbar {
  background: rgba(250, 245, 239, calc(var(--home-nav-progress) * 0.94)) !important;
  backdrop-filter: blur(calc(var(--home-nav-progress) * 8px));
  border-color: rgba(31, 26, 23, calc(var(--home-nav-progress) * 0.1)) !important;
  box-shadow: 0 0.35rem 1.1rem rgba(21, 17, 14, calc(var(--home-nav-progress) * 0.14));
}

body.home-page .site-header .site-navbar .navbar-brand,
body.home-page .site-header .site-navbar .nav-link {
  color: #fff;
  color: color-mix(in srgb, #fff var(--home-nav-inverse-pct), var(--text-main) var(--home-nav-progress-pct));
  text-shadow: 0 1px 2px rgba(0, 0, 0, var(--home-nav-text-shadow-alpha));
}

body.home-page .site-header .navbar-toggler {
  border-color: color-mix(in srgb, rgba(255, 255, 255, 0.44) var(--home-nav-inverse-pct), rgba(31, 26, 23, 0.2) var(--home-nav-progress-pct));
  background: color-mix(in srgb, rgba(15, 12, 10, 0.2) var(--home-nav-inverse-pct), rgba(250, 245, 239, 0.88) var(--home-nav-progress-pct));
}

body.home-page .site-header .navbar-toggler-icon {
  filter: invert(calc(1 - var(--home-nav-progress)));
}

body.home-page .site-header.is-menu-open {
  --home-nav-progress: 1;
  --home-nav-progress-pct: 100%;
  --home-nav-inverse-pct: 0%;
  --home-nav-text-shadow-alpha: 0;
}

.mobile-nav {
  --bs-offcanvas-width: 100vw;
  --bs-offcanvas-bg: var(--cta-brown);
  --bs-offcanvas-color: #fff;
  --bs-offcanvas-border-width: 0;
  --bs-offcanvas-transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  height: 100dvh;
  will-change: transform;
}

.mobile-nav .offcanvas-body {
  padding-top: 1.5rem;
}

.mobile-nav .nav-link {
  color: #fff;
  font-size: clamp(1.35rem, 1.2rem + 0.9vw, 1.8rem);
  font-weight: 650;
  letter-spacing: 0.01em;
  padding: 0.5rem 0;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link:focus-visible {
  color: rgba(255, 255, 255, 0.86);
}

.mobile-nav-reserve {
  font-weight: 650;
  font-size: 1.05rem;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.25rem + 0.9vw, 1.95rem);
  letter-spacing: -0.01em;
}

.nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.card-body p {
  max-width: 62ch;
}

.massage-carousel {
  --carousel-gap: 1rem;
  --carousel-cards-per-view: 1;
  position: relative;
}

.massage-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.massage-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.massage-carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--carousel-gap);
}

.massage-slide {
  flex: 0 0 calc((100% - (var(--carousel-cards-per-view) - 1) * var(--carousel-gap)) / var(--carousel-cards-per-view));
  scroll-snap-align: start;
  transition: transform 320ms ease-in-out, box-shadow 320ms ease-in-out;
}

.massage-carousel-services .massage-carousel-viewport {
  margin-bottom: 0.95rem;
}

.massage-carousel-services .massage-slide {
  display: flex;
  flex-direction: column;
}

.massage-carousel-services .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-image {
  height: 220px;
  object-fit: cover;
}

.about-photo-wrapper {
  width: 100%;
  max-width: 24rem;
  margin-inline: auto;
}

.about-photo {
  display: block;
  width: 100%;
  height: clamp(18rem, 45vw, 25rem);
  object-fit: cover;
  border-radius: 1rem;
  background: #f4eee8;
  box-shadow: 0 0.65rem 1.35rem rgba(31, 26, 23, 0.12);
}

@media (min-width: 992px) {
  .about-photo-wrapper {
    margin-left: auto;
    margin-right: 0;
  }
}

.service-summary {
  flex-grow: 1;
}

:is(.massages-page, .other-services-page) .massage-detail-card {
  overflow: hidden;
}

:is(.massages-page, .other-services-page) .massage-detail-image-col {
  min-height: clamp(14rem, 52vw, 20rem);
}

:is(.massages-page, .other-services-page) .massage-detail-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

:is(.massages-page, .other-services-page) .service-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: #fff;
}

:is(.massages-page, .other-services-page) .massage-detail-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.15rem, 1rem + 0.8vw, 1.9rem);
}

:is(.massages-page, .other-services-page) .massage-detail-body p {
  max-width: none;
}

:is(.massages-page, .other-services-page) .massage-detail-head {
  align-items: flex-end;
}

:is(.massages-page, .other-services-page) .massage-detail-head-stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

:is(.massages-page, .other-services-page) .massage-detail-meta {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: clamp(0.9rem, 0.86rem + 0.18vw, 1rem);
  line-height: 1.3;
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}

:is(.massages-page, .other-services-page) .massage-detail-meta-breakdown {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
  white-space: normal;
  text-align: left;
}

:is(.massages-page, .other-services-page) .massage-detail-price-line {
  display: block;
}

:is(.massages-page, .other-services-page) .massage-detail-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

:is(.massages-page, .other-services-page) .massage-detail-actions .btn {
  min-width: 9.25rem;
}

:is(.massages-page, .other-services-page) .massage-detail-extra {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 47, 35, 0.18);
}

:is(.massages-page, .other-services-page) .massage-detail-extra ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.carousel-progress-rail {
  width: 100%;
  margin-inline: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.carousel-flat-arrow {
  border: 0;
  background: transparent;
  color: #46362f;
  width: 5.55rem;
  height: 2.4rem;
  padding: 0;
  opacity: 0.82;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 220ms ease-in-out, color 220ms ease-in-out, transform 220ms ease-in-out;
}

.carousel-flat-arrow-prev {
  justify-content: flex-end;
  padding-right: 0.08rem;
}

.carousel-flat-arrow-next {
  justify-content: flex-start;
  padding-left: 0.08rem;
}

.carousel-flat-arrow svg {
  width: 2.8rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.carousel-flat-arrow svg path {
  vector-effect: non-scaling-stroke;
}

.carousel-flat-arrow:hover,
.carousel-flat-arrow:focus-visible {
  opacity: 1;
  color: #291e1a;
  transform: scale(1.04);
  outline: none;
}

.carousel-progress-track {
  flex: 1;
  min-width: 0;
  margin-inline: 5px;
  display: flex;
  align-items: center;
  gap: 0.22rem;
}

.carousel-progress-segment {
  flex: 1 1 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(70, 54, 47, 0.34);
  opacity: 0.5;
  transition: background-color 230ms ease-in-out, opacity 230ms ease-in-out;
}

.carousel-progress-segment[data-active="true"] {
  flex-grow: 1;
  background: #46362f;
  opacity: 1;
}

.gift-carousel {
  --carousel-gap: 0.85rem;
  --carousel-cards-per-view: 1;
  --voucher-card-width: clamp(17rem, 74vw, 26rem);
}

.gift-carousel .massage-carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.gift-carousel .massage-carousel-track {
  width: max-content;
}

.centrum-carousel {
  --carousel-gap: 0.85rem;
  --carousel-cards-per-view: 1;
  --centrum-card-width: clamp(17rem, 74vw, 26rem);
}

.centrum-carousel .massage-carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.centrum-carousel .massage-carousel-track {
  width: max-content;
}

.centrum-slide {
  flex: 0 0 auto;
}

.centrum-image {
  display: block;
  width: var(--centrum-card-width);
  max-width: none;
  height: auto;
}

.certificate-carousel {
  --carousel-gap: 0.9rem;
}

.certificate-slide {
  background: #fffcf9;
}

.certificate-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
  text-decoration: none;
  cursor: pointer;
}

.certificate-link:focus-visible {
  outline: 2px solid #8b6f5c;
  outline-offset: 2px;
}

.certificate-preview-modal {
  --bs-backdrop-opacity: 0.62;
  --certificate-preview-inset: 0.75rem;
  --certificate-preview-max-height: calc(100dvh - 3.5rem);
}

.certificate-preview-modal .modal-dialog {
  width: calc(100vw - (2 * var(--certificate-preview-inset)));
  max-width: calc(100vw - (2 * var(--certificate-preview-inset)));
  margin: var(--certificate-preview-inset) auto;
}

.certificate-preview-modal .modal-content {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.certificate-preview-modal .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  justify-content: flex-end;
  pointer-events: none;
}

.certificate-preview-modal .certificate-preview-close {
  pointer-events: auto;
  margin: 0.5rem;
  opacity: 0.92;
}

.certificate-preview-modal .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.certificate-preview-modal .certificate-modal-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  max-height: var(--certificate-preview-max-height);
  margin: 0;
}

.certificate-preview-modal .certificate-modal-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--certificate-preview-max-height);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0.35rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.35);
}

@media (max-width: 575.98px) {
  .certificate-preview-modal {
    --certificate-preview-inset: 0.5rem;
    --certificate-preview-max-height: calc(100dvh - 3rem);
  }

  .certificate-preview-modal .certificate-modal-image {
    border-radius: 0.2rem;
  }
}

.certificate-preview {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #f2ece5;
  padding: 0.75rem;
  border-radius: 0.8rem 0.8rem 0 0;
}

.certificate-preview-document {
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-document-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  min-height: 2.15rem;
  border-radius: 999px;
  background: #46362f;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.voucher-slide {
  flex: 0 0 auto;
}

.voucher-image {
  display: block;
  width: var(--voucher-card-width);
  max-width: none;
  height: auto;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(31, 26, 23, 0.18);
  border-radius: 999px;
  background: rgba(250, 245, 239, 0.72);
  color: #45352e;
  opacity: 0.55;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: opacity 240ms ease-in-out, background-color 240ms ease-in-out, border-color 240ms ease-in-out;
}

.carousel-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  opacity: 0.95;
  background: rgba(250, 245, 239, 0.96);
  border-color: rgba(31, 26, 23, 0.36);
  outline: none;
}

.carousel-arrow-prev {
  left: -1.25rem;
}

.carousel-arrow-next {
  right: -1.25rem;
}

@media (hover: hover) and (pointer: fine) {
  .massage-slide:hover {
    transform: translateY(-2px) scale(1.006);
    box-shadow: 0 0.9rem 1.7rem rgba(31, 26, 23, 0.12) !important;
  }

  .reference-card:hover,
  .reference-card:focus-within {
    transform: translateY(-2px) scale(1.006);
    box-shadow: 0 0.9rem 1.7rem rgba(31, 26, 23, 0.12) !important;
  }
}

@media (min-width: 768px) {
  .massage-carousel {
    --carousel-cards-per-view: 2;
  }
}

@media (min-width: 992px) {
  :is(.massages-page, .other-services-page) .massage-detail-image-col {
    min-height: 100%;
  }

  :is(.massages-page, .other-services-page) .massage-detail-image,
  :is(.massages-page, .other-services-page) .service-image-placeholder {
    min-height: 100%;
  }
}

@media (min-width: 1024px) {
  .massage-carousel {
    --carousel-cards-per-view: 3;
  }

  .massage-carousel:not(.gift-carousel) .massage-carousel-viewport {
    overflow-x: hidden;
  }
}

@media (max-width: 1023.98px) {
  .carousel-arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  :is(.massages-page, .other-services-page) .massage-detail-actions .btn {
    flex: 1 1 100%;
  }
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.65rem);
  line-height: 1.28;
  letter-spacing: -0.004em;
  font-weight: 600;
}

.meta-title {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 0.79rem + 0.2vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.accordion {
  --bs-accordion-active-color: var(--cta-brown);
  --bs-accordion-active-bg: var(--cta-brown-soft);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem var(--cta-brown-ring);
  --bs-accordion-btn-focus-border-color: var(--cta-brown-soft-strong);
}

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

/* FAQ: match question text size to answer (body) — Bootstrap btn defaults slightly smaller */
#faq .accordion-button {
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
}

.accordion-button:not(.collapsed) {
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 rgba(74, 47, 35, 0.14);
}

.table {
  font-size: clamp(0.98rem, 0.93rem + 0.18vw, 1.06rem);
}

.table thead th {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.price-list-table thead th {
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.18rem);
  letter-spacing: 0.03em;
}

.price-list-table {
  --bs-table-bg: #fff;
  --bs-table-striped-bg: var(--cta-brown-soft);
}

.price-list-table :is(th, td):first-child {
  padding-left: 1.25rem;
}

.btn-primary {
  --bs-btn-bg: var(--cta-brown);
  --bs-btn-border-color: var(--cta-brown);
  --bs-btn-hover-bg: var(--cta-brown-hover);
  --bs-btn-hover-border-color: var(--cta-brown-hover);
  --bs-btn-active-bg: var(--cta-brown-active);
  --bs-btn-active-border-color: var(--cta-brown-active);
}

.btn-outline-primary {
  --bs-btn-color: var(--accent-dark);
  --bs-btn-border-color: var(--accent-dark);
  --bs-btn-hover-bg: var(--accent-dark);
  --bs-btn-hover-border-color: var(--accent-dark);
}

.hero-video-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0 !important;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 32rem;
  background: #120f0d;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.46) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-top: clamp(6.25rem, 11vh, 8.5rem);
  padding-bottom: clamp(2.5rem, 7vh, 4rem);
}

.hero-copy {
  max-width: min(96%, 44rem);
}

.hero-copy h1 {
  max-width: 13ch;
  color: #fff;
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 44ch;
}

.hero-copy .btn-outline-light {
  border-width: 1.5px;
}

@media (max-width: 991.98px) {
  .hero-content {
    align-items: flex-end;
    padding-top: 6rem;
    padding-bottom: 5.2rem;
  }
}

.placeholder-box {
  border: 2px dashed #d38f5d;
  background: #fff4ea;
  color: #9a4d00;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.placeholder-box.large {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta {
  position: fixed;
  z-index: 1050;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 245, 239, 0.98);
  padding: 0.75rem;
  border-top: 1px solid #ddd0c8;
  display: flex;
  gap: 0.75rem;
  font-family: var(--font-body);
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 5rem;
  }
}
