:root {
  --bg: #f3ece0;
  --bg-strong: #e9dcc7;
  --panel: #fffdf8;
  --text: #1f1a16;
  --muted: #5d5247;
  --accent: #b6904d;
  --accent-deep: #8f6d35;
  --forest: #265b53;
  --line: rgba(31, 26, 22, 0.12);
  --line-strong: rgba(31, 26, 22, 0.22);
  --shadow: 0 18px 46px rgba(38, 26, 12, 0.15);
  --shadow-strong: 0 26px 64px rgba(34, 22, 10, 0.22);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1140px, 92vw);
  --ease: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.is-loading {
  overflow: hidden;
}

body {
  margin: 0;
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(182, 144, 77, 0.16), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(111, 150, 121, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f1e6 0%, #f3ece0 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f8f1e6 0%, #f3ece0 100%);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), visibility 620ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: preloaderFallbackHide 0.9s cubic-bezier(0.22, 1, 0.36, 1) 3s forwards;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-text {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.02em;
  color: #2b241d;
}

.preloader-line {
  width: 120px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, rgba(182, 144, 77, 0.95) 50%, transparent 100%);
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background-image: radial-gradient(rgba(24, 18, 14, 0.24) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(
    circle at center,
    rgba(214, 168, 97, 0.22) 0%,
    rgba(44, 104, 91, 0.1) 35%,
    rgba(44, 104, 91, 0) 72%
  );
  filter: blur(8px);
  transition: opacity 280ms ease, transform 220ms ease;
}

body.is-loaded.glow-enabled .cursor-glow {
  opacity: 0.82;
  animation: glowPulse 4.8s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 90;
  background: linear-gradient(90deg, #25584f 0%, #c9a061 50%, #f0d195 100%);
  box-shadow: 0 0 18px rgba(203, 163, 95, 0.52);
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

.ambient-one {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(182, 144, 77, 0.18);
  top: -170px;
  right: -120px;
  animation: driftOne 16s ease-in-out infinite;
}

.ambient-two {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(80, 116, 97, 0.12);
  bottom: -140px;
  left: -120px;
  animation: driftTwo 18s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(243, 236, 224, 0.78);
  border-bottom: 1px solid var(--line);
  transition: background var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 241, 230, 0.94);
  border-color: rgba(31, 26, 22, 0.2);
  box-shadow: 0 8px 24px rgba(31, 26, 22, 0.08);
}

body.is-loaded .site-header {
  animation: headerDrop 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(31, 26, 22, 0.18);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(150deg, rgba(255, 244, 218, 0.8), rgba(214, 180, 120, 0.4));
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(130deg, var(--accent) 0%, #d3af70 100%);
  color: #1b1409;
  box-shadow: 0 8px 24px rgba(143, 109, 53, 0.28);
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -160% auto auto -130%;
  width: 90%;
  height: 420%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(143, 109, 53, 0.32);
}

.btn:hover::before {
  transform: rotate(18deg) translateX(240%);
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.slot-btn:focus-visible {
  outline: 2px solid #265b53;
  outline-offset: 2px;
}

.magnetic {
  will-change: transform;
}

.btn-small {
  padding: 0.62rem 1.05rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(31, 26, 22, 0.24);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(31, 26, 22, 0.38);
  background: rgba(255, 253, 248, 0.7);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 36px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(243, 211, 155, 0.35), transparent 65%);
  animation: heroAura 12s ease-in-out infinite;
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -170px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(48, 91, 82, 0.2), transparent 65%);
  animation: heroAura 14s ease-in-out infinite reverse;
}

.hero-grid {
  perspective: 1200px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: rgba(182, 144, 77, 0.15);
  color: #4c3b1f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-deep);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.hero-title {
  max-width: 16ch;
}

.shimmer-text {
  background: linear-gradient(115deg, #2f2419 18%, #8c6b37 42%, #f1d39e 50%, #8c6b37 58%, #2f2419 82%);
  background-size: 210% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerFlow 9s linear infinite;
}

.hero p {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 54ch;
}

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

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #41372e;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(182, 144, 77, 0.75);
}

.hero-visual {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.image-frame,
.stat-card,
[data-parallax-depth] {
  will-change: transform;
}

.image-frame {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(31, 26, 22, 0.12);
  animation: floatFrame 8s ease-in-out infinite;
  background: #d9c3a0;
  transform-style: preserve-3d;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
  transform: translateX(-35%) rotate(8deg);
  animation: sheenSweep 7.8s ease-in-out infinite;
}

.image-frame img {
  transform: scale(1.01);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.08) contrast(1.04);
}

.hero-visual:hover .image-frame img {
  transform: scale(1.06);
}

body.is-loaded .hero-copy {
  animation: heroCopyIn 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-visual {
  animation: heroVisualIn 1020ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat-card {
  position: absolute;
  right: -10px;
  bottom: -26px;
  width: min(280px, 85%);
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(31, 26, 22, 0.12);
  box-shadow: 0 14px 28px rgba(31, 26, 22, 0.12);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.stat-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.prestige-band {
  padding: 40px 0 30px;
}

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

.prestige-item {
  border: 1px solid rgba(31, 26, 22, 0.14);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 253, 247, 0.94), rgba(239, 225, 198, 0.78));
  padding: 16px;
  box-shadow: 0 12px 24px rgba(34, 26, 13, 0.1);
  animation: metricFloat 7.4s ease-in-out infinite;
}

.prestige-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.55rem);
  line-height: 1;
  margin-bottom: 6px;
}

.prestige-item:nth-child(2) {
  animation-delay: 180ms;
}

.prestige-item:nth-child(3) {
  animation-delay: 320ms;
}

.prestige-item:nth-child(4) {
  animation-delay: 460ms;
}

.prestige-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4d443a;
}

.section {
  position: relative;
  --cinematic-intensity: 1;
  --cinematic-shift: 0px;
  --cinematic-scale: 1;
  --cinematic-glow: 0.08;
  padding: 86px 0;
  transform: translate3d(0, var(--cinematic-shift), 0) scale(var(--cinematic-scale));
  opacity: calc(0.76 + (var(--cinematic-intensity) * 0.24));
  filter: saturate(calc(0.9 + (var(--cinematic-intensity) * 0.12))) contrast(calc(0.95 + (var(--cinematic-intensity) * 0.1)));
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 340ms cubic-bezier(0.22, 1, 0.36, 1), filter 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.03) 100%);
  opacity: 0.35;
}

.section::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 8%;
  height: 58%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 32%, rgba(214, 168, 97, var(--cinematic-glow)), transparent 72%);
  opacity: calc(0.25 + (var(--cinematic-intensity) * 0.7));
  transition: opacity 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
}

.section-head {
  margin-bottom: 28px;
}

.section-head::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(38, 91, 83, 0.84), rgba(182, 144, 77, 0.6), transparent);
}

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

.card,
.review-card,
.gallery-card,
.appointment-form,
.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card::before,
.review-card::before,
.gallery-card::before,
.appointment-form::before,
.contact-panel::before,
.prestige-item::before {
  content: "";
  position: absolute;
  inset: -180% auto auto -140%;
  width: 78%;
  height: 320%;
  pointer-events: none;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover::before,
.review-card:hover::before,
.gallery-card:hover::before,
.appointment-form:hover::before,
.contact-panel:hover::before,
.prestige-item:hover::before {
  transform: rotate(18deg) translateX(250%);
}

.tilt-card {
  transform: perspective(980px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease, box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.card {
  padding: 22px;
}

.card-media {
  margin: -22px -22px 18px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid rgba(31, 26, 22, 0.09);
}

.card-media img {
  height: 200px;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.02);
}

.card:hover {
  --ty: -6px;
  box-shadow: 0 20px 40px rgba(31, 26, 22, 0.2);
  border-color: rgba(31, 26, 22, 0.2);
}

.card:hover .card-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.card h3 {
  margin: 4px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-block;
  margin-top: 16px;
  padding: 0.36rem 0.64rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  background: rgba(38, 91, 83, 0.12);
  color: #1d4640;
}

.about {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.6), rgba(233, 220, 199, 0.5));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 28px;
  align-items: center;
}

.about-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--muted);
}

.about-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-copy li {
  position: relative;
  padding-left: 20px;
}

.about-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}

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

.gallery-card {
  margin: 0;
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.02);
}

.gallery-card figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 11, 8, 0.75) 100%);
  color: #fef9ef;
  font-size: 0.9rem;
  transform: translateY(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover {
  --ty: -6px;
  box-shadow: 0 20px 40px rgba(31, 26, 22, 0.22);
}

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

.gallery-card:hover figcaption {
  transform: translateY(-3px);
}

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

.review-card {
  padding: 22px;
}

.review-card:hover {
  --ty: -6px;
  box-shadow: 0 20px 40px rgba(31, 26, 22, 0.2);
}

.review-card p {
  margin: 0 0 12px;
  color: #362f27;
}

.review-card span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.booking {
  background:
    radial-gradient(circle at 14% 32%, rgba(38, 91, 83, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.62), rgba(233, 220, 199, 0.74));
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.booking-copy p {
  color: var(--muted);
}

.contact-panel {
  margin-top: 22px;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.contact-panel:hover {
  --ty: -5px;
}

.contact-panel a {
  color: #1f362e;
  font-weight: 600;
}

.appointment-form {
  padding: 20px;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.92), rgba(250, 241, 225, 0.83));
  backdrop-filter: blur(4px);
}

.appointment-form:hover {
  --ty: -5px;
}

.appointment-form label,
.slot-picker legend,
.channel-row span {
  font-size: 0.86rem;
  font-weight: 700;
  color: #443c35;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 26, 22, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  padding: 0.72rem 0.82rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.appointment-form textarea {
  resize: vertical;
  min-height: 82px;
}

.slot-picker {
  margin: 8px 0;
  border: 0;
  padding: 0;
}

.slot-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.slot-btn {
  border: 1px solid rgba(31, 26, 22, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: #2c251f;
  padding: 0.56rem 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.slot-btn:hover {
  border-color: rgba(38, 91, 83, 0.55);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 26, 22, 0.1);
}

.slot-btn.is-active {
  background: #265b53;
  color: #fbf8f1;
  border-color: #265b53;
}

.slot-btn[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

.channel-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 6px 0;
}

.channel-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.86rem;
}

.channel-row input[type="radio"] {
  width: auto;
  margin: 0;
}

.form-status {
  margin: 8px 0 0;
  min-height: 22px;
  font-size: 0.88rem;
  color: #1d5148;
  font-weight: 600;
}

.form-status.error {
  color: #8f2a2a;
}

.form-status.success {
  color: #1d5148;
}

.slot-empty {
  margin: 4px 0 0;
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: #5c5248;
}

.site-footer {
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(245, 237, 223, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #574d43;
  font-size: 0.9rem;
}

.footer-inner a {
  color: #2d544b;
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: linear-gradient(130deg, #1f7c61, #1d6f57);
  color: #f0fff9;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(19, 69, 54, 0.3);
  animation: pulse 2.4s ease-in-out infinite;
}

.floating-wa::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(30, 126, 98, 0.4);
  animation: waRing 2.2s ease-out infinite;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.5);
  backdrop-filter: blur(8px);
}

.booking-modal-panel {
  position: relative;
  width: min(640px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(251, 242, 226, 0.95));
  box-shadow: 0 30px 72px rgba(16, 11, 6, 0.36);
  padding: 22px 22px 20px;
  transform: translate3d(0, 16px, 0) scale(0.96);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal.is-open .booking-modal-panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(31, 26, 22, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #3f352a;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.booking-modal-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b653f;
}

.booking-modal h3 {
  margin: 8px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.05;
}

.booking-modal-copy {
  margin: 0;
  color: #554c43;
}

.booking-modal-meta {
  margin: 16px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-modal-meta div {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 26, 22, 0.12);
}

.booking-modal-meta dt {
  margin: 0 0 3px;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6f6252;
  font-weight: 700;
}

.booking-modal-meta dd {
  margin: 0;
  font-size: 0.97rem;
  color: #2e2721;
  font-weight: 700;
}

.booking-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2),
.review-grid .reveal:nth-child(2),
.prestige-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.service-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3),
.review-grid .reveal:nth-child(3),
.prestige-grid .reveal:nth-child(3) {
  transition-delay: 170ms;
}

.prestige-grid .reveal:nth-child(4) {
  transition-delay: 240ms;
}

@keyframes shimmerFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 210% 50%;
  }
}

@keyframes floatFrame {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.04) translateY(-1px);
  }
}

@keyframes driftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-16px, 12px, 0);
  }
}

@keyframes driftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -10px, 0);
  }
}

@keyframes heroAura {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.08);
  }
}

@keyframes metricFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes heroCopyIn {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 12px, 0);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroVisualIn {
  0% {
    opacity: 0;
    transform: translate3d(20px, 14px, 0) scale(0.96);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes headerDrop {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sheenSweep {
  0%,
  100% {
    transform: translateX(-58%) rotate(8deg);
    opacity: 0;
  }
  15% {
    opacity: 0.85;
  }
  42% {
    transform: translateX(35%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes waRing {
  0% {
    opacity: 0.55;
    transform: scale(0.98);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    filter: blur(8px);
  }
  50% {
    filter: blur(12px);
  }
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes preloaderFallbackHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 1120px) {
  .prestige-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-title {
    max-width: 100%;
  }

  .stat-card {
    position: static;
    margin-top: 14px;
  }

  .service-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

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

.location-map {
  padding-top: 72px;
}

.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(31, 26, 22, 0.16);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 44px rgba(28, 20, 10, 0.18);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: min(56vw, 470px);
  min-height: 320px;
  border: 0;
  filter: saturate(0.96) contrast(1.02);
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 39;
  border: 1px solid rgba(31, 26, 22, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
  color: #2f2922;
  padding: 0.54rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(28, 20, 10, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0);
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1), transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-top:hover {
  box-shadow: 0 18px 30px rgba(28, 20, 10, 0.25);
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .btn-small {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .service-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
  }

  .back-top {
    right: 12px;
    bottom: 76px;
    padding: 0.48rem 0.86rem;
  }

  .map-card iframe {
    min-height: 280px;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-modal-panel {
    border-radius: 16px;
    padding: 18px 14px 14px;
  }

  .booking-modal-meta {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }

  .tilt-card {
    transform: none !important;
  }

  .card:hover,
  .gallery-card:hover,
  .review-card:hover,
  .contact-panel:hover,
  .appointment-form:hover {
    --ty: 0px;
  }
}

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

  .noise-overlay {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .section {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}
