:root {
  --page-bg: #eff5fb;
  --paper: #fff;
  --text: #2f557a;
  --text-strong: #234c73;
  --button: #1d5488;
  --button-hover: #17466f;
  --line: #d7e0e9;
  --soft: #f5f5f5;
  --shadow: 0 4px 18px rgba(21, 50, 80, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.65;
}

a {
  color: var(--button);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--button-hover);
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.page-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
  background: var(--paper);
  min-height: 100vh;
}

.banner img,
.footer-banner {
  width: 100%;
}

.section {
  padding: 70px 30px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.intro-section {
  padding-top: 72px;
  padding-bottom: 82px;
}

.feature-section,
.location-section {
  padding-top: 82px;
}

.plan-section {
  align-items: center;
  padding-top: 62px;
  padding-bottom: 45px;
}

.copy {
  max-width: 520px;
}

h1,
h2 {
  margin: 0 0 28px;
  color: var(--text-strong);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

h1 {
  font-size: 25px;
}

h2 {
  font-size: 25px;
}

p {
  margin: 0 0 25px;
}

strong {
  color: var(--text-strong);
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  width: 198px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 0;
  border-radius: 2px;
  background: var(--button);
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}

.button:hover,
.button:focus {
  background: var(--button-hover);
  color: #fff;
  text-decoration: none;
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.shadowed-photo {
  box-shadow: var(--shadow);
}

.zoom-lens {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
}

.zoom-lens::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 5px solid rgba(68, 112, 142, 0.7);
  border-radius: 50%;
}

.zoom-lens::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 8px;
  width: 20px;
  height: 5px;
  border-radius: 8px;
  background: rgba(68, 112, 142, 0.7);
  transform: rotate(45deg);
  transform-origin: center;
}

.collage img {
  width: 100%;
}

.feature-list {
  margin: 0;
  padding-left: 22px;
}

.feature-list li {
  margin: 0 0 21px;
  padding-left: 6px;
}

.plan-copy {
  justify-self: end;
}

.plan-thumb {
  width: min(100%, 440px);
  margin: 0 0 24px;
}

.plan-thumb img {
  border: 1px solid var(--line);
}

.gallery-section {
  padding-top: 28px;
  padding-bottom: 70px;
}

.gallery-section h2 {
  margin-bottom: 22px;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 255px;
}

.slide img {
  width: 255px;
  height: 340px;
  object-fit: cover;
}

.location-section .image-stack img {
  width: 100%;
  box-shadow: var(--shadow);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 56px;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.slider-arrow {
  padding-bottom: 7px;
}

.slider-arrow:hover,
.slider-arrow:focus {
  background: rgba(0, 0, 0, 0.5);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.contact-section {
  padding-top: 70px;
  align-items: start;
}

.contact-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 22px;
  color: var(--text);
}

.contact-table th,
.contact-table td {
  padding: 9px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(29, 84, 136, 0.13);
}

.contact-table th {
  width: 180px;
  padding-right: 18px;
  color: var(--text-strong);
  font-weight: 700;
  white-space: nowrap;
}

.contact-table td {
  padding-left: 10px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form label {
  display: grid;
  gap: 0;
  color: #1b1b1b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.contact-form span {
  color: #b00020;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  background: #fff;
  color: rgba(0, 0, 0, 0.7);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 19px;
  box-shadow: none;
}

.contact-form input {
  height: 43px;
  padding: 10px 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 10px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.form-button {
  width: 198px;
  min-width: 198px;
  min-height: 38px;
  height: 38px;
  margin-top: 10px;
  padding-inline: 14px;
  border-radius: 2px;
  background: var(--button);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 17px;
  font-weight: 700;
}

.form-button:hover,
.form-button:focus {
  background: var(--button-hover);
}

.contact-price {
  margin-top: 24px;
}

.bottom-reservation {
  margin-top: 0;
}

.map-frame {
  display: block;
  width: 100%;
  border: 0;
}

.map-frame-tall {
  height: 700px;
}

.map-frame-contact {
  height: 325px;
  margin-top: 22px;
}

.site-footer {
  padding-top: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  min-height: 38px;
  padding: 8px 20px;
  text-align: center;
}

.legal-section {
  padding: 56px 30px 70px;
}

.legal-section h1 {
  font-size: 48px;
  margin-bottom: 28px;
}

.legal-section h2 {
  margin-top: 34px;
  margin-bottom: 12px;
}

.back-button {
  min-width: 196px;
}

.reservation-head {
  padding-bottom: 18px;
}

.reservation-frame {
  padding: 0 30px 70px;
}

.reservation-frame iframe {
  display: block;
  width: 100%;
  min-height: 2150px;
  border: 0;
  background: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 80px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
}

.lightbox button {
  position: absolute;
  border: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 38px;
  line-height: 44px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 76px;
  font-size: 58px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
  padding-bottom: 7px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-counter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 24px 6px;
  }

  .two-col,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .copy {
    max-width: none;
  }

  .intro-section {
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .feature-section,
  .location-section {
    padding-top: 20px;
  }

  .plan-section {
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .gallery-section {
    padding-top: 20px;
    padding-bottom: 26px;
  }

  .contact-section {
    padding-top: 22px;
  }

  .contact-table,
  .contact-table tbody,
  .contact-table tr,
  .contact-table th,
  .contact-table td {
    display: block;
    width: 100%;
  }

  .contact-table tr {
    padding: 8px 0;
    border-bottom: 1px solid rgba(29, 84, 136, 0.13);
  }

  .contact-table th,
  .contact-table td {
    padding: 0;
    border-bottom: 0;
  }

  .contact-table th {
    margin-bottom: 3px;
  }

  .plan-copy {
    justify-self: stretch;
  }

  h1,
  h2 {
    font-size: 25px;
    margin-bottom: 16px;
  }

  p {
    margin-bottom: 17px;
  }

  .feature-list li {
    margin-bottom: 13px;
    padding-left: 2px;
  }

  .button-row {
    gap: 14px;
    margin-top: 16px;
  }

  .button {
    width: 177px;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 16px;
  }

  .form-button {
    width: 177px;
    min-width: 177px;
    height: 34px;
    min-height: 34px;
    font-size: 16px;
  }

  .zoom-lens {
    right: 9px;
    bottom: 9px;
    width: 48px;
    height: 48px;
  }

  .zoom-lens::before {
    inset: 8px;
    border-width: 4px;
  }

  .zoom-lens::after {
    right: 7px;
    bottom: 7px;
    width: 17px;
    height: 4px;
  }

  .plan-thumb {
    width: 100%;
    margin-bottom: 0;
  }

  .gallery-section h2 {
    margin-bottom: 12px;
  }

  .legal-section h1 {
    font-size: 42px;
  }

  .slider-track {
    gap: 0;
    scroll-snap-type: x mandatory;
  }

  .slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  .location-section .map-frame,
  .contact-section .map-frame {
    width: 100%;
  }

  .map-frame-tall {
    height: 700px;
  }

  .map-frame-contact {
    height: 325px;
  }

  .footer-links {
    gap: 18px;
    min-height: 34px;
    padding: 6px 10px;
  }

  .legal-section {
    padding: 30px 6px 42px;
  }

  .reservation-head {
    padding-bottom: 14px;
  }

  .reservation-frame {
    padding: 0 6px 42px;
  }

  .reservation-frame iframe {
    min-height: 2150px;
  }

  .lightbox {
    padding: 64px 16px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 60px;
    font-size: 44px;
  }
}
