:root {
  --bg: #f4f3f7;
  --bg-soft: #e9e7ee;
  --text: #292631;
  --text-muted: #686371;
  --accent: #9b8bad;
  --accent-dark: #705e87;
  --rose: #dcd7e4;
  --white: #fcfbfd;
  --shadow: 0 24px 60px rgba(48, 42, 58, 0.1);
  --radius: 24px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.section {
  padding: 6rem 0;
}

.section__head {
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(41, 38, 49, 0.2);
}

.btn--ghost:hover {
  background: var(--white);
}

.btn--small {
  min-height: 2.5rem;
  padding-inline: 1.1rem;
  font-size: 0.92rem;
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(244, 243, 247, 0.86);
  border-bottom: 1px solid rgba(41, 38, 49, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.logo {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(139, 119, 161, 0.34), transparent 36%),
    linear-gradient(180deg, #faf9fc 0%, var(--bg) 55%, var(--bg-soft) 100%);
}

.hero__bg::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: 8rem;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 213, 226, 0.95), rgba(126, 104, 151, 0.42));
  filter: blur(8px);
}

.hero__content {
  position: relative;
  max-width: 44rem;
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cards--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 52rem;
}

.card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card__num {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section--about {
  background: var(--bg-soft);
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about__text p {
  color: var(--text-muted);
}

.about__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.about__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.65rem;
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.about__visual {
  min-height: 28rem;
  display: grid;
  place-items: center;
}

.about__frame {
  width: min(100%, 22rem);
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 24px 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), transparent 50%),
    linear-gradient(135deg, #dcd8e3, #8d7a9f);
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery__item {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: var(--rose);
  box-shadow: var(--shadow);
}

.gallery__item:nth-child(1) { background: linear-gradient(150deg, #efedf2, #aaa1b5); }
.gallery__item:nth-child(2) { background: linear-gradient(150deg, #d5d2da, #776c82); }
.gallery__item:nth-child(3) { background: linear-gradient(150deg, #cbc5d4, #69577f); }
.gallery__item:nth-child(4) { background: linear-gradient(150deg, #ddd9e2, #9285a0); }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.section--contact {
  background: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact__details {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.contact__details a:hover {
  color: var(--accent-dark);
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.botcheck {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85em;
}

.form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(41, 38, 49, 0.14);
  border-radius: 14px;
  background: var(--white);
  font: inherit;
  color: var(--text);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(155, 139, 173, 0.35);
  border-color: var(--accent);
}

.form__note {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(41, 38, 49, 0.08);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .cards,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header__cta,
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header.is-open .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.75rem;
    padding: 1rem 1rem 1.25rem;
    background: rgba(244, 243, 247, 0.98);
    border-bottom: 1px solid rgba(41, 38, 49, 0.08);
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 6.5rem;
  }
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 5rem;
  }

  body {
    padding-bottom: calc(4.6rem + env(safe-area-inset-bottom));
    background-attachment: scroll;
  }

  .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .header__inner {
    min-height: 4.25rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .header.is-open .nav {
    gap: 0.2rem;
    padding: 0.75rem 0.75rem 1rem;
    box-shadow: 0 16px 35px rgba(35, 29, 41, 0.12);
  }

  .header.is-open .nav a {
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid rgba(60, 51, 68, 0.07);
    font-size: 0.78rem;
  }

  .hero {
    padding: 5.8rem 0 3.5rem;
  }

  .hero__grid {
    gap: 2rem;
  }

  .hero h1 {
    margin-top: 0.75rem;
    font-size: clamp(3.55rem, 18vw, 5rem);
    line-height: 0.86;
  }

  .hero__lead {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 2rem;
  }

  .hero__facts strong {
    font-size: 1.1rem;
  }

  .hero__facts span {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .hero__visual {
    min-height: 26rem;
  }

  .hero__image--main {
    inset: 0 0.5rem 1rem 2.25rem;
    border-radius: 45% 45% 1.25rem 1.25rem;
  }

  .hero__image--small {
    left: 0;
    bottom: -0.25rem;
    width: 7.75rem;
    height: 10rem;
    border-width: 0.4rem;
  }

  .hero__seal {
    top: 5%;
    width: 5rem;
    height: 5rem;
    font-size: 0.66rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section__head h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .section__intro {
    font-size: 0.9rem;
  }

  .card {
    min-height: 19rem;
    padding: 1.45rem;
    border-radius: 1.4rem;
  }

  .card h3 {
    font-size: 2.35rem;
  }

  .price-list {
    border-radius: 1.25rem;
  }

  .price-item {
    grid-template-areas:
      "content price";
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
    padding: 1.1rem;
  }

  .price-item__content {
    grid-area: content;
  }

  .price-item__content h3 {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .price-item__value {
    grid-area: price;
    font-size: 1.35rem;
  }

  .about__text h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .about__visual {
    min-height: 29rem;
  }

  .about__frame--main {
    width: 78%;
    height: 25rem;
  }

  .about__frame--secondary {
    width: 56%;
    height: 17rem;
    border-width: 0.4rem;
  }

  .about__caption {
    bottom: -0.25rem;
    width: 11.5rem;
    padding: 1rem;
    font-size: 1rem;
  }

  .about__caption span {
    font-size: 2rem;
  }

  .gallery {
    gap: 0.6rem;
  }

  .gallery__item {
    border-radius: 0.9rem;
  }

  .gallery__item:nth-child(2),
  .gallery__item:nth-child(4) {
    margin-top: 0;
  }

  .contact {
    gap: 2.5rem;
  }

  .contact__info h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .form {
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .form input,
  .form select,
  .form textarea {
    min-height: 3rem;
    padding-inline: 0.25rem;
    font-size: 1rem;
  }

  .booking-picker {
    margin-inline: -0.15rem;
    padding: 0.85rem;
    border-radius: 1rem;
  }

  .booking-picker__heading {
    align-items: flex-start;
  }

  .calendar {
    padding-top: 0.85rem;
  }

  .calendar__month {
    font-size: 1.3rem;
  }

  .calendar__day {
    min-width: 2.15rem;
    min-height: 2.15rem;
  }

  .calendar__legend {
    gap: 0.65rem;
  }

  .time-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .time-slot {
    min-height: 2.65rem;
    font-size: 0.75rem;
  }

  .form-result {
    padding: 1rem;
  }

  .footer {
    padding-bottom: 1.25rem;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 45;
    right: 0.75rem;
    bottom: calc(0.65rem + env(safe-area-inset-bottom));
    left: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3.6rem;
    padding: 0.8rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(40, 37, 46, 0.94);
    color: var(--white);
    box-shadow: 0 16px 35px rgba(28, 23, 34, 0.28);
    backdrop-filter: blur(14px);
    font-size: 0.86rem;
    font-weight: 600;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .hero__facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero__facts p:last-child {
    display: none;
  }

  .calendar__day {
    min-width: 1.9rem;
    min-height: 1.9rem;
  }

  .time-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Refined editorial design */
:root {
  --bg: #f5f4f7;
  --bg-soft: #e8e6ed;
  --text: #28252e;
  --text-muted: #6f6977;
  --accent: #a397b1;
  --accent-dark: #655675;
  --white: #fdfcfe;
  --shadow: 0 28px 70px rgba(48, 40, 58, 0.12);
  --radius: 28px;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(168, 151, 186, 0.22), transparent 27rem),
    radial-gradient(circle at 92% 34%, rgba(118, 101, 139, 0.15), transparent 32rem),
    radial-gradient(circle at 28% 82%, rgba(195, 187, 205, 0.3), transparent 30rem),
    linear-gradient(135deg, #f8f7fa 0%, #f0eef3 48%, #f6f4f8 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#services,
#gallery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(239, 236, 243, 0.3));
}

#gallery {
  background:
    radial-gradient(circle at 85% 18%, rgba(145, 126, 164, 0.16), transparent 24rem),
    radial-gradient(circle at 8% 90%, rgba(193, 183, 204, 0.24), transparent 26rem),
    rgba(250, 249, 251, 0.5);
}

#services::before,
#gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(115, 96, 133, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

#services::before {
  top: -10rem;
  right: -6rem;
  box-shadow:
    0 0 0 3rem rgba(150, 133, 167, 0.025),
    0 0 0 7rem rgba(150, 133, 167, 0.018);
}

#gallery::before {
  bottom: -11rem;
  left: -7rem;
  box-shadow:
    0 0 0 4rem rgba(150, 133, 167, 0.03),
    0 0 0 9rem rgba(150, 133, 167, 0.018);
}

#services > .container,
#gallery > .container {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 3rem));
}

.header {
  background: rgba(245, 244, 247, 0.75);
  border-color: rgba(67, 59, 75, 0.08);
}

.header__inner {
  min-height: 5rem;
}

.logo {
  font-size: 1.5rem;
  font-style: italic;
}

.nav {
  gap: 2rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn {
  min-height: 3.35rem;
  padding-inline: 1.65rem;
  letter-spacing: 0.02em;
  background: var(--text);
  box-shadow: 0 12px 30px rgba(40, 37, 46, 0.14);
}

.btn span {
  margin-left: 0.6rem;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(73, 58, 88, 0.2);
}

.btn--ghost {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.35);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

h1 em {
  color: var(--accent-dark);
  font-weight: 400;
}

.hero {
  min-height: 100svh;
  align-items: center;
  padding: 8rem 0 4rem;
}

.hero__bg {
  background:
    radial-gradient(circle at 80% 18%, rgba(126, 105, 148, 0.24), transparent 28%),
    linear-gradient(135deg, #f8f7fa 0%, #efedf2 50%, #e5e1e9 100%);
}

.hero__bg::after {
  right: -11rem;
  top: -9rem;
  width: 42rem;
  height: 42rem;
  opacity: 0.38;
  filter: blur(20px);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.hero__content {
  max-width: 39rem;
}

.hero h1 {
  margin: 0.4rem 0 1.5rem;
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 0.82;
}

.hero__lead {
  max-width: 30rem;
  margin-bottom: 2.2rem;
  font-size: 1.08rem;
}

.hero__visual {
  position: relative;
  min-height: 39rem;
}

.hero__image {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--main {
  inset: 0 2rem 2rem 2rem;
  border-radius: 48% 48% 1.5rem 1.5rem;
  opacity: 0;
  will-change: opacity, transform;
  animation: hero-photo-fly-in 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

.hero__image--small {
  left: -3rem;
  bottom: -0.5rem;
  width: 12rem;
  height: 15rem;
  border: 0.6rem solid rgba(245, 244, 247, 0.9);
  border-radius: 7rem 7rem 1rem 1rem;
}

@keyframes hero-photo-fly-in {
  from {
    opacity: 0;
    transform: translate3d(22%, 8%, 0) scale(0.86) rotate(3deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

.hero__seal {
  position: absolute;
  top: 8%;
  right: -1.6rem;
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(249, 248, 251, 0.9);
  border: 1px solid rgba(82, 68, 96, 0.14);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  box-shadow: 0 12px 35px rgba(57, 45, 69, 0.12);
  transform: rotate(10deg);
}

.hero__facts {
  display: flex;
  gap: 2rem;
  margin-top: 3.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(61, 53, 69, 0.12);
}

.hero__facts p {
  display: grid;
  margin: 0;
}

.hero__facts strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.hero__facts span {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 8rem 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section__intro {
  max-width: 27rem;
  margin: 0 0 0.35rem;
  color: var(--text-muted);
}

.cards--two {
  max-width: none;
  gap: 1.5rem;
}

.card {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.2rem;
  border: 1px solid rgba(65, 55, 74, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(235, 232, 239, 0.82));
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(96, 83, 108, 0.94), rgba(52, 45, 61, 0.98));
  color: var(--white);
}

.card:nth-child(2) p,
.card:nth-child(2) .card__num {
  color: rgba(255, 255, 255, 0.66);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(101, 86, 117, 0.2);
  box-shadow: 0 30px 65px rgba(45, 38, 52, 0.14);
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.6;
}

.card h3 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.card p {
  max-width: 29rem;
  font-size: 0.94rem;
}

.card > a {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(86, 75, 96, 0.14);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card:nth-child(2) > a {
  border-color: rgba(255, 255, 255, 0.16);
}

.section--prices {
  background:
    radial-gradient(circle at 90% 10%, rgba(151, 135, 168, 0.14), transparent 28rem),
    #eceaf0;
}

.price-list {
  overflow: hidden;
  border: 1px solid rgba(62, 52, 71, 0.09);
  border-radius: 2rem;
  background: rgba(253, 252, 254, 0.7);
  box-shadow: 0 24px 60px rgba(42, 34, 49, 0.08);
  backdrop-filter: blur(14px);
}

.price-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto 3.5rem;
  gap: 1.75rem;
  align-items: center;
  min-height: 7.25rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(61, 51, 70, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}

.price-item:last-child {
  border-bottom: 0;
}

.price-item:hover {
  background: rgba(255, 255, 255, 0.72);
}

.price-item__number {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(101, 86, 117, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.price-item__content h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price-item__content p {
  max-width: 34rem;
  margin: 0;
  color: #554f5c;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.price-item__value {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.price-item__action {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(58, 49, 67, 0.15);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.price-item__action:hover {
  color: var(--white);
  background: var(--accent-dark);
  transform: rotate(8deg);
}

.price-note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(101, 86, 117, 0.16);
  border-left: 4px solid var(--accent-dark);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(48, 40, 58, 0.07);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

.section--about {
  position: relative;
  background: #302b36;
  color: var(--white);
  overflow: hidden;
}

.section--about::after {
  content: "DI";
  position: absolute;
  right: -1rem;
  bottom: -7rem;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: 30rem;
  line-height: 1;
}

.about {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.about__text p {
  color: rgba(255, 255, 255, 0.66);
}

.about__text h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.about__list {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about__visual {
  position: relative;
  min-height: 36rem;
  display: block;
}

.about__frame {
  position: absolute;
  aspect-ratio: auto;
  overflow: hidden;
  background: #645b6b;
  box-shadow: 0 24px 60px rgba(16, 13, 20, 0.28);
}

.about__frame--main {
  top: 0;
  left: 0;
  width: 66%;
  height: 31rem;
  border-radius: 1rem 1rem 10rem 1rem;
}

.about__frame--secondary {
  right: 0;
  bottom: 0;
  width: 49%;
  height: 24rem;
  border: 0.55rem solid #302b36;
  border-radius: 9rem 1rem 1rem 1rem;
}

.about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__caption {
  position: absolute;
  left: 1.5rem;
  bottom: -1.2rem;
  width: 16rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(249, 248, 251, 0.95);
  color: var(--text) !important;
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.about__caption span {
  display: block;
  color: var(--accent-dark);
  font-size: 2.5rem;
  font-style: italic;
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 15.5rem));
  gap: 1.5rem;
  justify-content: center;
  align-items: start;
}

.gallery__item {
  position: relative;
  grid-column: auto;
  aspect-ratio: 4 / 5;
  margin-top: 0;
  border: 1px solid rgba(71, 60, 82, 0.1);
  border-radius: 1.4rem;
  background: #e8e4eb;
  box-shadow: 0 16px 38px rgba(42, 35, 50, 0.09);
}

.gallery__item:nth-child(3n + 2) {
  margin-top: 0;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(transparent, rgba(27, 22, 32, 0.68));
}

.gallery__item figcaption {
  position: absolute;
  z-index: 1;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.05rem;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--contact {
  background:
    radial-gradient(circle at 10% 90%, rgba(153, 137, 169, 0.18), transparent 25rem),
    var(--white);
}

.contact {
  gap: clamp(3rem, 8vw, 8rem);
}

.contact__info h2 {
  max-width: 30rem;
  font-size: clamp(3.2rem, 6vw, 5rem);
}

.contact__details {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(64, 54, 73, 0.12);
}

.form {
  padding: 2.2rem;
  border: 1px solid rgba(69, 58, 78, 0.09);
  background: rgba(240, 238, 243, 0.72);
  backdrop-filter: blur(12px);
}

.form input,
.form select,
.form textarea {
  border: 0;
  border-bottom: 1px solid rgba(53, 46, 60, 0.17);
  border-radius: 0;
  background: transparent;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--accent-dark);
}

.form__schedule-note {
  margin: -0.15rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent-dark);
  border-radius: 0 0.75rem 0.75rem 0;
  background: rgba(101, 86, 117, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
}

.booking-picker {
  margin: 0.35rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(78, 66, 89, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.54);
}

.availability-status {
  margin: 0.75rem 0 -0.25rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(101, 86, 117, 0.07);
  color: var(--text-muted);
  font-size: 0.7rem;
}

.availability-status[data-state="loading"] {
  animation: availability-pulse 1.4s ease-in-out infinite;
}

.availability-status[data-state="success"] {
  color: #4d6e59;
  background: rgba(90, 130, 101, 0.1);
}

.availability-status[data-state="warning"] {
  color: #806c3c;
  background: rgba(166, 137, 72, 0.12);
}

.availability-status[data-state="error"] {
  color: #a74252;
  background: rgba(167, 66, 82, 0.09);
}

@keyframes availability-pulse {
  50% {
    opacity: 0.55;
  }
}

.booking-picker__heading,
.booking-time__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.booking-picker__heading > div:first-child,
.booking-time__heading > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-picker h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
}

.booking-picker__step {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.calendar__navigation {
  display: flex;
  gap: 0.35rem;
}

.calendar__navigation button {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(61, 52, 69, 0.13);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.calendar__navigation button:hover:not(:disabled) {
  color: var(--white);
  background: var(--accent-dark);
}

.calendar__navigation button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.calendar {
  padding-top: 1.1rem;
}

.calendar__month {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: capitalize;
}

.calendar__weekdays,
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.calendar__weekdays {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.calendar__weekdays span {
  padding: 0.35rem 0;
}

.calendar__day {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.calendar__day:hover:not(:disabled) {
  background: rgba(155, 139, 173, 0.18);
  transform: translateY(-1px);
}

.calendar__day.is-today::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--accent-dark);
  transform: translateX(-50%);
}

.calendar__day.is-selected {
  color: var(--white);
  background: var(--accent-dark);
  box-shadow: 0 8px 18px rgba(101, 86, 117, 0.24);
}

.calendar__day.is-selected::after {
  background: var(--white);
}

.calendar__day:disabled,
.calendar__day.is-empty {
  cursor: default;
  opacity: 0.28;
}

.calendar__day.is-fully-booked {
  color: var(--text-muted);
  text-decoration: line-through;
  background: rgba(80, 71, 88, 0.06);
}

.calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.62rem;
}

.calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.calendar__legend i {
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid rgba(62, 52, 71, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.calendar__legend i.is-booked {
  border-color: transparent;
  background: rgba(80, 71, 88, 0.26);
}

.calendar__legend i.is-selected {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.booking-time {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(70, 59, 80, 0.1);
}

.booking-time__heading > span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  text-align: right;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1rem;
}

.time-slot {
  min-height: 2.35rem;
  padding: 0.4rem;
  border: 1px solid rgba(63, 53, 72, 0.12);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-muted);
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.time-slot:hover:not(:disabled) {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.time-slot.is-selected {
  color: var(--white);
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.time-slot:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.time-slot.is-booked {
  position: relative;
  color: var(--text-muted);
  border-style: dashed;
  background: rgba(73, 63, 82, 0.08);
  text-decoration: line-through;
  opacity: 0.55;
}

.form-result {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(82, 116, 91, 0.18);
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(237, 246, 239, 0.96), rgba(248, 245, 250, 0.96));
  box-shadow: 0 16px 35px rgba(47, 67, 53, 0.08);
}

.form-result[hidden] {
  display: none;
}

.form-result.is-error {
  border-color: rgba(167, 66, 82, 0.18);
  background: linear-gradient(135deg, rgba(252, 239, 242, 0.96), rgba(248, 245, 250, 0.96));
}

.form-result__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #617d69;
  color: #fff;
  font-size: 1.15rem;
}

.form-result.is-error .form-result__icon {
  background: #a74252;
}

.form-result strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.form-result p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 2rem;
  }

  .hero__visual {
    min-height: 31rem;
  }

  .hero__image--small {
    left: -1rem;
    width: 9rem;
    height: 12rem;
  }

  .hero__seal {
    right: -0.5rem;
  }

  .about {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 15.5rem));
  }

  .gallery__item {
    grid-column: auto;
    margin-top: 0;
  }

  .gallery__item:nth-child(2n) {
    margin-top: 0;
  }

  .price-item {
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    gap: 1.2rem;
  }

  .price-item__action {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.5rem, 1180px);
  }

  .gallery {
    grid-template-columns: minmax(0, 15.5rem);
  }

  .header.is-open .nav {
    background: rgba(245, 244, 247, 0.98);
  }

  .hero {
    min-height: auto;
    padding: 7.5rem 0 4rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 19vw, 5.5rem);
  }

  .hero__visual {
    min-height: 31rem;
    margin-top: 1rem;
  }

  .hero__image--main {
    inset-inline: 1rem;
  }

  .hero__image--small {
    left: 0;
  }

  .hero__seal {
    right: 0;
    width: 6rem;
    height: 6rem;
  }

  .hero__facts {
    gap: 1rem;
    justify-content: space-between;
  }

  .hero__facts strong {
    font-size: 1.2rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section__head {
    display: grid;
    gap: 1.3rem;
    margin-bottom: 2rem;
  }

  .cards--two {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 21rem;
  }

  .price-list {
    border-radius: 1.4rem;
  }

  .price-item {
    grid-template-areas: "content price";
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    min-height: auto;
    padding: 1.1rem;
  }

  .price-item__number {
    display: none;
  }

  .price-item__content h3 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .price-item__content p {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .price-item__value {
    font-size: 1.2rem;
  }

  .price-note {
    text-align: left;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__visual {
    min-height: 34rem;
  }

  .about__frame--main {
    width: 76%;
    height: 29rem;
  }

  .about__frame--secondary {
    width: 56%;
    height: 20rem;
  }

  .about__caption {
    left: 0;
    width: 13rem;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery__item {
    aspect-ratio: 4 / 5;
  }

  .gallery__item,
  .gallery__item:nth-child(2n),
  .gallery__item:nth-child(3n + 2) {
    margin-top: 0;
  }

  .gallery__item figcaption {
    left: 0.75rem;
    right: 0.75rem;
  }

  .booking-picker {
    padding: 1rem;
  }

  .calendar__weekdays,
  .calendar__days {
    gap: 0.2rem;
  }

  .calendar__day {
    font-size: 0.75rem;
  }

  .time-slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-time__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-time__heading > span {
    text-align: left;
  }
}

.section--reviews {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(160, 139, 181, 0.28), transparent 25rem),
    radial-gradient(circle at 5% 95%, rgba(110, 90, 130, 0.22), transparent 24rem),
    #2e2934;
}

.section--reviews::before {
  content: "“";
  position: absolute;
  top: -8rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: 34rem;
  line-height: 1;
  pointer-events: none;
}

.reviews__head {
  position: relative;
  z-index: 1;
}

.reviews__head .eyebrow {
  color: #c5b7d2;
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews__rating > strong {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.reviews__stars,
.review-card__stars {
  color: #d9b86d;
  letter-spacing: 0.12em;
}

.reviews__rating p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 194, 224, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-card__avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #cfc3da, #756284);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.review-card__header strong {
  display: block;
  font-size: 0.88rem;
}

.review-card__header time {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.review-card__stars {
  margin: 1.15rem 0 0.8rem;
  font-size: 0.78rem;
}

.review-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.45;
}

.reviews__source {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.reviews__source a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.25rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.reviews__source a:hover {
  color: var(--text);
  background: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .reviews__head {
    align-items: start;
  }

  .reviews__rating > strong {
    font-size: 3.2rem;
  }

  .reviews-grid {
    width: calc(100% + 0.625rem);
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0 0.625rem 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: min(84vw, 20rem);
    min-height: 20rem;
    scroll-snap-align: start;
  }
}
