* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02rem;
  font-size: 1.7rem;
  background-color: rgb(250, 250, 248);
  background-size: cover;
  color: rgb(28, 28, 28);
}

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

h1,
h2,
h3,
h4,
h5,
h6,
[class$=__headline],
[class$=__title],
[class$=__price],
[class$=__number],
.faq-item__question,
.footer__headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 1000px) {
  body {
    display: grid;
    grid-template-rows: repeat(6, min-content);
    grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 16rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
  }
}
@media screen and (max-width: 999px) {
  body {
    display: grid;
    grid-template-rows: repeat(6, min-content);
    grid-template-columns: [full-start] minmax(2rem, 1fr) [center-start] repeat(4, [col-start] minmax(0, 1fr) [col-end]) [center-end] minmax(2rem, 1fr) [full-end];
  }
}
.navbar {
  grid-row: 1;
  grid-column: full-start/full-end;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.4rem 2rem;
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
  backdrop-filter: blur(1rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 5.2rem;
  overflow: visible;
}

.navbar__logo {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-main {
  display: contents;
}

.home-page .social-follow {
  grid-row: 6;
}

.home-page .final-cta {
  grid-row: 7;
}

.home-page .faq-section {
  grid-row: 8;
}

.home-page .footer {
  grid-row: 9;
}

.navbar__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  width: 4.6rem;
  height: 4.6rem;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  width: 2.2rem;
  height: 0.24rem;
  border-radius: 999px;
  background-color: rgb(249, 244, 240);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar__toggle.is-active span:nth-child(1) {
  transform: translateY(0.69rem) rotate(45deg);
}
.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.is-active span:nth-child(3) {
  transform: translateY(-0.69rem) rotate(-45deg);
}

.navbar-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 100%;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  border-radius: 1.2rem;
  transition: height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, visibility 0.35s ease;
}
.navbar-links.is-open {
  opacity: 1;
  visibility: visible;
  padding: 1rem 0;
}

.navbar-links--link {
  display: inline-flex;
  align-self: flex-start;
  padding: 1.2rem 1.6rem;
  border: 0;
  background: transparent;
  color: rgb(255, 255, 255);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  transition: color 0.25s ease;
}
.navbar-links--link:focus-visible {
  color: rgb(215, 195, 154);
}

.navbar-links--button {
  cursor: pointer;
}

.navbar-dropdown {
  display: grid;
  width: 100%;
}

.navbar-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2rem 1.6rem;
  border: 0;
  background: transparent;
  color: rgb(255, 255, 255);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  text-align: left;
  cursor: pointer;
}
.navbar-dropdown__toggle:focus-visible {
  color: rgb(215, 195, 154);
}

.navbar-dropdown__arrow {
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  border-right: 0.2rem solid currentColor;
  border-bottom: 0.2rem solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}

.navbar-dropdown__menu {
  display: grid;
  gap: 0.2rem;
  height: 0;
  overflow: hidden;
  padding-left: 1.6rem;
  transition: height 0.3s ease;
}

.navbar-dropdown__link {
  display: inline-flex;
  padding: 1rem 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  transition: color 0.25s ease;
}
.navbar-dropdown__link:focus-visible {
  color: rgb(215, 195, 154);
}

.navbar-dropdown.is-open .navbar-dropdown__arrow {
  transform: rotate(45deg);
}

@media screen and (min-width: 1000px) {
  .navbar {
    padding: 1.6rem 4rem;
    flex-wrap: nowrap;
  }
  .navbar__toggle {
    display: none;
  }
  .navbar-links {
    flex-basis: auto;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.6rem;
    width: auto;
    height: auto !important;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background-color: transparent;
  }
  .navbar-links--link {
    align-self: auto;
    padding: 0.9rem 1.2rem;
    font-size: 1.5rem;
  }
  .navbar-links--link:hover {
    color: rgb(215, 195, 154);
  }
  .navbar-dropdown {
    position: relative;
    width: auto;
    align-self: stretch;
  }
  .navbar-dropdown__toggle {
    align-self: auto;
    width: auto;
    justify-content: flex-start;
    padding: 0.9rem 1.2rem;
    font-size: 1.5rem;
  }
  .navbar-dropdown__toggle:hover {
    color: rgb(215, 195, 154);
  }
  .navbar-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    width: 24rem;
    height: auto;
    overflow: visible;
    padding: 1rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.96));
    box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.8rem);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .navbar-dropdown__link {
    padding: 1rem 1.2rem;
    color: rgb(255, 255, 255);
  }
  .navbar-dropdown__link:hover {
    color: rgb(215, 195, 154);
  }
  .navbar-dropdown:hover .navbar-dropdown__menu,
  .navbar-dropdown:focus-within .navbar-dropdown__menu,
  .navbar-dropdown.is-open .navbar-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar-dropdown:hover .navbar-dropdown__arrow,
  .navbar-dropdown:focus-within .navbar-dropdown__arrow,
  .navbar-dropdown.is-open .navbar-dropdown__arrow {
    transform: rotate(45deg);
  }
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(0.8rem);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.contact-modal.is-open .contact-modal__backdrop {
  opacity: 1;
}

.contact-modal__dialog {
  position: relative;
  width: min(100%, 54rem);
  isolation: isolate;
  overflow: hidden;
  border-radius: 2.4rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
  border: 0.1rem solid rgba(153, 180, 175, 0.32);
  box-shadow: 0 2.2rem 5rem rgba(0, 0, 0, 0.18);
  transform: translateY(1rem);
  transition: transform 0.35s ease;
}
.contact-modal__dialog::before,
.contact-modal__dialog::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 13rem;
  height: 13rem;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-modal__dialog::before {
  top: -2rem;
  left: -2rem;
}
.contact-modal__dialog::after {
  right: -2rem;
  bottom: -2rem;
  transform: scaleX(-1) scaleY(-1);
}

.contact-modal.is-open .contact-modal__dialog {
  transform: translateY(0);
}

.contact-modal__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 0;
  background: transparent;
  color: rgb(48, 78, 73);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__content {
  display: grid;
  gap: 1.6rem;
  position: relative;
  z-index: 1;
  padding: 3rem 2.4rem 2.6rem;
  text-align: center;
}

.contact-modal__eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.contact-modal__title {
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
  color: rgb(34, 54, 51);
}

.contact-modal__subtitle {
  font-size: 1.7rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.contact-modal__details {
  display: grid;
  gap: 1.4rem;
  padding-top: 0.4rem;
}

.contact-modal__detail {
  display: grid;
  gap: 0.5rem;
  padding: 1.6rem;
  border-radius: 1.8rem;
  background-color: rgba(255, 255, 255, 0.82);
  border: 0.1rem solid rgba(210, 190, 165, 0.16);
}

.contact-modal__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.contact-modal__value {
  font-size: 1.95rem;
  line-height: 1.6;
  color: rgb(34, 54, 51);
}

.contact-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.4rem;
}

.contact-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 1.8rem;
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.contact-modal__button--primary {
  background-color: rgb(48, 78, 73);
  color: rgb(255, 255, 255);
}

.contact-modal__button--secondary {
  border: 0.1rem solid rgba(153, 180, 175, 0.52);
  color: rgb(48, 78, 73);
}

.footer {
  grid-row: 8;
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.4rem;
  padding: 4.2rem 2rem 4.8rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
}
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 14rem;
  height: 14rem;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.footer::before {
  top: -1.8rem;
  left: -1.8rem;
}
.footer::after {
  right: -1.8rem;
  bottom: -1.8rem;
  transform: scaleX(-1) scaleY(-1);
}

.footer__brand,
.footer__group,
.footer__bottom {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footer__eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(215, 195, 154, 0.82);
}

.footer__headline {
  max-width: 34rem;
  font-size: 2.2rem;
  line-height: 1.28;
  color: rgb(255, 255, 255);
}

.footer__copy,
.footer__small {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.footer__small--credit {
  font-size: 1.25rem;
}

.footer__title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgba(215, 195, 154, 0.72);
}

.footer__link {
  width: -moz-fit-content;
  width: fit-content;
  border: 0;
  background: transparent;
  font-size: 1.55rem;
  line-height: 1.7;
  color: rgb(255, 255, 255);
  transition: color 0.25s ease;
}
.footer__link:focus-visible {
  color: rgb(249, 244, 240);
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.4rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  border: 0.1rem solid rgba(215, 195, 154, 0.28);
  background-color: rgba(255, 255, 255, 0.06);
  color: rgb(255, 255, 255);
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}
.footer__social-link:focus-visible {
  color: rgb(249, 244, 240);
  border-color: rgba(249, 244, 240, 0.56);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.1rem);
}

.footer__social-icon {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer .footer__button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: rgb(255, 255, 255);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.footer__bottom {
  padding-top: 1.2rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.12);
}

.footer__credit-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__credit-link:focus-visible {
  color: rgb(249, 244, 240);
}

@media screen and (min-width: 1000px) {
  .footer {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 2.8rem;
    padding: 5.2rem 4rem 4.4rem;
  }
  .footer__bottom {
    grid-column: 1/-1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
  .footer__link:hover {
    color: rgb(249, 244, 240);
  }
  .footer__social-link:hover {
    color: rgb(249, 244, 240);
    border-color: rgba(249, 244, 240, 0.56);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-0.1rem);
  }
  .footer__credit-link:hover {
    color: rgb(249, 244, 240);
  }
}
.header {
  grid-row: 2;
  grid-column: full-start/full-end;
  display: grid;
  gap: 2.4rem;
  padding: 4rem 2rem 5rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.24), transparent 34%), linear-gradient(180deg, #f9f4f0, rgba(250, 250, 248, 0.98));
}

.header__content {
  display: grid;
  gap: 1.6rem;
  max-width: 66rem;
}

.header__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.header__headline {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.16rem;
  color: rgb(34, 54, 51);
}

.header__copy {
  max-width: 56rem;
  font-size: 1.8rem;
  line-height: 1.75;
  color: rgb(70, 70, 70);
}

.header__hours {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.4rem;
}

.header__contact-status {
  display: grid;
  gap: 0.5rem;
}

.header__hours-line {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.header__hours-emphasis {
  font-weight: 700;
  color: rgb(210, 190, 165);
}

.header__status-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
}

.header__status-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgb(47, 158, 68);
  box-shadow: 0 0 0 0.4rem rgba(47, 158, 68, 0.18);
}
.header__status-dot.is-closed {
  background-color: rgb(217, 72, 65);
  box-shadow: 0 0 0 0.4rem rgba(217, 72, 65, 0.18);
}

.header__status-text {
  font-weight: 700;
  color: rgb(34, 54, 51);
}

.header__actions {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.8rem;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border-radius: 999px;
  background-color: rgb(48, 78, 73);
  color: rgb(255, 255, 255);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  box-shadow: 0 1.4rem 3rem rgba(48, 78, 73, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.header__cta:focus-visible {
  background-color: rgb(34, 54, 51);
  color: rgb(255, 255, 255);
}

.header__phone-note {
  font-size: 1.45rem;
  color: rgb(48, 78, 73);
}

.header__card {
  display: grid;
  gap: 1rem;
  padding: 2.2rem;
  border: 0.1rem solid rgba(210, 190, 165, 0.14);
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.header__card-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.header__card-title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.header__card-copy {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

@media screen and (min-width: 1000px) {
  .header {
    grid-template-columns: minmax(0, 1.5fr) minmax(28rem, 38rem);
    align-items: end;
    padding: 6rem 4rem 7rem;
  }
  .header__copy {
    font-size: 2rem;
  }
  .header__card {
    justify-self: end;
    padding: 2.8rem;
  }
  .header__cta:hover {
    transform: translateY(-0.2rem);
    background-color: rgb(34, 54, 51);
    color: rgb(255, 255, 255);
  }
}
@media screen and (min-width: 1200px) and (max-width: 1500px) {
  .header {
    grid-template-columns: minmax(0, 56rem) minmax(30rem, 34rem);
    justify-content: center;
    -moz-column-gap: 3.2rem;
         column-gap: 3.2rem;
  }
  .header__content,
  .header__card {
    justify-self: center;
  }
}
@media screen and (min-width: 1500px) {
  .header {
    grid-template-columns: minmax(0, 76rem);
    justify-content: center;
    justify-items: center;
    row-gap: 2.8rem;
    text-align: center;
  }
  .header__content {
    justify-items: center;
    text-align: center;
  }
  .header__copy,
  .header__hours,
  .header__actions,
  .header__contact-status {
    justify-items: center;
  }
  .header__card {
    justify-self: center;
    max-width: 52rem;
    text-align: center;
  }
}
.about-section {
  grid-row: 3;
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.4rem;
  padding: 4.8rem 2rem 5.6rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
}
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 15rem;
  height: 15rem;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.about-section::before {
  top: -2rem;
  left: -2rem;
}
.about-section::after {
  right: -2rem;
  bottom: -2rem;
  transform: scaleX(-1) scaleY(-1);
}

.about-section__intro {
  display: grid;
  gap: 1.4rem;
  max-width: 68rem;
  position: relative;
  z-index: 1;
}

.about-section__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(215, 195, 154, 0.9);
}

.about-section__headline {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.12rem;
  color: rgb(255, 255, 255);
}

.about-section__copy {
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.about-section__details {
  display: grid;
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}

.about-section__card {
  display: grid;
  gap: 1.1rem;
  padding: 2.2rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
  border: 0.1rem solid rgba(153, 180, 175, 0.6);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.06);
}

.about-section__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.about-section__value {
  font-size: 2.4rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.about-section__list {
  margin: 0;
  padding-left: 2rem;
  display: grid;
  gap: 0.9rem;
  color: rgb(70, 70, 70);
  font-size: 1.65rem;
  line-height: 1.7;
}

@media screen and (min-width: 1000px) {
  .about-section {
    grid-template-columns: minmax(0, 1.35fr) minmax(28rem, 0.9fr);
    align-items: start;
    padding: 6.4rem 4rem 7.2rem;
  }
  .about-section__details {
    padding-top: 0.8rem;
  }
}
@media screen and (min-width: 1300px) {
  .about-section {
    grid-template-columns: minmax(0, 58rem) minmax(28rem, 34rem);
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .about-section__intro,
  .about-section__details {
    justify-self: center;
  }
}
.booking-section {
  grid-row: 5;
  grid-column: full-start/full-end;
  display: grid;
  gap: 2.8rem;
  padding: 4.8rem 2rem 6rem;
  background: radial-gradient(circle at bottom center, rgba(153, 180, 175, 0.16), transparent 30%), linear-gradient(0deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 240, 0.78)), rgb(255, 255, 255);
}

.booking-section__intro {
  display: grid;
  gap: 1.4rem;
  max-width: 68rem;
}

.booking-section__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.booking-section__headline {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.12rem;
  color: rgb(34, 54, 51);
}

.booking-section__copy {
  max-width: 58rem;
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.booking-section__steps {
  display: grid;
  gap: 2rem;
}

.booking-step {
  position: relative;
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  align-items: start;
  gap: 1.6rem;
}

.booking-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5.6rem;
  left: 2.75rem;
  width: 0.1rem;
  height: calc(100% + 1.2rem);
  background: linear-gradient(180deg, rgba(210, 190, 165, 0.45), rgba(153, 180, 175, 0.22));
}

.booking-step__marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(249, 244, 240, 0.22);
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.5), transparent 18%), radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.2), transparent 30%), radial-gradient(circle at 72% 34%, rgba(153, 180, 175, 0.26), transparent 26%), linear-gradient(130deg, rgba(34, 54, 51, 0.98) 10%, rgba(48, 78, 73, 0.97) 44%, rgba(66, 105, 98, 0.95) 62%, rgba(34, 54, 51, 0.98) 100%);
  box-shadow: inset 0.24rem 0.24rem 0.55rem rgba(255, 255, 255, 0.22), inset -0.38rem -0.48rem 0.9rem rgba(0, 0, 0, 0.22), 0 0.2rem 0.2rem rgba(255, 255, 255, 0.08), 0 1.35rem 2.4rem rgba(34, 54, 51, 0.28), 0 0.55rem 0.8rem rgba(34, 54, 51, 0.16);
}

.booking-step__marker::after {
  content: "";
  position: absolute;
  inset: auto 0.75rem -0.7rem;
  height: 1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 54, 51, 0.26), transparent 72%);
  filter: blur(0.35rem);
  z-index: -1;
}

.booking-step__number {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  color: rgb(255, 255, 255);
}

.booking-step__body {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 1.8rem 1.6rem;
  border-radius: 1.8rem;
  background-color: rgba(255, 255, 255, 0.94);
  border: 0.1rem solid rgba(153, 180, 175, 0.7);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.05);
}

.booking-step__title {
  font-size: 2rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.booking-step__copy {
  font-size: 1.55rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.features-section {
  grid-row: 4;
  grid-column: full-start/full-end;
  display: grid;
  gap: 2.8rem;
  padding: 4.8rem 2rem 6rem;
  background: radial-gradient(circle at top center, rgba(153, 180, 175, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 240, 0.78)), rgb(255, 255, 255);
}

.features-section__intro {
  display: grid;
  gap: 1.4rem;
  max-width: 70rem;
}

.features-section__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.features-section__headline {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.12rem;
  color: rgb(34, 54, 51);
}

.features-section__copy {
  max-width: 60rem;
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.features-section__grid {
  display: grid;
  gap: 1.6rem;
}

.feature-card {
  perspective: 120rem;
}

.feature-card__inner {
  position: relative;
}

.feature-card__face {
  display: grid;
  gap: 0.8rem;
  padding: 1.8rem 1.9rem;
  border-radius: 1.8rem;
  border: 0.1rem solid rgba(215, 195, 154, 0.26);
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.14), transparent 32%), linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.1);
}

.feature-card__face--back {
  display: none;
}

.feature-card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(255, 255, 255);
}

.feature-card__summary,
.feature-card__detail {
  font-size: 1.55rem;
  line-height: 1.7;
  color: rgba(249, 244, 240, 0.9);
}

.feature-card__hint {
  display: none;
}

@media screen and (min-width: 1000px) {
  .booking-section {
    justify-items: center;
    padding: 6.4rem 4rem 7rem;
  }
  .booking-section__intro {
    width: 100%;
    max-width: 96rem;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
  .booking-section__copy {
    max-width: 68rem;
  }
  .booking-section__steps {
    gap: 2.2rem;
  }
  .features-section {
    justify-items: center;
    padding: 6.4rem 2.5rem 7.4rem;
  }
  .features-section__intro {
    width: 100%;
    max-width: 96rem;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
  .features-section__copy {
    max-width: 68rem;
  }
  .features-section__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 0;
  }
  .feature-card {
    flex: 0 1 auto;
    width: 23rem;
    height: 18rem;
    min-height: 18rem;
    margin: 1.5rem;
  }
  .feature-card__inner {
    position: relative;
    height: 100%;
    min-height: 18rem;
    overflow: hidden;
  }
  .feature-card__face {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.1rem;
    overflow: hidden;
  }
  .feature-card__face--front {
    background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.14), transparent 32%), linear-gradient(145deg, rgba(48, 78, 73, 0.98), rgba(34, 54, 51, 0.96));
    box-shadow: inset 0 0 0 0.1rem rgba(215, 195, 154, 0.08);
  }
  .feature-card__face--back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    box-shadow: none;
    pointer-events: none;
  }
  .feature-card__title {
    font-size: 2.2rem;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.34s ease;
    will-change: transform, opacity;
  }
  .feature-card__summary {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.28s ease;
    will-change: transform, opacity;
  }
  .feature-card__hint {
    position: absolute;
    right: 2rem;
    bottom: 1.8rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(249, 244, 240, 0.78);
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.28s ease, color 0.28s ease;
    will-change: transform, opacity;
  }
  .feature-card__detail {
    margin: 0;
    padding: 0 0.5rem;
    text-align: left;
    color: rgba(249, 244, 240, 0.92);
    transform: translateY(1.8rem);
    opacity: 0;
    transition: transform 0.54s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.36s ease;
    will-change: transform, opacity;
  }
  .feature-card:hover .feature-card__title,
  .feature-card:focus-within .feature-card__title {
    transform: translateY(-4.8rem);
    opacity: 0;
  }
  .feature-card:hover .feature-card__summary,
  .feature-card:focus-within .feature-card__summary {
    transform: translateY(-2.8rem);
    opacity: 0;
  }
  .feature-card:hover .feature-card__hint,
  .feature-card:focus-within .feature-card__hint {
    transform: translateY(-1rem);
    opacity: 0;
  }
  .feature-card:hover .feature-card__detail,
  .feature-card:focus-within .feature-card__detail {
    transform: translateY(0);
    opacity: 1;
  }
  .feature-card:hover .feature-card__face--front,
  .feature-card:focus-within .feature-card__face--front {
    box-shadow: inset 0 0 0 0.1rem rgba(215, 195, 154, 0.14);
  }
}
@media screen and (min-width: 1300px) {
  .booking-section {
    justify-items: center;
  }
  .booking-section__intro {
    width: 100%;
    max-width: 76rem;
    justify-self: center;
    text-align: center;
  }
  .booking-section__steps {
    width: 100%;
    max-width: 82rem;
    gap: 2.4rem;
  }
  .booking-step {
    width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .features-section {
    justify-items: center;
  }
  .features-section__intro {
    width: 100%;
    max-width: 76rem;
    justify-self: center;
    text-align: center;
  }
  .features-section__grid {
    max-width: none;
    justify-self: stretch;
  }
  .feature-card {
    width: 22rem;
    height: 17rem;
    min-height: 17rem;
  }
  .feature-card__inner {
    min-height: 17rem;
  }
}
.final-cta {
  grid-row: 6;
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.4rem;
  padding: 5rem 2rem 6rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 16rem;
  height: 16rem;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.final-cta::before {
  top: -2.4rem;
  left: -2.4rem;
}
.final-cta::after {
  right: -2.4rem;
  bottom: -2.4rem;
  transform: scaleX(-1) scaleY(-1);
}

.final-cta__content {
  display: grid;
  gap: 1.5rem;
  max-width: 68rem;
  position: relative;
  z-index: 1;
}

.final-cta__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta__headline {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.12rem;
  color: rgb(255, 255, 255);
}

.final-cta__copy {
  max-width: 58rem;
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1rem;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.35rem 2.1rem;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.final-cta__button:focus-visible {
  transform: translateY(-0.15rem);
}

.final-cta__button--primary {
  background-color: rgb(215, 195, 154);
  color: rgb(255, 255, 255);
}

.final-cta__button--secondary {
  border: 0.1rem solid rgba(215, 195, 154, 0.68);
  color: rgb(249, 244, 240);
}

.final-cta__panel {
  display: grid;
  gap: 1rem;
  padding: 2.2rem;
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.09);
  border: 0.1rem solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(0.8rem);
}

.final-cta__panel-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(215, 195, 154, 0.92);
}

.final-cta__panel-title {
  font-size: 2.3rem;
  line-height: 1.22;
  color: rgb(255, 255, 255);
}

.final-cta__panel-copy {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

@media screen and (min-width: 1000px) {
  .final-cta {
    grid-template-columns: minmax(0, 1.45fr) minmax(28rem, 38rem);
    align-items: center;
    padding: 6.6rem 4rem 7.2rem;
  }
  .final-cta__panel {
    justify-self: end;
    padding: 2.8rem;
  }
}
@media screen and (min-width: 1300px) {
  .final-cta {
    grid-template-columns: minmax(0, 58rem) minmax(28rem, 34rem);
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .final-cta__content,
  .final-cta__panel {
    justify-self: center;
  }
}
.faq-section {
  grid-row: 7;
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.6rem;
  padding: 4.8rem 2rem 6rem;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
}
.faq-section::before,
.faq-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 14rem;
  height: 14rem;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.faq-section::before {
  top: -2rem;
  left: -2rem;
}
.faq-section::after {
  right: -2rem;
  bottom: -2rem;
  transform: scaleX(-1) scaleY(-1);
}

.faq-section__intro {
  display: grid;
  gap: 1.4rem;
  max-width: 68rem;
  position: relative;
  z-index: 1;
}

.faq-section__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.faq-section__headline {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.12rem;
  color: rgb(34, 54, 51);
}

.faq-section__copy {
  max-width: 58rem;
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.faq-section__list {
  display: grid;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  padding: 2rem;
  border-radius: 1.8rem;
  background-color: rgba(255, 255, 255, 0.96);
  border: 0.1rem solid rgba(153, 180, 175, 0.7);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.05);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(34, 54, 51);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  cursor: default;
}

.faq-item__arrow {
  display: none;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-top: 0.2rem solid rgb(210, 190, 165);
  border-right: 0.2rem solid rgb(210, 190, 165);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item__answer p {
  font-size: 1.55rem;
  line-height: 1.75;
  color: rgb(70, 70, 70);
}

@media screen and (min-width: 1000px) {
  .faq-section {
    justify-items: center;
    padding: 6.4rem 4rem 7rem;
  }
  .faq-section__intro {
    width: 100%;
    max-width: 96rem;
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
  .faq-section__copy {
    max-width: 68rem;
  }
  .faq-section__list {
    width: 100%;
    max-width: 96rem;
    justify-self: center;
    gap: 1.6rem;
  }
  .faq-item {
    padding: 0;
    overflow: hidden;
  }
  .faq-item__question {
    padding: 2rem 2.4rem;
    cursor: pointer;
  }
  .faq-item__arrow {
    display: inline-block;
  }
  .faq-item__answer {
    height: 0;
    overflow: hidden;
    padding: 0 2.4rem;
    transition: height 0.35s ease, padding 0.35s ease;
  }
  .faq-item.is-open .faq-item__answer {
    padding: 0 2.4rem 2rem;
  }
  .faq-item.is-open .faq-item__arrow {
    transform: rotate(135deg);
  }
  .final-cta__button:hover {
    transform: translateY(-0.15rem);
  }
}
@media screen and (min-width: 1300px) {
  .faq-section {
    justify-items: center;
  }
}
.social-follow {
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.4rem;
  padding: 4.4rem 2rem 5rem;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
}
.social-follow::before,
.social-follow::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 15rem;
  height: 15rem;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.social-follow::before {
  top: -2rem;
  left: -2rem;
}
.social-follow::after {
  right: -2rem;
  bottom: -2rem;
  transform: scaleX(-1) scaleY(-1);
}

.social-follow__content,
.social-follow__actions {
  position: relative;
  z-index: 1;
}

.social-follow__content {
  display: grid;
  gap: 1.4rem;
  max-width: 74rem;
}

.social-follow__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.social-follow__headline {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.12rem;
  color: rgb(34, 54, 51);
}

.social-follow__copy {
  max-width: 58rem;
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.social-follow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.social-follow__link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.6rem;
  border-radius: 999px;
  border: 0.1rem solid rgba(153, 180, 175, 0.42);
  background-color: rgba(255, 255, 255, 0.88);
  color: rgb(34, 54, 51);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.social-follow__link:focus-visible {
  transform: translateY(-0.1rem);
  border-color: rgba(210, 190, 165, 0.56);
  background-color: rgb(255, 255, 255);
  color: rgb(48, 78, 73);
}

.social-follow__icon {
  width: 1.9rem;
  height: 1.9rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media screen and (min-width: 1000px) {
  .social-follow {
    grid-template-columns: minmax(0, 1.2fr) minmax(28rem, 0.9fr);
    align-items: center;
    padding: 5.4rem 4rem 5.8rem;
  }
  .social-follow__actions {
    justify-content: flex-end;
  }
  .social-follow__link:hover {
    transform: translateY(-0.1rem);
    border-color: rgba(210, 190, 165, 0.56);
    background-color: rgb(255, 255, 255);
    color: rgb(48, 78, 73);
  }
}
@media screen and (min-width: 1300px) {
  .social-follow {
    grid-template-columns: minmax(0, 58rem) minmax(28rem, 34rem);
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .social-follow__content,
  .social-follow__actions {
    justify-self: center;
  }
}
.meetup-hero {
  grid-column: full-start/full-end;
  display: grid;
  gap: 2.6rem;
  padding: 4rem 2rem 5rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
}

.meetup-hero__content {
  display: grid;
  gap: 1.6rem;
  max-width: 70rem;
}

.meetup-hero__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.meetup-hero__headline {
  font-size: clamp(3.8rem, 9vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.16rem;
  color: rgb(34, 54, 51);
}

.meetup-hero__copy {
  font-size: 1.8rem;
  line-height: 1.78;
  color: rgb(70, 70, 70);
}

.meetup-hero__actions {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.8rem;
}

.meetup-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border-radius: 999px;
  background-color: rgb(48, 78, 73);
  color: rgb(255, 255, 255);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  box-shadow: 0 1.4rem 3rem rgba(48, 78, 73, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.meetup-hero__cta:focus-visible {
  background-color: rgb(34, 54, 51);
  color: rgb(255, 255, 255);
}

.meetup-hero__note {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgb(48, 78, 73);
}

.meetup-hero__panel {
  display: grid;
  gap: 1rem;
  padding: 2.2rem;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.82);
  border: 0.1rem solid rgba(210, 190, 165, 0.14);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.meetup-hero__panel-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.meetup-hero__panel-title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.meetup-hero__panel-copy {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.meetup-page {
  grid-column: full-start/full-end;
  display: grid;
  gap: 3.8rem;
  padding: 4.8rem 2rem 6rem;
  background: rgb(250, 250, 248);
}

.meetup-page__intro,
.meetup-page__closing {
  display: grid;
  gap: 1.8rem;
  max-width: 84rem;
}

.meetup-page__intro {
  padding: 2.6rem;
  border-radius: 2.6rem;
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.meetup-page__lead,
.meetup-page__closing-copy {
  font-size: 1.75rem;
  line-height: 1.85;
  color: rgb(70, 70, 70);
}

.meetup-page__intro .meetup-page__lead {
  color: rgba(255, 255, 255, 0.84);
}

.meetup-page__inspiration-note {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 0.1rem solid rgba(249, 244, 240, 0.18);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(249, 244, 240, 0.92);
}

.meetup-page__beliefs {
  display: grid;
  gap: 1.4rem;
  padding-top: 0.6rem;
}

.meetup-page__belief-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.8rem;
  border-radius: 1.8rem;
  background-color: rgba(255, 255, 255, 0.92);
  border: 0.1rem solid rgba(215, 195, 154, 0.18);
}

.meetup-page__belief-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgb(34, 54, 51);
}

.meetup-page__belief-copy {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.meetup-page__closing-title {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.12rem;
  color: rgb(34, 54, 51);
}

.meetup-page__signature {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.7;
  color: rgb(210, 190, 165);
}

.meetup-category {
  display: grid;
  gap: 2.2rem;
  padding: 2.8rem 2rem;
  border-radius: 2.8rem;
}

.meetup-page > .meetup-category:nth-of-type(even) {
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.meetup-page > .meetup-category:nth-of-type(odd) {
  background: radial-gradient(circle at top center, rgba(153, 180, 175, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 240, 0.78)), rgb(255, 255, 255);
  border: 0.1rem solid rgba(153, 180, 175, 0.18);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

.meetup-category__header {
  display: grid;
  gap: 1.1rem;
  max-width: 76rem;
}

.meetup-category__visual {
  overflow: hidden;
  border-radius: 2.6rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 0.1rem solid rgba(153, 180, 175, 0.32);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.meetup-category__image {
  display: block;
  width: 100%;
  height: clamp(24rem, 40vw, 42rem);
  -o-object-fit: cover;
     object-fit: cover;
  filter: none;
  transform: none;
  opacity: 1;
}

.meetup-category__visual--wide .meetup-category__image {
  -o-object-position: center;
     object-position: center;
}

.meetup-category__eyebrow {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.meetup-category__title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.12rem;
  color: rgb(34, 54, 51);
}

.meetup-page > .meetup-category:nth-of-type(even) .meetup-category__eyebrow {
  color: rgba(249, 244, 240, 0.82);
}

.meetup-page > .meetup-category:nth-of-type(even) .meetup-category__title {
  color: rgb(255, 255, 255);
}

.meetup-category__grid {
  display: grid;
  gap: 1.8rem;
}

.meetup-category__card {
  display: grid;
  gap: 1.4rem;
  padding: 2.4rem;
  border-radius: 2.2rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
  border: 0.1rem solid rgba(153, 180, 175, 0.55);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.06);
}

.meetup-page > .meetup-category:nth-of-type(even) .meetup-category__card,
.meetup-page > .meetup-category:nth-of-type(even) .meetup-showcase-card {
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 240, 0.92));
  border: 0.1rem solid rgba(215, 195, 154, 0.18);
}

.meetup-category__card--wide {
  max-width: 112rem;
}

.meetup-category__card-title {
  font-size: 2.2rem;
  line-height: 1.25;
  color: rgb(34, 54, 51);
}

.meetup-category__card-copy {
  color: rgb(70, 70, 70);
  font-size: 1.65rem;
  line-height: 1.7;
}

.meetup-category__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.meetup-category__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background-color: rgba(153, 180, 175, 0.18);
  border: 0.1rem solid rgba(153, 180, 175, 0.42);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(48, 78, 73);
}

.meetup-category__showcase {
  display: grid;
  gap: 1.8rem;
}

.meetup-showcase-card {
  display: grid;
  gap: 1.2rem;
  padding: 2.4rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)), rgb(255, 255, 255);
  border: 0.1rem solid rgba(210, 190, 165, 0.16);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.05);
}

.meetup-showcase-card__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.meetup-showcase-card__title {
  font-size: 2.3rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.meetup-showcase-card__copy {
  font-size: 1.6rem;
  line-height: 1.72;
  color: rgb(70, 70, 70);
}

.final-cta--flat {
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
}

@media screen and (min-width: 1000px) {
  .meetup-hero {
    grid-template-columns: minmax(0, 1.45fr) minmax(28rem, 38rem);
    align-items: end;
    padding: 6rem 4rem 7rem;
  }
  .meetup-hero__panel {
    justify-self: end;
    padding: 2.8rem;
  }
  .meetup-page {
    padding: 6rem 4rem 7.2rem;
  }
  .meetup-category {
    padding: 3.6rem 3rem;
  }
  .meetup-page__beliefs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .meetup-category__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .meetup-category__grid--amenities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .meetup-category__showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .meetup-category__showcase--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .meetup-category__visual--wide .meetup-category__image {
    height: clamp(28rem, 34vw, 42rem);
  }
  .meetup-hero__cta:hover {
    transform: translateY(-0.2rem);
    background-color: rgb(34, 54, 51);
    color: rgb(255, 255, 255);
  }
}
@media screen and (min-width: 1300px) {
  .meetup-hero {
    grid-template-columns: minmax(0, 58rem) minmax(28rem, 34rem);
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .meetup-hero__content,
  .meetup-hero__panel,
  .meetup-page__intro,
  .meetup-page__closing,
  .meetup-category__header,
  .meetup-category__card--wide {
    justify-self: center;
  }
  .meetup-page {
    justify-items: center;
  }
  .meetup-category {
    width: 100%;
    max-width: 118rem;
  }
  .meetup-page__intro,
  .meetup-page__closing {
    max-width: 108rem;
  }
  .meetup-page__closing {
    padding: 3.4rem 3rem;
    border-radius: 2.8rem;
    background: radial-gradient(circle at top center, rgba(153, 180, 175, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 240, 0.78)), rgb(255, 255, 255);
    border: 0.1rem solid rgba(153, 180, 175, 0.18);
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
  }
  .meetup-category__showcase,
  .meetup-category__grid {
    width: 100%;
  }
}
.about-hero {
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.6rem;
  padding: 4rem 2rem 5rem;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
}
.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 18rem;
  height: 18rem;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M52 160c7-8 10-18 9-29' stroke='%23f7efe6' stroke-width='1.9' stroke-linecap='round'/%3E%3Cpath d='M104 112c4-8 5-17 1-26' stroke='%23f7efe6' stroke-width='1.9' stroke-linecap='round'/%3E%3Cpath d='M136 73c10 1 18 6 25 13' stroke='%23f7efe6' stroke-width='1.9' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.about-hero::before {
  top: -3rem;
  left: -3rem;
}
.about-hero::after {
  right: -3rem;
  bottom: -3rem;
  transform: scaleX(-1) scaleY(-1);
}

.about-hero__content,
.about-story__content,
.about-events__intro,
.about-local__content,
.about-closing {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-hero__eyebrow,
.about-story__eyebrow,
.about-events__eyebrow,
.about-local__eyebrow,
.about-closing__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.about-hero__headline,
.about-story__headline,
.about-events__headline,
.about-local__headline,
.about-closing__headline {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.14rem;
  color: rgb(34, 54, 51);
}

.about-hero__copy,
.about-hero__note,
.about-story__copy,
.about-events__copy,
.about-local__copy,
.about-closing__copy,
.about-closing__signature {
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.about-hero__actions {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.8rem;
}

.about-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border-radius: 999px;
  background-color: rgb(48, 78, 73);
  color: rgb(255, 255, 255);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  box-shadow: 0 1.4rem 3rem rgba(48, 78, 73, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.about-hero__cta:focus-visible {
  background-color: rgb(34, 54, 51);
  color: rgb(255, 255, 255);
}

.about-hero__panel {
  display: grid;
  gap: 1rem;
  padding: 2.2rem;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.82);
  border: 0.1rem solid rgba(210, 190, 165, 0.14);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.about-hero__panel-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.about-hero__panel-title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.about-hero__panel-copy {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.about-page {
  grid-column: full-start/full-end;
  display: grid;
  gap: 4rem;
  padding: 4.8rem 2rem 6rem;
  background: rgb(250, 250, 248);
}

.about-story,
.about-events,
.about-local,
.about-closing {
  display: grid;
  gap: 2.4rem;
  padding: 2.8rem 2rem;
  border-radius: 2.8rem;
}

.about-story,
.about-closing {
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.about-story__eyebrow,
.about-story__headline,
.about-story__copy,
.about-closing__eyebrow,
.about-closing__headline,
.about-closing__copy,
.about-closing__signature {
  color: rgb(255, 255, 255);
}

.about-story__eyebrow,
.about-closing__eyebrow {
  color: rgba(249, 244, 240, 0.82);
}

.about-story__copy,
.about-closing__copy {
  color: rgba(255, 255, 255, 0.82);
}

.about-events,
.about-local {
  background: radial-gradient(circle at top center, rgba(153, 180, 175, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 240, 0.78)), rgb(255, 255, 255);
  border: 0.1rem solid rgba(153, 180, 175, 0.18);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

.about-story__media,
.about-local__media {
  overflow: hidden;
  border-radius: 2.2rem;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.12);
  min-height: 28rem;
}

.about-story__image,
.about-local__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.4rem;
}

.about-events__card,
.about-local__highlight {
  display: grid;
  gap: 0.8rem;
  padding: 1.8rem 1.6rem;
  border-radius: 1.8rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.16), transparent 32%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 240, 0.9));
  border: 0.1rem solid rgba(215, 195, 154, 0.2);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.05);
}

.about-events__item,
.about-local__highlight-value {
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(34, 54, 51);
}

.about-local__highlights {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.8rem;
}

.about-local__highlight-label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.about-closing__signature {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.6;
  color: rgb(249, 244, 240);
}

@media screen and (min-width: 1000px) {
  .about-hero {
    grid-template-columns: minmax(0, 1.45fr) minmax(28rem, 38rem);
    align-items: end;
    padding: 6rem 4rem 7rem;
  }
  .about-hero__panel {
    justify-self: end;
    padding: 2.8rem;
  }
  .about-page {
    padding: 6rem 4rem 7.2rem;
  }
  .about-story,
  .about-local {
    grid-template-columns: minmax(0, 1.08fr) minmax(28rem, 0.92fr);
    align-items: center;
  }
  .about-events,
  .about-closing {
    padding: 3.6rem 3rem;
  }
  .about-story,
  .about-events,
  .about-local,
  .about-closing {
    padding: 3.6rem 3rem;
  }
  .about-local__media {
    order: 2;
  }
  .about-local__content {
    order: 1;
  }
  .about-hero__cta:hover {
    transform: translateY(-0.2rem);
    background-color: rgb(34, 54, 51);
    color: rgb(255, 255, 255);
  }
}
@media screen and (min-width: 1300px) {
  .about-hero {
    grid-template-columns: minmax(0, 58rem) minmax(28rem, 34rem);
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .about-hero__content,
  .about-hero__panel {
    justify-self: center;
  }
  .about-page {
    justify-items: center;
  }
  .about-story,
  .about-events,
  .about-local,
  .about-closing {
    width: 100%;
    max-width: 118rem;
  }
  .about-events__intro,
  .about-closing {
    max-width: 78rem;
  }
}
.pricing-hero {
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.6rem;
  padding: 4rem 2rem 5rem;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
}
.pricing-hero::before,
.pricing-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 16rem;
  height: 16rem;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.pricing-hero::before {
  top: -2.2rem;
  left: -2.2rem;
}
.pricing-hero::after {
  right: -2.2rem;
  bottom: -2.2rem;
  transform: scaleX(-1) scaleY(-1);
}

.pricing-hero__content {
  display: grid;
  gap: 1.6rem;
  max-width: 70rem;
  position: relative;
  z-index: 1;
}

.pricing-hero__eyebrow,
.pricing-section__eyebrow,
.add-ons-section__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.pricing-hero__headline,
.pricing-section__headline,
.add-ons-section__headline {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.14rem;
  color: rgb(34, 54, 51);
}

.pricing-hero__copy,
.pricing-section__copy,
.add-ons-section__copy {
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.pricing-hero__actions {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.8rem;
}

.pricing-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border-radius: 999px;
  background-color: rgb(48, 78, 73);
  color: rgb(255, 255, 255);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  box-shadow: 0 1.4rem 3rem rgba(48, 78, 73, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.pricing-hero__cta:focus-visible {
  background-color: rgb(34, 54, 51);
  color: rgb(255, 255, 255);
}

.pricing-hero__note {
  font-size: 1.45rem;
  line-height: 1.7;
  color: rgb(48, 78, 73);
}

.pricing-hero__panel {
  display: grid;
  gap: 1rem;
  padding: 2.2rem;
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.82);
  border: 0.1rem solid rgba(210, 190, 165, 0.14);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.pricing-hero__panel-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.pricing-hero__panel-title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.pricing-hero__panel-copy {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.pricing-page {
  grid-column: full-start/full-end;
  display: grid;
  gap: 4rem;
  padding: 4.8rem 2rem 6rem;
  background: rgb(250, 250, 248);
}

.pricing-section,
.add-ons-section {
  display: grid;
  gap: 2.4rem;
  padding: 2.8rem 2rem;
  border-radius: 2.8rem;
}

.pricing-section {
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.pricing-section__eyebrow,
.pricing-section__headline,
.pricing-section__copy {
  color: rgb(255, 255, 255);
}

.pricing-section__eyebrow {
  color: rgba(249, 244, 240, 0.82);
}

.pricing-section__copy {
  color: rgba(255, 255, 255, 0.82);
}

.add-ons-section {
  background: radial-gradient(circle at top center, rgba(153, 180, 175, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 240, 0.78)), rgb(255, 255, 255);
  border: 0.1rem solid rgba(153, 180, 175, 0.18);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

.pricing-section__intro,
.add-ons-section__intro {
  display: grid;
  gap: 1.4rem;
  max-width: 76rem;
}

.pricing-section__grid,
.add-ons-section__grid {
  display: grid;
  gap: 1.8rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.4rem;
}

.pricing-card,
.add-on-card {
  display: grid;
  gap: 1.2rem;
  padding: 2.4rem;
  border-radius: 2.2rem;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.06);
}

.pricing-card {
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 240, 0.92));
  border: 0.1rem solid rgba(215, 195, 154, 0.22);
}

.add-on-card {
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.14), transparent 32%), linear-gradient(145deg, rgba(48, 78, 73, 0.98), rgba(34, 54, 51, 0.96));
  border: 0.1rem solid rgba(215, 195, 154, 0.2);
  padding: 2rem 1.9rem;
  gap: 0.9rem;
}

.amenity-card {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 1rem;
  min-height: 13rem;
  padding: 1.8rem 1.6rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top right, rgba(249, 244, 240, 0.1), transparent 34%), linear-gradient(145deg, rgba(48, 78, 73, 0.98), rgba(34, 54, 51, 0.98));
  border: 0.1rem solid rgba(215, 195, 154, 0.16);
  box-shadow: 0 1.2rem 2.8rem rgba(34, 54, 51, 0.14);
}

.amenity-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.4rem;
  background: linear-gradient(145deg, rgba(48, 78, 73, 0.96), rgb(34, 54, 51));
  box-shadow: inset 0 0.1rem 0.6rem rgba(255, 255, 255, 0.12), 0 0.8rem 1.8rem rgba(34, 54, 51, 0.2);
  font-size: 2rem;
  line-height: 1;
  color: rgb(255, 255, 255);
}

.amenity-card__icon-svg {
  width: 2.3rem;
  height: 2.3rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.amenity-card__title {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgb(255, 255, 255);
}

.pricing-card--featured {
  border-color: rgba(210, 190, 165, 0.32);
  box-shadow: 0 1.8rem 3.8rem rgba(0, 0, 0, 0.08);
}

.pricing-card__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.pricing-card__title,
.add-on-card__title {
  font-size: 2.2rem;
  line-height: 1.25;
  color: rgb(34, 54, 51);
}

.add-on-card__price {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  line-height: 1;
  color: rgba(249, 244, 240, 0.92);
}

.add-on-card__title,
.add-on-card__copy {
  color: rgb(255, 255, 255);
}

.pricing-card__price {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgb(48, 78, 73);
}

.pricing-card__copy {
  font-size: 1.6rem;
  line-height: 1.72;
  color: rgb(70, 70, 70);
}

.add-on-card__copy {
  font-size: 1.6rem;
  line-height: 1.72;
  color: rgb(255, 255, 255);
}

.pricing-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.4rem;
}

.pricing-card__detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background-color: rgba(153, 180, 175, 0.18);
  border: 0.1rem solid rgba(153, 180, 175, 0.42);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgb(48, 78, 73);
}

@media screen and (min-width: 1000px) {
  .pricing-hero {
    grid-template-columns: minmax(0, 1.45fr) minmax(28rem, 38rem);
    align-items: end;
    padding: 6rem 4rem 7rem;
  }
  .pricing-hero__panel {
    justify-self: end;
    padding: 2.8rem;
  }
  .pricing-page {
    padding: 6rem 4rem 7.2rem;
  }
  .pricing-section,
  .add-ons-section {
    padding: 3.6rem 3rem;
  }
  .pricing-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .add-ons-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pricing-hero__cta:hover {
    transform: translateY(-0.2rem);
    background-color: rgb(34, 54, 51);
    color: rgb(255, 255, 255);
  }
}
@media screen and (min-width: 1180px) {
  .amenities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1300px) {
  .pricing-hero {
    grid-template-columns: minmax(0, 58rem) minmax(28rem, 34rem);
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .pricing-hero__content,
  .pricing-hero__panel,
  .pricing-section__intro,
  .add-ons-section__intro {
    justify-self: center;
  }
  .pricing-page {
    justify-items: center;
  }
  .pricing-section,
  .add-ons-section {
    width: 100%;
    max-width: 118rem;
  }
  .add-ons-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.gallery-hero {
  grid-column: full-start/full-end;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.6rem;
  padding: 4rem 2rem 5rem;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
}
.gallery-hero::before,
.gallery-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 16rem;
  height: 16rem;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M22 178c12-22 34-40 54-44 22-5 35-17 40-34 4-14 0-28-11-39' stroke='%23f7efe6' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M67 146c-8-14-22-20-36-18' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M90 127c10-11 24-16 38-14' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M115 94c13-4 24-14 30-29' stroke='%23f7efe6' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='62' cy='145' r='4.5' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='96' cy='125' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3Ccircle cx='128' cy='93' r='4.2' fill='%23f7efe6' fill-opacity='.95'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.gallery-hero::before {
  top: -2.2rem;
  left: -2.2rem;
}
.gallery-hero::after {
  right: -2.2rem;
  bottom: -2.2rem;
  transform: scaleX(-1) scaleY(-1);
}

.gallery-hero__content {
  display: grid;
  gap: 1.6rem;
  max-width: 70rem;
  position: relative;
  z-index: 1;
}

.gallery-hero__eyebrow,
.gallery-section__eyebrow,
.gallery-video__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.gallery-hero__headline,
.gallery-section__headline,
.gallery-video__headline {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.14rem;
  color: rgb(34, 54, 51);
}

.gallery-hero__copy,
.gallery-section__copy,
.gallery-video__copy {
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.gallery-hero__actions {
  display: grid;
  gap: 1.2rem;
  padding-top: 0.8rem;
}

.gallery-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2.2rem;
  border-radius: 999px;
  background-color: rgb(48, 78, 73);
  color: rgb(255, 255, 255);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  box-shadow: 0 1.4rem 3rem rgba(48, 78, 73, 0.24);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.gallery-hero__cta:focus-visible {
  background-color: rgb(34, 54, 51);
  color: rgb(255, 255, 255);
}

.gallery-hero__note {
  font-size: 1.45rem;
  line-height: 1.7;
  color: rgb(48, 78, 73);
}

.gallery-hero__panel {
  display: grid;
  gap: 1rem;
  padding: 2.2rem;
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.82);
  border: 0.1rem solid rgba(210, 190, 165, 0.14);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.gallery-hero__panel-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.gallery-hero__panel-title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.gallery-hero__panel-copy {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgb(70, 70, 70);
}

.gallery-page {
  grid-column: full-start/full-end;
  display: grid;
  gap: 4rem;
  padding: 4.8rem 2rem 6rem;
  background: rgb(250, 250, 248);
}

.gallery-section,
.gallery-video {
  display: grid;
  gap: 2.4rem;
  padding: 2.8rem 2rem;
  border-radius: 2.8rem;
}

.gallery-section {
  background: radial-gradient(circle at top center, rgba(153, 180, 175, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 244, 240, 0.78)), rgb(255, 255, 255);
  border: 0.1rem solid rgba(153, 180, 175, 0.18);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

.gallery-video {
  background: linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.08);
}

.gallery-video__eyebrow,
.gallery-video__headline,
.gallery-video__copy {
  color: rgb(255, 255, 255);
}

.gallery-video__eyebrow {
  color: rgba(249, 244, 240, 0.82);
}

.gallery-video__copy {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-section__intro,
.gallery-video__intro {
  display: grid;
  gap: 1.4rem;
  max-width: 76rem;
}

.gallery-feature {
  display: grid;
  gap: 1.8rem;
  padding: 2rem;
  border-radius: 2.4rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.22), transparent 34%), linear-gradient(180deg, rgba(249, 244, 240, 0.98), rgba(250, 250, 248, 0.98));
  border: 0.1rem solid rgba(153, 180, 175, 0.42);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.06);
}

.gallery-feature__media {
  overflow: hidden;
  border-radius: 2rem;
  border: 0.1rem solid rgba(210, 190, 165, 0.16);
  background-color: rgba(255, 255, 255, 0.9);
}

.gallery-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-feature__content {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.gallery-feature__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  color: rgb(210, 190, 165);
}

.gallery-feature__title,
.gallery-video__title {
  font-size: 2.6rem;
  line-height: 1.2;
  color: rgb(34, 54, 51);
}

.gallery-feature__copy,
.gallery-video__text {
  font-size: 1.65rem;
  line-height: 1.75;
  color: rgb(70, 70, 70);
}

.gallery-video__panel {
  display: grid;
  gap: 1.8rem;
  padding: 2rem;
  border-radius: 2.4rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.18), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 240, 0.92));
  border: 0.1rem solid rgba(215, 195, 154, 0.22);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.06);
}

.gallery-video__media {
  display: block;
  width: 100%;
  border-radius: 2rem;
  background-color: rgb(34, 54, 51);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.14);
}

.gallery-video__details {
  display: grid;
  gap: 1rem;
  align-content: center;
}

@media screen and (min-width: 1000px) {
  .gallery-hero {
    grid-template-columns: minmax(0, 1.45fr) minmax(28rem, 38rem);
    align-items: end;
    padding: 6rem 4rem 7rem;
  }
  .gallery-hero__panel {
    justify-self: end;
    padding: 2.8rem;
  }
  .gallery-page {
    padding: 6rem 4rem 7.2rem;
  }
  .gallery-section,
  .gallery-video {
    padding: 3.6rem 3rem;
  }
  .gallery-feature,
  .gallery-video__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 2.8rem;
    padding: 2.6rem;
  }
  .gallery-feature--reverse .gallery-feature__media {
    order: 2;
  }
  .gallery-feature--reverse .gallery-feature__content {
    order: 1;
  }
  .gallery-hero__cta:hover {
    transform: translateY(-0.2rem);
    background-color: rgb(34, 54, 51);
    color: rgb(255, 255, 255);
  }
}
@media screen and (min-width: 1300px) {
  .gallery-hero {
    grid-template-columns: minmax(0, 58rem) minmax(28rem, 34rem);
    justify-content: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .gallery-hero__content,
  .gallery-hero__panel,
  .gallery-page {
    justify-self: center;
  }
  .gallery-page {
    justify-items: center;
  }
  .gallery-section,
  .gallery-video {
    width: 100%;
    max-width: 118rem;
  }
}
.legal-hero {
  grid-row: 2;
  grid-column: full-start/full-end;
  display: grid;
  gap: 1.6rem;
  padding: 4.2rem 2rem 4.8rem;
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.18), transparent 30%), linear-gradient(135deg, rgba(34, 54, 51, 0.98), rgba(48, 78, 73, 0.94));
}

.legal-hero__eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(249, 244, 240, 0.82);
}

.legal-hero__title {
  max-width: 72rem;
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  line-height: 0.98;
  color: rgb(255, 255, 255);
}

.legal-hero__copy {
  max-width: 68rem;
  font-size: 1.75rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.legal-content {
  grid-row: 3;
  grid-column: center-start/center-end;
  display: grid;
  gap: 2rem;
  padding: 3.6rem 0 5.6rem;
}

.legal-card {
  display: grid;
  gap: 2.2rem;
  padding: 2.4rem 2rem;
  border-radius: 2.2rem;
  border: 0.1rem solid rgba(215, 195, 154, 0.28);
  background: radial-gradient(circle at top right, rgba(215, 195, 154, 0.16), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 240, 0.9));
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.06);
}

.legal-card__section {
  display: grid;
  gap: 1rem;
}

.legal-card__title {
  font-size: 2.6rem;
  line-height: 1.1;
  color: rgb(34, 54, 51);
}

.legal-card__text,
.legal-card__list {
  font-size: 1.65rem;
  line-height: 1.8;
  color: rgb(70, 70, 70);
}

.legal-card__list {
  display: grid;
  gap: 0.9rem;
  padding-left: 1.8rem;
}

.legal-card__list li::marker {
  color: rgb(48, 78, 73);
}

.legal-card__link {
  color: rgb(48, 78, 73);
  text-decoration: underline;
  text-decoration-color: rgba(48, 78, 73, 0.45);
  text-underline-offset: 0.22rem;
}

.legal-card__meta {
  font-size: 1.45rem;
  line-height: 1.7;
  color: rgba(70, 70, 70, 0.84);
}

@media screen and (min-width: 1000px) {
  .legal-hero {
    padding: 5.2rem 4rem 5.8rem;
  }
  .legal-content {
    gap: 2.4rem;
    padding: 4.2rem 0 6.4rem;
  }
  .legal-card {
    padding: 3.2rem 3rem;
  }
}/*# sourceMappingURL=main.css.map */
