:root {
  --cream: #fff8ef;
  --warm-white: #fffdf8;
  --honey: #d9a441;
  --honey-soft: #f7dba7;
  --blush: #f3b7ad;
  --teal: #9ed8d0;
  --plum: #3b1f47;
  --ink: #211629;
  --muted: #716477;
  --line: rgba(59, 31, 71, .12);
  --shadow: 0 24px 70px rgba(59, 31, 71, .16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 219, 167, .55), transparent 34rem),
    radial-gradient(circle at 85% 18%, rgba(158, 216, 208, .38), transparent 22rem),
    radial-gradient(circle at bottom right, rgba(243, 183, 173, .28), transparent 28rem),
    linear-gradient(135deg, #fff8ef 0%, #f7f0fb 100%);
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 18px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(59, 31, 71, .10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: var(--plum);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: contain;
  background: var(--cream);
  box-shadow: 0 6px 18px rgba(59, 31, 71, .13);
}

.brand span {
  line-height: 1.05;
}

.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(59, 31, 71, .06);
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(59, 31, 71, .09);
}

.pill-link.primary {
  background: linear-gradient(135deg, var(--honey), #f0bd6b);
  color: #241426;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(59, 31, 71, .94), rgba(33, 18, 39, .94)),
    radial-gradient(circle at 78% 18%, rgba(247, 219, 167, .34), transparent 32%);
  color: white;
  box-shadow: var(--shadow);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  padding: clamp(34px, 7vw, 78px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--honey-soft);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(247, 219, 167, .35);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 720px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 7vw, 90px);
  line-height: .95;
  letter-spacing: -.055em;
}

.hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--honey), #f2c779);
  color: #231326;
  box-shadow: 0 16px 34px rgba(217, 164, 65, .28);
  border: 0;
}

.btn.secondary {
  color: white;
  background: rgba(255, 255, 255, .10);
}

.service-area {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.payment-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--plum);
  font-size: clamp(25px, 4vw, 38px);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.payment-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}


.payment-section {
  background: rgba(59, 31, 71, .045);
}

.payment-title {
  font-size: clamp(22px, 3.5vw, 32px);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(59, 31, 71, .10);
  border-radius: 18px;
  padding: 14px 12px;
  box-shadow: 0 10px 22px rgba(59, 31, 71, .07);
}

.payment-icon {
  font-size: 18px;
}

.payment-item p {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.hero-collage {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 14px;
  /*transform: rotate(1deg);*/
}

.hero-card {
  min-height: 180px;
  border-radius: 26px;
  overflow: hidden;
  /*box-shadow: 0 22px 46px rgba(0, 0, 0, .28);*/
  /*border: 1px solid rgba(255, 255, 255, .18);*/
  /*background: rgba(255, 255, 255, .08);*/
}

.hero-card:nth-child(2),
.hero-card:nth-child(3) {
  transform: translateY(26px);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(42px, 7vw, 82px) 0;
}

.section2 {
  padding: clamp(42px, 7vw, 82px) 0;
  margin-bottom: 16px;
  border-radius: var(--radius-xl);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading .kicker {
  margin-inline: auto;
  background: rgba(217, 164, 65, .12);
  color: var(--plum);
  border-color: rgba(217, 164, 65, .22);
}

.section-heading h2 {
  margin: 14px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--plum);
}

.section-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 26px;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(59, 31, 71, .15);
  background: white;
}

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

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item p {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(33, 22, 41, .72);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.center-action {
  margin-top: 24px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.reason-card,
.step-card {
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(59, 31, 71, .08);
}

.service-card .icon,
.reason-card .icon,
.step-card .step-number {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(247, 219, 167, .75), rgba(243, 183, 173, .28));
  color: var(--plum);
  font-size: 22px;
  font-weight: 950;
  margin-bottom: 14px;
}

.service-card h3,
.reason-card h3,
.step-card h3 {
  margin: 0 0 8px;
  color: var(--plum);
  font-size: 18px;
}

.service-card p,
.reason-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 14px 34px rgba(59, 31, 71, .08);
}

.panel.dark {
  background: linear-gradient(135deg, var(--plum), #241426);
  color: white;
}

.panel h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.035em;
}

.panel p {
  color: rgba(255, 255, 255, .74);
  line-height: 1.7;
  margin: 0;
}

.reasons-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-section {
  padding-top: 0;
}

.contact {
  margin-bottom: 16px;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(59, 31, 71, .96), rgba(36, 20, 38, .96)),
    radial-gradient(circle at top right, rgba(217, 164, 65, .32), transparent 28rem);
  color: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.04em;
}

.contact p {
  margin: 0 auto 24px;
  max-width: 700px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  font-size: 17px;
}

.contact-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-pill {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 900;
}

.contact-pill.accent {
  background: linear-gradient(135deg, var(--honey), #f2c779);
  color: #241426;
  border: 0;
}

.copyright {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 10px 0 24px;
}

/* Full-screen gallery */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(8, 5, 14, .98);
  overflow: hidden;
  padding: 0;
}

.gallery-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
  padding: 8px;
}

.gallery-slider-top {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  z-index: 100001;
}

.gallery-slider-counter {
  font-weight: 900;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 15px;
}

.gallery-slider-close,
.gallery-slider-btn,
.gallery-slider-arrow {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 5, 14, .58);
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.gallery-slider-close,
.gallery-slider-btn {
  padding: 10px 16px;
  font-size: 15px;
}

.gallery-slider-stage {
  position: relative;
  height: calc(100vh - 116px);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-slider-stage img,
#galleryLargeImage {
  max-width: 98vw;
  max-height: calc(100vh - 128px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
  transform: scale(var(--galleryZoom, 1));
  transition: transform .18s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  font-size: 42px;
  z-index: 100001;
}

.gallery-slider-prev {
  left: 18px;
}

.gallery-slider-next {
  right: 18px;
}

.gallery-slider-controls {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(8, 5, 14, .58);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 8px;
  backdrop-filter: blur(10px);
  z-index: 100001;
}

@media (max-width: 920px) {

  .hero-inner,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    transform: none;
  }

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

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

@media (max-width: 680px) {
  .site-shell {
    padding: 10px;
  }

  .payment-methods {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-width: 80%;
  }

  .topbar {
    position: static;
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .pill-link {
    width: 100%;
    font-size: 12px;
    padding-inline: 8px;
  }

  .hero-inner {
    padding: 28px 20px 30px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    min-height: 140px;
  }

  .featured-grid,
  .services-grid,
  .reasons-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .contact-row {
    display: grid;
  }

  .contact-pill {
    width: 100%;
  }

  .gallery-slider-stage {
    height: calc(100vh - 96px);
  }

  .gallery-slider-stage img,
  #galleryLargeImage {
    max-width: 100vw;
    max-height: calc(100vh - 110px);
    border-radius: 6px;
  }

  .gallery-slider-arrow {
    display: none;
  }

  .gallery-slider-controls {
    width: calc(100vw - 16px);
    bottom: 8px;
    border-radius: 18px;
    gap: 6px;
  }

  .gallery-slider-btn {
    padding: 8px 9px;
    font-size: 12px;
  }

  .gallery-slider-counter,
  .gallery-slider-close {
    font-size: 12px;
    padding: 8px 10px;
  }
}