:root {
  --ink: #12100d;
  --paper: #f4efe6;
  --pearl: #eee4d4;
  --champagne: #d7bf8f;
  --deep: #17100c;
  --wine: #3a171d;
  --line: rgba(42, 30, 21, 0.16);
  --white: #fff8ed;
  --gold: #c9a45b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: calc(var(--page-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne), var(--gold));
  pointer-events: none;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 12, 8, 0.74), rgba(18, 12, 8, 0));
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  letter-spacing: 0;
}

.nav-logo {
  width: 86px;
  height: auto;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.header-button,
.hero-button,
.booking-form button {
  justify-self: end;
  width: fit-content;
  min-height: 44px;
  border: 1px solid rgba(255, 250, 244, 0.52);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 248, 237, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, transform 180ms ease;
}

.header-button:hover,
.hero-button:hover,
.booking-form button:hover {
  transform: translateY(-1px);
  background: rgba(201, 164, 91, 0.22);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  transform: translate3d(0, var(--hero-drift, 0), 0) scale(1.28);
  filter: sepia(0.14) saturate(0.82) contrast(1.08);
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 62%, rgba(201, 164, 91, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(18, 12, 8, 0.64), rgba(18, 12, 8, 0.2) 54%, rgba(18, 12, 8, 0.5)),
    linear-gradient(180deg, rgba(18, 12, 8, 0.14), rgba(18, 12, 8, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12vh clamp(24px, 6vw, 86px) 10vh;
  color: var(--white);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.72;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 14rem);
  line-height: 0.82;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-logo {
  width: clamp(150px, 22vw, 260px);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.48));
  will-change: transform, opacity;
}

.hero-logo circle,
.hero-logo path,
.nav-logo circle,
.nav-logo path {
  fill: none;
  stroke: var(--champagne);
  stroke-width: 2;
}

.hero-logo path:nth-of-type(2),
.nav-logo path:nth-of-type(2) {
  stroke-width: 1.4;
  opacity: 0.72;
}

.hero-logo .logo-n,
.hero-logo .logo-pearl,
.nav-logo .logo-n,
.nav-logo .logo-pearl {
  fill: var(--champagne);
  stroke: none;
}

.hero-logo text,
.nav-logo text {
  fill: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.hero-logo .logo-small {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.hero-line {
  position: relative;
  max-width: 360px;
  margin-bottom: 18px;
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
  color: rgba(255, 243, 198, 0.92);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.hero-line::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 5%;
  bottom: -10px;
  height: 12px;
  border-bottom: 1.5px solid rgba(215, 191, 143, 0.72);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero-location {
  margin-bottom: 24px;
  color: rgba(255, 248, 237, 0.66);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 5.4rem);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 680px) 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(54px, 9vw, 112px) clamp(24px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.96), rgba(238, 228, 212, 0.92)),
    radial-gradient(circle at 85% 20%, rgba(201, 164, 91, 0.18), transparent 30%);
}

.intro p {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3.5vw, 3.7rem);
  line-height: 1.04;
}

.intro-line {
  height: 1px;
  background: var(--line);
}

.split-section,
.booking {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(64px, 10vw, 132px) clamp(24px, 6vw, 86px);
  background: var(--pearl);
}

.section-copy,
.booking-copy,
.gallery-heading,
.reviews-heading {
  color: var(--deep);
}

.ritual-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ritual-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(42, 30, 21, 0.18);
  border-radius: 8px;
  background: var(--deep);
  animation: floatIn 900ms ease both;
}

.ritual-card:nth-child(2) {
  animation-delay: 120ms;
}

.ritual-card:nth-child(3) {
  animation-delay: 240ms;
}

.ritual-card:nth-child(4) {
  animation-delay: 360ms;
}

.ritual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 12, 8, 0.08), rgba(18, 12, 8, 0.74));
}

.ritual-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: sepia(0.12) saturate(0.86);
  transition: transform 700ms ease;
}

.ritual-card:hover img {
  transform: scale(1.06);
}

.ritual-card,
.gallery-grid figure {
  transform: translate3d(0, var(--scroll-shift, 0), 0);
  will-change: transform;
}

.ritual-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
}

.ritual-list span {
  color: var(--champagne);
  font-size: 0.8rem;
  font-weight: 700;
}

.ritual-list p {
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.7);
  line-height: 1.55;
}

.gallery-section {
  padding: clamp(64px, 10vw, 132px) clamp(24px, 6vw, 86px);
  background:
    linear-gradient(180deg, #17100c, #241612 72%, #17100c);
  color: var(--white);
}

.gallery-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 56px);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  grid-template-rows: 210px 300px;
  gap: 18px;
  align-items: stretch;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 248, 237, 0.14);
  animation: imageRise 1000ms ease both;
}

.gallery-grid figure:nth-child(2) {
  animation-delay: 160ms;
}

.gallery-grid figure:nth-child(3) {
  animation-delay: 320ms;
}

.gallery-main {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.84) contrast(1.05);
  transition: transform 900ms ease, filter 900ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
  filter: sepia(0.08) saturate(1) contrast(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 999px;
  color: rgba(255, 248, 237, 0.78);
  background: rgba(18, 12, 8, 0.38);
  backdrop-filter: blur(14px);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reviews {
  overflow: hidden;
  padding: clamp(64px, 10vw, 132px) clamp(24px, 6vw, 86px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 8%, rgba(201, 164, 91, 0.16), transparent 32%),
    var(--wine);
}

.reviews-heading {
  color: var(--white);
  margin-bottom: clamp(28px, 5vw, 56px);
}

.review-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: reviewDrift 24s linear infinite alternate;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-grid {
  display: flex;
  gap: 16px;
}

.review-grid article {
  width: min(390px, 82vw);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 248, 237, 0.055);
}

.review-grid p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.review-grid span {
  color: rgba(255, 250, 244, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking {
  background:
    linear-gradient(rgba(244, 239, 230, 0.86), rgba(244, 239, 230, 0.94)),
    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(16, 20, 19, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-form label:nth-child(3),
.booking-form button {
  grid-column: 1 / -1;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(16, 20, 19, 0.18);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.72);
  font: inherit;
}

.booking-form button {
  justify-self: start;
  border-color: var(--deep);
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--wine));
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 6vw, 86px);
  color: rgba(255, 250, 244, 0.64);
  background: #12100d;
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 999px;
  color: var(--champagne);
  background: rgba(255, 248, 237, 0.045);
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(201, 164, 91, 0.14);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.chatbot {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.chat-toggle {
  min-height: 50px;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--deep);
  background: linear-gradient(135deg, #fff3c6, var(--gold));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.chat-panel {
  width: min(320px, calc(100vw - 44px));
  display: none;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 8px;
  padding: 20px;
  color: var(--white);
  background: rgba(23, 16, 12, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.chatbot.is-open .chat-panel {
  display: block;
  animation: imageRise 260ms ease both;
}

.chat-panel p:not(.eyebrow) {
  color: rgba(255, 248, 237, 0.72);
  line-height: 1.5;
}

.chat-panel a {
  display: inline-block;
  margin-top: 4px;
  color: var(--champagne);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.scroll-reveal {
  opacity: 0.01;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-page {
  background: var(--deep);
}

.inner-header {
  position: relative;
  background: rgba(18, 12, 8, 0.96);
}

.contact-hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: clamp(64px, 10vw, 132px) clamp(24px, 6vw, 86px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.9), rgba(58, 23, 29, 0.76)),
    url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1800&q=88") center/cover;
}

.contact-hero h1 {
  font-size: clamp(4rem, 11vw, 10rem);
}

.contact-hero p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 248, 237, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 248, 237, 0.08);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 237, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

textarea {
  width: 100%;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(18, 12, 8, 0.34);
  font: inherit;
  resize: vertical;
}

.contact-form input {
  color: var(--white);
  border-color: rgba(255, 248, 237, 0.18);
  background: rgba(18, 12, 8, 0.34);
}

.contact-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, #fff3c6, var(--gold));
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 248, 237, 0.12);
}

.contact-details article {
  min-height: 210px;
  padding: clamp(24px, 5vw, 54px);
  color: var(--white);
  background: var(--wine);
}

.contact-details span {
  display: block;
  margin-bottom: 18px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.22;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--champagne);
}

.reveal {
  animation: sectionFade 900ms ease both;
}

@supports (animation-timeline: view()) {
  .reveal {
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageRise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reviewDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes sectionFade {
  from {
    opacity: 0.01;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-content {
    justify-content: center;
    padding-bottom: 10vh;
  }

  .hero-video {
    transform: scale(2.08);
  }

  .intro,
  .split-section,
  .booking,
  .contact-hero,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .intro-line {
    width: 100%;
  }

  .ritual-list,
  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .gallery-main {
    grid-row: auto;
  }

  .gallery-grid figure {
    height: 360px;
  }

  .review-grid,
  .booking-form {
    flex-shrink: 0;
  }

  .contact-details article {
    min-height: 160px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 64px;
    padding: 14px 18px;
  }

  .header-button {
    min-height: 40px;
    padding: 11px 15px;
  }

  h1 {
    font-size: clamp(4.2rem, 24vw, 7rem);
  }

  .hero-logo {
    width: clamp(132px, 42vw, 190px);
  }

  .ritual-card,
  .ritual-card img {
    min-height: 280px;
  }

  .gallery-grid figure {
    height: 300px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 88px;
  }

  .chatbot {
    right: 14px;
    bottom: 14px;
  }
}
