:root {
  --paper: #f6f4ec;
  --ink: #263d2c;
  --muted: #74786a;
  --line: #dedfd2;
  --lime: #d4e3aa;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
}
body.locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b08343;
  outline-offset: 5px;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button {
  border: 0;
}
::selection {
  background: var(--lime);
}
.wrap {
  max-width: 1320px;
  margin: auto;
  padding-inline: 58px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow:before {
  content: "";
  width: 23px;
  height: 1px;
  background: currentColor;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h2 {
  font-size: clamp(35px, 4vw, 54px);
  line-height: 1.16;
  letter-spacing: -1.7px;
}
h2 em,
h1 em {
  font-weight: 400;
}
p {
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.25s,
    transform 0.25s;
}
.btn:hover {
  background: #405c38;
  transform: translateY(-2px);
}
.btn.light {
  background: var(--lime);
  color: var(--ink);
}
.btn.light:hover {
  background: #e2edc9;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid;
  padding-bottom: 7px;
}
.ornament {
  display: flex;
  gap: 8px;
  color: #859270;
  align-items: center;
}
.ornament span {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}
.ornament span:nth-child(3) {
  width: 11px;
  height: 11px;
  background: currentColor;
}
.header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.logo {
  display: flex;
  gap: 12px;
  align-items: center;
}
.logo svg {
  width: 44px;
  height: 49px;
}
.logo strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.8px;
}
.logo small {
  display: block;
  font-size: 8px;
  letter-spacing: 2.2px;
  margin-top: 7px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 29px;
  font-size: 12px;
}
.nav a {
  position: relative;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--ink);
  transition: right 0.25s;
}
.nav a:hover:after {
  right: 0;
}
.header .btn {
  padding: 12px 20px;
}
.menu-toggle {
  display: none;
  background: transparent;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}
.hero {
  position: relative;
  min-height: 650px;
  height: calc(100svh - 116px);
  max-height: 830px;
  margin: 0 22px;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #334f39;
  color: white;
}
.hero > img {
  position: absolute;
  inset: 0;
  object-position: center 55%;
  animation: heroZoom 1.7s ease-out both;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 33, 23, 0.78),
      rgba(15, 33, 23, 0.31) 65%,
      rgba(15, 33, 23, 0.18)
    ),
    linear-gradient(0deg, rgba(15, 33, 23, 0.45), transparent 40%);
}
.hero > .wrap:not(.hero-bottom) {
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 780px;
  padding: 35px 0 70px;
  animation: enter 1s 0.15s both;
}
.hero .eyebrow {
  color: #e0e8d0;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: 1.08;
  letter-spacing: -3px;
}
.hero h1 em {
  color: #dce7ba;
}
.hero p {
  max-width: 380px;
  color: #e4e7dd;
  font-size: 14px;
  margin: 25px 0 30px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}
.hero-actions .text-link {
  color: #fff;
  border-color: #ffffff70;
}
.hero-bottom {
  position: absolute;
  bottom: 29px;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.6px;
}
.location {
  display: flex;
  gap: 9px;
  align-items: center;
}
.hero-note {
  border: 1px solid #ffffff42;
  backdrop-filter: blur(8px);
  padding: 10px 15px;
  border-radius: 4px;
}
.hero-note span {
  color: #d3e4a7;
  margin-right: 8px;
}
.scroll-link {
  display: flex;
  gap: 12px;
  align-items: center;
}
.scroll-link i {
  font-style: normal;
  font-size: 18px;
}
.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  font-size: 11px;
}
.features div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.features svg {
  height: 22px;
  width: 22px;
  stroke: #65734b;
  fill: none;
  stroke-width: 1.4;
}
.features .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a5ab94;
}
section {
  padding: 100px 0;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-art {
  position: relative;
  padding: 0 35px 27px 0;
}
.about-photo {
  height: 490px;
  border-radius: 140px 5px 5px 5px;
  overflow: hidden;
}
.about-photo img {
  object-position: 47% center;
}
.stamp {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 142px;
  height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid #a6af8e;
  outline: 8px solid var(--paper);
  transform: rotate(9deg);
}
.stamp strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
}
.stamp span {
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.stamp svg {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
}
.about .eyebrow {
  margin-bottom: 23px;
}
.about h2 {
  margin-bottom: 25px;
}
.about p {
  font-size: 13px;
  margin-bottom: 18px;
  max-width: 420px;
}
.about .ornament {
  margin-top: 29px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 34px;
  gap: 30px;
}
.section-heading .eyebrow {
  margin-bottom: 19px;
}
.section-heading > p {
  font-size: 12px;
  max-width: 290px;
}
.experiences {
  padding-top: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.card .photo {
  height: 325px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  background: #dbe0cc;
}
.card img {
  transition: transform 0.7s;
}
.card:hover img {
  transform: scale(1.04);
}
.card .number {
  position: absolute;
  top: 16px;
  left: 16px;
  color: white;
  border: 1px solid #ffffff80;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  font-size: 10px;
  background: #263d2c30;
}
.card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.card h3 {
  font-size: 25px;
  letter-spacing: -0.6px;
}
.card p {
  font-size: 12px;
  margin-top: 9px;
  max-width: 330px;
}
.gather {
  background: #e9eddf;
  position: relative;
  overflow: hidden;
}
.gather-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.gather .eyebrow {
  margin-bottom: 22px;
}
.gather p {
  font-size: 13px;
  max-width: 380px;
  margin: 23px 0;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 380px;
  margin-bottom: 28px;
}
.tags span {
  font-size: 10px;
  padding: 6px 12px;
  border: 1px solid #bdc6aa;
  border-radius: 30px;
}
.gather-image {
  height: 425px;
  position: relative;
}
.gather-image img {
  border-radius: 5px 100px 5px 5px;
}
.image-caption {
  position: absolute;
  bottom: 22px;
  left: -26px;
  padding: 17px 22px;
  background: var(--paper);
  box-shadow: 0 8px 30px #263d2c12;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  transform: rotate(-4deg);
}
.image-caption span {
  color: #8d986b;
  margin-right: 12px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 250px;
  gap: 18px;
}
.gallery-button {
  padding: 0;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  background: #dbe0cc;
}
.gallery-button img {
  transition:
    transform 0.6s,
    filter 0.6s;
}
.gallery-button:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.gallery-button:after {
  content: "↗";
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--paper);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-button:hover:after,
.gallery-button:focus-visible:after {
  opacity: 1;
}
.photo-disclaimer {
  font-size: 10px;
  margin-top: 13px;
  color: #8a8d80;
}
.faq-section {
  padding-top: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.faq-grid .eyebrow {
  margin-bottom: 20px;
}
.faq-grid h2 {
  max-width: 310px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-size: 13px;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 12px;
  padding: 0 30px 23px 0;
}
details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact {
  padding: 0 22px;
}
.contact-panel {
  border-radius: 7px;
  background: var(--ink);
  color: var(--paper);
  padding: 64px 58px;
  position: relative;
  overflow: hidden;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.contact .eyebrow {
  color: #c3d2ad;
  margin-bottom: 20px;
}
.contact h2 {
  font-size: 52px;
}
.contact p {
  color: #c0cbb9;
  font-size: 12px;
  margin-top: 20px;
}
.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-actions small {
  color: #bdcbb5;
  font-size: 10px;
}
.contact-info {
  border-top: 1px solid #ffffff25;
  margin-top: 43px;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}
.contact-info strong {
  font-weight: 500;
}
.contact-info small {
  display: block;
  color: #b4c3a8;
  font-size: 10px;
  margin-top: 4px;
}
.contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer {
  padding-top: 42px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer .logo strong {
  font-size: 21px;
}
.footer .logo svg {
  width: 35px;
}
.footer .logo small {
  font-size: 7px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 10px;
  color: var(--muted);
}
.socials {
  display: flex;
  gap: 18px;
  color: var(--ink);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 17px 0 25px;
  display: flex;
  justify-content: space-between;
  color: #929587;
  font-size: 9px;
}
.lightbox {
  max-width: min(1000px, 94vw);
  max-height: 92svh;
  padding: 0;
  border: 0;
  background: #17231c;
  color: white;
  border-radius: 6px;
}
.lightbox::backdrop {
  background: #0d1913e8;
  backdrop-filter: blur(7px);
}
.lightbox img {
  max-height: 78svh;
  width: 100%;
  height: auto;
  object-fit: contain;
  min-height: 150px;
}
.lightbox-caption {
  padding: 15px 60px 15px 20px;
  font-size: 12px;
  color: #e5e9dd;
}
.close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--paper);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroZoom {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1500px) {
  .hero .wrap {
    max-width: 1320px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    padding-inline: 35px;
  }
  .nav {
    gap: 18px;
  }
  .about {
    gap: 50px;
  }
  .gather-grid {
    gap: 45px;
  }
  .hero {
    min-height: 600px;
  }
  .card .photo {
    height: 280px;
  }
  .contact-panel {
    padding: 55px 35px;
  }
  .contact h2 {
    font-size: 44px;
  }
  .faq-grid {
    gap: 45px;
  }
  .footer {
    padding-top: 35px;
    padding-bottom: 25px;
  }
}
@media (max-width: 800px) {
  .header {
    height: 80px;
  }
  .header > .btn {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    z-index: 10;
    padding: 20px 35px 30px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 20px #263d2c10;
    flex-direction: column;
    font-size: 16px;
    gap: 18px;
  }
  .nav.open {
    display: flex;
  }
  .hero {
    margin: 0 12px;
    min-height: 650px;
    max-height: 800px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-note {
    display: none;
  }
  .features {
    flex-wrap: wrap;
    justify-content: start;
    gap: 18px 30px;
  }
  .features .dot {
    display: none;
  }
  .features div {
    width: calc(50% - 15px);
  }
  section {
    padding: 75px 0;
  }
  .about {
    gap: 30px;
  }
  .about-photo {
    height: 430px;
    border-top-left-radius: 100px;
  }
  .about-art {
    padding-right: 15px;
  }
  .stamp {
    width: 115px;
    height: 115px;
  }
  .stamp strong {
    font-size: 34px;
  }
  .about h2 {
    font-size: 35px;
  }
  .cards {
    gap: 15px;
  }
  .card .photo {
    height: 240px;
  }
  .card h3 {
    font-size: 21px;
  }
  .gather-grid {
    gap: 30px;
  }
  .gather-image {
    height: 400px;
  }
  .gallery-grid {
    grid-template-rows: 210px;
  }
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }
  .contact-top {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }
  .contact-actions {
    align-items: start;
  }
  .contact-info {
    flex-wrap: wrap;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer-right {
    gap: 20px;
  }
  .section-heading > p {
    max-width: 230px;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding-left: 23px;
    padding-right: 23px;
  }
  .header {
    gap: 9px;
    height: 76px;
  }
  .logo {
    gap: 8px;
  }
  .logo strong {
    font-size: 21px;
  }
  .logo svg {
    width: 34px;
    height: 42px;
  }
  .logo small {
    font-size: 6px;
    letter-spacing: 1.6px;
  }
  .header > .btn {
    padding: 10px 12px;
    font-size: 10px;
  }
  .menu-toggle {
    padding: 7px;
  }
  .nav {
    top: 76px;
    padding-left: 25px;
  }
  .hero {
    height: calc(100svh - 88px);
    min-height: 600px;
    max-height: 780px;
  }
  .hero .wrap {
    padding: 0 22px;
  }
  .hero h1 {
    font-size: clamp(43px, 11.9vw, 65px);
    letter-spacing: -1.9px;
    line-height: 1.14;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.8px;
    margin-bottom: 23px;
  }
  .hero p {
    font-size: 12px;
    max-width: 275px;
    margin: 23px 0 28px;
  }
  .hero-copy {
    padding-bottom: 60px;
  }
  .hero-actions {
    gap: 22px;
    align-items: start;
    flex-direction: column;
  }
  .hero-actions .btn {
    padding: 14px 19px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-bottom {
    bottom: 22px;
    font-size: 9px;
  }
  .scroll-link {
    font-size: 0;
    gap: 0;
  }
  .scroll-link i {
    font-size: 22px;
  }
  .hero > img {
    object-position: 60% center;
  }
  .features {
    padding: 23px 0;
    gap: 17px 15px;
    font-size: 9px;
  }
  .features div {
    width: calc(50% - 8px);
    gap: 8px;
  }
  .features svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
  }
  section {
    padding: 62px 0;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-art {
    padding-right: 28px;
  }
  .about-photo {
    height: 360px;
    border-top-left-radius: 110px;
  }
  .stamp {
    right: 1px;
  }
  .about h2 {
    font-size: 39px;
  }
  .about p {
    max-width: none;
  }
  .about .ornament {
    margin-top: 23px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading > p {
    margin-top: 18px;
    max-width: 300px;
  }
  .section-heading > .text-link {
    margin-top: 20px;
  }
  h2 {
    font-size: 38px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .card .photo {
    height: 310px;
  }
  .card h3 {
    font-size: 27px;
  }
  .card-title {
    margin-top: 15px;
  }
  .card p {
    max-width: none;
  }
  .gather-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .gather-image {
    height: 340px;
    margin-left: 12px;
  }
  .image-caption {
    left: -12px;
    font-size: 17px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 170px;
    gap: 12px;
  }
  .gallery-button:first-child {
    grid-column: 1/-1;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-grid h2 {
    max-width: none;
  }
  .contact {
    padding: 0 12px;
  }
  .contact-panel {
    padding: 39px 23px;
  }
  .contact h2 {
    font-size: 39px;
  }
  .contact-info {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    padding-top: 24px;
  }
  .footer {
    padding-top: 30px;
    gap: 25px;
  }
  .footer-right {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 9px;
  }
  .footer-bottom {
    gap: 20px;
    font-size: 8px;
  }
  .footer-bottom > span:last-child {
    text-align: right;
  }
  .photo-disclaimer {
    font-size: 9px;
  }
  .eyebrow {
    font-size: 9px;
  }
}

.amenities {
  padding-top: 0;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity {
  padding: 27px 23px;
  background: #e9eddf;
  border: 1px solid #dce2d1;
  border-radius: 7px;
}
.amenity > img {
  height: 185px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.amenity-mark {
  font-family: var(--serif);
  font-size: 29px;
  color: #7d8d62;
  margin-bottom: 20px;
}
.amenity h3 {
  font-size: 27px;
  margin-bottom: 12px;
}
.amenity p {
  font-size: 12px;
  line-height: 1.9;
}
.amenities-note {
  font-size: 11px;
  margin-top: 20px;
}
.map-section {
  padding-top: 0;
}
.map-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 45px;
  align-items: center;
}
.map-copy .eyebrow {
  margin-bottom: 20px;
}
.map-copy h2 {
  margin-bottom: 24px;
}
.map-copy address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
}
.map-copy p {
  font-size: 12px;
  margin-top: 18px;
  max-width: 310px;
}
.map-frame {
  border-radius: 8px;
  overflow: hidden;
  background: #e9eddf;
  border: 1px solid var(--line);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 410px;
  border: 0;
}
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
  grid-auto-rows: 250px;
}
@media (max-width: 800px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .map-copy p {
    max-width: none;
  }
  .gallery-grid {
    grid-auto-rows: 210px;
  }
}
@media (max-width: 560px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .amenity {
    padding: 23px;
  }
  .amenity-mark {
    float: right;
    margin: 0 0 10px 15px;
  }
  .map-frame iframe {
    height: 340px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 170px;
  }
  .gallery-button:first-child {
    grid-column: auto;
  }
}
.stamp {
  width: 150px;
  height: 150px;
  padding: 20px 12px;
  gap: 7px;
  transform: none;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}
.stamp svg {
  display: none;
}
.stamp span {
  display: block;
  white-space: nowrap;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 1.5px;
}
.stamp strong {
  display: block;
  white-space: nowrap;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1px;
}
@media (max-width: 800px) {
  .stamp {
    width: 126px;
    height: 126px;
    padding: 16px 10px;
    gap: 6px;
  }
  .stamp strong {
    font-size: 32px;
  }
  .stamp span {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
