:root {
  --clr-maroon: #7a0f26;
  --clr-maroon-dark: #520718;
  --clr-rose: #b37b7f;
  --clr-gold: #c89c62;
  --clr-ink: #1f1f23;
  --clr-body: #4a4a52;
  --clr-cream: #f8f3ee;
  --clr-sand: #f0e6dc;
  --clr-white: #ffffff;
  --shadow-soft: 0 25px 60px rgba(32, 16, 15, 0.12);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-inter:
    "Inter", "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --nav-overlay-height: 160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--clr-body);
  /* background: linear-gradient(180deg, #fdfcfb, #f7f1ea 30%, #fdfbfa 60%); */
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.material-symbols {
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 5vw 1.5rem;
  background: transparent;
  border-bottom: none;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.85); */
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.95)
  );
  /* linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05)); */
  backdrop-filter: blur(14px);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.35); */
  z-index: -1;
}

.site-secondary-header {
  position: relative;
  top: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 5vw 1.5rem;
  background: transparent;
  border-bottom: none;
  isolation: isolate;
}

.site-secondary-header::before {
  content: "";
  position: absolute;
  inset: 0;

  /* background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.95)
  );
  
  backdrop-filter: blur(14px); */

  z-index: -1;
}

.logo-stack {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 88px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  flex-wrap: wrap;
  width: fit-content;
  margin: 0 auto;
}

.primary-nav a {
  padding-bottom: 0.2rem;
  position: relative;
  color: inherit;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.nav-logo img {
  width: 120px;
  height: auto;
}

.primary-nav a::after {
  display: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #910028;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ghost-btn {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 8vw;

  gap: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hero.is-visible {
  opacity: 1;
  transform: none;
}

.hero-media {
  position: absolute;
  top: calc(-1 * var(--nav-overlay-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/718493bc33822fbc3b9284dc56853c2455581ac2.gif")
    center/cover;
  z-index: -2;
  max-height: 700px;
}

.hero::after {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%); */
}

.hero-content {
  max-width: 900px;
}

.hero2 {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 8vw;
  gap: 2rem;
  position: relative;
  opacity: 1;
  transform: translateY(40px);
}

.hero2-media-about {
  position: absolute;
  top: calc(-1 * var(--nav-overlay-height));
  left: 0;
  right: 0;
  bottom: 0;

  background: url("assets/about-hero3.png") center/cover;
  z-index: -2;
  max-height: 450px;
}

.hero2::after {
  content: "";
  inset: 0;
  position: absolute;

  z-index: -1;
  /* clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%); */
}

.hero2-content {
  max-width: 900px;
}

.eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #910028;
  text-align: center;
  max-width: 1150px;
  margin: 0 auto 1rem;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
  max-width: 1150px;
  margin: 0 auto 1rem;
}

.lede {
  font-family: var(--font-inter);
  font-size: 1.125rem;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  max-width: 1150px;
  margin: 0 auto 2rem;
}

.booking-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
  padding: 24px;
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.04);
  align-items: end;
  /* width: min(100%, 1410px); */
  width: 1300px;
  min-height: 115px;
  margin: 0 auto;
}

.booking-input {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-input label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clr-ink);
}

.booking-input input {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--clr-ink);
}

.input-shell,
.counter-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: var(--clr-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.input-icon {
  font-size: 1.25rem;
  color: var(--clr-body);
}

.input-caret {
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.55);
}

.booking-input--date input {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-input--date input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.booking-input--date input::-moz-focus-inner {
  border: 0;
}

.booking-date-display {
  position: relative;
}

.booking-date-display span {
  pointer-events: none;
}

.booking-date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.booking-input--counter .counter-field {
  justify-content: center;
  gap: 0.1rem;
  padding: 0.5rem;
}

.booking-input--counter input {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  width: 1rem;
}

.booking-input input[type="number"]::-webkit-outer-spin-button,
.booking-input input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.booking-input input[type="number"] {
  -moz-appearance: textfield;
}

.counter-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000000;
  color: var(--clr-white);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.counter-btn:hover:not(:disabled) {
  background: var(--clr-maroon);
  transform: translateY(-1px);
}

.counter-btn.is-disabled,
.counter-btn:disabled {
  background: #d5d5d5;
  color: #7a7a7a;
  cursor: not-allowed;
  transform: none;
}

.booking-cta {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.booking-cta .primary-btn {
  width: 210px;
  max-width: 100%;
  min-height: 54px;
  height: 54px;
  border-radius: 8px;
  font-size: 0.95rem;
  padding: 18px 48px;
}

.primary-btn,
.secondary-btn {
  border-radius: var(--radius-md);
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.primary-btn {
  background: var(--clr-maroon);
  color: var(--clr-white);
}

.primary-btn:hover,
.primary-btn:focus-visible {
  background: #a99331;
}

.primary-btn.light {
  background: var(--clr-white);
  color: var(--clr-maroon);
}

.secondary-btn {
  border: 1px solid var(--clr-maroon);
  color: var(--clr-maroon);
  background: transparent;
}

.section {
  padding: 5rem 8vw;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.section.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes footerImageSlide {
  0% {
    transform: translateY(120px);
  }
  100% {
    transform: translateY(-160px);
  }
}

.footer-hero-img {
  animation: footerImageSlide 5s ease-out forwards;
  will-change: transform;
}

.testimonial-heading {
  /* position: relative;
  padding: 1rem 8vw 0;

  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--clr-white); */
  margin-bottom: 10rem;
  position: relative;
}

.testimonial-heading h2,
.testimonial-heading p {
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-heading::after {
  content: attr(data-word);
  position: absolute;
  top: 7rem;
  right: 50%;
  transform: translate(-50%, 40%);
  width: 40%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  transition: transform 0.85s ease;
}

.testimonials-mosaic.is-visible .testimonial-heading::after {
  transform: translate(-50%, -100%);
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--clr-ink);
  margin-bottom: 1rem;
}

.welcome-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 6rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.welcome-highlight::before {
  content: "ABOUT";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.welcome-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.welcome-highlight__content {
  padding: 2rem;
}

.welcome-highlight__eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #910028;
  max-width: 545px;
  margin-bottom: 1rem;
}

.welcome-highlight__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 2.6vw, 30px);
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  max-width: 545px;
  margin-bottom: 1.5rem;
}

/* Rooms and suites page styles */
.rooms-suites-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 6rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.rooms-suites-highlight::before {
  content: "ROOMS";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.rooms-suites-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.rooms-suites-highlight__content {
  padding: 2rem;
}

.rooms-suites-highlight__eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #910028;
  max-width: 545px;
  margin-bottom: 1rem;
}

.rooms-suites-highlight__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 2.6vw, 30px);
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  max-width: 545px;
  margin-bottom: 1.5rem;
}

.rooms-suites-highlight__lede {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #464646;
  max-width: 545px;
  margin-bottom: 1.75rem;
}

.rooms-suites-highlight__cta {
  letter-spacing: 0.12em;
}

.rooms-suites-highlight__media img {
  width: min(100%, 810px);
  height: auto;
  max-height: 440px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.comfort-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 13rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.comfort-highlight::before {
  content: "COMFORT";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.comfort-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.business2-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.business2-highlight::before {
  content: "BUSINESS";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.business2-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.wedding2-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 5rem auto 0;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.wedding2-highlight::before {
  content: "WEDDING";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.wedding2-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.fitness-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 5rem auto 0;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.fitness-highlight::before {
  content: "FITNESS";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.fitness-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.activities-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 5rem auto 0;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.activities-highlight::before {
  content: "ACTIVITIES";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.activities-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

/* Contact page layout */
.contact-panel {
  width: 100%;
  padding: 0 8vw 6rem;
  position: relative;
}

.contact-panel__inner {
  background: var(--clr-white);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: clamp(2.5rem, 4vw, 4rem);
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-panel__info,
.contact-panel__form {
  flex: 1 1 360px;
}

.contact-panel__eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-maroon);
  margin-bottom: 0.75rem;
}

.contact-panel__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1.25rem;
}

.contact-panel__lede {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.5;
  color: #464646;
  margin-bottom: 1.75rem;
}

.contact-panel__map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.contact-panel__details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-family: var(--font-inter);
  color: #2c2c2c;
}

.contact-panel__details a {
  color: var(--clr-maroon);
  font-weight: 600;
}

.contact-panel__form {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-panel__form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.contact-field span {
  font-family: var(--font-inter);
}

.contact-field input,
.contact-field textarea {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--clr-maroon);
  box-shadow: 0 0 0 3px rgba(145, 0, 40, 0.15);
  outline: none;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-panel__captcha {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f6f6f6;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  color: #2c2c2c;
}

.contact-panel__captcha input {
  width: 18px;
  height: 18px;
}

.contact-panel__captcha-badge {
  margin-left: auto;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7a7a7a;
}

.contact-panel__submit {
  width: 100%;
  max-width: 320px;
  align-self: flex-end;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .contact-panel__inner {
    padding: 2rem;
  }

  .contact-panel__form {
    padding: 1.5rem;
  }

  .contact-panel__captcha {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel__captcha-badge {
    margin-left: 0;
  }
}

.relax-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 13rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.relax-highlight::before {
  content: "RELAX";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.relax-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.slide-in-left {
  opacity: 0;
  animation: philosophySlideIn 0.9s ease-out forwards;
  animation-delay: 0.15s;
  will-change: transform, opacity;
}

.slide-in-right {
  opacity: 0;
  animation: philosophySlideInRight 0.9s ease-out forwards;
  animation-delay: 0.15s;
  will-change: transform, opacity;
}

.slide-in-top {
  opacity: 0;
  animation: philosophySlideInTop 0.9s ease-out forwards;
  animation-delay: 0.15s;
  will-change: transform, opacity;
}

.scale-down {
  opacity: 0;
  animation: bookingScaleDown 0.9s ease-out forwards;
  animation-delay: 0.25s;
  transform-origin: center;
  display: inline-block;
  will-change: transform, opacity;
}

.elegant-banner {
  --mask-height: 500px;
  width: 100%;
  max-width: 1920px;
  height: var(--mask-height);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.elegant-banner__image {
  width: 100%;
  height: auto;
  min-height: var(--mask-height);
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: translateY(0);
}

.elegant-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.elegant-banner__content {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  gap: 1.25rem;
}

.elegant-banner__eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ccc7b0;
}

.elegant-banner__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.elegant-banner__lede {
  font-family: var(--font-inter);
  font-size: 0.9rem;
  color: #f3f0e8;
  width: 100%;
}

.slide-up-image {
  animation: bannerReveal 12s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes philosophySlideIn {
  from {
    transform: translateX(-120vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes philosophySlideInRight {
  from {
    transform: translateX(120vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes philosophySlideInTop {
  from {
    transform: translateY(-20vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bookingScaleDown {
  from {
    transform: scale(1.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bannerReveal {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(var(--mask-height) - 100%));
  }
}

.welcome-highlight__lede {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #464646;
  max-width: 545px;
  margin-bottom: 1.75rem;
}

.welcome-highlight__cta {
  letter-spacing: 0.12em;
}

.welcome-highlight__media img {
  width: min(100%, 810px);
  height: auto;
  max-height: 440px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.rooms-overview,
.wedding-overview {
  position: relative;
  padding: 5rem 8vw 0;

  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--clr-white);
}

.rooms-overview::before {
  content: "ROOMS";
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(7rem, 28vw, 16rem);
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    transform 0.9s ease,
    opacity 0.9s ease;
}

.rooms-overview.is-visible::before {
  transform: translate(-50%, -30%);
  opacity: 1;
}

.wedding-overview::before {
  content: "WEDDING";
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(7rem, 28vw, 16rem);
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    transform 0.9s ease,
    opacity 0.9s ease;
}

.wedding-overview.is-visible::before {
  transform: translate(-50%, -30%);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .rooms-overview::before,
  .wedding-overview::before,
  .business-highlight::before {
    transition: none;
    transform: translate(-50%, -30%);
    opacity: 1;
  }

  .slide-up-image {
    animation: none;
    transform: translateY(0);
  }
}

.rooms-overview__heading {
  max-width: 655px;
  z-index: 1;
}

.rooms-overview__eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #910028;
  margin-bottom: 0.75rem;
}

.rooms-overview__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 34px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1.25rem;
}

.rooms-overview__lede {
  font-family: var(--font-inter);
  font-size: 18px;
  line-height: 1;
  color: #464646;
}

.rooms-overview__lede span {
  font-weight: 700;
}

.rooms-overview__carousel {
  overflow: hidden;
  z-index: 1;
}

.rooms-overview__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.8s ease;
  will-change: transform;
}

.rooms-overview__slide {
  flex: 0 0 clamp(220px, 28vw, 360px);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  transform: scale(0.92);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.rooms-overview__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms-overview__slide--highlight {
  aspect-ratio: 5 / 3;
  flex-basis: clamp(260px, 32vw, 420px);
}

.rooms-overview__slide--tall {
  aspect-ratio: 3 / 4;
}

.rooms-overview__slide.is-active {
  transform: scale(1.08);
  box-shadow: 0 25px 60px rgba(32, 16, 15, 0.25);
}

.rooms-overview__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  z-index: 1;
  padding-bottom: 2rem;
}

.rooms-overview__dots span {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

.rooms-overview__dots .is-active {
  background: var(--clr-maroon);
}

.parallax-panel {
  --parallax-shift: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center calc(50% + var(--parallax-shift));
  will-change: background-position;
  transition: background-position 0.2s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .parallax-panel {
    transition: none;
    background-position: center;
    --parallax-shift: 0px;
  }
}

@media (max-width: 960px) {
  .rooms-overview__track {
    gap: 1rem;
  }

  .rooms-overview__slide,
  .rooms-overview__slide--highlight {
    flex: 0 0 clamp(200px, 60vw, 320px);
  }
}

.rooms-overview {
  position: relative;
  padding: 5rem 8vw 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--clr-white);
}

.about {
  background: var(--clr-cream);
  border-radius: var(--radius-xl);
  margin: 0 4vw;
}

.business-highlight {
  background-color: white;
  position: relative;
  padding: 0.25rem 8vw 0;
  margin: 17rem auto 0;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.business-highlight::before {
  content: "BUSINESS";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 100%;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(6rem, 18vw, 220px);
  line-height: 0.7;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f6;
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: transform 0.85s ease;
}

.business-highlight.is-visible::before {
  transform: translate(-50%, -100%);
}

.business-highlight__content {
  padding: 2rem;
}

.business-highlight__eyebrow {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #910028;
  max-width: 545px;
  margin-bottom: 1rem;
}

.business-highlight__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 2.6vw, 30px);
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  max-width: 545px;
  margin-bottom: 1.5rem;
}

.business-highlight__lede {
  font-family: var(--font-inter);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: #464646;
  max-width: 545px;
  margin-bottom: 1.75rem;
}

.business-highlight__cta {
  letter-spacing: 0.12em;
}

.business-highlight__media img {
  width: min(100%, 810px);
  height: auto;
  max-height: 440px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.rooms .carousel,
.testimonials .carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel-track > * {
  flex: 0 0 min(320px, 100%);
  scroll-snap-align: start;
}

.room-card,
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.room-card img {
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.carousel-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--clr-white);
  box-shadow: var(--shadow-soft);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.media-card {
  position: relative;
}

.media-card img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--clr-maroon);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.icon-list li::before {
  content: "\2713";
  margin-right: 0.5rem;
  color: var(--clr-maroon);
}

.cta {
  background: linear-gradient(
    135deg,
    var(--clr-maroon),
    var(--clr-maroon-dark)
  );
  color: var(--clr-white);
  border-radius: var(--radius-xl);
  margin: 4rem 4vw;
  padding: 4rem;
}

.cta-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cta-icons span {
  font-size: 1.8rem;
}

.testimonial-card {
  text-align: left;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonials-mosaic {
  margin-top: clamp(5rem, 52vw, 40rem);

  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.testimonials-mosaic::after {
  content: "";
  position: absolute;
  inset: 10% auto auto 60%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(145, 0, 40, 0.12), transparent 70%);
  filter: blur(2px);
  z-index: -1;
}

.testimonials-mosaic__inner {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.testimonials-mosaic__header h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.5rem;
}

.testimonials-mosaic__lede {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.5;
  color: #464646;
  margin-bottom: 2rem;
  max-width: 420px;
}

.testimonials-mosaic__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.testimonials-mosaic__metric {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 150px;
}

.testimonials-mosaic__metric-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: #910028;
  letter-spacing: 0.05em;
}

.testimonials-mosaic__metric-value span {
  font-size: 1rem;
  color: #464646;
  letter-spacing: 0;
}

.testimonials-mosaic__metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b6b6b;
}

.testimonials-mosaic__cta .primary-btn {
  min-width: 220px;
  justify-content: center;
}

.testimonials-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.testimonial-tile {
  background: #fff;
  border-radius: 26px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-tile::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(145, 0, 40, 0.12);
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-tile__quote {
  font-family: var(--font-inter);
  font-size: 1rem;
  line-height: 1.5;
  color: #2c2c2c;
  margin-bottom: 1.25rem;
}

.testimonial-tile__author {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.testimonial-tile__author strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: #000;
}

.testimonial-tile--accent {
  background: linear-gradient(135deg, #910028, #c89c62);
  color: #fff;
}

.testimonial-tile--accent::before {
  color: rgba(255, 255, 255, 0.35);
}

.testimonial-tile--accent .testimonial-tile__quote,
.testimonial-tile--accent .testimonial-tile__author,
.testimonial-tile--accent .testimonial-tile__author strong {
  color: #fff;
}

[data-faq-answer][hidden] {
  display: none !important;
}

.faq .accordion {
  display: grid;
  gap: 1rem;
}

.accordion-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--clr-white);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  position: relative;
}

.accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
}

.accordion-item.open .accordion-trigger::after {
  content: "\2013";
}

.accordion-panel {
  max-height: 0;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem;
}

.accordion-item.open .accordion-panel {
  max-height: 200px;
  padding-bottom: 1rem;
}

.final-cta {
  text-align: center;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  margin: 4rem 4vw;
}

.site-footer {
  background: var(--clr-maroon-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 8vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.newsletter input {
  flex: 1;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: none;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-top {
  color: var(--clr-cream);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .primary-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 7rem;
  }

  .section {
    padding: 4rem 6vw;
  }

  .testimonials-mosaic__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .hero::after {
    clip-path: none;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .cta,
  .about,
  .final-cta {
    margin: 0;
    border-radius: 0;
  }

  .testimonials-mosaic {
    margin-top: 32rem;
    border-radius: 24px;
  }

  .testimonials-mosaic__metrics {
    flex-direction: column;
  }

  .footer-base {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .carousel-track,
  .accordion-panel {
    scroll-behavior: smooth;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.booking-modal[hidden] {
  display: none !important;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.booking-modal__panel {
  position: relative;
  width: min(640px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--clr-white, #fff);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.booking-modal__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--clr-maroon, #910028);
  margin-bottom: 0.35rem;
}

.booking-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(0, 0, 0, 0.04);
}

.booking-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-modal__summary {
  background: var(--clr-cream, #f8f3ee);
  border-radius: 20px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.booking-modal__summary-item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-body, #4a4a52);
}

.booking-modal__summary-item strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.1rem;
  color: var(--clr-ink, #1f1f23);
}

.booking-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-modal__form-row {
  display: flex;
  gap: 1rem;
}

.booking-modal__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--clr-body, #4a4a52);
}

.booking-modal__field input,
.booking-modal__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font: inherit;
  background: var(--clr-white, #fff);
}

.booking-modal__field textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-modal__actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .booking-modal {
    padding: 1rem;
  }

  .booking-modal__panel {
    padding: 1.5rem;
  }

  .booking-modal__form-row {
    flex-direction: column;
  }
}
