/* =========================================================
   SITE HEADER — compact cream/white bar
   ========================================================= */
.site-header {
  width: 100%;
  background: #fbfdff;
  padding: 0.6rem 2.2rem;
  position: relative;
  z-index: 10;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  transform: translateY(100%);
  background: linear-gradient(to bottom, #fbfdff 0%, transparent 100%);
  pointer-events: none;
}
.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
/* Title centred, matching original style but smaller */
.site-header__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  pointer-events: none;
}
.site-header__main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1.2em;
  padding-left: 1.2em;
  text-transform: uppercase;
  color: #000000;
  text-shadow: none;
}
.site-header__sub {
  font-family: var(--font-display);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 1.4em;
  padding-left: 1.4em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 0.3rem;
  opacity: 1;
  text-shadow: none;
}

/* =========================================================
   MAYSHELS BESPOKE — style.css
   ========================================================= */

:root {
  --gold:       #C9A84C;
  --gold-light: #e8c97a;
  --dark:       #0d0b09;
  --dark-2:     #13110e;
  --cream:      #f4efe6;
  --cream-2:    #ebe3d0;
  --white:      #ffffff;
  --text:       #1e1a15;
  --muted:      #7a7060;

  --font-display: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-ui:      'Raleway', sans-serif;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--dark); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ----- Button ----- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background:transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover {
    background: var(--gold);
    color: var(--dark); /* This forces the text to become black/dark */
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(201,168,76,0.3);
}
.btn--full  { width: 100%; text-align: center; display: block; }
.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}



/* =========================================================
   HERO — full screen
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 5rem;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 1;
/* Adds 30% more brightness */
  filter: brightness(0.95);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(13,11,9,0.0) 0%, rgba(13,11,9,0.2) 100%),
    linear-gradient(to bottom, rgba(13,11,9,0.02) 0%, rgba(13,11,9,0.32) 100%);
}

/* ── Hero centre copy ── */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
  margin-top: 0;
}
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d4a83a;
  margin-top: -2rem;
  margin-bottom: 3rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  animation: fadeIn 1s 0.25s both;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 24px rgba(0,0,0,0.5),
    0 0 60px rgba(180,130,20,0.3);
}
.hero__dot {
  font-size: 1.8rem;
  color: #C9A84C;
  letter-spacing: 0;
  vertical-align: middle;
  line-height: 1;
}
@media (max-width: 1200px) {
  .hero__eyebrow { color: var(--white); }
  .hero__dot { color: #fff; }
}
/* hero-bg (≤1024px): always hide — man is centred in the portrait image and
   the eyebrow lands at face level on every phone/tablet size */
@media (max-width: 1024px) {
  .hero__eyebrow { display: none; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 24px rgba(0,0,0,0.5),
    0 0 60px rgba(180,130,20,0.3);
  animation: fadeIn 1s 0.4s both;
}
.hero__title em { color: var(--white); font-style: italic; }
.hero__title-gold { color: #d4a83a; }

.hero__tagline {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 550;
  color: rgb(255, 255, 255);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  animation: fadeIn 1s 0.55s both;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 4px 24px rgba(0,0,0,0.5),
    0 0 60px rgba(180,130,20,0.3);
}
.hero__content .btn {
  animation: fadeIn 1s 0.7s both;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  width: 260px;
  text-align: center;
}
.hero__content .btn:hover {
  background: var(--gold);
  color: #000000;
  text-shadow: none;
}


@media (min-width: 1025px) {
  .hero__content {
    transform: translateX(5rem);
  }
}

/* =========================================================
   FOOTER — compact strip
   ========================================================= */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 4rem 1.2rem;
}

.footer__inner {
  display: grid;
  /* coat of arms | signature | about | contact */
  grid-template-columns: 1fr 1.6fr 1.4fr 1.9fr;
  gap: 2.5rem;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}

/* Col 1 — Coat of arms, centred in its column */
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__coa {
  width: 185px;
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.6));
}

/* Col 2 — Signature, full column, vertically centred with a gold border accent */
.footer__sig-col {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(201,168,76,0.25);
  border-right: 1px solid rgba(201,168,76,0.25);
  padding: 1rem 0rem;
}
.footer__sig {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: invert(1) brightness(0.95);
  opacity: 1.95;
}

/* Column headings */
.footer__heading {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.footer__text {
  font-size: 1.05rem;
  color: rgba(244,239,230,0.5);
  line-height: 1.8;
  font-weight: 300;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.footer__contact li {
  font-size: 1.02rem;
  color: rgba(244,239,230,0.5);
  line-height: 1.55;
}
.footer__contact a { color: rgba(244,239,230,0.65); transition: color 0.3s; }
.footer__contact a:hover { color: var(--gold); }
.footer__hours {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted) !important;
}

.footer__cta {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
  border-top: none;
  border-left: none;
  border-right: none;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.footer__cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* About Us column — a little breathing room either side */
.footer__inner > div:nth-child(3) {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

/* Gold divider between About and Contact columns */
.footer__col + .footer__col {
  border-left: 1px solid rgba(201,168,76,0.25);
  padding-left: 2.5rem;
}

.footer__reviews-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 2rem 0;
  margin-top: 0.8rem;
}
.footer__reviews-bar-stars {
  font-size: 0.65rem;
  color: #b8861a;
  letter-spacing: 0.15em;
}
.footer__reviews-bar-link {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer__reviews-bar-link:hover {
  color: rgba(255,255,255,0.9);
}
.footer__copy {
  max-width: 1500px;
  margin: 1rem auto 0;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.445);
  text-align: center;
}

/* =========================================================
   BOOKING PAGE
   ========================================================= */
.booking-page {
  background: var(--cream);
  min-height: 100vh;
}

.back-link {
  position: fixed;
  top: 1.6rem;
  left: 2rem;
  z-index: 50;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.back-link:hover { color: var(--gold); }

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left panel */
.booking-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
}
.booking-panel__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  position: absolute;
  inset: 0;
}
.booking-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,11,9,0.05) 0%, rgba(13,11,9,0.38) 100%);
}

/* CHANGED: Aligns both items to the bottom (flex-end) and to the left (flex-start) */
.booking-panel__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;    /* Aligns everything to the left */
  justify-content: flex-end;  /* Pushes everything to the bottom */
  gap: 1.5rem;                /* Sets clean spacing between COA and the quote */
  text-align: left;
}


.booking-panel__sig {
  width: 180px;
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  animation: fadeIn 1s 0.2s both;
}

.booking-form__coa {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto -2rem;
  transform: translateY(-4rem);
  mix-blend-mode: multiply;
  filter: brightness(0.95) sepia(1) saturate(1.4) contrast(1.3);
  animation: fadeInFormCoa 1.5s 0.2s both;
}


/* Quote — Nestles directly below the coat of arms */
.booking-panel__quote {
  font-family: var(--font-body);
  font-size: 1.9rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  max-width: 320px;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  text-align: left;
  /* ADD THIS LINE BELOW */
  animation: fadeIn 1s 0.4s both; /* Fades in smoothly right after the COA */
}
.booking-panel__quote em { color: var(--gold-light); }

.booking-panel__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
}
.booking-panel__quote-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}


/* Right panel — form */
.booking-form-wrap {
  background: var(--cream);
  overflow-y: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 6rem 4rem 5rem;
}
.booking-form-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.form-title em { font-style: italic; color: var(--gold); }

.form-intro {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

form { display: flex; flex-direction: column; gap: 1.2rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #ddd4c0;
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  appearance: none;
  transition: border-color 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.booking-form-inner .btn--full {
  color: #816012;
  font-weight: 900;
  border-color: #8a6818;
}
.booking-form-inner .btn--full:hover {
  background: #8a6818;
  color: var(--white);
}

.form-note {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  color: var(black);
  text-align: center;
  margin-top: -0.4rem;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  flex: 1;
  padding: 10rem 0 3rem;
}
.form-success__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.form-success h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.form-success p {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 400;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(13,11,9,0.75);
  color: #25D366;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  border: 1px solid #25D366;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.8s ease, border-radius 0.8s ease, gap 0.8s ease, color 0.8s ease, border-color 0.8s ease, opacity 0.8s ease, width 0.8s ease, height 0.8s ease;
  backdrop-filter: blur(8px);
  animation: whatsappPopIn 0.6s ease 3s both;
}
@keyframes whatsappPopIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}
.whatsapp-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.whatsapp-btn__text {
  overflow: hidden;
  white-space: nowrap;
  max-width: 200px;
  opacity: 1;
  transform: translateX(0);
  transition: max-width 0.8s ease, opacity 0.7s ease, margin 0.8s ease, transform 0.8s ease;
}
.whatsapp-btn.collapsed {
  padding: 0.85rem;
  border-radius: 50%;
  gap: 0;
  width: 48px;
  height: 48px;
  justify-content: center;
}
.whatsapp-btn.collapsed .whatsapp-btn__text {
  max-width: 0;
  opacity: 0;
  margin: 0;
  transform: translateX(40px);
}
.whatsapp-btn.collapsed:hover {
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  gap: 0.6rem;
  width: auto;
  height: auto;
}
.whatsapp-btn.collapsed:hover .whatsapp-btn__text {
  max-width: 200px;
  opacity: 1;
  margin: 0;
  transform: translateX(0);
}
/* Curved "CHAT WITH US" label around the outside of the collapsed circle */
.whatsapp-btn__label {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
  pointer-events: none;
}
.whatsapp-btn.collapsed .whatsapp-btn__label {
  opacity: 1;
}
.whatsapp-btn.collapsed:hover .whatsapp-btn__label {
  opacity: 0;
  transition: opacity 0s;
}

.whatsapp-btn.scrolled {
  color: rgba(37,211,102,0.3);
  border-color: rgba(37,211,102,0.3);
}
.whatsapp-btn.scrolled:hover {
  color: #25D366;
  border-color: #25D366;
}

@media (max-width: 1024px) {
  .whatsapp-btn {
    animation-delay: 2.5s;
  }
  .whatsapp-btn.scroll-hidden {
    opacity: 0.25 !important;
    transition: opacity 0.3s ease !important;
  }
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInFormCoa {
  from { opacity: 0; transform: translateY(calc(-4rem + 22px)); }
  to   { opacity: 1; transform: translateY(-4rem); }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

/* 1200px — signature column narrows slightly */
@media (max-width: 1200px) {
  .footer { padding: 2rem 2.5rem 1.2rem; }
  .footer__inner {
    grid-template-columns: 150px 1fr 1.5fr 1.3fr;
    gap: 2rem;
  }
  .footer__sig { max-width: 260px; }
}

/* 900px — stack brand row: coa + signature side by side across full width,
   then about + contact in 2 cols below */
@media (max-width: 900px) {
  .footer { padding: 2rem 2rem 1.2rem; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  /* Coat of arms and signature share the top row, each taking half */
  .footer__brand {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding-bottom: 1.2rem;
  }
  .footer__sig-col {
    grid-column: 2;
    grid-row: 1;
    border-left: 1px solid rgba(201,168,76,0.25);
    border-right: none;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .footer__sig { max-width: 180px; }
  /* About and Contact sit in the 2nd row */
  .footer__col:nth-child(3) { grid-column: 1; grid-row: 2; }
  .footer__col:nth-child(4) { grid-column: 2; grid-row: 2; }
}

/* 600px — mobile */
@media (max-width: 600px) {
  .footer { padding: 2.5rem 1.8rem 1.5rem; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* COA + Signature sit side by side in row 1 */
  .footer__brand {
    grid-column: 1; grid-row: 1;
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
    align-self: center;
  }
  .footer__coa { width: 90px; }

  .footer__sig-col {
    grid-column: 2; grid-row: 1;
    justify-content: center;
    border-left: 1px solid rgba(201,168,76,0.2);
    border-right: none;
    border-top: none;
    border-bottom: none;
    padding: 0;
    align-self: center;
  }
  .footer__sig { max-width: 140px; }

  /* About — full width, row 2, all padding reset */
  .footer__col:nth-child(3) {
    grid-column: 1 / -1; grid-row: 2;
    padding-left: 0; padding-right: 0;
    border-left: none;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 1.5rem;
  }

  /* Contact — full width, row 3, aligned with About */
  .footer__col:nth-child(4) {
    grid-column: 1 / -1; grid-row: 3;
    padding-left: 0; padding-right: 0;
    border-left: none;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 1.5rem;
  }

  /* Override the desktop breathing-room padding on About column */
  .footer__inner > div:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__text { font-size: 0.95rem; }
  .footer__contact li { font-size: 0.95rem; }
}

/* Booking page */
@media (max-width: 768px) {
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-panel { display: none; }
  .back-link { color: var(--muted); position: absolute; }
  .booking-form-wrap { padding: 5rem 1.5rem 3rem; }
  .hero__title-gold { color: var(--white); }
}

@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.8rem; }
  .hero__content   { margin-top: 2.5rem; }
}


/* Modal backdrop */
.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 6, 4, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.reviews-modal.is-open {
  background: rgba(8, 6, 4, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: all;
}

/* Modal box */
.reviews-modal__box {
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 4px;
  width: 100%;
  max-width: 580px;
  max-height: 88vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: relative;
}
.reviews-modal.is-open .reviews-modal__box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reviews-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
  z-index: 2;
}
.reviews-modal__close:hover { color: #C9A84C; }

.reviews-modal__header {
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
}
.reviews-modal__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}
.reviews-modal__title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 0.5rem;
}
.reviews-modal__stars {
  color: #C9A84C;
  font-size: 1rem;
  letter-spacing: 3px;
}

.reviews-modal__add-btn {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 1.5px solid #000;
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.reviews-modal__add-btn:hover {
  color: #C9A84C;
  border-color: #C9A84C;
}

/* Individual review cards */
.reviews-modal__list {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.review-card {
  border: 2.5px solid rgba(5, 5, 4, 0.12);
  border-radius: 3px;
  padding: 1.3rem 1.4rem;
}
.review-card__stars {
  color: #C9A84C;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
}
.review-card__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.75;
  color: var(black);
  margin: 0 0 1rem;
}
.review-card__author {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.review-card__name {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #977515;
}
.review-card__date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgb(145, 128, 33);
}

@media (max-width: 480px) {
  .reviews-modal__box { max-height: 92vh; }
  .reviews-modal__header { padding: 1.5rem 1.25rem 1rem; }
  .reviews-modal__list { padding: 1.2rem 1.25rem 1.5rem; }
}

/* =====================================================
   WRITE A REVIEW FORM
   ===================================================== */

/* Keep the write-review box same size as reviews box */
.wr-box {
  max-width: 580px;
}
.wr-box .reviews-modal__title {
  margin-top: 0.8rem;
  margin-bottom: -0.3rem;
}

/* Star rating row */
.wr-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
 .wr-stars-note {
      display: none;
      font-family: var(--font-body, sans-serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: #9c380a;
      margin-top: 0.4rem;
      letter-spacing: 0.03em;
    }
    .wr-stars-note.is-visible { display: block;
    }

.wr-star {
  font-size: 2.8rem;
  color: rgba(197, 157, 48, 0.25);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}
.wr-star:hover,
.wr-star--filled {
  color: #C9A84C;
  transform: scale(1.15);
}

/* Form layout */
.wr-form {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wr-field input,
.wr-field textarea {
  width: 100%;
  background: rgba(13,11,9,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.wr-field input::placeholder,
.wr-field textarea::placeholder {
  color: rgba(30,26,21,0.4);
  font-style: italic;
}
.wr-field input:focus,
.wr-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.wr-submit {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--dark);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 0.25rem;
}
.wr-submit:hover {
  background: var(white);
  color: var(--dark);
}

/* Thank-you message */
.wr-thanks {
  padding: 2.5rem 2rem;
  text-align: center;
}

@media (max-width: 480px) {
  .wr-form { padding: 1.25rem 1.25rem 1.5rem; }
  .wr-star { font-size: 1.5rem; }
}
