:root {
  --cream: #f7efdf;
  --butter: #ffd34d;
  --butter-deep: #f4b621;
  --pink: #f3a6c8;
  --pink-soft: #ffd2e6;
  --plum: #4f0127;
  --plum-deep: #320018;
  --cocoa: #5a3529;
  --text-soft: #6f544f;
  --line: rgba(79, 1, 39, 0.1);
  --shadow: 0 22px 60px rgba(79, 1, 39, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--plum);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 77, 0.3), transparent 36%),
    radial-gradient(circle at bottom right, rgba(243, 166, 200, 0.24), transparent 26%),
    linear-gradient(180deg, #fff6d7 0%, var(--cream) 42%, #fff6e7 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
}

.page-shell::before {
  top: 2rem;
  right: -6rem;
  background: rgba(255, 211, 77, 0.25);
}

.page-shell::after {
  bottom: 4rem;
  left: -7rem;
  background: rgba(243, 166, 200, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.nav {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.68);
  box-shadow: 0 10px 30px rgba(79, 1, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--plum);
  background: linear-gradient(135deg, var(--butter), var(--pink));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong,
.nav-links a,
h1,
h2,
h3 {
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--plum);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.25rem 0;
  background: var(--plum);
  border-radius: 99px;
}

main {
  width: var(--container);
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

section {
  margin-top: 2rem;
}

.demo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(79, 1, 39, 0.08);
  border-radius: 26px;
  background: rgba(255, 248, 235, 0.74);
  box-shadow: 0 16px 34px rgba(79, 1, 39, 0.08);
}

.demo-banner-copy h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
  max-width: 24ch;
}

.hero,
.booking {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 7rem);
  padding: 2rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cocoa);
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.96;
  max-width: 12ch;
}

.hero-text,
.booking-copy p,
.service-body p,
.contact-panel p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--butter), var(--butter-deep));
  color: var(--plum-deep);
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(244, 182, 33, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 34px rgba(244, 182, 33, 0.36);
}

.button-secondary {
  background: rgba(255, 232, 243, 0.76);
  color: var(--plum);
  border: 1px solid rgba(79, 1, 39, 0.08);
  box-shadow: none;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.52);
  color: var(--plum);
  border: 1px solid rgba(79, 1, 39, 0.08);
  box-shadow: none;
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1.1rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-highlights li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(79, 1, 39, 0.06);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(79, 1, 39, 0.08), rgba(79, 1, 39, 0.12)),
    url("cat.jpg");
  background-size: cover;
  background-position: center 40%;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 248, 235, 0) 0 24%, rgba(255, 248, 235, 0.08) 34%, rgba(79, 1, 39, 0.18) 100%),
    linear-gradient(90deg, rgba(79, 1, 39, 0.22) 0%, rgba(79, 1, 39, 0.02) 28%, rgba(79, 1, 39, 0.02) 72%, rgba(79, 1, 39, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 248, 235, 0.04) 0%, rgba(79, 1, 39, 0.04) 100%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  z-index: 1;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 248, 235, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(79, 1, 39, 0.14);
}

.hero-card-main {
  left: 1.5rem;
  right: 6.5rem;
  bottom: 1.35rem;
  max-width: 420px;
}

.hero-card-main h2 {
  margin: 0.5rem 0;
  font-size: 1.6rem;
}

.hero-card-main p,
.testimonial-quote {
  margin: 0;
  color: var(--text-soft);
}

.hero-card-label,
.service-kicker {
  margin: 0;
  color: var(--cocoa);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-heading.compact {
  margin-bottom: 1rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card,
.stats-panel,
.booking,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(255, 248, 235, 0.72);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.service-image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 250ms ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.suite-image {
  background-image:
    linear-gradient(180deg, rgba(79, 1, 39, 0.06), rgba(79, 1, 39, 0.16)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Crect width='800' height='600' fill='%23fff1ca'/%3E%3Crect x='92' y='88' width='616' height='424' rx='42' fill='%23fff7e8'/%3E%3Crect x='150' y='328' width='330' height='92' rx='32' fill='%23f6bfd6'/%3E%3Crect x='474' y='178' width='128' height='164' rx='36' fill='%23ffd44f'/%3E%3Crect x='172' y='166' width='198' height='112' rx='28' fill='%2351032b'/%3E%3Ccircle cx='260' cy='222' r='18' fill='%23fff7e8'/%3E%3Ccircle cx='312' cy='222' r='18' fill='%23fff7e8'/%3E%3Cpath d='M248 256c18 18 34 27 48 27s30-9 48-27' stroke='%23fff7e8' stroke-width='12' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.spa-image {
  background-image:
    linear-gradient(180deg, rgba(79, 1, 39, 0.04), rgba(79, 1, 39, 0.18)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Crect width='800' height='600' fill='%23fff8eb'/%3E%3Crect x='86' y='92' width='628' height='416' rx='42' fill='%23ffe0ed'/%3E%3Ccircle cx='274' cy='304' r='122' fill='%23ffd44f'/%3E%3Crect x='426' y='176' width='172' height='84' rx='26' fill='%2351032b'/%3E%3Crect x='397' y='289' width='232' height='94' rx='32' fill='%23fff4cf'/%3E%3Ccircle cx='470' cy='222' r='18' fill='%23ffd44f'/%3E%3Ccircle cx='530' cy='222' r='18' fill='%23ffd44f'/%3E%3C/svg%3E");
}

.service-body {
  padding: 1.5rem;
}

.service-body h3 {
  margin: 0.5rem 0 0.8rem;
  font-size: 1.55rem;
  line-height: 1.15;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.testimonials {
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 232, 243, 0.6), rgba(255, 248, 235, 0.86)),
    rgba(255, 248, 235, 0.72);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  transition: transform 520ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: calc((100% - 2rem) / 3);
  padding: 1.75rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(79, 1, 39, 0.08);
}

.testimonial-rating {
  color: var(--butter-deep);
  letter-spacing: 0.16em;
  font-size: 1rem;
}

.testimonial-quote {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.9;
  max-width: 64ch;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.testimonial-meta strong {
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.testimonial-meta span {
  color: var(--text-soft);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.testimonial-dot {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(79, 1, 39, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-dot.is-active {
  background: var(--plum);
  transform: scale(1.15);
}

.stat-item {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(79, 1, 39, 0.06);
}

.stat-item strong {
  display: block;
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.4rem;
}

.booking {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(79, 1, 39, 0.14);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(243, 166, 200, 0.28);
}

.field-error {
  min-height: 1rem;
  color: #b04d3b;
  font-size: 0.82rem;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.contact-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.contact-panel p {
  margin: 0.2rem 0;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  background: rgba(79, 1, 39, 0.96);
  color: #fff9ef;
  box-shadow: 0 18px 40px rgba(79, 1, 39, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 920px) {
  main {
    padding-top: 1.75rem;
    padding-bottom: 3rem;
  }

  section {
    margin-top: 1.5rem;
  }

  .hero,
  .booking,
  .service-grid,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy,
  .booking-copy {
    max-width: 42rem;
  }

  .demo-banner {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .demo-banner-copy h2 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 460px;
    background-position: center 32%;
  }

  .service-body,
  .booking,
  .stats-panel,
  .testimonial-slider,
  .contact-panel {
    padding: 1.25rem;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking {
    gap: 1.35rem;
  }

  .contact-panel .button {
    width: 100%;
  }

  .testimonial-card {
    padding: 1.35rem;
    flex-basis: 100%;
    min-width: 100%;
  }

  .testimonial-track {
    gap: 0;
  }

  .testimonial-dots {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .nav {
    align-items: flex-start;
    border-radius: 28px;
    padding: 0.9rem 1rem;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 26px;
    background: rgba(255, 248, 235, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 40px rgba(79, 1, 39, 0.12);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0;
  }

  .nav-links {
    gap: 0.35rem;
  }

  .nav-links .button-small {
    width: 100%;
    margin-top: 0.35rem;
  }

  main {
    padding-top: 1.5rem;
  }

  h1 {
    max-width: 10ch;
  }

  .hero {
    gap: 1.35rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero-highlights li {
    width: 100%;
    min-height: 100%;
    padding: 0.8rem 0.9rem;
  }

  .hero-card-main {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .demo-banner .button {
    width: 100%;
  }

  .service-grid {
    gap: 1rem;
  }

  .service-image {
    min-height: 220px;
  }

  .service-body h3 {
    font-size: 1.38rem;
  }

  .stats-panel {
    gap: 0.85rem;
  }

  .stat-item {
    text-align: center;
  }

  .testimonial-slider {
    padding-bottom: 1.15rem;
  }

  .testimonial-card {
    border-radius: 22px;
  }

  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
  }

  .booking-copy {
    order: 2;
  }

  .booking-form {
    order: 1;
    gap: 0.85rem;
  }

  .booking-form label {
    gap: 0.38rem;
  }

  .booking-form .button,
  .contact-panel .button {
    width: 100%;
  }

  .contact-panel {
    gap: 1.15rem;
  }

}

@media (max-width: 520px) {
  :root {
    --container: min(100% - 1rem, 1120px);
  }

  .hero-visual {
    min-height: 340px;
    background-position: center 28%;
  }

  .demo-banner {
    padding: 1rem;
    border-radius: 22px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .hero-card-main h2 {
    font-size: 1.35rem;
  }

  .hero-card-main {
    padding: 1rem;
  }

  .hero-card-main p {
    line-height: 1.65;
  }

  .section-heading,
  .section-heading.compact {
    margin-bottom: 1rem;
  }

  .stats-panel,
  .booking,
  .service-body,
  .contact-panel,
  .testimonial-slider {
    padding: 1rem;
  }

  .testimonial-dots {
    gap: 0.55rem;
  }

  .testimonial-dot {
    width: 0.8rem;
    height: 0.8rem;
  }

  .booking-form input,
  .booking-form select {
    padding: 0.9rem 0.95rem;
  }

  .toast {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    font-size: 0.76rem;
  }

  .nav {
    padding-inline: 0.85rem;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }

  .hero {
    padding-top: 0.5rem;
  }

  .hero-text {
    margin-top: 1rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .service-body h3 {
    font-size: 1.24rem;
  }

  .stat-item strong {
    font-size: 1.9rem;
  }

  .testimonial-card {
    padding: 1.1rem;
  }

  .contact-panel h3 {
    font-size: 1.25rem;
  }
}
