
:root {
  --lb-bg: #fff8fb;
  --lb-bg-alt: #fff1f6;
  --lb-surface: rgba(255, 255, 255, 0.78);
  --lb-surface-strong: #ffffff;
  --lb-text: #3f2940;
  --lb-text-soft: #6f5a72;
  --lb-line: rgba(208, 167, 122, 0.22);
  --lb-pink: #f4d9e3;
  --lb-rose: #e9bfd1;
  --lb-rose-deep: #c67997;
  --lb-gold: #d2a96a;
  --lb-gold-soft: #f0d8ab;
  --lb-shadow: 0 18px 40px rgba(95, 40, 79, 0.08);
  --lb-shadow-strong: 0 28px 70px rgba(95, 40, 79, 0.15);
  --lb-radius-xl: 34px;
  --lb-radius-lg: 24px;
  --lb-radius-md: 18px;
  --lb-container: 1200px;
  --lb-header-h: 88px;
  --lb-font-ui: "Inter", "Segoe UI", sans-serif;
  --lb-font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lb-text);
  background:
    radial-gradient(circle at top left, rgba(244, 217, 227, 0.78), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(240, 216, 171, 0.38), transparent 24%),
    linear-gradient(180deg, #fff9fc 0%, #fff7fb 40%, #fff3f7 100%);
  font-family: var(--lb-font-ui);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(30px);
}

body::before {
  width: 260px;
  height: 260px;
  left: -40px;
  top: 18vh;
  background: rgba(242, 209, 223, 0.55);
}

body::after {
  width: 280px;
  height: 280px;
  right: -60px;
  top: 52vh;
  background: rgba(243, 221, 176, 0.32);
}

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

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

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

.container {
  width: min(calc(100% - 2rem), var(--lb-container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.header-shell {
  min-height: var(--lb-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 248, 251, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px rgba(117, 70, 107, 0.08);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(248, 232, 239, 0.98), rgba(242, 215, 174, 0.88));
  box-shadow: inset 0 1px 1px rgba(255,255,255,.7), 0 10px 24px rgba(174, 123, 139, 0.16);
  border: 1px solid rgba(210, 169, 106, 0.32);
}

.brand-monogram {
  font-family: var(--lb-font-display);
  font-size: 1.7rem;
  color: var(--lb-rose-deep);
  font-weight: 700;
  transform: translateY(-1px);
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  color: var(--lb-text-soft);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--lb-text-soft);
  font-size: 0.96rem;
  transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--lb-text);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.nav-cta,
.button,
.wp-block-button__link,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6ac70 0%, #edcc92 100%);
  color: #fffaf5;
  box-shadow: 0 18px 30px rgba(191, 148, 90, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.nav-cta:hover,
.button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 34px rgba(191, 148, 90, 0.28);
  filter: saturate(1.06);
}

.button-secondary {
  background: rgba(255,255,255,.62);
  color: var(--lb-text);
  border: 1px solid rgba(210, 169, 106, 0.26);
  box-shadow: none;
}

.button-secondary:hover {
  box-shadow: var(--lb-shadow);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(210, 169, 106, 0.22);
  background: rgba(255,255,255,.82);
  color: var(--lb-text);
}

main.site-main {
  display: block;
}

.section {
  position: relative;
  padding: 84px 0;
}

.section-heading {
  /*max-width: 660px;*/
  margin-bottom: 34px;
}

.kicker {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid var(--lb-line);
  color: var(--lb-rose-deep);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading h2,
.contact-card h3,
.booking-card h3,
.about-card h3,
.gallery-card h3 {
  font-family: var(--lb-font-display);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4vw, 5.5rem);
}

.section-heading p,
.about-card p,
.contact-card p,
.booking-intro p {
  margin: 0;
  color: var(--lb-text-soft);
  font-size: 1.04rem;
}

/* HERO SLIDER */
.hero-slider-section {
  position: relative;
  padding: 24px 20px 40px;
}

.hero-slider {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  min-height: 78vh;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--lb-shadow-strong);
  background: #f7edf1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.02);
}

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

.hero-slide-media,
.hero-slide-media img,
.hero-slide-placeholder {
  width: 100%;
  height: 100%;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
}

.hero-slide-media img {
  object-fit: cover;
}

.hero-slide-placeholder {
  background:
    linear-gradient(135deg, rgba(244, 217, 227, 0.92), rgba(240, 216, 171, 0.72)),
    linear-gradient(180deg, #f8edf2 0%, #f5e0e8 100%);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 80px 30px;
  background:
    linear-gradient(to top, rgba(35, 19, 30, 0.58) 0%, rgba(35, 19, 30, 0.2) 34%, rgba(35, 19, 30, 0.04) 60%, rgba(35, 19, 30, 0.02) 100%);
}

.hero-slide-content {
  max-width: 520px;
  padding: 28px 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.hero-service-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff7fb;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-slide-content h1 {
  margin: 0 0 12px;
  font-family: var(--lb-font-display);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-slide-content p {
  margin: 0 0 22px;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.hero-slider-controls {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 5;
}

.hero-slider-dots {
  display: flex;
  gap: 10px;
}

.hero-slider-dot,
.hero-slider-arrow {
  border: 0;
  cursor: pointer;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: transform 0.28s ease, background 0.28s ease;
}

.hero-slider-dot.is-active {
  transform: scale(1.18);
  background: linear-gradient(135deg, var(--lb-gold), #fff2cf);
}

.hero-slider-arrows {
  display: flex;
  gap: 10px;
}

.hero-slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  transition: transform 0.28s ease, background 0.28s ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.28);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.about-card,
.booking-card,
.contact-card,
.gallery-card,
.info-card {
  position: relative;
  padding: 34px;
  border-radius: var(--lb-radius-lg);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--lb-shadow);
  overflow: hidden;
}

.about-card::before,
.booking-card::before,
.contact-card::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.32), transparent 55%);
  pointer-events: none;
}

.about-card h3,
.booking-card h3,
.contact-card h3,
.gallery-card h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.about-list .info-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.56);
}

.info-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.info-card span {
  color: var(--lb-text-soft);
}

.booking-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.booking-intro .button {
  margin-top: 22px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  margin-bottom:12px;
}

.feature-list .feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(210, 169, 106, 0.14);
}

.feature-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lb-gold), var(--lb-rose-deep));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1 / 1.15;
  background: linear-gradient(135deg, rgba(244, 217, 227, 0.8), rgba(240, 216, 171, 0.48));
  box-shadow: var(--lb-shadow);
}

.gallery-item a {
  position: absolute;
  inset: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .45s ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--lb-text);
  font-size: .82rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.empty-gallery {
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  color: var(--lb-text-soft);
  background: rgba(255,255,255,.58);
  border: 1px dashed rgba(210, 169, 106, 0.28);
}

.contact-grid {
  align-items: stretch;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(210, 169, 106, 0.14);
}

.contact-row strong {
  display: block;
  margin-bottom: 3px;
}

.contact-row span,
.contact-row a {
  color: var(--lb-text-soft);
}

.contact-row-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(244, 217, 227, 0.95), rgba(240, 216, 171, 0.72));
  font-size: 1rem;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(210, 169, 106, 0.14);
}

.site-footer {
  padding: 26px 0 36px;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--lb-shadow);
  color: var(--lb-text-soft);
}

.footer-shell a {
  color: var(--lb-rose-deep);
}

.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(34, 23, 36, 0.84);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 100;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: min(1040px, 100%);
  max-height: min(86vh, 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 86vh;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.82);
  color: #2f2131;
  cursor: pointer;
  z-index: 2;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .booking-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .header-shell {
    border-radius: 30px;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(255,248,251,.96);
    backdrop-filter: blur(18px);
    border-radius: 26px;
    box-shadow: var(--lb-shadow);
    border: 1px solid rgba(255,255,255,.72);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 70vh;
  }

  .hero-slide-overlay {
    padding: 80px 18px;
    align-items: flex-end;
  }

  .hero-slide-content {
    max-width: 100%;
    padding: 22px;
  }

  .hero-slider-controls {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .header-shell {
    min-height: auto;
  }

  .brand-text span {
    display: none;
  }

  .section-heading h2 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-card,
  .booking-card,
  .contact-card,
  .gallery-card,
  .info-card {
    padding: 24px;
  }

  .footer-shell {
    border-radius: 24px;
  }

  .hero-slider-section {
    padding: 18px 12px 28px;
  }

  .hero-slider {
    min-height: 62vh;
    border-radius: 24px;
  }

  .hero-slide-overlay {
    padding: 80px 18px;
  }

  .hero-slide-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-slide-content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .hero-slider-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}