:root {
  --bg: #fffaf6;
  --bg-soft: #fdf2ea;
  --surface: #ffffff;
  --surface-soft: #fff7f0;
  --ink: #2d241d;
  --ink-soft: #5f5044;
  --accent: #d88f71;
  --accent-deep: #be7455;
  --accent-soft: #f6dccf;
  --line: rgba(65, 45, 31, 0.14);
  --line-strong: rgba(65, 45, 31, 0.26);
  --shadow-soft: 0 16px 40px rgba(80, 47, 25, 0.12);
  --shadow-strong: 0 28px 62px rgba(80, 47, 25, 0.18);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 16% -8%,
      rgba(216, 143, 113, 0.22),
      transparent 36%
    ),
    radial-gradient(
      circle at 94% 10%,
      rgba(248, 209, 194, 0.36),
      transparent 42%
    ),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff8f2 0%, #fdeee4 100%);
  font-size: 0.9rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.62rem 0;
  color: #6d5b4e;
}

.topbar-inner p {
  margin: 0;
}

.topbar-inner a:hover {
  color: #3f2f24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(8px);
  background: rgba(255, 251, 247, 0.82);
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 251, 247, 0.95);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(57, 37, 24, 0.08);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(190, 116, 85, 0.42);
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(150deg, #fff4ec, #f9dfd1);
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  font-size: 1.35rem;
  font-weight: 700;
  color: #34271f;
}

.brand-text small {
  color: #816b5c;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-menu a {
  color: #5b4a3f;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 0;
  height: 1px;
  background: var(--accent-deep);
  transition: width 0.28s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #2f241c;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.btn {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-weight: 500;
  font-size: 0.96rem;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff8f3;
  box-shadow: 0 10px 24px rgba(190, 116, 85, 0.28);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 14px 30px rgba(190, 116, 85, 0.35);
}

.btn-outline {
  border: 1px solid var(--line-strong);
  color: #32251d;
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #fff8f3;
}

.btn-outline-dark {
  border: 1px solid rgba(43, 30, 22, 0.2);
  color: #2c221b;
  background: rgba(255, 255, 255, 0.5);
}

.btn-dark {
  background: #2e241d;
  color: #fff8f2;
  box-shadow: 0 10px 20px rgba(46, 36, 29, 0.2);
}

.nav-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(820px, 90vh);
  display: grid;
  align-items: center;
  overflow: clip;
  border-bottom: 1px solid rgba(66, 43, 30, 0.1);
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.04);
  transition: transform 0.22s linear;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
  z-index: 0;
  transition:
    opacity 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 7.6s ease,
    filter 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide.is-exiting {
  opacity: 0;
  transform: scale(1.03);
  z-index: 1;
}

.hero-overlay {
  z-index: 1;
  transition: opacity 0.38s ease;
  background:
    linear-gradient(
      102deg,
      rgba(255, 251, 247, 0.9) 0%,
      rgba(255, 247, 241, 0.78) 43%,
      rgba(255, 245, 236, 0.38) 75%,
      rgba(255, 244, 235, 0.24) 100%
    ),
    radial-gradient(
      circle at 78% 14%,
      rgba(216, 143, 113, 0.3),
      transparent 40%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 7.3rem 0 5.4rem;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 3rem 0 2rem -1rem;
  max-width: 640px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(93, 63, 42, 0.12);
  box-shadow: var(--shadow-soft);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #8a6853;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow.dark {
  color: #7e5f4c;
}

.hero h1 {
  margin: 0;
  color: #2f241c;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  font-family: "Mrs Saint Delafield", cursive;
  color: var(--accent-deep);
  font-size: clamp(2.7rem, 6.7vw, 5.8rem);
  font-weight: 400;
  line-height: 1.06;
  margin-top: 0.4rem;
}

.hero-text {
  margin-top: 1.2rem;
  max-width: 58ch;
  color: #4f3e33;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.hero-pills {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.hero-pills span {
  border: 1px solid rgba(67, 43, 30, 0.16);
  border-radius: 999px;
  padding: 0.3rem 0.78rem;
  font-size: 0.82rem;
  color: #5e4b3f;
  background: rgba(255, 255, 255, 0.68);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(67, 43, 30, 0.24);
  color: #4a3629;
  background: rgba(255, 255, 255, 0.74);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

@media (min-width: 1025px) {
  .hero-slide {
    background-attachment: fixed;
  }
}

.hero-nav:hover,
.hero-nav:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

.hero-nav.prev {
  left: 1.1rem;
}

.hero-nav.next {
  right: 1.1rem;
}

.intro-band {
  background: linear-gradient(180deg, #fff9f4 0%, #fff3e9 100%);
  border-top: 1px solid rgba(83, 58, 40, 0.1);
  border-bottom: 1px solid rgba(83, 58, 40, 0.12);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.intro-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(83, 58, 40, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.intro-card h3 {
  margin: 0;
  color: #33261e;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem;
}

.intro-card p {
  margin: 0.35rem 0 0;
  color: #655346;
  font-size: 0.95rem;
}

.section {
  padding: clamp(4.1rem, 8vw, 6.9rem) 0;
}

.about {
  background:
    radial-gradient(
      circle at 10% 88%,
      rgba(216, 143, 113, 0.18),
      transparent 40%
    ),
    linear-gradient(180deg, #fffefc 0%, #fff6ee 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 2.6rem;
  align-items: center;
}

.about-media {
  position: relative;
  max-width: 520px;
  width: 100%;
  height: clamp(320px, 36vw, 460px);
  margin-inline: auto;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  filter: saturate(1.05) contrast(1.03) brightness(1.04);
}

.about-float {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border-radius: 16px;
  background: rgba(47, 35, 26, 0.88);
  color: #fff;
  padding: 0.78rem 0.95rem;
  border: 1px solid rgba(216, 143, 113, 0.42);
}

.about-float p {
  margin: 0;
  color: #ffd0bb;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

.about-float small {
  color: #ead9cf;
}

.about-content h2 {
  margin: 0 0 0.95rem;
  color: #2f241c;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.03;
}

.section-head h2 {
  margin: 0 0 0.95rem;
  color: #2f241c;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.about-content p {
  margin: 0 0 1rem;
  color: #5f4f42;
  max-width: 58ch;
  font-size: 1.02rem;
}

.about-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: #4a3d33;
}

.services {
  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(216, 143, 113, 0.24),
      transparent 40%
    ),
    linear-gradient(180deg, #fff6ee 0%, #fff2e8 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 1.9rem;
}

.section-head p {
  margin: 0;
  color: #776153;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(67, 43, 30, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(66, 44, 30, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 18px 34px rgba(66, 44, 30, 0.14);
}

.service-card img {
  width: 100%;
  height: clamp(180px, 18vw, 230px);
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(1.05) contrast(1.04) brightness(1.05);
  transition: transform 0.5s ease;
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.04);
}

.service-body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: #30231c;
}

.service-body p {
  margin: 0.34rem 0 0.68rem;
  color: #68574a;
  min-height: 2.85rem;
}

.service-body span {
  margin-top: auto;
  color: var(--accent-deep);
  font-weight: 600;
}

.gallery {
  background: linear-gradient(180deg, #fff8f2 0%, #fffdfb 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(67, 43, 30, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #f8eee4;
  cursor: pointer;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.07) contrast(1.03) brightness(1.05);
  transition: transform 0.55s ease;
}

.gallery-item span {
  position: absolute;
  left: 0.78rem;
  bottom: 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(54, 35, 24, 0.2);
  padding: 0.28rem 0.62rem;
  color: #3a2b20;
  font-size: 0.83rem;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.07);
}

.gallery-item.wide {
  grid-column: auto;
}

.gallery-item.tall {
  grid-row: auto;
}

.testimonials {
  background:
    radial-gradient(
      circle at 14% 92%,
      rgba(216, 143, 113, 0.2),
      transparent 42%
    ),
    linear-gradient(180deg, #fff7ef 0%, #fff2e8 100%);
}

.testimonial-carousel {
  --cards-per-view: 3;
  position: relative;
  padding-inline: 52px;
}

.testimonial-viewport {
  overflow: hidden;
  transition:
    opacity 0.34s ease,
    filter 0.34s ease;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.testimonial-carousel.is-fading .testimonial-viewport {
  opacity: 0.2;
  filter: blur(1px);
}

.testimonial-carousel.is-fading .testimonial-nav,
.testimonial-carousel.is-fading .testimonial-dot {
  pointer-events: none;
}

.testimonial-nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(67, 43, 30, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: #3f3025;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(55, 34, 22, 0.12);
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  background: #fff;
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

.testimonial-nav.is-hidden {
  display: none;
}

.testimonial-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.44rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(67, 43, 30, 0.26);
  cursor: pointer;
  padding: 0;
}

.testimonial-dot.is-active {
  background: var(--accent-deep);
}

.testimonial-card {
  flex: 0 0
    calc((100% - (var(--cards-per-view) - 1) * 1rem) / var(--cards-per-view));
  padding: 1.2rem;
  border: 1px solid rgba(67, 43, 30, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(77, 50, 33, 0.08);
}

.testimonial-card p {
  margin: 0;
  color: #46382d;
}

.testimonial-card h4 {
  margin: 1rem 0 0.25rem;
  color: #3f2f24;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.48rem;
}

.testimonial-card span {
  color: #796759;
  font-size: 0.91rem;
}

.metrics {
  background: linear-gradient(180deg, #fff4ea 0%, #ffecdf 100%);
  border-top: 1px solid rgba(67, 43, 30, 0.12);
  border-bottom: 1px solid rgba(67, 43, 30, 0.12);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(67, 43, 30, 0.14);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.95rem;
}

.metric-card strong {
  display: block;
  font-size: clamp(2rem, 5.4vw, 3.2rem);
  font-family: "Cormorant Garamond", serif;
  color: var(--accent-deep);
}

.metric-card span {
  color: #6a584b;
}

.booking {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 143, 113, 0.24),
      transparent 38%
    ),
    linear-gradient(180deg, #fffdfb 0%, #fff4ea 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.booking-copy h2 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  color: #2d221b;
  line-height: 1.02;
}

.booking-copy p {
  margin: 0;
  color: #5a4a3d;
}

.booking-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #514439;
}

.booking-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 24, 18, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(34, 23, 14, 0.12);
  padding: 1.2rem;
  display: grid;
  gap: 0.62rem;
}

.booking-form h3 {
  margin: 0 0 0.3rem;
  font-family: "Cormorant Garamond", serif;
  color: #2d221b;
  font-size: 2rem;
}

.booking-form label {
  font-weight: 500;
  color: #4a3d32;
  font-size: 0.94rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(21, 18, 14, 0.17);
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: #fff;
  color: #1f1a16;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(190, 116, 85, 0.32);
  outline-offset: 1px;
}

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

.contact {
  background: linear-gradient(180deg, #fff8f2 0%, #fffdfb 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.map-wrap,
.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(67, 43, 30, 0.14);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(68, 44, 30, 0.08);
}

.map-wrap iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
}

.contact-card {
  padding: 1rem;
}

.contact-card h3 {
  margin: 0 0 0.45rem;
  color: #3f2f24;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
}

.contact-card p {
  margin: 0;
  color: #5d4d41;
}

.site-footer {
  border-top: 1px solid rgba(67, 43, 30, 0.14);
  background: #fff5ec;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: #624f43;
}

.footer-inner a {
  color: #463429;
  font-weight: 600;
}

.floating-wa,
.back-top {
  position: fixed;
  right: 1rem;
  z-index: 65;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(36, 24, 16, 0.24);
}

.floating-wa {
  bottom: 1rem;
  background: #1fa36f;
  color: #fff;
  padding: 0.66rem 1.05rem;
  font-weight: 600;
  border: 1px solid rgba(19, 104, 70, 0.45);
}

.back-top {
  bottom: 4.35rem;
  width: 56px;
  height: 38px;
  background: #fff;
  color: #2f231b;
  border: 1px solid rgba(67, 43, 30, 0.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff7ef 0%, #fff2e7 100%);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader-logo {
  color: var(--accent-deep);
  font-family: "Mrs Saint Delafield", cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.lightbox,
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(26, 18, 12, 0.72);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open,
.booking-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  margin: 0;
  width: min(92vw, 1040px);
}

.lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.18);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease;
}

.lightbox.is-switching img {
  opacity: 0.18;
  transform: scale(0.985);
}

.lightbox figcaption {
  margin-top: 0.6rem;
  color: #f4e4d7;
}

.lightbox-close,
.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close {
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.86);
  color: #3a2c21;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 26px rgba(19, 12, 8, 0.28);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: #fff;
}

.lightbox-nav.prev {
  left: clamp(10px, 2.4vw, 28px);
}

.lightbox-nav.next {
  right: clamp(10px, 2.4vw, 28px);
}

.lightbox-nav.is-hidden {
  display: none;
}

.booking-modal-card {
  width: min(94vw, 640px);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefc 0%, #fff3e8 100%);
  border: 1px solid rgba(20, 16, 10, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  color: #231d17;
  padding: 1.2rem;
  position: relative;
}

.booking-modal-close {
  padding: 0.3rem 0.85rem;
  color: #27211c;
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.booking-modal-card h3 {
  margin: 0.2rem 0 0.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.booking-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.booking-meta > div {
  border: 1px solid rgba(27, 21, 14, 0.12);
  border-radius: 12px;
  padding: 0.5rem 0.6rem;
  background: rgba(255, 255, 255, 0.74);
}

.booking-meta small {
  display: block;
  color: #6d6152;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.booking-meta strong {
  color: #231c16;
}

.booking-modal-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 47px;
    height: 47px;
    border-radius: 12px;
    border: 1px solid rgba(67, 43, 30, 0.22);
    background: rgba(255, 255, 255, 0.7);
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 11px;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    background: #5c4738;
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 252, 248, 0.98);
    border-bottom: 1px solid rgba(67, 43, 30, 0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-menu.open {
    max-height: 440px;
  }

  .nav-menu a {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border-top: 1px solid rgba(67, 43, 30, 0.08);
  }

  .nav-cta {
    display: none;
  }

  .hero-nav {
    display: none;
  }

  .hero-content::before {
    inset: 2.1rem -0.1rem 1.4rem -0.1rem;
    max-width: none;
  }

  .intro-grid,
  .service-grid,
  .metric-grid,
  .booking-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-auto-rows: auto;
  }

  .about-media {
    height: clamp(300px, 52vw, 400px);
  }

  .service-card img {
    height: 210px;
  }

  .testimonial-carousel {
    --cards-per-view: 2;
    padding-inline: 0;
  }

  .testimonial-nav {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
    padding: 0.6rem 0 0.72rem;
  }

  .brand-text strong {
    font-size: 1.18rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding-top: 6.6rem;
    padding-bottom: 4.2rem;
  }

  .hero-content::before {
    inset: 2rem 0 0.8rem 0;
    border-radius: 22px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }

  .about-media {
    height: 280px;
  }

  .service-card img {
    height: 190px;
  }

  .testimonial-carousel {
    --cards-per-view: 1;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .booking-row,
  .booking-meta {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
