/* Final visual layer: loaded after the legacy stylesheet. */
body {
  background:
    radial-gradient(circle at 18% 18%, rgba(112, 82, 58, 0.09), transparent 32rem),
    var(--bg);
}

.site-header {
  border-bottom-color: rgba(229, 215, 200, 0.1);
  background: rgba(15, 14, 14, 0.82);
}

.site-header .logo,
.desktop-header-links a:hover {
  color: var(--warm-light);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.15) 20%, rgba(8, 7, 7, 0.35) 62%, rgba(17, 16, 17, 0.9));
}

.hero-slide {
  z-index: 0;
}

.hero-slide.active {
  z-index: 1;
}

.hero h1 {
  z-index: 2;
  max-width: 1050px;
  padding-inline: 24px;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.42);
}

.hero-actions {
  position: absolute;
  left: 50%;
  bottom: clamp(42px, 7vh, 82px);
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-button {
  min-width: 190px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(15, 14, 14, 0.32);
  backdrop-filter: blur(14px);
  text-align: center;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.hero-button:hover {
  border-color: var(--warm-light);
  background: rgba(197, 169, 140, 0.18);
  transform: translateY(-2px);
}

.hero-button-primary {
  border-color: var(--warm);
  color: #171311;
  background: var(--warm-light);
}

.section-eyebrow {
  margin-bottom: 14px;
  color: var(--warm);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.025), transparent 52%), var(--surface);
}

.about-text {
  max-width: 720px;
}

.about-text p:not(.section-eyebrow) {
  max-width: 66ch;
  color: var(--muted-text);
  line-height: 1.85;
}

.detail-item {
  border-color: rgba(229, 215, 200, 0.13);
}

.detail-item span {
  color: var(--warm);
}

.section-heading {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.gallery-heading {
  padding: clamp(70px, 10vw, 130px) 0 34px;
}

.gallery-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.gallery {
  gap: 7px;
}

.home-carousel.gallery {
  position: relative;
  width: 100%;
  height: clamp(620px, 68vw, 820px);
  padding: 0;
  display: block;
  overflow: hidden;
  background: #0e0d0e;
}

.home-carousel-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.home-carousel .home-carousel-slide {
  --carousel-step: clamp(220px, 25vw, 390px);
  position: absolute;
  width: clamp(280px, 31vw, 470px);
  height: clamp(520px, 59vw, 760px);
  overflow: hidden;
  border-radius: 3px;
  background: #171517;
  opacity: 0;
  transform: translateX(calc(var(--slide-offset) * var(--carousel-step))) scale(.72);
  transition: transform 1s cubic-bezier(.2,.75,.2,1), opacity .9s ease, filter .9s ease;
  cursor: pointer;
  z-index: 1;
}

.home-carousel .home-carousel-slide[hidden] {
  display: none;
}

.home-carousel .home-carousel-slide.active {
  opacity: 1;
  filter: none;
  transform: translateX(0) scale(1);
  z-index: 4;
}

.home-carousel .home-carousel-slide.near {
  opacity: .52;
  filter: blur(2.5px) brightness(.65) saturate(.7);
  transform: translateX(calc(var(--slide-offset) * var(--carousel-step))) scale(.82);
  z-index: 3;
}

.home-carousel .home-carousel-slide.far {
  opacity: .16;
  filter: blur(5px) brightness(.45) saturate(.55);
  transform: translateX(calc(var(--slide-offset) * var(--carousel-step))) scale(.68);
  z-index: 2;
}

.home-carousel .home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: none;
  filter: none;
}

.home-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.home-carousel-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(15,14,15,.58);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.home-carousel-counter {
  min-width: 62px;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  letter-spacing: .12em;
  text-align: center;
}

.services-section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 100px) 0;
}

.services-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.services-heading h2 {
  margin: 8px 0 14px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: .94;
}

.services-intro {
  max-width: 650px;
  color: rgba(255,255,255,.58);
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.025), transparent 60%);
  transition: background .35s ease;
}

.service-card:hover {
  background: linear-gradient(145deg, rgba(181,154,126,.11), rgba(255,255,255,.015) 65%);
}

.service-number,
.service-duration {
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 560px;
  margin: 20px 0 6px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.05;
}

.service-price {
  margin: 19px 0 12px;
  color: #d7c4ae;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
}

.service-description {
  max-width: 540px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.56);
  font-size: .92rem;
  line-height: 1.55;
}

.service-link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(215,196,174,.7);
  color: #eee9e3;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.wedding-prices {
  margin: 16px 0 14px;
}

.wedding-prices p {
  margin: 0;
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
}

.wedding-prices strong {
  color: #d7c4ae;
  font-weight: 500;
  white-space: nowrap;
}

.services-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.42);
  font-size: .78rem;
  letter-spacing: .04em;
}

.gallery-filters {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 34px;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  overflow: visible;
}

.gallery-category-card {
  position: relative;
  width: 100%;
  min-height: 152px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: #fff;
  background-color: #1a1717 !important;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.06), rgba(8, 8, 8, 0.78)),
    var(--category-cover, linear-gradient(135deg, #332b26, #151314)) !important;
  background-position: center;
  background-size: cover;
  text-align: left;
  cursor: pointer;
  transition: border-color .3s ease, transform .3s ease, filter .3s ease;
}

.gallery-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(197,169,140,.08), transparent 55%);
}

.gallery-category-card span {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
  font-size: 1.24rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7);
}

.gallery-category-card:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.gallery-category-card.active {
  border-color: var(--warm-light);
  box-shadow: 0 0 0 1px var(--warm-light);
  color: #fff;
  background-color: #1a1717 !important;
}

.gallery-category-all {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(8, 8, 8, 0.7)),
    linear-gradient(135deg, #75604f, #241d19) !important;
}

.grid-item img {
  filter: saturate(0.92) contrast(1.02);
  opacity: 1;
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .6s ease, opacity 1s ease;
}

.grid-item:hover img {
  filter: saturate(1) contrast(1.04);
}

.cta-button {
  border-color: rgba(197, 169, 140, 0.55);
}

.cta-button:hover {
  color: #171311;
  background: var(--warm-light);
}

.booking-banner {
  background: radial-gradient(circle at 50% 0%, rgba(197,169,140,.12), transparent 45%), var(--surface-soft);
}

.highlight-date {
  color: var(--warm-light);
}

.contact-section {
  background: var(--bg);
}

.contact-container {
  width: min(920px, 100%);
  max-width: 920px;
  padding: clamp(36px, 6vw, 68px);
  border: 1px solid rgba(229, 215, 200, 0.12);
  border-radius: 2px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 55%), var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.contact-container .sub-text {
  max-width: 620px;
  margin: 0 auto 42px;
}

.modern-form {
  gap: 18px;
}

.form-row {
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  margin: 0;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(229, 215, 200, 0.15);
  border-radius: 2px;
  border-color: rgba(229, 215, 200, 0.15);
  background: rgba(9, 8, 9, 0.52);
}

.modern-form textarea {
  min-height: 130px;
  height: 130px;
}

.date-group {
  display: grid;
  align-items: initial;
  justify-content: initial;
  gap: 8px;
  padding: 0;
  border: 0;
}

.date-group .date-placeholder {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.58);
}

.date-group input,
.date-group input[type="date"] {
  width: 100%;
  max-width: none;
  padding: 14px 16px;
  border: 1px solid rgba(229, 215, 200, 0.15);
  background: rgba(9, 8, 9, 0.52);
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(197, 169, 140, 0.09);
}

.modern-form .cta-button {
  min-width: 240px;
  min-height: 54px;
  margin-top: 12px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  border-color: rgba(197, 169, 140, 0.55);
}

footer {
  border-top: 1px solid rgba(229, 215, 200, 0.1);
  background: #0d0c0d;
}

@media (max-width: 767px) {
  .main-nav.bottom-nav {
    width: calc(100% - 42px);
    max-width: 410px;
    height: 64px;
    padding: 6px;
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .bottom-nav-item {
    border-radius: 29px;
  }

  .bottom-nav-item .material-symbols-rounded {
    font-size: 26px;
  }

  .hero-actions {
    bottom: 98px;
    width: calc(100% - 34px);
    gap: 8px;
  }

  .home-carousel.gallery {
    height: 610px;
  }

  .home-carousel .home-carousel-slide {
    --carousel-step: 67vw;
    width: 76vw;
    max-width: 330px;
    height: 520px;
  }

  .home-carousel .home-carousel-slide.near {
    opacity: .38;
    filter: blur(1.5px) brightness(.62);
    transform: translateX(calc(var(--slide-offset) * var(--carousel-step))) scale(.78);
  }

  .home-carousel .home-carousel-slide.far {
    opacity: 0;
  }

  .services-section {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .services-heading {
    margin-bottom: 34px;
  }

  .services-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

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

  .service-card {
    min-height: 315px;
    padding: 26px 22px;
  }

  .service-card h3 {
    margin-top: 19px;
    font-size: 1.75rem;
  }

  .service-price {
    font-size: 1.6rem;
  }

  .hero-button {
    min-width: 0;
    flex: 1;
    padding: 11px 9px;
    font-size: 0.61rem;
    letter-spacing: 0.055em;
  }

  .section-heading {
    width: calc(100% - 28px);
  }

  .gallery-filters {
    width: calc(100% - 28px);
    margin: 0 auto 26px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-category-card {
    min-height: 104px;
  }

  .gallery-heading {
    padding: 62px 0 24px;
  }

  .contact-section {
    padding: 54px 14px;
  }

  .contact-container {
    padding: 34px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modern-form .cta-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-button,
  .grid-item img {
    transition: none;
  }
}
