
:root {
  --plum-950: #260718;
  --plum-900: #351024;
  --plum-800: #4a1638;
  --plum-700: #652b50;
  --plum-500: #96647f;
  --rose-100: #fff0e9;
  --rose-200: #f9d8cf;
  --rose-300: #efb8b3;
  --cream: #fffaf7;
  --white: #ffffff;
  --gold-300: #f2c49a;
  --gold-500: #c88956;
  --ink: #2d1824;
  --muted: #735d69;
  --line: rgba(74, 22, 56, 0.13);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(47, 11, 34, 0.16);
  --shadow-soft: 0 18px 48px rgba(47, 11, 34, 0.11);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(100% - 36px, 1560px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 183, 178, 0.42), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(255, 230, 215, 0.92), transparent 31rem),
    linear-gradient(135deg, #fffaf7, #ffece4 55%, #f4ceca);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a,
button,
input,
select,
textarea {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--plum-800);
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% -10%, rgba(255, 255, 255, 0.96), transparent 38rem),
    linear-gradient(145deg, rgba(255, 250, 246, 0.97), rgba(255, 231, 220, 0.92));
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(74, 22, 56, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(74, 22, 56, 0.032),
    0 0 0 54px rgba(74, 22, 56, 0.023),
    0 0 0 90px rgba(74, 22, 56, 0.015);
  pointer-events: none;
}

.site-shell::before {
  top: -330px;
  right: -170px;
}

.site-shell::after {
  bottom: -360px;
  left: -210px;
}

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

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(74, 22, 56, 0.08);
  background: rgba(255, 248, 244, 0.78);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--plum-800);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(145deg, var(--plum-800), var(--plum-700));
  box-shadow: 0 12px 28px rgba(74, 22, 56, 0.22);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  color: var(--plum-800);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 850;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--plum-800);
  background: rgba(255, 255, 255, 0.68);
}

.button,
.button-small {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  text-decoration: none;
  font-weight: 950;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    filter 200ms ease;
}

.button {
  min-height: 56px;
  padding: 0 23px;
  border-radius: 18px;
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.83rem;
}

.button::before,
.button-small::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -55%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 550ms ease;
}

.button:hover::before,
.button-small:hover::before {
  left: 120%;
}

.button:hover,
.button-small:hover {
  transform: translateY(-3px);
  filter: brightness(1.02);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--plum-800), var(--plum-700));
  box-shadow: 0 16px 30px rgba(74, 22, 56, 0.22);
}

.button-light {
  border: 1px solid rgba(74, 22, 56, 0.14);
  color: var(--plum-800);
  background: rgba(255, 255, 255, 0.78);
}

.button-gold {
  color: var(--plum-900);
  background: linear-gradient(135deg, #ffe8c6, #eda16f);
  box-shadow: 0 14px 28px rgba(44, 8, 29, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 72px);
  min-height: calc(100vh - 80px);
  padding-block: 44px 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--plum-700);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "✦";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--plum-800);
  box-shadow: 0 10px 22px rgba(74, 22, 56, 0.19);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 6.7vw, 7rem);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.gold-line {
  display: block;
  margin-top: 20px;
  color: var(--gold-500);
  font-size: clamp(0.86rem, 1.4vw, 1.06rem);
  font-weight: 950;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-copy,
.page-hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.78;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-points span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gold-500);
}

.hero-media {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 75px rgba(47, 11, 34, 0.22);
  transform: rotate(0.8deg);
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-frame:hover {
  transform: rotate(0deg) translateY(-7px) scale(1.008);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 42%, rgba(255, 255, 255, 0.21));
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-frame:hover img {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 20px;
  color: var(--white);
  background: rgba(74, 22, 56, 0.82);
  box-shadow: 0 18px 38px rgba(47, 11, 34, 0.22);
  backdrop-filter: blur(13px);
}

.hero-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
}

.hero-badge span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.79rem;
  line-height: 1.45;
}

.sparkle {
  position: absolute;
  z-index: 2;
  color: var(--gold-300);
  pointer-events: none;
  animation: sparkle 3.4s ease-in-out infinite;
}

.sparkle-one {
  top: 8%;
  left: -2%;
  font-size: 1.5rem;
}

.sparkle-two {
  right: 4%;
  bottom: -3%;
  font-size: 2rem;
  animation-delay: 1.2s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.18) rotate(18deg);
  }
}

.section {
  position: relative;
  padding-block: 86px;
}

.section-soft {
  border-top: 1px solid rgba(74, 22, 56, 0.08);
  border-bottom: 1px solid rgba(74, 22, 56, 0.08);
  background: rgba(255, 255, 255, 0.38);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 5% 5%, rgba(255, 255, 255, 0.12), transparent 19rem),
    linear-gradient(135deg, var(--plum-800), var(--plum-950));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}

.section-label {
  margin: 0 0 10px;
  color: var(--gold-500);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.section-dark .section-label {
  color: var(--gold-300);
}

.section-title {
  margin: 0;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.7vw, 4.8rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.046em;
  text-wrap: balance;
}

.section-dark .section-title {
  color: var(--white);
}

.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.73);
}

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

.special-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(74, 22, 56, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 246, 0.91);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.special-card:hover,
.special-card:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(74, 22, 56, 0.3);
  box-shadow: 0 30px 65px rgba(47, 11, 34, 0.18);
  outline: none;
}

.special-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(390px, 1fr) minmax(0, 1fr);
  min-height: 420px;
}

.special-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--rose-200);
}

.special-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 40%, rgba(255, 255, 255, 0.18)),
    linear-gradient(0deg, rgba(46, 11, 34, 0.23), transparent 45%);
  pointer-events: none;
}

.special-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.special-card:hover .special-media img {
  transform: scale(1.075);
}

.price-pill {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(74, 22, 56, 0.91);
  box-shadow: 0 10px 24px rgba(47, 11, 34, 0.23);
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.special-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  min-width: 0;
}

.special-content::after {
  content: "✦";
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(200, 137, 86, 0.24);
  font-size: 3rem;
  transform: rotate(12deg);
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--gold-500);
  font-size: 0.71rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.special-card h3,
.service-card h3 {
  margin: 0;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
}

.special-card h3 {
  font-size: clamp(1.65rem, 2.1vw, 2.3rem);
}

.special-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--plum-800);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-link span {
  transition: transform 180ms ease;
}

.special-card:hover .card-link span {
  transform: translateX(6px);
}

.luxury-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.luxury-item {
  padding: 18px;
  border: 1px solid rgba(74, 22, 56, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.luxury-item strong {
  display: block;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.luxury-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 12px;
}

.instagram-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: var(--rose-200);
  box-shadow: var(--shadow-soft);
}

.instagram-item:nth-child(1),
.instagram-item:nth-child(6) {
  grid-column: span 6;
  grid-row: span 4;
}

.instagram-item:nth-child(3),
.instagram-item:nth-child(8) {
  grid-row: span 3;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 550ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 550ms ease;
}

.instagram-item::after {
  content: "View beauty moment";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(74, 22, 56, 0.16), rgba(46, 11, 34, 0.7));
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 260ms ease;
}

.instagram-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.instagram-item:hover::after {
  opacity: 1;
}

.booking-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(74, 22, 56, 0.11);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 184, 179, 0.28), transparent 20rem),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--plum-800);
  font-size: 0.79rem;
  font-weight: 950;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(74, 22, 56, 0.15);
  border-radius: 15px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.83);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(200, 137, 86, 0.13);
  transform: translateY(-1px);
}

.form-help {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  margin: 5px 0 0;
  color: var(--plum-700);
  font-size: 0.82rem;
  font-weight: 850;
}

.booking-perks {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}

.booking-perk {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(74, 22, 56, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.48);
}

.booking-perk-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: var(--white);
  background: var(--plum-800);
  font-weight: 950;
}

.booking-perk strong {
  display: block;
  color: var(--plum-800);
}

.booking-perk span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(27px, 4vw, 48px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 255, 255, 0.14), transparent 18rem),
    linear-gradient(135deg, var(--plum-800), var(--plum-950));
  box-shadow: 0 28px 58px rgba(47, 11, 34, 0.24);
}

.location-panel .section-title {
  color: var(--white);
}

.location-panel .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.map-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(24deg, transparent 46%, rgba(255, 255, 255, 0.09) 47% 50%, transparent 51%),
    linear-gradient(145deg, transparent 38%, rgba(255, 255, 255, 0.07) 39% 43%, transparent 44%),
    rgba(255, 255, 255, 0.06);
}

.map-route {
  position: absolute;
  width: 76%;
  height: 76%;
  border: 3px dashed rgba(244, 174, 121, 0.74);
  border-color: rgba(244, 174, 121, 0.75) transparent transparent rgba(244, 174, 121, 0.75);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50% 50% 50% 10px;
  color: var(--plum-800);
  background: linear-gradient(145deg, #ffe6bf, #efa06f);
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.08),
    0 18px 32px rgba(0, 0, 0, 0.25);
  transform: rotate(-45deg);
  animation: map-pin 2.2s ease-in-out infinite;
}

.map-pin span {
  transform: rotate(45deg);
  font-size: 1.45rem;
}

@keyframes map-pin {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }

  50% {
    transform: rotate(-45deg) translateY(-7px);
  }
}

.map-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(30, 5, 21, 0.58);
  backdrop-filter: blur(10px);
}

.map-caption strong {
  display: block;
}

.map-caption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.79rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding-block: 68px 74px;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-category {
  margin-bottom: 66px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.category-heading h2 {
  margin: 0;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 3.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.category-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 22, 56, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 22, 56, 0.3);
  box-shadow: 0 26px 54px rgba(47, 11, 34, 0.15);
}

.service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 11, 34, 0.26), transparent 50%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-price {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(74, 22, 56, 0.92);
  font-weight: 950;
}

.service-content {
  padding: 23px;
}

.service-card h3 {
  font-size: 1.62rem;
}

.service-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-actions .button-small {
  min-height: 42px;
}

.service-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(27px, 4vw, 46px);
  border: 1px solid rgba(74, 22, 56, 0.11);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 183, 178, 0.35), transparent 22rem),
    rgba(255, 255, 255, 0.67);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin: 0;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.cta-banner p {
  max-width: 750px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  border-top: 1px solid rgba(74, 22, 56, 0.09);
  background: rgba(255, 255, 255, 0.32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr;
  gap: 34px;
  padding-block: 48px 36px;
}

.footer h3 {
  margin: 0 0 13px;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.7;
}

.footer a {
  display: block;
  text-decoration: none;
}

.footer a:hover {
  color: var(--plum-800);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 20px 28px;
  border-top: 1px solid rgba(74, 22, 56, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

.quick-actions {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(74, 22, 56, 0.93);
  box-shadow: 0 18px 42px rgba(31, 5, 22, 0.33);
  backdrop-filter: blur(14px);
}

.quick-actions a {
  display: grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 950;
}

.quick-actions a:first-child {
  color: var(--plum-800);
  background: #ffd8b1;
}

.modal,
.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  background: rgba(34, 8, 24, 0.72);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.open,
.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.modal-box {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 32px;
  background: linear-gradient(145deg, #fffaf6, #ffe4d8);
  box-shadow: 0 36px 100px rgba(20, 3, 14, 0.46);
  transform: translateY(28px) scale(0.97);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close,
.lightbox-close {
  position: absolute;
  z-index: 6;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(74, 22, 56, 0.14);
  border-radius: 50%;
  color: var(--plum-800);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(74, 22, 56, 0.15);
  font-size: 1.35rem;
  font-weight: 900;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 52px;
}

.modal-picture {
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  background: var(--rose-200);
}

.modal-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--plum-800);
  background: rgba(74, 22, 56, 0.08);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.modal-badge::before {
  content: "✦";
  color: var(--gold-500);
}

.modal-title {
  margin: 17px 0 0;
  color: var(--plum-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.modal-price {
  display: block;
  margin-top: 16px;
  color: var(--gold-500);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

.modal-copy {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.fact {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid rgba(74, 22, 56, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.fact-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 13px;
  color: var(--white);
  background: var(--plum-800);
  font-weight: 950;
}

.fact-label {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-value {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.modal-actions .wide {
  grid-column: 1 / -1;
}

.lightbox-box {
  position: relative;
  width: min(1040px, 100%);
  max-height: 92vh;
}

.lightbox-box img {
  width: 100%;
  max-height: 88vh;
  border-radius: 26px;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(14, 1, 9, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1180px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 79px;
    right: 18px;
    left: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 250, 247, 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 13px;
  }

  .nav-links a:hover {
    background: rgba(74, 22, 56, 0.06);
  }

  .menu-toggle {
    display: grid;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 980px;
  }

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

  .booking-copy {
    position: static;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .special-card,
  .special-card.featured {
    grid-column: auto;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  }
.luxury-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-item,
  .instagram-item:nth-child(1),
  .instagram-item:nth-child(3),
  .instagram-item:nth-child(6),
  .instagram-item:nth-child(8) {
    grid-column: span 6;
    grid-row: span 3;
  }

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

  .modal-picture {
    min-height: 330px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1560px);
  }

  .topbar {
    position: sticky;
  }

  .nav {
    min-height: 72px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-actions .button-small {
    display: none;
  }

  .hero {
    padding-block: 38px 54px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.4rem);
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -42px 14px 0;
  }

  .section {
    padding-block: 62px;
  }

  .special-card,
  .special-card.featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .special-media {
    height: 255px;
  }

  .special-content {
    padding: 24px;
  }

  .instagram-grid {
    grid-auto-rows: 92px;
  }

  .instagram-item,
  .instagram-item:nth-child(1),
  .instagram-item:nth-child(3),
  .instagram-item:nth-child(6),
  .instagram-item:nth-child(8) {
    grid-column: span 6;
    grid-row: span 3;
  }

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

  .form-field.full {
    grid-column: auto;
  }

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

  .category-heading {
    display: block;
  }

  .category-heading p {
    margin-top: 10px;
  }

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

  .footer-bottom {
    display: block;
    line-height: 1.7;
  }

  .modal-grid {
    padding: 24px 18px 22px;
  }

  .modal-picture {
    min-height: 220px;
  }

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

  .modal-actions .wide {
    grid-column: auto;
  }

  .quick-actions {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .instagram-item,
  .instagram-item:nth-child(1),
  .instagram-item:nth-child(3),
  .instagram-item:nth-child(6),
  .instagram-item:nth-child(8) {
    grid-column: 1 / -1;
    grid-row: span 3;
  }

  .luxury-strip {
    grid-template-columns: 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .quick-actions,
  .modal,
  .lightbox {
    display: none !important;
  }

  body {
    background: var(--white);
  }

  .site-shell {
    background: var(--white);
  }
}


/* Premium visual refinement */
.promise-section {
  padding-top: 34px;
}

.promise-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 58px);
  border: 1px solid rgba(74, 22, 56, 0.11);
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 183, 178, 0.34), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 239, 232, 0.76));
  box-shadow: var(--shadow);
}

.promise-panel::before {
  content: "✦";
  position: absolute;
  top: -28px;
  right: 24px;
  color: rgba(200, 137, 86, 0.16);
  font-size: 9rem;
  transform: rotate(13deg);
  pointer-events: none;
}

.promise-copy {
  position: relative;
  z-index: 1;
}

.promise-copy .section-copy {
  margin-top: 18px;
  max-width: 650px;
}

.promise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
}

.promise-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  padding: 17px;
  border: 1px solid rgba(74, 22, 56, 0.09);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.58);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.promise-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 15px 34px rgba(47, 11, 34, 0.09);
}

.promise-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--plum-800), var(--plum-700));
  box-shadow: 0 10px 22px rgba(74, 22, 56, 0.17);
  font-size: 0.82rem;
  font-weight: 950;
}

.promise-card strong {
  align-self: end;
  color: var(--plum-800);
  font-size: 1rem;
}

.promise-card p {
  align-self: start;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.48;
}

.mobile-booking-strip {
  display: none;
}

/* More elegant depth and hover treatment */
.hero-frame,
.special-card,
.service-card,
.instagram-item,
.booking-card,
.location-panel {
  backface-visibility: hidden;
}

.special-card::before,
.service-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.special-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.instagram-item {
  border: 1px solid rgba(74, 22, 56, 0.08);
}

.booking-card {
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 183, 178, 0.34), transparent 70%);
  pointer-events: none;
}

.booking-form {
  position: relative;
  z-index: 1;
}

/* Tablet refinement */
@media (max-width: 1180px) {
  .nav {
    position: relative;
  }

  .nav-links {
    right: 0;
    left: auto;
    width: min(360px, calc(100vw - 36px));
  }

  .hero-frame {
    transform: none;
  }

  .hero-frame:hover {
    transform: translateY(-5px);
  }

  .promise-panel {
    grid-template-columns: 1fr;
  }
}

/* Stronger mobile layout */
@media (max-width: 720px) {
  :root {
    --container: min(100% - 20px, 1560px);
    --radius-lg: 25px;
    --radius-md: 20px;
  }

  body {
    background:
      radial-gradient(circle at 12% 5%, rgba(244, 183, 178, 0.34), transparent 20rem),
      linear-gradient(180deg, #fffaf7, #fbe2da);
  }

  .topbar {
    background: rgba(255, 248, 244, 0.92);
  }

  .nav {
    min-height: 68px;
    gap: 10px;
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand-name {
    max-width: 190px;
    font-size: 0.93rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .nav-links {
    top: 69px;
    right: 0;
    width: min(330px, calc(100vw - 20px));
    padding: 10px;
    border-radius: 18px;
  }

  .nav-links a {
    padding: 14px;
    font-size: 0.9rem;
  }

  .hero {
    gap: 27px;
    padding-block: 34px 25px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 0.67rem;
    letter-spacing: 0.17em;
  }

  .eyebrow::before {
    width: 30px;
    height: 30px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(3rem, 15.4vw, 4.8rem);
    line-height: 0.94;
  }

  .gold-line {
    margin-top: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .hero-copy,
  .page-hero-copy {
    margin-top: 19px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 23px;
  }

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

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-frame {
    border-radius: 24px;
  }

  .hero-frame img {
    aspect-ratio: 4 / 3;
  }

  .hero-badge {
    max-width: none;
    margin: -34px 12px 0;
    padding: 15px 16px;
    border-radius: 17px;
  }

  .hero-badge strong {
    font-size: 1.08rem;
  }

  .mobile-booking-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    padding: 17px;
    border: 1px solid rgba(74, 22, 56, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 32px rgba(47, 11, 34, 0.09);
  }

  .mobile-booking-strip span {
    display: block;
    color: var(--gold-500);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-booking-strip strong {
    display: block;
    margin-top: 5px;
    color: var(--plum-800);
    line-height: 1.35;
  }

  .mobile-booking-strip .button {
    min-height: 50px;
  }

  .section {
    padding-block: 56px;
  }

  .section-heading {
    gap: 13px;
    margin-bottom: 25px;
  }

  .section-title {
    font-size: clamp(2.25rem, 11.5vw, 3.5rem);
    line-height: 1;
  }

  .section-copy {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .special-grid {
    gap: 17px;
  }

  .special-card,
  .special-card.featured {
    border-radius: 24px;
  }

  .special-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .special-content {
    padding: 22px 20px 24px;
  }

  .special-content::after {
    right: 16px;
    bottom: 13px;
    font-size: 2.4rem;
  }

  .special-card h3 {
    padding-right: 14px;
    font-size: 1.58rem;
    line-height: 1.12;
  }

  .special-card p {
    font-size: 0.88rem;
  }

  .price-pill {
    right: 12px;
    bottom: 12px;
  }

  .luxury-strip {
    gap: 9px;
    margin-top: 17px;
  }

  .luxury-item {
    padding: 14px 11px;
    border-radius: 16px;
  }

  .promise-section {
    padding-top: 10px;
  }

  .promise-panel {
    gap: 24px;
    padding: 23px 18px;
    border-radius: 25px;
  }

  .promise-panel::before {
    top: -10px;
    right: -10px;
    font-size: 6rem;
  }

  .promise-grid {
    gap: 10px;
  }

  .promise-card {
    grid-template-columns: 43px 1fr;
    padding: 14px;
    border-radius: 17px;
  }

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

  .promise-icon {
    width: 43px;
    height: 43px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 9px;
  }

  .instagram-item,
  .instagram-item:nth-child(1),
  .instagram-item:nth-child(3),
  .instagram-item:nth-child(6),
  .instagram-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .instagram-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .instagram-item::after {
    content: "View";
    font-size: 0.68rem;
  }

  .booking-wrap {
    gap: 27px;
  }

  .booking-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .booking-form {
    gap: 14px;
  }

  .form-field input,
  .form-field select {
    min-height: 50px;
  }

  .form-field textarea {
    min-height: 110px;
  }

  .booking-perks {
    margin-top: 20px;
  }

  .booking-perk {
    padding: 13px;
  }

  .location-panel {
    gap: 22px;
    padding: 22px 17px;
    border-radius: 25px;
  }

  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .map-art {
    min-height: 270px;
    border-radius: 20px;
  }

  .footer-grid {
    gap: 23px;
    padding-block: 38px 28px;
  }

  .footer h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
  }

  .footer p,
  .footer a {
    font-size: 0.9rem;
  }

  .quick-actions {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
    gap: 5px;
    padding: 6px;
  }

  .quick-actions a {
    min-width: 43px;
    height: 43px;
    padding-inline: 11px;
    font-size: 0.73rem;
  }

  .modal,
  .lightbox {
    padding: 8px;
    align-items: end;
  }

  .modal-box {
    width: 100%;
    max-height: 94vh;
    border-radius: 26px 26px 0 0;
  }

  .modal-grid {
    gap: 20px;
    padding: 61px 15px 20px;
  }

  .modal-picture {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 19px;
  }

  .modal-title {
    font-size: 2.35rem;
  }

  .modal-price {
    font-size: 2.55rem;
  }

  .fact {
    padding: 12px;
  }

  .lightbox-box img {
    border-radius: 20px 20px 0 0;
  }

  .page-hero {
    gap: 27px;
    padding-block: 39px 54px;
  }

  .page-hero-media {
    border-radius: 24px;
  }

  .page-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .service-category {
    margin-bottom: 49px;
  }

  .category-heading {
    margin-bottom: 18px;
  }

  .category-heading h2 {
    font-size: 2.3rem;
  }

  .service-grid {
    gap: 16px;
  }

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

  .service-content {
    padding: 20px;
  }

  .service-actions {
    display: grid;
  }

  .service-actions .button-small {
    width: 100%;
  }

  .cta-banner {
    padding: 22px 17px;
    border-radius: 24px;
  }

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

@media (max-width: 420px) {
  .brand-name {
    max-width: 145px;
  }

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

  .instagram-item,
  .instagram-item:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .luxury-strip {
    grid-template-columns: 1fr 1fr;
  }

  .quick-actions a:nth-child(3) {
    display: none;
  }
}


/* Landing section background image enhancement */
.hero.container {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-inline: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(74, 22, 56, 0.08);
  border-radius: 38px;
  background:
    linear-gradient(115deg, rgba(255, 250, 247, 0.94), rgba(255, 240, 232, 0.86));
  box-shadow: 0 28px 70px rgba(47, 11, 34, 0.12);
}

.hero.container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(100deg, rgba(255, 249, 246, 0.93) 0%, rgba(255, 244, 239, 0.84) 38%, rgba(255, 236, 227, 0.58) 100%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
}

.hero.container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.52), transparent 20rem),
    radial-gradient(circle at 84% 75%, rgba(244, 183, 178, 0.26), transparent 18rem);
  pointer-events: none;
}

.hero > :first-child {
  position: relative;
  z-index: 1;
  padding-block: 8px;
}

.hero-copy {
  max-width: 620px;
}

@media (max-width: 1180px) {
  .hero.container {
    padding-inline: 22px;
    border-radius: 30px;
  }
}

@media (max-width: 720px) {
  .hero.container {
    padding-inline: 16px;
    padding-top: 24px;
    padding-bottom: 20px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 250, 247, 0.94), rgba(255, 240, 232, 0.88));
  }

  .hero.container::before {
    background-image:
      linear-gradient(180deg, rgba(255, 249, 246, 0.92) 0%, rgba(255, 244, 239, 0.78) 42%, rgba(255, 236, 227, 0.58) 100%),
      url("images/hero.jpg");
    background-position: 62% center;
  }

  .hero > :first-child {
    padding-block: 0;
  }
}

@media (max-width: 420px) {
  .hero.container {
    padding-inline: 14px;
  }
}

/* Database application additions */
.skip-link {
  position: fixed;
  z-index: 5000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--plum-800, #4a1638);
  transform: translateY(-150%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-links a.active {
  color: var(--gold-500, #c88956);
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted, #735d69);
  font-size: .73rem;
  font-weight: 850;
  white-space: nowrap;
}

.open-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b86868;
  box-shadow: 0 0 0 4px rgba(184, 104, 104, .1);
}

.open-status.is-open span {
  background: #4d9b6a;
  box-shadow: 0 0 0 4px rgba(77, 155, 106, .12);
}

.flash {
  margin-top: 14px;
  padding: 14px 17px;
  border-radius: 15px;
  font-weight: 800;
}

.flash-success {
  border: 1px solid rgba(42, 129, 83, .22);
  color: #245e3b;
  background: #ecf8f1;
}

.flash-error {
  border: 1px solid rgba(174, 55, 55, .22);
  color: #7d2929;
  background: #fff0f0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 65px);
  padding-block: 66px 72px;
}

.page-hero-grid .hero-frame img {
  aspect-ratio: 16 / 10;
}

.page-title {
  margin: 0;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.page-intro {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted, #735d69);
  font-size: 1.02rem;
  line-height: 1.75;
}

.filter-bar {
  position: sticky;
  z-index: 20;
  top: 90px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .35fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 12px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 19px;
  background: rgba(255, 250, 247, .9);
  box-shadow: 0 15px 40px rgba(47, 11, 34, .09);
  backdrop-filter: blur(18px);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(74, 22, 56, .14);
  border-radius: 14px;
  outline: none;
  padding: 0 14px;
  color: var(--ink, #2d1824);
  background: #fff;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--gold-500, #c88956);
  box-shadow: 0 0 0 4px rgba(200, 137, 86, .13);
}

.service-category-section {
  margin-bottom: 66px;
}

.service-category-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 23px;
}

.service-category-header h2 {
  margin: 0;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -.04em;
}

.service-category-header p {
  max-width: 520px;
  margin: 0;
  color: var(--muted, #735d69);
  line-height: 1.65;
}

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

.database-service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74, 22, 56, .11);
  border-radius: 25px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 45px rgba(47, 11, 34, .1);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.database-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(74, 22, 56, .28);
  box-shadow: 0 27px 55px rgba(47, 11, 34, .15);
}

.database-service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f5d5cd;
}

.database-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46, 11, 34, .25), transparent 52%);
}

.database-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

.database-service-card:hover .database-service-image img {
  transform: scale(1.06);
}

.database-service-price {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(74, 22, 56, .92);
  font-weight: 950;
  backdrop-filter: blur(8px);
}

.database-service-content {
  padding: 23px;
}

.database-service-content h3 {
  margin: 0;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 1.14;
}

.database-service-content p {
  margin: 10px 0 17px;
  color: var(--muted, #735d69);
  line-height: 1.6;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.empty-state {
  padding: 34px;
  border: 1px dashed rgba(74, 22, 56, .2);
  border-radius: 22px;
  color: var(--muted, #735d69);
  background: rgba(255, 255, 255, .55);
  text-align: center;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding-block: 62px;
}

.service-detail-image {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow, 0 28px 80px rgba(47, 11, 34, .16));
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.meta-pill {
  padding: 9px 12px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 999px;
  color: var(--plum-800, #4a1638);
  background: rgba(255, 255, 255, .68);
  font-size: .78rem;
  font-weight: 900;
}

.price-large {
  display: block;
  margin-top: 20px;
  color: var(--gold-500, #c88956);
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.055em;
}

.detail-section {
  margin-top: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(74, 22, 56, .1);
}

.detail-section h2 {
  margin: 0 0 12px;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.detail-section p,
.detail-section li {
  color: var(--muted, #735d69);
  line-height: 1.7;
}

.detail-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 25px;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500, #c88956);
  font-weight: 950;
}

.warning-panel {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(174, 110, 54, .2);
  border-radius: 18px;
  color: #714b2c;
  background: #fff7e9;
  line-height: 1.6;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: start;
  padding-block: 62px 82px;
}

.booking-sidebar {
  position: sticky;
  top: 112px;
}

.booking-card,
.auth-card,
.account-card,
.content-card {
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(74, 22, 56, .11);
  border-radius: 30px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow, 0 28px 80px rgba(47, 11, 34, .16));
  backdrop-filter: blur(15px);
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  color: var(--plum-800, #4a1638);
  font-size: .79rem;
  font-weight: 950;
}

.form-field input,
.form-field select,
.form-field textarea,
.form-control {
  width: 100%;
  border: 1px solid rgba(74, 22, 56, .15);
  border-radius: 15px;
  outline: none;
  color: var(--ink, #2d1824);
  background: rgba(255, 255, 255, .9);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.form-field input,
.form-field select,
.form-control {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 116px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-control:focus {
  border-color: var(--gold-500, #c88956);
  box-shadow: 0 0 0 4px rgba(200, 137, 86, .13);
  transform: translateY(-1px);
}

.form-field input[disabled],
.form-field select[disabled] {
  cursor: not-allowed;
  color: #8a7d83;
  background: #f3eeee;
}

.form-help {
  color: var(--muted, #735d69);
  font-size: .74rem;
  line-height: 1.45;
}

.form-error,
.error-list {
  color: #8b2d2d;
  font-size: .82rem;
  font-weight: 800;
}

.error-list {
  margin: 0 0 18px;
  padding: 14px 16px 14px 36px;
  border: 1px solid rgba(174, 55, 55, .2);
  border-radius: 16px;
  background: #fff0f0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.checkbox-row label {
  color: var(--muted, #735d69);
  font-size: .86rem;
  line-height: 1.5;
}

.slot-status {
  min-height: 22px;
  color: var(--muted, #735d69);
  font-size: .8rem;
}

.price-summary {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(74, 22, 56, .09);
  border-radius: 17px;
  background: rgba(255, 248, 244, .65);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted, #735d69);
}

.price-row.total {
  padding-top: 10px;
  border-top: 1px solid rgba(74, 22, 56, .1);
  color: var(--plum-800, #4a1638);
  font-size: 1.1rem;
  font-weight: 950;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.booking-summary-list,
.info-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.booking-summary-list li,
.info-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted, #735d69);
  line-height: 1.5;
}

.summary-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: var(--plum-800, #4a1638);
  font-size: .76rem;
  font-weight: 950;
}

.availability-panel {
  margin-top: 22px;
  padding: 17px;
  border: 1px solid rgba(74, 22, 56, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .5);
}

.availability-panel strong {
  color: var(--plum-800, #4a1638);
}

.therapist-grid,
.gallery-database-grid,
.offer-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

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

.therapist-card {
  overflow: hidden;
  border: 1px solid rgba(74, 22, 56, .11);
  border-radius: 25px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 18px 45px rgba(47, 11, 34, .1);
}

.therapist-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.therapist-card-content {
  padding: 23px;
}

.therapist-card h2 {
  margin: 0;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.qualification-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.qualification-list span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--plum-800, #4a1638);
  background: #f7e8e2;
  font-size: .73rem;
  font-weight: 850;
}

.faq-grid {
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  align-items: start;
}

.faq-category-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .64);
}

.faq-category-nav a {
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--plum-800, #4a1638);
  text-decoration: none;
  font-weight: 850;
}

.faq-category-nav a:hover {
  background: rgba(74, 22, 56, .06);
}

.faq-group {
  margin-bottom: 36px;
}

.faq-group h2 {
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .68);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--plum-800, #4a1638);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted, #735d69);
  line-height: 1.7;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.gallery-filter-button {
  padding: 9px 13px;
  border: 1px solid rgba(74, 22, 56, .12);
  border-radius: 999px;
  color: var(--plum-800, #4a1638);
  background: rgba(255, 255, 255, .68);
  font-weight: 850;
}

.gallery-filter-button.active,
.gallery-filter-button:hover {
  color: #fff;
  background: var(--plum-800, #4a1638);
}

.gallery-database-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
}

.gallery-database-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: #f3d2ca;
  box-shadow: 0 18px 45px rgba(47, 11, 34, .1);
}

.gallery-database-item:nth-child(1),
.gallery-database-item:nth-child(6) {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-database-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-database-item:hover img {
  transform: scale(1.07);
}

.gallery-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 12px;
  border-radius: 13px;
  color: #fff;
  background: rgba(46, 11, 34, .68);
  font-size: .78rem;
  font-weight: 850;
  text-align: left;
  backdrop-filter: blur(8px);
}

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

.offer-card {
  padding: 23px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 15px 38px rgba(47, 11, 34, .08);
}

.offer-card h3 {
  margin: 0;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.offer-card p {
  color: var(--muted, #735d69);
  line-height: 1.6;
}

.marketing-signup {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: clamp(25px, 4vw, 44px);
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--plum-800, #4a1638), var(--plum-950, #260718));
  box-shadow: 0 28px 58px rgba(47, 11, 34, .22);
}

.marketing-signup h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.marketing-signup p {
  color: rgba(255, 255, 255, .7);
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink, #2d1824);
  background: #fff;
}

.auth-shell {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding-block: 56px;
}

.auth-card {
  width: min(100%, 620px);
}

.auth-card h1,
.account-card h1,
.content-card h1 {
  margin: 0;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -.04em;
}

.auth-links {
  margin-top: 18px;
  color: var(--muted, #735d69);
}

.auth-links a {
  color: var(--plum-800, #4a1638);
  font-weight: 900;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding-block: 52px 78px;
}

.account-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .68);
}

.account-nav a {
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--plum-800, #4a1638);
  text-decoration: none;
  font-weight: 850;
}

.account-nav a:hover,
.account-nav a.active {
  background: rgba(74, 22, 56, .07);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.metric-card {
  padding: 18px;
  border: 1px solid rgba(74, 22, 56, .09);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
}

.metric-card strong {
  display: block;
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.metric-card span {
  color: var(--muted, #735d69);
  font-size: .77rem;
}

.booking-list {
  display: grid;
  gap: 12px;
}

.booking-list-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(74, 22, 56, .09);
  border-radius: 17px;
  background: rgba(255, 255, 255, .6);
}

.booking-list-card h3 {
  margin: 0;
  color: var(--plum-800, #4a1638);
  font-size: 1.05rem;
}

.booking-list-card p {
  margin: 5px 0 0;
  color: var(--muted, #735d69);
  font-size: .83rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.status-pending { color: #7d5615; background: #fff3d9; }
.status-confirmed { color: #245e3b; background: #e9f8ef; }
.status-completed { color: #234f72; background: #e8f4ff; }
.status-cancelled,
.status-declined,
.status-no_show { color: #7d2929; background: #fff0f0; }
.status-reschedule_requested { color: #68417a; background: #f5eafd; }

.reference-box {
  padding: 20px;
  border: 1px solid rgba(74, 22, 56, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
  text-align: center;
}

.reference-box strong {
  display: block;
  color: var(--plum-800, #4a1638);
  font-family: monospace;
  font-size: 1.45rem;
  letter-spacing: .08em;
}

.legal-content {
  max-width: 900px;
  margin-inline: auto;
  padding-block: 62px 80px;
}

.legal-content h1,
.legal-content h2 {
  color: var(--plum-800, #4a1638);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: var(--muted, #735d69);
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .page-hero-grid,
  .service-detail-grid,
  .booking-layout,
  .marketing-signup {
    grid-template-columns: 1fr;
  }

  .service-detail-image,
  .booking-sidebar {
    position: static;
  }

  .service-card-list,
  .therapist-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .filter-bar,
  .faq-grid,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    position: static;
  }

  .faq-category-nav,
  .account-nav {
    position: static;
  }

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

  .gallery-database-item,
  .gallery-database-item:nth-child(1),
  .gallery-database-item:nth-child(6) {
    grid-column: span 6;
    grid-row: span 3;
  }

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

  .signup-form .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .open-status {
    display: none;
  }

  .page-hero-grid {
    padding-block: 38px 52px;
  }

  .page-title {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .service-category-header {
    display: block;
  }

  .service-category-header p {
    margin-top: 10px;
  }

  .service-card-list,
  .therapist-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .database-service-content {
    padding: 20px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .booking-card,
  .auth-card,
  .account-card,
  .content-card {
    padding: 21px 16px;
    border-radius: 24px;
  }

  .gallery-database-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 9px;
  }

  .gallery-database-item,
  .gallery-database-item:nth-child(1),
  .gallery-database-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .gallery-database-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

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

  .signup-form .button {
    grid-column: auto;
  }

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

  .booking-list-card {
    grid-template-columns: 1fr;
  }

  .faq-category-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .gallery-database-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .gallery-database-item,
  .gallery-database-item:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

/* Database-driven products and page builder */
.products-hero .page-hero-media img {
  object-position: center 38%;
}

.catalog-filter {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(220px, .7fr) auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}

.catalog-filter > div {
  display: grid;
  gap: 7px;
}

.catalog-filter label {
  color: var(--plum-800);
  font-size: .76rem;
  font-weight: 950;
}

.catalog-filter input,
.catalog-filter select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(74,22,56,.15);
  border-radius: 15px;
  outline: none;
  color: var(--ink);
  background: #fff;
}

.catalog-filter input:focus,
.catalog-filter select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(200,137,86,.12);
}

.catalog-summary {
  margin-bottom: 18px;
  color: var(--muted);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(74,22,56,.11);
  border-radius: 26px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74,22,56,.28);
  box-shadow: 0 28px 58px rgba(47,11,34,.16);
}

.product-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--rose-200);
}

.product-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(46,11,34,.22), transparent 46%);
  pointer-events: none;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.07);
}

.product-card-content {
  padding: 22px;
}

.product-category {
  color: var(--gold-500);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 9px 0 0;
  font-family: Georgia,"Times New Roman",serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.12;
}

.product-card h3 a {
  color: var(--plum-800);
  text-decoration: none;
}

.product-card p {
  min-height: 3em;
  margin: 11px 0 18px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.58;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 17px;
}

.product-card-footer strong {
  color: var(--plum-800);
  font-size: 1.15rem;
}

.stock {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.stock-available { color:#245e3b; background:#e9f8ef; }
.stock-limited { color:#7d5615; background:#fff3d9; }
.stock-out_of_stock { color:#7d2929; background:#fff0f0; }
.stock-coming_soon { color:#68417a; background:#f5eafd; }

.empty-state,
.empty-page {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.65);
  text-align: center;
}

.empty-page h1 {
  margin-top: 0;
  color: var(--plum-800);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(2.6rem,6vw,5rem);
  font-weight: 500;
}

.product-detail-section {
  padding-top: 62px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(30px,5vw,70px);
  align-items: start;
}

.product-detail-image {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--rose-200);
  box-shadow: var(--shadow);
}

.product-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail-stock {
  position: absolute;
  right: 18px;
  bottom: 18px;
  box-shadow: 0 12px 25px rgba(47,11,34,.18);
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--plum-800);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(3rem,5.5vw,5.8rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.05em;
}

.product-detail-price {
  display: block;
  margin-top: 18px;
  color: var(--gold-500);
  font-size: clamp(2rem,4vw,3.3rem);
  line-height: 1;
}

.product-detail-copy .lead {
  margin: 20px 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-detail-copy > p:not(.lead):not(.service-note) {
  color: var(--muted);
  line-height: 1.7;
}

.product-information-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
}

.product-information-card h2 {
  margin: 0 0 8px;
  color: var(--plum-800);
  font-family: Georgia,"Times New Roman",serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.product-information-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.custom-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 86px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(46,11,34,.94), rgba(74,22,56,.8)),
    url("../images/hero.jpg") center/cover;
}

.custom-page-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(3.3rem,6vw,6.3rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.05em;
}

.custom-page-hero p:last-child {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.builder-section {
  position: relative;
}

.builder-soft {
  border-top: 1px solid rgba(74,22,56,.07);
  border-bottom: 1px solid rgba(74,22,56,.07);
  background: rgba(255,255,255,.38);
}

.builder-dark {
  color: #fff;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.12), transparent 20rem),
    linear-gradient(135deg,var(--plum-800),var(--plum-950));
}

.builder-dark .section-title,
.builder-dark h2,
.builder-dark h3,
.builder-dark strong {
  color: #fff;
}

.builder-dark p,
.builder-dark .section-copy {
  color: rgba(255,255,255,.74);
}

.builder-outline .container {
  padding: clamp(24px,4vw,48px);
  border: 1px solid rgba(74,22,56,.13);
  border-radius: 30px;
  background: rgba(255,255,255,.46);
  box-shadow: var(--shadow-soft);
}

.builder-text-image {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(340px,.85fr);
  gap: clamp(30px,5vw,70px);
  align-items: center;
}

.builder-text-image .builder-copy p:not(.section-label),
.builder-rich-text p {
  color: var(--muted);
  line-height: 1.72;
}

.builder-text-image .button,
.builder-rich-text .button {
  margin-top: 15px;
}

.builder-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.builder-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s ease;
}

.builder-image:hover img {
  transform: scale(1.05);
}

.builder-card-grid {
  display: grid;
  gap: 18px;
}

.builder-card-grid.columns-1 { grid-template-columns: 1fr; }
.builder-card-grid.columns-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.builder-card-grid.columns-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.builder-card-grid.columns-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }

.builder-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(74,22,56,.1);
  border-radius: 21px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}

.builder-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(47,11,34,.14);
}

.builder-card-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--plum-800);
  font-size: .75rem;
  font-weight: 950;
}

.builder-card h3 {
  margin: 16px 0 0;
  color: var(--plum-800);
  font-family: Georgia,"Times New Roman",serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.builder-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.builder-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--plum-800);
  font-size: .78rem;
  font-weight: 950;
}

.builder-stat {
  display: block;
  color: var(--gold-500);
  font-size: clamp(2.4rem,5vw,4.5rem);
  line-height: 1;
}

.builder-service-card img {
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin: -24px -24px 18px;
  object-fit: cover;
}

.builder-cta {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(25px,4vw,46px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.14), transparent 18rem),
    linear-gradient(135deg,var(--plum-800),var(--plum-950));
  box-shadow: var(--shadow);
}

.builder-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(2.2rem,4vw,4rem);
  font-weight: 500;
  line-height: 1;
}

.builder-cta p {
  max-width: 750px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.builder-section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

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

.builder-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease;
}

.builder-gallery img:hover {
  transform: scale(1.025);
}

.builder-faq {
  display: grid;
  gap: 10px;
  max-width: 950px;
}

.builder-faq details {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.68);
}

.builder-faq summary {
  color: var(--plum-800);
  font-weight: 900;
  cursor: pointer;
}

.builder-faq p {
  margin: 11px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.builder-announcement {
  padding: 11px 0;
  color: #fff;
  background: var(--plum-800);
}

.builder-announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  text-align: center;
}

.builder-announcement span {
  color: rgba(255,255,255,.74);
}

.builder-announcement a {
  color: var(--gold-300);
  font-weight: 950;
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalog-filter { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-detail-grid,
  .builder-text-image { grid-template-columns: 1fr; }
  .product-detail-image { position: static; }
  .builder-card-grid.columns-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .catalog-filter { grid-template-columns: 1fr; padding: 14px; }
  .catalog-filter .button { width: 100%; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { border-radius: 22px; }
  .product-card-content { padding: 19px; }
  .product-detail-section { padding-top: 38px; }
  .product-detail-grid { gap: 25px; }
  .product-detail-image { border-radius: 23px; }
  .product-detail-copy h1 { font-size: clamp(2.8rem,14vw,4.4rem); }
  .product-detail-actions { display: grid; }
  .product-detail-actions .button { width: 100%; }
  .custom-page-hero { padding-block: 58px; }
  .custom-page-hero h1 { font-size: clamp(3rem,14vw,4.8rem); }
  .builder-text-image { gap: 24px; }
  .builder-image { border-radius: 22px; }
  .builder-card-grid.columns-2,
  .builder-card-grid.columns-3,
  .builder-card-grid.columns-4 { grid-template-columns: 1fr; }
  .builder-card { padding: 20px; }
  .builder-cta { grid-template-columns: 1fr; padding: 23px 18px; border-radius: 23px; }
  .builder-cta .button { width: 100%; }
  .builder-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .builder-gallery img { border-radius: 14px; }
  .builder-outline .container { padding: 20px 14px; border-radius: 23px; }
  .builder-announcement .container { display: grid; gap: 5px; }
}

/* Authenticated customer and administrator header */
.account-topbar {
  position: sticky;
  z-index: 130;
  top: 0;
  border-bottom: 1px solid rgba(74, 22, 56, .1);
  background: rgba(255, 248, 244, .94);
  box-shadow: 0 10px 30px rgba(47, 11, 34, .07);
  backdrop-filter: blur(20px);
}

.account-topnav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.account-topbrand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--plum-800, #4a1638);
  text-decoration: none;
}

.account-header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.account-header-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--plum-800, #4a1638);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 900;
  transition: background .18s ease, transform .18s ease;
}

.account-header-links a:hover,
.account-header-links a:focus-visible {
  background: rgba(74, 22, 56, .07);
  transform: translateY(-1px);
}

.account-header-user {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  color: var(--plum-800, #4a1638);
  font-size: .82rem;
  font-weight: 900;
}

.account-header-user > span {
  overflow: hidden;
  max-width: 170px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-header-toggle {
  display: none;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(74, 22, 56, .14);
  border-radius: 14px;
  color: var(--plum-800, #4a1638);
  background: rgba(255, 255, 255, .75);
  font-weight: 950;
}

@media (max-width: 900px) {
  body.account-menu-open {
    overflow: hidden;
  }

  .account-header-toggle {
    display: grid;
  }

  .account-header-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(360px, calc(100vw - 24px));
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 11px;
    border: 1px solid rgba(74, 22, 56, .12);
    border-radius: 18px;
    background: rgba(255, 250, 247, .98);
    box-shadow: 0 22px 58px rgba(47, 11, 34, .2);
    backdrop-filter: blur(22px);
  }

  .account-header-links.open {
    display: grid;
  }

  .account-header-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: rgba(74, 22, 56, .035);
  }
}

@media (max-width: 820px) {
  .account-layout {
    gap: 16px;
    padding-block: 24px 80px;
  }

  .account-nav {
    position: sticky;
    z-index: 85;
    top: 76px;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding: 9px;
    border-radius: 16px;
    background: rgba(255, 250, 247, .96);
    box-shadow: 0 12px 28px rgba(47, 11, 34, .09);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .account-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding-inline: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .topbar,
  .account-topbar {
    top: 0;
  }

  .account-topnav {
    min-height: 68px;
    gap: 10px;
  }

  .account-topbrand .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .account-topbrand .brand-name {
    max-width: 180px;
    font-size: .93rem;
  }

  .account-topbrand .brand-tagline {
    font-size: .58rem;
    letter-spacing: .1em;
  }

  .account-header-user > span {
    display: none;
  }

  .account-nav {
    top: 70px;
  }

  .account-card h1,
  .content-card h1 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
  }

  .booking-list-card .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-list-card .button-small {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 430px) {
  .account-topbrand .brand-name {
    max-width: 145px;
  }

  .account-nav {
    margin-inline: -2px;
  }

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

/* Live Google Maps and booking confirmation */
.map-art-google { padding: 0; background: rgba(255,255,255,.08); }
.map-art-google iframe { width: 100%; height: 100%; min-height: 330px; border: 0; }
.booking-success-map { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr); gap: 18px; width: min(100%,980px); margin: 18px auto 0; padding: 14px; border: 1px solid rgba(74,22,56,.11); border-radius: 25px; background: rgba(255,255,255,.76); box-shadow: 0 18px 46px rgba(47,11,34,.11); text-align: left; }
.booking-success-map iframe { width: 100%; min-height: 260px; border: 0; border-radius: 18px; }
.booking-success-map > div { display: flex; flex-direction: column; justify-content: center; gap: 9px; padding: 12px; }
.booking-success-map strong { color: var(--plum-800); font-family: Georgia,serif; font-size: 1.35rem; }
.booking-success-map span { color: var(--muted); line-height: 1.55; }
@media (max-width:720px){.booking-success-map{grid-template-columns:1fr;padding:10px;border-radius:20px}.booking-success-map iframe{min-height:230px}.map-art-google iframe{min-height:280px}}

/* Customer account application shell */
.layout-customer .site-shell {
  overflow: visible;
  background: #f8f4f2;
}
.customer-app-shell { min-height: 100vh; }
.customer-sidebar {
  position: fixed;
  z-index: 180;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  width: 286px;
  padding: 20px 16px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 5%, rgba(255,255,255,.12), transparent 15rem),
    linear-gradient(180deg, #45122f, #260718);
  box-shadow: 18px 0 50px rgba(47,11,34,.14);
}
.customer-sidebar-brand { display:flex; align-items:center; gap:12px; padding:4px 4px 20px; color:#fff; text-decoration:none; }
.customer-sidebar-brand .brand-mark { width:43px; height:43px; flex-basis:43px; color:var(--plum-800); background:linear-gradient(145deg,#ffe8c8,#e8a06f); }
.customer-sidebar-brand > span:last-child { display:grid; }
.customer-sidebar-brand strong { font-family:Georgia,serif; font-size:1.08rem; }
.customer-sidebar-brand small { margin-top:3px; color:rgba(255,255,255,.58); font-size:.67rem; letter-spacing:.1em; text-transform:uppercase; }
.customer-sidebar-profile { display:grid; grid-template-columns:46px 1fr; gap:11px; align-items:center; padding:14px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:rgba(255,255,255,.07); }
.customer-avatar { display:grid; place-items:center; width:46px; height:46px; border-radius:15px; color:var(--plum-800); background:linear-gradient(145deg,#ffe8c8,#e8a06f); font-weight:950; }
.customer-sidebar-profile div { min-width:0; display:grid; }
.customer-sidebar-profile strong { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.customer-sidebar-profile small { color:rgba(255,255,255,.58); font-size:.72rem; }
.customer-sidebar-nav { display:grid; gap:5px; margin-top:18px; overflow-y:auto; }
.customer-sidebar-nav a { display:flex; align-items:center; gap:11px; min-height:46px; padding:0 13px; border-radius:14px; color:rgba(255,255,255,.72); text-decoration:none; font-size:.87rem; font-weight:850; }
.customer-sidebar-nav a span { display:grid; place-items:center; width:26px; color:#f2c49a; font-size:1rem; }
.customer-sidebar-nav a:hover,.customer-sidebar-nav a.active { color:#fff; background:rgba(255,255,255,.11); }
.customer-sidebar-footer { display:grid; gap:5px; margin-top:auto; padding-top:16px; border-top:1px solid rgba(255,255,255,.1); }
.customer-sidebar-footer a { padding:11px 13px; border-radius:13px; color:rgba(255,255,255,.7); text-decoration:none; font-size:.82rem; font-weight:850; }
.customer-sidebar-footer a:hover { color:#fff; background:rgba(255,255,255,.09); }
.customer-sidebar-footer .customer-signout { color:#ffd2d2; }
.customer-app-workspace { min-height:100vh; margin-left:286px; }
.customer-main-content { min-height:calc(100vh - 40px); padding:34px clamp(18px,3vw,46px) 80px; }
.customer-main-content > .container { width:min(100%,1320px); }
.customer-mobilebar { display:none; }
.customer-flash-wrap { width:min(calc(100% - 44px),1320px); margin:20px auto 0; }
.layout-customer .account-layout { display:block; width:min(100%,1320px); padding-block:0; }
.layout-customer .account-nav { display:none; }
.customer-bottom-nav { display:none; }
.customer-sidebar-backdrop { position:fixed; z-index:170; inset:0; background:rgba(28,5,19,.55); backdrop-filter:blur(5px); }
.admin-previewbar { position:sticky; z-index:100; top:0; color:#fff; background:#2e0b22; }
.admin-previewbar .container { display:flex; align-items:center; justify-content:flex-end; gap:12px; min-height:52px; }
.admin-previewbar span { margin-right:auto; color:rgba(255,255,255,.68); font-size:.8rem; }
.admin-previewbar a { color:#fff; text-decoration:none; font-size:.8rem; font-weight:900; }

/* OTP booking access */
.auth-shell-wide { padding-block:54px 90px; }
.auth-card-otp { width:min(100%,760px); }
.auth-progress { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:28px; }
.auth-progress span { display:flex; align-items:center; gap:8px; min-height:42px; padding:7px 10px; border:1px solid var(--line); border-radius:13px; color:var(--muted); background:rgba(255,255,255,.55); font-size:.73rem; font-weight:850; }
.auth-progress b { display:grid; place-items:center; width:25px; height:25px; border-radius:50%; color:var(--plum-800); background:var(--rose-200); }
.auth-progress .active { color:var(--plum-800); border-color:rgba(74,22,56,.28); background:#fff; }
.auth-progress .active b,.auth-progress .done b { color:#fff; background:var(--plum-800); }
.button-block { width:100%; }
.otp-verify-form { display:grid; gap:14px; max-width:480px; margin:24px auto 0; text-align:center; }
.otp-verify-form label { color:var(--plum-800); font-weight:950; }
.otp-code-input { width:100%; min-height:72px; border:1px solid rgba(74,22,56,.17); border-radius:18px; outline:none; color:var(--plum-800); background:#fff; box-shadow:inset 0 1px 0 rgba(255,255,255,.7); font-size:2rem; font-weight:950; letter-spacing:.32em; text-align:center; }
.otp-code-input:focus { border-color:var(--gold-500); box-shadow:0 0 0 5px rgba(200,137,86,.13); }
.otp-secondary-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:9px; margin-top:17px; }
.otp-secondary-actions form { margin:0; }
.auth-security-note { margin-top:24px; padding:14px 16px; border:1px solid rgba(74,22,56,.09); border-radius:15px; color:var(--muted); background:rgba(74,22,56,.035); font-size:.78rem; line-height:1.5; }
.otp-test-code { padding:11px 13px; border-radius:13px; color:#5a3d0d; background:#fff2cc; font-size:.8rem; }
.verified-client-card { grid-template-columns:46px minmax(0,1fr) auto; align-items:center; gap:13px; padding:14px; border:1px solid rgba(45,126,79,.18); border-radius:18px; background:#edf9f1; }
.verified-client-icon { display:grid; place-items:center; width:46px; height:46px; border-radius:15px; color:#fff; background:#2d7e4f; font-weight:950; }
.verified-client-card div { display:grid; min-width:0; }
.verified-client-card strong { color:#245e3b; }
.verified-client-card span,.verified-client-card small { overflow:hidden; color:#537061; font-size:.78rem; text-overflow:ellipsis; white-space:nowrap; }

@media (max-width: 979px) {
  .customer-sidebar { width:min(86vw,310px); transform:translateX(-105%); transition:transform .24s ease; }
  .customer-sidebar.open { transform:translateX(0); }
  .customer-app-workspace { margin-left:0; }
  .customer-mobilebar { position:sticky; z-index:150; top:0; display:grid; grid-template-columns:44px 1fr auto; align-items:center; gap:10px; min-height:68px; padding:0 13px; border-bottom:1px solid rgba(74,22,56,.09); background:rgba(255,249,246,.94); backdrop-filter:blur(18px); }
  .customer-sidebar-toggle { display:grid; place-items:center; width:42px; height:42px; border:1px solid var(--line); border-radius:14px; color:var(--plum-800); background:#fff; }
  .customer-mobilebar > a:nth-child(2) { display:grid; color:var(--plum-800); text-decoration:none; }
  .customer-mobilebar strong { font-family:Georgia,serif; }
  .customer-mobilebar small { color:var(--muted); font-size:.65rem; text-transform:uppercase; letter-spacing:.1em; }
  .customer-mobile-book { padding:9px 12px; border-radius:999px; color:#fff !important; background:var(--plum-800); font-size:.75rem; font-weight:950; }
  .customer-main-content { padding:22px 12px 96px; }
  .customer-flash-wrap { width:calc(100% - 24px); margin-top:12px; }
  .customer-bottom-nav { position:fixed; z-index:140; right:10px; bottom:max(8px,env(safe-area-inset-bottom)); left:10px; display:grid; grid-template-columns:repeat(3,1fr); padding:7px; border:1px solid rgba(255,255,255,.5); border-radius:19px; background:rgba(46,11,34,.95); box-shadow:0 18px 44px rgba(31,5,22,.3); backdrop-filter:blur(16px); }
  .customer-bottom-nav a { display:grid; place-items:center; gap:2px; min-height:49px; border-radius:14px; color:rgba(255,255,255,.72); text-decoration:none; font-size:.68rem; font-weight:900; }
  .customer-bottom-nav span { font-size:1rem; color:#f2c49a; }
  .layout-customer .quick-actions,.layout-customer .footer { display:none; }
  .customer-menu-open { overflow:hidden; }
  .auth-shell-wide { padding:28px 10px 86px; }
  .auth-card-otp { padding:24px 17px; border-radius:23px; }
  .auth-progress span { justify-content:center; padding:6px; font-size:0; }
  .auth-progress b { font-size:.75rem; }
  .otp-details-form { grid-template-columns:1fr; }
  .verified-client-card { grid-template-columns:42px 1fr; }
  .verified-client-card .button-small { grid-column:1/-1; width:100%; }
}

@media (max-width: 430px) {
  .otp-code-input { font-size:1.55rem; letter-spacing:.24em; }
  .admin-previewbar .container { padding:8px 12px; flex-wrap:wrap; }
  .admin-previewbar span { width:100%; }
}

/* Signed-in application layouts do not use the public decorative circles. */
.layout-customer .site-shell::before,
.layout-customer .site-shell::after {
  display: none;
}

/* Signed-in administrator website preview shell */
.public-admin-shell {
  min-height: 100vh;
}

.public-admin-sidebar {
  position: fixed;
  z-index: 190;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 286px;
  padding: 20px 17px;
  overflow-y: auto;
  color: #fff;
  background:
    radial-gradient(circle at 15% 4%, rgba(255,255,255,.12), transparent 15rem),
    linear-gradient(180deg, #4a1638, #2e0b22 74%);
  box-shadow: 20px 0 48px rgba(31, 5, 22, .16);
}

.public-admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 3px 4px 19px;
  color: #fff;
  text-decoration: none;
}

.public-admin-brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #4a1638;
  background: linear-gradient(145deg, #ffe8c8, #e8a06f);
  box-shadow: 0 12px 25px rgba(0,0,0,.18);
}

.public-admin-brand > span:last-child,
.public-admin-profile div {
  display: grid;
  min-width: 0;
}

.public-admin-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.public-admin-brand small,
.public-admin-profile small {
  margin-top: 3px;
  color: rgba(255,255,255,.57);
  font-size: .67rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.public-admin-profile {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.public-admin-profile strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-admin-avatar,
.public-admin-mobile-avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #4a1638;
  background: linear-gradient(145deg, #ffe8c8, #e8a06f);
  font-weight: 950;
}

.public-admin-avatar {
  width: 46px;
  height: 46px;
}

.public-admin-nav {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.public-admin-nav-label {
  margin: 15px 12px 4px;
  color: rgba(255,255,255,.42);
  font-size: .61rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.public-admin-nav a,
.public-admin-footer a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 13px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 850;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.public-admin-nav a span,
.public-admin-footer a span {
  display: grid;
  place-items: center;
  width: 24px;
  color: #f2c49a;
  font-size: .98rem;
}

.public-admin-nav a:hover,
.public-admin-nav a.active,
.public-admin-footer a:hover {
  color: #fff;
  background: rgba(255,255,255,.11);
  transform: translateX(3px);
}

.public-admin-footer {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.public-admin-footer .public-admin-signout {
  color: #ffd2d2;
}

.public-admin-workspace {
  min-height: 100vh;
  margin-left: 286px;
}

.public-admin-mobilebar {
  display: none;
}

.public-admin-backdrop {
  position: fixed;
  z-index: 180;
  inset: 0;
  background: rgba(28,5,19,.57);
  backdrop-filter: blur(5px);
}

.layout-admin-preview .quick-actions,
.layout-admin-preview .topbar,
.layout-admin-preview .footer {
  display: none !important;
}

.layout-admin-preview main {
  min-width: 0;
}

@media (max-width: 1100px) {
  .public-admin-sidebar {
    width: min(86vw, 310px);
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

  .public-admin-sidebar.open {
    transform: translateX(0);
  }

  .public-admin-workspace {
    margin-left: 0;
  }

  .public-admin-mobilebar {
    position: sticky;
    z-index: 175;
    top: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 38px;
    gap: 11px;
    align-items: center;
    min-height: 68px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(74,22,56,.1);
    background: rgba(255,248,244,.94);
    box-shadow: 0 10px 28px rgba(47,11,34,.08);
    backdrop-filter: blur(18px);
  }

  .public-admin-mobilebar > div {
    display: grid;
  }

  .public-admin-mobilebar strong {
    color: #4a1638;
  }

  .public-admin-mobilebar small {
    margin-top: 2px;
    color: #75646d;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .public-admin-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(74,22,56,.13);
    border-radius: 14px;
    color: #4a1638;
    background: #fff;
    font-size: 1.15rem;
  }

  .public-admin-mobile-avatar {
    width: 38px;
    height: 38px;
  }

  body.public-admin-menu-open {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .public-admin-mobilebar {
    min-height: 64px;
    padding-inline: 10px;
  }

  .layout-admin-preview .hero.container {
    margin-top: 10px;
  }
}


/* Prominent password recovery controls */
.password-help-actions {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.password-help-button {
  width: 100%;
  min-height: 52px;
}

.password-help-actions .auth-links {
  margin: 0;
  text-align: center;
}

@media (max-width: 720px) {
  .password-help-actions {
    gap: 11px;
    margin-top: 15px;
  }

  .password-help-button {
    min-height: 50px;
  }
}


/* Service-detail and public-page navigation fix for administrator preview mode */
.layout-admin-preview {
  overflow-x: clip;
}

.layout-admin-preview .site-shell::before,
.layout-admin-preview .site-shell::after {
  display: none;
}

.public-admin-shell,
.public-admin-workspace {
  min-width: 0;
}

.public-admin-workspace {
  width: calc(100% - 286px);
  overflow-x: clip;
}

.public-admin-workspace > main {
  width: 100%;
  min-width: 0;
}

.layout-admin-preview .container {
  width: min(calc(100% - 36px), 1420px);
}

.layout-admin-preview .service-detail-grid {
  align-items: start;
  padding-top: clamp(30px, 5vw, 74px);
  padding-bottom: clamp(52px, 7vw, 96px);
}

.public-admin-preview-context {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.065);
}

.public-admin-preview-context span {
  color: #f2c49a;
  font-size: .61rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.public-admin-preview-context strong {
  overflow: hidden;
  color: #fff;
  font-size: .91rem;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.public-admin-preview-context small {
  color: rgba(255,255,255,.57);
  font-size: .7rem;
  line-height: 1.45;
}

.public-admin-nav {
  padding-bottom: 16px;
}

.public-admin-mobile-dashboard {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(74,22,56,.12);
  border-radius: 13px;
  color: #4a1638;
  background: #fff;
  text-decoration: none;
  font-weight: 950;
}

@media (max-width: 1100px) {
  .public-admin-workspace {
    width: 100%;
    margin-left: 0;
  }

  .layout-admin-preview .container {
    width: min(calc(100% - 28px), 1420px);
  }

  .public-admin-mobilebar {
    grid-template-columns: 44px minmax(0, 1fr) 40px;
  }

  .public-admin-mobilebar > div {
    min-width: 0;
  }

  .public-admin-mobilebar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .layout-admin-preview .container {
    width: min(calc(100% - 20px), 1420px);
  }

  .layout-admin-preview .service-detail-grid {
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .layout-admin-preview .service-detail-image {
    border-radius: 22px;
  }

  .public-admin-sidebar {
    width: min(90vw, 320px);
    padding: 16px 14px;
  }

  .public-admin-preview-context {
    padding: 12px;
  }
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.catalog-pagination a,
.catalog-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(74,22,56,.16);
  border-radius: 12px;
  padding: 0 13px;
  color: #4a1638;
  background: #fff;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
}

.catalog-pagination a:hover,
.catalog-pagination a:focus-visible,
.catalog-pagination .current {
  border-color: #4a1638;
  color: #fff;
  background: #4a1638;
}

.catalog-pagination .disabled,
.catalog-pagination .ellipsis {
  opacity: .5;
}

.catalog-pagination .ellipsis {
  min-width: 24px;
  border-color: transparent;
  background: transparent;
}

/* House Of Phumi brand logo integration */
.brand-logo-shell {
  overflow: hidden;
  padding: 3px;
  background: var(--cream, #fff8f4);
}

.brand-logo-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-sidebar-brand .brand-logo-shell,
.public-admin-brand-mark.brand-logo-shell {
  background: #fff8f4;
}

.footer-brand-logo {
  display: block;
  width: min(190px, 70%);
  height: auto;
  margin: 0 0 16px;
}

@media (max-width: 760px) {
  .footer-brand-logo {
    width: 155px;
  }
}
