@font-face {
  font-family: 'Inspire';
  src: url('/font/inspireregular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inspire';
  src: url('/font/inspirebold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inspire Mini';
  src: url('/font/inspiremini.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {

  /* -- Colors -- */
  --color-primary: hsl(335, 45%, 65%);
  --color-primary-light: hsl(335, 40%, 85%);
  --color-primary-dark: hsl(335, 50%, 55%);
  --color-accent: hsl(25, 35%, 92%);
  --color-accent-dark: hsl(25, 20%, 95%);

  --color-bg: hsl(25, 20%, 98%);
  --color-bg-alt: hsl(0, 0%, 100%);
  --color-text: hsl(25, 5%, 15%);
  --color-text-muted: hsl(25, 5%, 45%);
  --color-border: hsl(25, 20%, 90%);

  /* -- Typography -- */
  --font-heading: 'Inspire';
  --font-body: 'Inspire';
  --font-mini: 'Inspire Mini';

  /* -- Layout -- */
  --max-width: 1400px;
  --radius: 24px;
  --shadow-soft: 0 10px 40px hsl(0 0% 0% / 0.08);
  --shadow-hover: 0 20px 60px hsl(0 0% 0% / 0.12);

  /* Standard Tokens */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-default: 4px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* -- Base -- */
html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.font-heading, h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

/* -- Site Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px hsl(335 45% 65% / 0.12);
}

/* -- Nav active link -- */
nav a[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 700;
}

/* -- Icon utility -- */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.icon-sm { width: 1em; height: 1em; }
.icon-lg { width: 1.75em; height: 1.75em; }
.icon-xl { width: 2.5em; height: 2.5em; }

/* -- Scroll Reveal -- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 100ms; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 200ms; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 300ms; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 400ms; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 500ms; }
[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* -- WhatsApp Float -- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* -- Hero -- */
.hero-section {
  min-height: clamp(620px, calc(100svh - 84px), 760px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-home {
  padding-top: 5rem;
}

.hero-home-inner {
  padding-top: 3.75rem;
  padding-bottom: 3rem;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: calc(100svh - 74px);
    align-items: flex-start;
  }

  .hero-home {
    padding-top: 4.5rem;
  }

  .hero-home-inner {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: calc(100svh - 68px);
  }

  .hero-home {
    padding-top: 5rem;
  }

  .hero-home-inner {
    padding-top: 3.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (min-width: 1025px) {
  .hero-home {
    padding-top: 0.5rem;
  }

  .hero-home-inner {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}

/* -- Service Cards -- */
.service-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-light);
}
.service-card:hover::before {
  opacity: 1;
}

/* -- Gallery Grid -- */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-accent);
  aspect-ratio: 1;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(335 45% 30% / 0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .overlay {
  opacity: 1;
}

/* -- Form -- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Premium beauty home */
.premium-home {
  background:
    linear-gradient(180deg, #09090d 0%, #0c0c12 18%, #0f1020 32%, #f4efe9 32%, #f4efe9 74%, #ffffff 100%);
  color: #12131a;
}

.premium-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.premium-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 104px;
  color: #f6f2ee;
}

.premium-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.premium-hero-glow-a {
  width: 420px;
  height: 420px;
  top: 80px;
  right: -120px;
  background: radial-gradient(circle, rgba(228, 198, 220, 0.65) 0%, rgba(228, 198, 220, 0) 72%);
}

.premium-hero-glow-b {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(133, 116, 201, 0.32) 0%, rgba(133, 116, 201, 0) 72%);
}

.premium-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 48px;
  align-items: center;
}

.premium-kicker,
.premium-label,
.premium-label-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.premium-kicker {
  color: rgba(255, 244, 236, 0.78);
  margin-bottom: 24px;
}

.premium-kicker-divider {
  width: 22px;
  height: 1px;
  background: rgba(255, 244, 236, 0.28);
}

.premium-display {
  display: grid;
  gap: 0.06em;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.premium-display span {
  display: block;
}

.premium-display .is-accent {
  color: #f5d8d1;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.premium-hero-lead {
  max-width: 19ch;
  margin: 28px 0 0;
  font-size: clamp(1.24rem, 2vw, 1.72rem);
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.premium-hero-support {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(255, 244, 236, 0.72);
}

.premium-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.premium-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #f7dfd9 0%, #f3c7d3 100%);
  color: #16161d;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(16, 13, 24, 0.24);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.premium-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 46px rgba(16, 13, 24, 0.28);
}

.premium-button-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: #f6f2ee;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.premium-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.premium-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.premium-metric-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.premium-metric-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #ffffff;
}

.premium-metric-card span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(255, 244, 236, 0.65);
}

.premium-hero-visual {
  min-width: 0;
}

.premium-stage {
  position: relative;
  min-height: 720px;
}

.premium-stage-frame {
  position: relative;
  height: clamp(560px, 58vw, 720px);
  border-radius: 38px;
  overflow: hidden;
  background: #151522;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px rgba(7, 6, 13, 0.48);
}

.premium-stage-image,
.premium-service-feature-image,
.premium-gallery-image,
.premium-thumb img,
.premium-review-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.premium-stage-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.premium-stage-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.premium-stage-overlay,
.premium-service-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 13, 0.02) 0%, rgba(9, 9, 13, 0.22) 46%, rgba(9, 9, 13, 0.72) 100%),
    radial-gradient(circle at top right, rgba(246, 202, 218, 0.28) 0%, rgba(246, 202, 218, 0) 44%);
}

.premium-stage-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(10, 10, 15, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.premium-stage-caption-label,
.premium-floating-label,
.premium-journey-label,
.premium-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.premium-stage-caption-label,
.premium-floating-label,
.premium-journey-label {
  color: rgba(255, 244, 236, 0.58);
}

.premium-stage-caption strong,
.premium-floating-card strong {
  font-size: 1.18rem;
  line-height: 1.2;
  color: #fff8f4;
}

.premium-stage-caption p,
.premium-floating-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 244, 236, 0.72);
}

.premium-floating-card,
.premium-review-card {
  position: absolute;
  z-index: 2;
  border-radius: 28px;
  background: rgba(13, 13, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(4, 4, 10, 0.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.premium-floating-card {
  display: grid;
  gap: 8px;
  max-width: 250px;
  padding: 18px 20px;
}

.premium-floating-card-top {
  top: 28px;
  left: -44px;
}

.premium-floating-card-bottom {
  right: -28px;
  bottom: 118px;
}

.premium-review-card {
  width: 138px;
  height: 194px;
  top: 84px;
  right: -58px;
  overflow: hidden;
}

.premium-thumb-stack {
  position: absolute;
  left: -18px;
  bottom: 116px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.premium-thumb {
  position: relative;
  width: 86px;
  height: 112px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(6, 6, 12, 0.3);
}

.premium-trust-section,
.premium-services-section,
.premium-experience-section,
.premium-gallery-section,
.premium-booking-section {
  position: relative;
}

.premium-trust-section {
  padding: 0 0 96px;
}

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

.premium-trust-card,
.premium-service-card,
.premium-journey-panel,
.premium-experience-point {
  border-radius: 30px;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(26, 21, 32, 0.08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.premium-trust-card {
  padding: 28px 28px 26px;
}

.premium-trust-index {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 19, 26, 0.44);
}

.premium-trust-card h2,
.premium-section-heading h2,
.premium-experience-copy h2,
.premium-booking-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.premium-trust-card h2 {
  font-size: 1.46rem;
  line-height: 1.05;
}

.premium-trust-card p,
.premium-section-heading p,
.premium-service-card p,
.premium-experience-copy p,
.premium-experience-point p,
.premium-booking-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(18, 19, 26, 0.68);
}

.premium-services-section {
  padding: 0 0 110px;
}

.premium-section-heading {
  max-width: 720px;
  display: grid;
  gap: 18px;
}

.premium-label {
  color: rgba(18, 19, 26, 0.48);
  margin-bottom: 2px;
}

.premium-label-light {
  color: rgba(255, 244, 236, 0.58);
}

.premium-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: 24px;
  margin-top: 42px;
}

.premium-service-feature {
  position: relative;
  height: clamp(520px, 54vw, 650px);
  border-radius: 38px;
  overflow: hidden;
  background: #11111a;
  box-shadow: 0 34px 70px rgba(16, 12, 24, 0.16);
}

.premium-service-feature-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(10, 10, 15, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.premium-service-feature-content h3,
.premium-service-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.premium-service-feature-content h3 {
  color: #fffaf6;
}

.premium-service-feature-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 244, 236, 0.74);
}

.premium-service-feature-meta,
.premium-service-card-footer,
.premium-gallery-summary,
.premium-booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.premium-service-feature-meta span,
.premium-service-card-footer span {
  color: rgba(255, 244, 236, 0.58);
  font-size: 0.92rem;
}

.premium-service-feature-meta a,
.premium-service-card-footer a,
.premium-inline-link {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.premium-service-stack {
  display: grid;
  gap: 18px;
}

.premium-service-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.premium-service-card-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ece8e4;
  min-height: 182px;
}

.premium-service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.premium-service-card-body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.premium-card-tag {
  color: rgba(18, 19, 26, 0.44);
}

.premium-service-card-footer span,
.premium-gallery-summary span,
.premium-booking-meta p {
  color: rgba(18, 19, 26, 0.62);
}

.premium-experience-section {
  padding: 0 0 110px;
}

.premium-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 26px;
  align-items: start;
}

.premium-experience-copy {
  display: grid;
  gap: 18px;
}

.premium-experience-points {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.premium-experience-point {
  padding: 22px 24px;
}

.premium-experience-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.premium-journey-panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(16, 17, 26, 0.96) 0%, rgba(26, 24, 37, 0.94) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 64px rgba(16, 12, 24, 0.16);
}

.premium-journey-list {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.premium-journey-list li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-journey-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.premium-journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff8f4;
  font-size: 1rem;
  font-weight: 600;
}

.premium-journey-list strong,
.premium-booking-copy h2 {
  color: #fff8f4;
}

.premium-journey-list p {
  margin: 6px 0 0;
  color: rgba(255, 244, 236, 0.64);
  font-size: 0.95rem;
  line-height: 1.65;
}

.premium-journey-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.premium-journey-contact a,
.premium-journey-contact span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 244, 236, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
}

.premium-gallery-section {
  padding: 0 0 110px;
}

.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.premium-gallery-card {
  position: relative;
  min-height: 240px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(16, 12, 24, 0.1);
  background: #d7d0ca;
}

.premium-gallery-card.is-large {
  grid-column: span 7;
  min-height: 520px;
}

.premium-gallery-card.is-tall {
  grid-column: span 5;
  min-height: 520px;
}

.premium-gallery-card.is-compact {
  grid-column: span 4;
  min-height: 280px;
}

.premium-gallery-card.is-wide {
  grid-column: span 8;
  min-height: 280px;
}

.premium-gallery-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(10, 10, 15, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff8f4;
}

.premium-gallery-overlay span {
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 244, 236, 0.58);
}

.premium-gallery-overlay p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.premium-gallery-summary {
  justify-content: space-between;
  margin-top: 22px;
}

.premium-gallery-summary div {
  display: grid;
  gap: 4px;
}

.premium-gallery-summary strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #12131a;
}

.premium-booking-section {
  padding: 0 0 120px;
}

.premium-booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  padding: 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #10111a 0%, #171825 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 74px rgba(14, 12, 24, 0.18);
}

.premium-booking-copy {
  display: grid;
  gap: 18px;
}

.premium-booking-copy p {
  color: rgba(255, 244, 236, 0.7);
}

.premium-booking-actions {
  display: grid;
  align-content: start;
  gap: 14px;
}

.premium-booking-meta {
  margin-top: 8px;
}

.premium-booking-meta p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 244, 236, 0.62);
}

.premium-booking-meta strong {
  color: #fff8f4;
}

@media (max-width: 1180px) {
  .premium-hero-grid,
  .premium-services-layout,
  .premium-experience-grid,
  .premium-booking-panel {
    grid-template-columns: 1fr;
  }

  .premium-hero-copy {
    max-width: 760px;
  }

  .premium-stage {
    min-height: 640px;
  }

  .premium-stage-frame,
  .premium-stage-placeholder {
    height: 640px;
  }

  .premium-floating-card-top {
    left: 18px;
  }

  .premium-floating-card-bottom {
    right: 18px;
  }

  .premium-review-card {
    right: 20px;
  }

  .premium-thumb-stack {
    left: 18px;
  }
}

@media (max-width: 920px) {
  .premium-home {
    background:
      linear-gradient(180deg, #09090d 0%, #0d0d13 24%, #161727 39%, #f4efe9 39%, #f4efe9 77%, #ffffff 100%);
  }

  .premium-hero {
    padding: 44px 0 82px;
  }

  .premium-shell {
    width: min(100% - 28px, 1240px);
  }

  .premium-metrics,
  .premium-trust-grid {
    grid-template-columns: 1fr;
  }

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

  .premium-gallery-card.is-large,
  .premium-gallery-card.is-tall,
  .premium-gallery-card.is-compact,
  .premium-gallery-card.is-wide {
    grid-column: span 12;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .premium-hero {
    padding-top: 28px;
  }

  .premium-display {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
    line-height: 0.92;
  }

  .premium-hero-lead {
    max-width: 100%;
    font-size: 1.14rem;
  }

  .premium-hero-support,
  .premium-section-heading p,
  .premium-trust-card p,
  .premium-service-card p,
  .premium-experience-copy p,
  .premium-experience-point p,
  .premium-booking-copy p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .premium-button-row {
    flex-direction: column;
  }

  .premium-button {
    width: 100%;
  }

  .premium-stage {
    min-height: auto;
    padding-top: 14px;
  }

  .premium-stage-frame,
  .premium-stage-placeholder {
    height: 500px;
  }

  .premium-stage-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .premium-floating-card,
  .premium-review-card {
    position: static;
    max-width: none;
    width: 100%;
  }

  .premium-floating-card-top,
  .premium-floating-card-bottom {
    margin-top: 14px;
  }

  .premium-review-card {
    height: 170px;
    margin-top: 14px;
  }

  .premium-thumb-stack {
    position: static;
    margin-top: 14px;
    gap: 10px;
  }

  .premium-thumb {
    width: calc(33.333% - 7px);
    height: 112px;
  }

  .premium-trust-section,
  .premium-services-section,
  .premium-experience-section,
  .premium-gallery-section,
  .premium-booking-section {
    padding-bottom: 82px;
  }

  .premium-trust-card,
  .premium-service-card,
  .premium-journey-panel,
  .premium-experience-point,
  .premium-booking-panel {
    border-radius: 26px;
  }

  .premium-service-feature {
    height: 520px;
    border-radius: 28px;
  }

  .premium-service-feature-content,
  .premium-booking-panel {
    padding: 22px;
  }

  .premium-section-heading h2,
  .premium-experience-copy h2,
  .premium-booking-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .premium-trust-card h2,
  .premium-service-feature-content h3,
  .premium-service-card h3 {
    font-size: 1.55rem;
  }

  .premium-journey-list li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .premium-journey-number {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}

/* Premium shared chrome */
body.theme-apple main {
  padding-top: 104px;
}

body.theme-apple .premium-site-nav.glass-nav {
  top: 16px;
  left: 0;
  right: 0;
  height: auto;
  max-height: none;
  background: transparent;
  box-shadow: none;
  border: 0;
}

body.theme-apple .premium-site-nav.glass-nav::after {
  display: none;
}

body.theme-apple .premium-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(17, 17, 25, 0.88) 0%, rgba(22, 20, 32, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(8, 7, 14, 0.24);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

body.theme-apple .premium-site-nav.is-scrolled .premium-nav-shell {
  background:
    linear-gradient(135deg, rgba(15, 15, 23, 0.95) 0%, rgba(20, 18, 30, 0.92) 100%);
  box-shadow: 0 24px 72px rgba(8, 7, 14, 0.32);
}

body.theme-apple .premium-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff7f2;
  text-decoration: none;
}

body.theme-apple .premium-brand-logo {
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(255, 206, 221, 0.18));
}

body.theme-apple .premium-brand-copy {
  display: grid;
  gap: 2px;
}

body.theme-apple .premium-brand-name {
  font-size: 0.98rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff7f2;
}

body.theme-apple .premium-brand-subtitle {
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 240, 232, 0.48);
}

body.theme-apple .premium-nav-links,
body.theme-apple .premium-nav-actions {
  display: flex;
  align-items: center;
}

body.theme-apple .premium-nav-links {
  gap: 10px;
  margin-inline: auto;
}

body.theme-apple .premium-nav-link,
body.theme-apple .premium-nav-linkout,
body.theme-apple .premium-nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
}

body.theme-apple .premium-nav-link {
  color: rgba(255, 240, 232, 0.72);
  transition: color 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

body.theme-apple .premium-nav-link:hover,
body.theme-apple .premium-nav-link[aria-current="page"] {
  color: #fff7f2;
  background: rgba(255, 255, 255, 0.06);
}

body.theme-apple .premium-nav-actions {
  gap: 10px;
}

body.theme-apple .premium-nav-pill,
body.theme-apple .premium-nav-linkout {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 240, 232, 0.66);
  background: rgba(255, 255, 255, 0.03);
}

body.theme-apple .premium-nav-linkout:hover {
  color: #fff7f2;
  border-color: rgba(255, 255, 255, 0.16);
}

body.theme-apple .premium-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7dfd9 0%, #f3c7d3 100%);
  color: #15151d;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(24, 18, 29, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

body.theme-apple .premium-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(24, 18, 29, 0.28);
}

body.theme-apple .premium-nav-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff7f2;
  cursor: pointer;
}

body.theme-apple .premium-nav-toggle-line,
body.theme-apple .premium-nav-close-line {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

body.theme-apple .premium-nav-toggle-line:first-child {
  top: 22px;
}

body.theme-apple .premium-nav-toggle-line:last-child {
  top: 29px;
}

body.theme-apple .premium-nav-close-line:first-child {
  top: 25px;
  transform: translateX(-50%) rotate(45deg);
}

body.theme-apple .premium-nav-close-line:last-child {
  top: 25px;
  transform: translateX(-50%) rotate(-45deg);
}

body.theme-apple .premium-mobile-menu.apple-mobile-menu {
  background: rgba(5, 5, 9, 0.62);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.theme-apple .premium-mobile-panel {
  width: min(100% - 20px, 560px);
  height: calc(100% - 28px);
  margin: 14px auto;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(13, 13, 20, 0.98) 0%, rgba(19, 17, 29, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(4, 4, 9, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.theme-apple .premium-mobile-top,
body.theme-apple .premium-mobile-content {
  padding-inline: 22px;
}

body.theme-apple .premium-mobile-top {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-apple .premium-brand-link-mobile {
  min-width: 0;
}

body.theme-apple .premium-mobile-content {
  flex: 1;
  overflow-y: auto;
  padding-top: 22px;
  padding-bottom: 26px;
}

body.theme-apple .premium-mobile-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

body.theme-apple .premium-mobile-kicker {
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 240, 232, 0.44);
}

body.theme-apple .premium-mobile-intro p {
  margin: 0;
  max-width: 28ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 240, 232, 0.72);
}

body.theme-apple .premium-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

body.theme-apple .premium-mobile-link.apple-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff7f2;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 600;
  opacity: 1;
  transform: none;
}

body.theme-apple .premium-mobile-link.apple-mobile-link.active {
  background: rgba(247, 223, 217, 0.12);
  border-color: rgba(247, 223, 217, 0.16);
}

body.theme-apple .premium-mobile-link-chevron {
  color: rgba(255, 240, 232, 0.38);
  transition: transform 0.24s ease, color 0.24s ease;
}

body.theme-apple .premium-mobile-link:hover .premium-mobile-link-chevron,
body.theme-apple .premium-mobile-link.active .premium-mobile-link-chevron {
  color: rgba(255, 240, 232, 0.76);
  transform: translateX(2px);
}

body.theme-apple .premium-mobile-bottom {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

body.theme-apple .premium-mobile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.theme-apple .premium-mobile-meta a,
body.theme-apple .premium-mobile-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 240, 232, 0.66);
  text-decoration: none;
  font-size: 0.88rem;
}

body.theme-apple .premium-nav-cta-mobile {
  width: 100%;
}

body.theme-apple .premium-footer {
  position: relative;
  margin-top: 0;
  padding: 0 0 34px;
  background:
    radial-gradient(circle at top right, rgba(244, 193, 214, 0.16) 0%, rgba(244, 193, 214, 0) 32%),
    linear-gradient(180deg, #0c0c12 0%, #11111a 100%);
  color: #fff7f2;
  overflow: hidden;
}

body.theme-apple .premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(131, 111, 206, 0.18) 0%, rgba(131, 111, 206, 0) 30%);
  pointer-events: none;
}

body.theme-apple .premium-footer-inner {
  position: relative;
  z-index: 1;
}

body.theme-apple .premium-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(4, 4, 10, 0.24);
  transform: translateY(-56px);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.theme-apple .premium-footer-cta-copy {
  display: grid;
  gap: 18px;
}

body.theme-apple .premium-footer-cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #fff7f2;
}

body.theme-apple .premium-footer-cta-copy p {
  margin: 0;
  max-width: 54ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 240, 232, 0.66);
}

body.theme-apple .premium-footer-cta-actions {
  display: grid;
  gap: 14px;
}

body.theme-apple .premium-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.58fr));
  gap: 22px;
  margin-top: -16px;
}

body.theme-apple .premium-footer-brand,
body.theme-apple .premium-footer-column {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.theme-apple .premium-footer-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 240, 232, 0.44);
}

body.theme-apple .premium-footer-brand h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff7f2;
}

body.theme-apple .premium-footer-brand p {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 240, 232, 0.66);
}

body.theme-apple .premium-footer-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body.theme-apple .premium-footer-contact-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 240, 232, 0.72);
  font-size: 0.88rem;
}

body.theme-apple .premium-footer-title {
  margin: 0 0 16px;
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 240, 232, 0.44);
}

body.theme-apple .premium-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

body.theme-apple .premium-footer-list li,
body.theme-apple .premium-footer-list a {
  color: rgba(255, 240, 232, 0.74);
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.55;
}

body.theme-apple .premium-footer-list a:hover {
  color: #fff7f2;
}

body.theme-apple .premium-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-apple .premium-footer-copy,
body.theme-apple .premium-footer-legal a,
body.theme-apple .premium-footer-legal span {
  margin: 0;
  color: rgba(255, 240, 232, 0.52);
  font-size: 0.84rem;
  line-height: 1.4;
  text-decoration: none;
}

body.theme-apple .premium-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.theme-apple .premium-footer-legal a:hover {
  color: #fff7f2;
}

body.theme-apple .whatsapp-float {
  background: linear-gradient(180deg, #171722 0%, #0f1018 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(9, 8, 15, 0.32);
}

body.theme-apple .whatsapp-float:hover {
  box-shadow: 0 22px 48px rgba(9, 8, 15, 0.4);
}

@media (max-width: 1100px) {
  body.theme-apple .premium-nav-pill,
  body.theme-apple .premium-nav-linkout {
    display: none;
  }

  body.theme-apple .premium-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.theme-apple .premium-footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  body.theme-apple main {
    padding-top: 94px;
  }

  body.theme-apple .premium-nav-shell {
    min-height: 68px;
    padding: 10px 14px;
  }

  body.theme-apple .premium-nav-links,
  body.theme-apple .premium-nav-cta-desktop,
  body.theme-apple .premium-nav-linkout,
  body.theme-apple .premium-nav-pill {
    display: none;
  }

  body.theme-apple .premium-nav-toggle {
    display: inline-flex;
  }

  body.theme-apple .premium-footer-cta,
  body.theme-apple .premium-footer-grid {
    grid-template-columns: 1fr;
  }

  body.theme-apple .premium-footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  body.theme-apple main {
    padding-top: 88px;
  }

  body.theme-apple .premium-site-nav.glass-nav {
    top: 10px;
  }

  body.theme-apple .premium-nav-shell {
    min-height: 62px;
    padding: 8px 12px;
    gap: 10px;
  }

  body.theme-apple .premium-brand-name {
    font-size: 0.9rem;
  }

  body.theme-apple .premium-brand-subtitle {
    font-size: 0.66rem;
  }

  body.theme-apple .premium-mobile-panel {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    margin: 6px;
    border-radius: 28px;
  }

  body.theme-apple .premium-mobile-top,
  body.theme-apple .premium-mobile-content {
    padding-inline: 16px;
  }

  body.theme-apple .premium-mobile-top {
    min-height: 72px;
  }

  body.theme-apple .premium-mobile-link.apple-mobile-link {
    padding: 16px 16px 16px 18px;
    font-size: 1.08rem;
  }

  body.theme-apple .premium-footer {
    padding-bottom: 24px;
  }

  body.theme-apple .premium-footer-cta {
    padding: 24px;
    border-radius: 28px;
    transform: translateY(-38px);
  }

  body.theme-apple .premium-footer-grid {
    margin-top: -8px;
  }

  body.theme-apple .premium-footer-brand,
  body.theme-apple .premium-footer-column {
    padding: 22px;
    border-radius: 24px;
  }

  body.theme-apple .premium-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  body.theme-apple .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}
.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  width: 100%;
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px hsl(335 45% 65% / 0.15);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b07090' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.booking-hero-step {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(335 45% 65%);
  color: #fff;
  font-size: 0.72rem;
}

.booking-wizard-shell {
  background: linear-gradient(145deg, hsl(0 0% 100% / 0.95), hsl(335 40% 97% / 0.92));
  border-radius: 2rem;
  border: 1px solid hsl(335 28% 83% / 0.7);
  box-shadow: 0 20px 50px hsl(335 25% 45% / 0.14);
  padding: clamp(1.2rem, 3vw, 2rem);
}

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

.booking-progress {
  display: grid;
  gap: 0.75rem;
}

.booking-progress-bar {
  width: 100%;
  height: 0.45rem;
  border-radius: 999px;
  background: hsl(335 20% 90%);
  overflow: hidden;
}

.booking-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, hsl(335 45% 60%), hsl(20 55% 72%));
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-progress-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-progress-steps li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(335 20% 86% / 0.8);
  background: #fff;
  border-radius: 999px;
  min-height: 2.5rem;
  padding: 0.2rem 0.65rem 0.2rem 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.booking-progress-badge {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(335 20% 90%);
  color: hsl(335 35% 45%);
  font-size: 0.68rem;
  flex-shrink: 0;
}

.booking-progress-steps li.is-active,
.booking-progress-steps li.is-complete {
  border-color: hsl(335 40% 70% / 0.8);
  color: hsl(335 42% 45%);
  background: hsl(335 60% 97% / 0.95);
}

.booking-progress-steps li.is-active .booking-progress-badge,
.booking-progress-steps li.is-complete .booking-progress-badge {
  background: hsl(335 45% 65%);
  color: #fff;
}

.booking-form-alert {
  margin: 0;
  border: 1px solid hsl(2 65% 62% / 0.5);
  background: hsl(2 100% 98%);
  color: hsl(2 60% 42%);
  border-radius: 0.95rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
}

.booking-step-panel {
  border: 1px solid hsl(335 20% 86% / 0.75);
  background: #fff;
  border-radius: 1.2rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  display: grid;
  gap: 1rem;
  animation: bookingFadeIn 0.34s ease;
}

.booking-step-head {
  display: grid;
  gap: 0.4rem;
}

.booking-step-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.67rem;
  color: var(--color-primary);
  font-weight: 700;
}

.booking-step-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
  color: var(--color-text);
}

.booking-step-copy {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.58;
  font-size: 0.95rem;
}

.booking-step-status {
  margin: 0;
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

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

.booking-service-card {
  display: grid;
  gap: 0.6rem;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid hsl(335 20% 84% / 0.82);
  background: linear-gradient(165deg, hsl(0 0% 100% / 0.98), hsl(335 35% 97% / 0.95));
  padding: 0.9rem;
  min-height: 8rem;
  cursor: pointer;
  transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.24s ease, box-shadow 0.24s ease;
}

.booking-service-card:hover {
  transform: translateY(-2px);
  border-color: hsl(335 40% 70% / 0.9);
  box-shadow: 0 10px 22px hsl(335 26% 45% / 0.14);
}

.booking-service-card.is-selected {
  border-color: hsl(335 45% 62%);
  background: linear-gradient(160deg, hsl(335 72% 97%), hsl(20 65% 96%));
  box-shadow: 0 12px 24px hsl(335 35% 46% / 0.18);
  transform: translateY(-1px);
}

.booking-service-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: hsl(335 45% 65% / 0.16);
}

.booking-service-title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.25;
}

.booking-service-meta {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.booking-service-price {
  margin: 0;
  font-size: 0.9rem;
  color: hsl(335 40% 44%);
  font-weight: 700;
}

.booking-calendar-card,
.booking-slots-card,
.booking-summary-card {
  border: 1px solid hsl(335 20% 86% / 0.72);
  background: linear-gradient(170deg, hsl(0 0% 100% / 0.98), hsl(25 45% 98% / 0.95));
  border-radius: 1rem;
  padding: 0.85rem;
}

.booking-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.booking-calendar-nav {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid hsl(335 22% 84%);
  border-radius: 0.7rem;
  background: #fff;
  color: hsl(335 40% 46%);
  font-weight: 700;
  cursor: pointer;
}

.booking-calendar-nav:hover {
  border-color: hsl(335 40% 68%);
}

.booking-calendar-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-calendar-month {
  margin: 0;
  font-size: 1.02rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.booking-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.booking-calendar-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.booking-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.booking-day,
.booking-day-empty {
  min-height: 2.2rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
}

.booking-day-empty {
  background: transparent;
}

.booking-day {
  background: #fff;
  border-color: hsl(335 18% 88%);
  color: var(--color-text);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
}

.booking-day:hover {
  border-color: hsl(335 40% 70%);
}

.booking-day.is-today {
  border-color: hsl(335 45% 65%);
  box-shadow: inset 0 0 0 1px hsl(335 45% 65% / 0.25);
}

.booking-day.is-selected {
  background: hsl(335 45% 65%);
  border-color: hsl(335 45% 62%);
  color: #fff;
}

.booking-day.is-disabled {
  background: hsl(25 10% 95%);
  color: hsl(25 7% 67%);
  border-color: hsl(25 10% 91%);
  cursor: not-allowed;
}

.booking-slots-head {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.65rem;
}

.booking-slots-title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.booking-slots-copy {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.booking-slot {
  border-radius: 0.7rem;
  min-height: 2.4rem;
  border: 1px solid hsl(335 20% 86%);
  background: #fff;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.booking-slot.is-available {
  background: hsl(335 72% 96%);
  border-color: hsl(335 45% 70%);
  color: hsl(335 45% 40%);
}

.booking-slot.is-available:hover {
  border-color: hsl(335 45% 58%);
}

.booking-slot.is-selected {
  background: hsl(335 45% 65%);
  border-color: hsl(335 45% 62%);
  color: #fff;
}

.booking-slot.is-unavailable {
  background: hsl(25 10% 94%);
  border-color: hsl(25 12% 88%);
  color: hsl(25 7% 62%);
  cursor: not-allowed;
}

.booking-summary-title {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(335 38% 45%);
  font-weight: 700;
}

.booking-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.booking-summary-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 1px solid hsl(335 20% 86% / 0.82);
  border-radius: 0.8rem;
  background: hsl(0 0% 100% / 0.95);
  min-height: 2.55rem;
  padding: 0.5rem 0.6rem;
  font-size: 0.85rem;
}

.booking-summary-list span {
  color: var(--color-text-muted);
}

.booking-summary-list strong {
  color: var(--color-text);
  text-align: right;
}

.booking-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.booking-step-back {
  min-width: 7rem;
  justify-content: center;
}

.booking-submit-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.booking-flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.booking-flow-list li {
  border: 1px solid hsl(335 20% 86% / 0.82);
  border-radius: 0.8rem;
  padding: 0.62rem 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.booking-flow-list li span {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(335 45% 65% / 0.2);
  color: hsl(335 45% 42%);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

@keyframes bookingFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .booking-service-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .booking-progress-steps {
    grid-template-columns: 1fr;
  }

  .booking-progress-steps li {
    min-height: 2.25rem;
  }

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

  .booking-step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-step-back,
  .booking-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* -- Decorative section divider -- */
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: hsl(335 45% 65% / 0.1);
  border-radius: 999px;
  padding: 0.35em 1em;
  margin-bottom: 1.25rem;
}

/* -- Floating animation -- */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(2deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}
.float { animation: float 6s ease-in-out infinite; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
.float-slow { animation: float-slow 8s ease-in-out infinite; }

/* -- Gradient hero -- */
@keyframes gradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-gradient {
  background: linear-gradient(
    135deg,
    hsl(335, 40%, 92%) 0%,
    hsl(25, 40%, 96%) 35%,
    hsl(335, 35%, 88%) 60%,
    hsl(15, 35%, 94%) 100%
  );
  background-size: 300% 300%;
  animation: gradientDrift 12s ease infinite;
}

/* -- Pill CTA buttons -- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.95rem 2.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px hsl(335 45% 65% / 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px hsl(335 45% 65% / 0.45);
  background-color: var(--color-primary-dark);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              color 0.25s ease;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

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

body { margin: 0; }

/* -- Crafted Homepage Template -- */
.crafted-home {
  position: relative;
  padding: clamp(1.25rem, 2.4vw, 2.4rem) 1rem 7rem;
  background:
    radial-gradient(90% 140% at 95% -10%, hsl(335 62% 78% / 0.42) 0%, transparent 62%),
    radial-gradient(70% 100% at -10% 110%, hsl(22 58% 80% / 0.32) 0%, transparent 64%),
    linear-gradient(135deg, hsl(25, 22%, 98%), hsl(335, 30%, 94%));
  overflow: hidden;
}

.crafted-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -35deg,
      hsl(335 36% 74% / 0.06) 0 2px,
      transparent 2px 18px
    );
  pointer-events: none;
}

.crafted-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.crafted-orb-a {
  width: 22rem;
  height: 22rem;
  top: -7rem;
  right: -6rem;
  background: radial-gradient(circle, hsl(335 55% 72% / 0.3), transparent 70%);
  animation: craftedFloatA 8s ease-in-out infinite;
}

.crafted-orb-b {
  width: 14rem;
  height: 14rem;
  bottom: -5rem;
  left: -4rem;
  background: radial-gradient(circle, hsl(28 55% 78% / 0.33), transparent 72%);
  animation: craftedFloatB 9s ease-in-out infinite;
}

.crafted-screen {
  max-width: 74rem;
  margin: 0 auto;
  border-radius: 2rem;
  border: 1px solid hsl(335 34% 78% / 0.58);
  background: linear-gradient(145deg, hsl(0 0% 100% / 0.86), hsl(335 40% 97% / 0.82));
  box-shadow: 0 22px 70px hsl(335 30% 45% / 0.13);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: clamp(1rem, 2.1vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-areas:
    "hero side"
    "services services"
    "cta cta";
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.crafted-hero {
  grid-area: hero;
  border-radius: 1.5rem;
  border: 1px solid hsl(335 30% 84% / 0.62);
  background: linear-gradient(155deg, hsl(0 0% 100% / 0.92), hsl(335 45% 95% / 0.88));
  padding: clamp(1rem, 2.5vw, 2rem);
  box-shadow: 0 8px 32px hsl(335 35% 42% / 0.1);
}

.crafted-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: hsl(335, 45%, 48%);
  border: 1px solid hsl(335 44% 72% / 0.65);
  border-radius: 999px;
  background: hsl(335 45% 65% / 0.12);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.38rem 0.8rem;
}

.crafted-hero h1 {
  margin: 0.85rem 0 0;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--color-text);
  font-size: clamp(2rem, 4.6vw, 3.95rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.crafted-hero h1 span {
  color: var(--color-primary);
}

.crafted-lead {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  max-width: 52ch;
  font-size: clamp(0.98rem, 1.55vw, 1.1rem);
  line-height: 1.62;
}

.crafted-social-proof {
  margin: 0.95rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid hsl(335 34% 78% / 0.75);
  background: hsl(0 0% 100% / 0.86);
  color: hsl(335, 35%, 40%);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.48rem 0.86rem;
  letter-spacing: 0.01em;
}

.crafted-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.crafted-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.74rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease;
}

.crafted-btn-primary {
  background: linear-gradient(120deg, hsl(335, 45%, 58%), hsl(335, 42%, 67%));
  color: #fff;
  box-shadow: 0 8px 26px hsl(335 45% 52% / 0.28);
}

.crafted-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px hsl(335 45% 48% / 0.36);
}

.crafted-btn-ghost {
  background: #fff;
  color: hsl(335, 45%, 48%);
  border-color: hsl(335 34% 78% / 0.9);
}

.crafted-btn-ghost:hover {
  transform: translateY(-2px);
  background: hsl(335 45% 98%);
}

.crafted-kpis {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.crafted-kpis div {
  border: 1px solid hsl(335 30% 78% / 0.82);
  border-radius: 1rem;
  background: linear-gradient(170deg, hsl(0 0% 100% / 0.92), hsl(335 45% 96% / 0.82));
  padding: 0.75rem 0.8rem;
  box-shadow: 0 8px 20px hsl(335 26% 45% / 0.12);
}

.crafted-kpi-head {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: hsl(335, 42%, 46%);
  font-weight: 700;
}

.crafted-kpi-icon {
  font-size: 0.8rem;
  line-height: 1;
}

.crafted-kpis strong {
  display: block;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.15;
  margin-top: 0.32rem;
}

.crafted-kpis span {
  display: block;
  margin-top: 0.24rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.crafted-side {
  grid-area: side;
  display: grid;
  gap: 0.75rem;
}

.crafted-side-card {
  border-radius: 1.25rem;
  border: 1px solid hsl(335 28% 82% / 0.65);
  background: linear-gradient(170deg, hsl(0 0% 100% / 0.9), hsl(335 36% 96% / 0.88));
  padding: 0.95rem;
}

.crafted-side-title {
  margin: 0 0 0.62rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(335, 40%, 46%);
}

.crafted-side-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.crafted-side-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.87rem;
  color: var(--color-text);
}

.crafted-side-card li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: hsl(335 45% 65% / 0.16);
  color: hsl(335, 45%, 43%);
  font-size: 0.73rem;
  font-weight: 700;
  flex-shrink: 0;
}

.crafted-flow-note {
  margin: 0.72rem 0 0;
  font-size: 0.74rem;
  color: hsl(335, 32%, 45%);
  border-top: 1px dashed hsl(335 30% 76% / 0.65);
  padding-top: 0.55rem;
}

.crafted-photo-wall {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.55rem;
}

.crafted-photo-main,
.crafted-photo-thumb {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(335 28% 80% / 0.68);
  background: hsl(0 0% 100% / 0.85);
  min-height: 0;
}

.crafted-photo-main {
  grid-row: 1 / 3;
  position: relative;
}

.crafted-photo-main img,
.crafted-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crafted-photo-main figcaption {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.45rem;
  margin: 0;
  border-radius: 0.6rem;
  background: hsl(0 0% 100% / 0.88);
  color: hsl(335, 35%, 38%);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.34rem 0.46rem;
}

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

.crafted-filters article {
  border-radius: 0.95rem;
  border: 1px solid hsl(335 27% 82% / 0.7);
  background: hsl(0 0% 100% / 0.84);
  padding: 0.66rem 0.72rem;
}

.crafted-filters article:last-child {
  grid-column: 1 / -1;
}

.crafted-filters h3 {
  margin: 0;
  font-size: 0.79rem;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: hsl(335, 42%, 46%);
}

.crafted-filters p {
  margin: 0.32rem 0 0;
  font-size: 0.76rem;
  line-height: 1.36;
  color: var(--color-text-muted);
}

.crafted-services {
  grid-area: services;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.crafted-service-card {
  border-radius: 1.15rem;
  border: 1px solid hsl(335 25% 82% / 0.72);
  background: linear-gradient(170deg, hsl(0 0% 100% / 0.88), hsl(25 38% 97% / 0.86));
  padding: 0.82rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.crafted-service-card:hover {
  transform: translateY(-3px);
  border-color: hsl(335 40% 70% / 0.9);
  box-shadow: 0 10px 22px hsl(335 32% 48% / 0.16);
}

.crafted-service-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.crafted-service-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(335 45% 65% / 0.14);
  color: hsl(335, 45%, 48%);
  flex-shrink: 0;
}

.crafted-service-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.crafted-service-head h3 {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.2;
  color: var(--color-text);
}

.crafted-service-head p {
  margin: 0.2rem 0 0;
  font-size: 0.73rem;
  color: var(--color-text-muted);
}

.crafted-service-copy {
  margin: 0.58rem 0 0;
  font-size: 0.78rem;
  line-height: 1.42;
  color: var(--color-text-muted);
}

.crafted-cta-row {
  grid-area: cta;
  border-radius: 1.2rem;
  border: 1px solid hsl(335 25% 80% / 0.8);
  background: linear-gradient(120deg, hsl(335 48% 95% / 0.95), hsl(25 42% 97% / 0.92));
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.crafted-cta-row h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.9vw, 1.45rem);
  line-height: 1.22;
  color: var(--color-text);
}

.crafted-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: hsl(0 0% 100% / 0.95);
  border-top: 1px solid hsl(335 20% 86% / 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.crafted-mobile-primary,
.crafted-mobile-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-radius: 999px;
  min-height: 2.8rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}

.crafted-mobile-primary {
  background: linear-gradient(120deg, hsl(335, 45%, 58%), hsl(335, 42%, 67%));
  color: #fff;
}

.crafted-mobile-secondary {
  border: 1px solid hsl(335 36% 75% / 0.9);
  color: hsl(335, 42%, 45%);
  background: #fff;
}

@media (max-width: 1120px) {
  .crafted-screen {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "hero"
      "side"
      "services"
      "cta";
  }

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

  .crafted-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .crafted-home {
    padding: 0.75rem 0.5rem 6.2rem;
  }

  .crafted-screen {
    border-radius: 1.4rem;
    padding: 0.75rem;
    gap: 0.7rem;
  }

  .crafted-hero h1 {
    font-size: clamp(1.65rem, 8.1vw, 2.35rem);
  }

  .crafted-kpis {
    grid-template-columns: 1fr;
  }

  .crafted-filters {
    grid-template-columns: 1fr;
  }

  .crafted-filters article:last-child {
    grid-column: auto;
  }

  .crafted-photo-wall {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 9.5rem 7.8rem;
  }

  .crafted-photo-main {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }

  .crafted-services {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 6rem;
  }
}

@media (min-width: 768px) {
  .crafted-mobile-bar {
    display: none;
  }
}

@keyframes craftedFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

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

/* ============================================
   Identical Composition Layer (Mockup Match)
============================================ */
body.theme-apple {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #1d1d1f;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.012em;
}

body.theme-apple .hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

body.theme-apple .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

body.theme-apple .glass-nav {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
  height: 44px;
}

body.theme-apple .apple-nav-brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  line-height: 1;
}

body.theme-apple .apple-nav-brand.mobile {
  font-size: 1.15rem;
}

body.theme-apple .glass-nav .hidden.md\:flex a {
  color: rgba(29, 29, 31, 0.72);
  transition: color 0.25s ease;
  text-decoration: none;
}

body.theme-apple .glass-nav .hidden.md\:flex a:hover,
body.theme-apple .glass-nav .hidden.md\:flex a[aria-current="page"] {
  color: #000;
}

body.theme-apple .apple-nav-cta {
  background: #000;
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

body.theme-apple .apple-nav-cta:hover {
  background: #27272a;
  color: #fff;
}

body.theme-apple .apple-nav-cta.mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  padding: 0.8rem 1rem;
}

body.theme-apple .apple-mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.theme-apple .apple-mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

body.theme-apple .apple-mobile-link.active {
  color: #000;
}

body.theme-apple main {
  padding-top: 44px;
}

body.theme-apple .hero-section {
  background: radial-gradient(circle at 50% 100%, #ead4d4 0%, #fff 80%);
}

body.theme-apple .apple-squircle {
  border-radius: 32px;
}

body.theme-apple .bento-card {
  background: #f5f5f7;
  overflow: hidden;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-apple .bento-card:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

body.theme-apple .bento-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-apple .bento-card:hover .bento-image {
  transform: scale(1.03);
}

body.theme-apple .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-apple .reveal.active,
body.theme-apple [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.theme-apple .input-apple {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  font-size: 17px;
  color: #1d1d1f;
  transition: all 0.2s ease;
}

body.theme-apple .input-apple:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(234, 212, 212, 0.35);
  border-color: #ead4d4;
}

body.theme-apple .service-card,
body.theme-apple .booking-wizard-shell,
body.theme-apple .booking-step-panel,
body.theme-apple .booking-calendar-card,
body.theme-apple .booking-slots-card,
body.theme-apple .booking-summary-card,
body.theme-apple .gallery-item,
body.theme-apple #gallery-filters button {
  border-radius: 24px !important;
}

body.theme-apple .btn-primary {
  background-color: #1d1d1f;
  color: #fff;
  border: 1px solid transparent;
}

body.theme-apple .btn-primary:hover {
  background-color: #000;
}

body.theme-apple .btn-outline {
  color: #0066cc;
  border-color: #0066cc;
}

body.theme-apple .btn-outline:hover {
  background: #0066cc;
  border-color: #0066cc;
}

body.theme-apple .filter-btn.active-filter {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

body.theme-apple .booking-progress-fill {
  background: linear-gradient(90deg, #ead4d4, #1d1d1f);
}

body.theme-apple .booking-service-card.is-selected,
body.theme-apple .booking-slot.is-selected,
body.theme-apple .booking-day.is-selected {
  background: #1d1d1f;
  border-color: #1d1d1f;
  color: #fff;
}

body.theme-apple .apple-footer {
  background: #f5f5f7;
}

body.theme-apple .apple-footer a {
  color: inherit;
}

body.theme-apple .apple-footer a:hover {
  color: #000;
}

/* ============================================
   Apple-Inspired Theme (Global Overrides)
   Keeps existing content and functionality.
============================================ */
:root {
  --color-primary: hsl(220 6% 12%);
  --color-primary-light: hsl(352 34% 88%);
  --color-primary-dark: hsl(220 10% 3%);
  --color-accent: hsl(340 30% 94%);
  --color-accent-dark: hsl(210 24% 96%);
  --color-bg: #ffffff;
  --color-bg-alt: #ffffff;
  --color-text: #1d1d1f;
  --color-text-muted: #6e6e73;
  --color-border: #d2d2d7;
  --font-heading: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body.theme-apple {
  background: #ffffff;
  color: #1d1d1f;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
}

body.theme-apple main {
  background:
    radial-gradient(120% 90% at 90% -10%, hsl(352 42% 90% / 0.55) 0%, transparent 65%),
    radial-gradient(100% 90% at -5% 110%, hsl(22 36% 90% / 0.45) 0%, transparent 70%),
    #ffffff;
}

/* Header + Navigation */
body.theme-apple .site-header {
  background: rgba(255, 255, 255, 0.78) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

body.theme-apple .site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

body.theme-apple .site-header nav {
  max-width: 1100px;
  min-height: 44px;
}

body.theme-apple .site-header nav > a span {
  color: #1d1d1f !important;
  letter-spacing: -0.032em;
}

body.theme-apple .site-header nav ul li a {
  color: rgba(29, 29, 31, 0.72) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  font-size: 0.73rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

body.theme-apple .site-header nav ul li a:hover {
  color: #1d1d1f !important;
  border-color: rgba(29, 29, 31, 0.12) !important;
  background: rgba(29, 29, 31, 0.03) !important;
}

body.theme-apple .site-header nav ul li a[aria-current="page"] {
  color: #1d1d1f !important;
  border-color: rgba(29, 29, 31, 0.16) !important;
  background: rgba(29, 29, 31, 0.05) !important;
}

body.theme-apple .site-header nav ul li a[href="/prenotazioni"] {
  background: #1d1d1f !important;
  color: #ffffff !important;
  border-color: #1d1d1f !important;
  text-transform: none;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(29, 29, 31, 0.2) !important;
}

body.theme-apple .site-header nav ul li a[href="/prenotazioni"]:hover {
  background: #000000 !important;
  border-color: #000000 !important;
}

body.theme-apple #mobile-menu {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.theme-apple #mobile-menu ul a {
  letter-spacing: -0.02em;
}

/* Shared look */
body.theme-apple .hero-gradient {
  background:
    radial-gradient(90% 72% at 50% 100%, hsl(352 42% 86% / 0.9) 0%, transparent 75%),
    linear-gradient(180deg, #ffffff 0%, hsl(20 25% 97%) 100%);
  animation: none;
}

body.theme-apple .section-eyebrow {
  color: hsl(220 6% 16%);
  background: hsl(352 36% 90% / 0.82);
  border: 1px solid hsl(352 32% 84% / 0.9);
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

body.theme-apple .btn-primary {
  background: #1d1d1f;
  color: #fff;
  border: 1px solid #1d1d1f;
  box-shadow: 0 12px 28px rgba(29, 29, 31, 0.2);
  font-weight: 600;
}

body.theme-apple .btn-primary:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px) scale(1.01);
}

body.theme-apple .btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: #0066cc;
  border: 1.5px solid rgba(0, 102, 204, 0.24);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  font-weight: 600;
}

body.theme-apple .btn-outline:hover {
  background: #0066cc;
  border-color: #0066cc;
  color: #fff;
}

/* Cards and content surfaces */
body.theme-apple .service-card,
body.theme-apple .gallery-item,
body.theme-apple .booking-wizard-shell,
body.theme-apple .booking-step-panel,
body.theme-apple .booking-calendar-card,
body.theme-apple .booking-slots-card,
body.theme-apple .booking-summary-card {
  border: 1px solid rgba(29, 29, 31, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 251, 0.95));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

body.theme-apple .service-card::before {
  height: 3px;
  background: linear-gradient(90deg, hsl(352 34% 84%), hsl(220 7% 20%));
}

body.theme-apple .service-card:hover {
  border-color: rgba(29, 29, 31, 0.18);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
}

body.theme-apple .gallery-item {
  border-radius: 26px;
}

body.theme-apple .gallery-item .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.12) 70%);
}

body.theme-apple .filter-btn {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(29, 29, 31, 0.14) !important;
  color: rgba(29, 29, 31, 0.66) !important;
  letter-spacing: 0.02em;
}

body.theme-apple .filter-btn:hover {
  color: #1d1d1f !important;
  border-color: rgba(29, 29, 31, 0.3) !important;
}

body.theme-apple .filter-btn.active-filter {
  background: #1d1d1f !important;
  color: #fff !important;
  border-color: #1d1d1f !important;
  box-shadow: 0 10px 22px rgba(29, 29, 31, 0.2);
}

/* Inputs and labels */
body.theme-apple .form-label {
  color: #6e6e73;
  font-weight: 700;
  letter-spacing: 0.1em;
}

body.theme-apple .form-input,
body.theme-apple .form-select,
body.theme-apple .form-textarea {
  background: rgba(245, 245, 247, 0.72);
  border-color: rgba(29, 29, 31, 0.12);
  border-radius: 14px;
}

body.theme-apple .form-input:focus,
body.theme-apple .form-select:focus,
body.theme-apple .form-textarea:focus {
  border-color: rgba(0, 102, 204, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

/* Booking Wizard styling */
body.theme-apple .booking-progress-bar {
  background: rgba(29, 29, 31, 0.12);
}

body.theme-apple .booking-progress-fill {
  background: linear-gradient(90deg, hsl(352 40% 74%), hsl(220 8% 22%));
}

body.theme-apple .booking-progress-steps li {
  border-color: rgba(29, 29, 31, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(29, 29, 31, 0.6);
}

body.theme-apple .booking-progress-badge {
  background: rgba(29, 29, 31, 0.1);
  color: #1d1d1f;
}

body.theme-apple .booking-progress-steps li.is-active,
body.theme-apple .booking-progress-steps li.is-complete {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(29, 29, 31, 0.2);
  color: #1d1d1f;
}

body.theme-apple .booking-progress-steps li.is-active .booking-progress-badge,
body.theme-apple .booking-progress-steps li.is-complete .booking-progress-badge {
  background: #1d1d1f;
  color: #fff;
}

body.theme-apple .booking-step-kicker {
  color: rgba(29, 29, 31, 0.68);
}

body.theme-apple .booking-service-card {
  border-color: rgba(29, 29, 31, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 247, 0.9));
}

body.theme-apple .booking-service-card:hover {
  border-color: rgba(29, 29, 31, 0.26);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

body.theme-apple .booking-service-card.is-selected {
  border-color: rgba(29, 29, 31, 0.5);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(234, 212, 212, 0.44));
}

body.theme-apple .booking-service-icon {
  background: rgba(234, 212, 212, 0.75);
}

body.theme-apple .booking-calendar-nav {
  border-color: rgba(29, 29, 31, 0.16);
  color: #1d1d1f;
}

body.theme-apple .booking-day {
  border-color: rgba(29, 29, 31, 0.12);
}

body.theme-apple .booking-day.is-today {
  border-color: rgba(29, 29, 31, 0.48);
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.28);
}

body.theme-apple .booking-day.is-selected {
  background: #1d1d1f;
  border-color: #1d1d1f;
}

body.theme-apple .booking-slot {
  border-color: rgba(29, 29, 31, 0.12);
}

body.theme-apple .booking-slot.is-available {
  background: rgba(234, 212, 212, 0.55);
  border-color: rgba(29, 29, 31, 0.2);
  color: #1d1d1f;
}

body.theme-apple .booking-slot.is-selected {
  background: #1d1d1f;
  border-color: #1d1d1f;
}

body.theme-apple .booking-summary-title {
  color: rgba(29, 29, 31, 0.64);
}

body.theme-apple .booking-flow-list li span,
body.theme-apple .booking-hero-step {
  background: rgba(29, 29, 31, 0.13);
  color: #1d1d1f;
}

/* Footer and floating actions */
body.theme-apple footer {
  background: #f5f5f7 !important;
  border-top: 1px solid rgba(29, 29, 31, 0.12) !important;
}

body.theme-apple footer .text-primary {
  color: #1d1d1f !important;
}

body.theme-apple footer .text-text-muted,
body.theme-apple footer address,
body.theme-apple footer p,
body.theme-apple footer a {
  color: rgba(29, 29, 31, 0.66);
}

body.theme-apple footer a:hover {
  color: #1d1d1f;
}

body.theme-apple .whatsapp-float {
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
}

/* Mobile tuning */
@media (max-width: 768px) {
  body.theme-apple .site-header nav ul li a {
    text-transform: none;
    letter-spacing: 0;
  }

  body.theme-apple .hero-gradient {
    background:
      radial-gradient(120% 72% at 50% 105%, hsl(352 42% 88% / 0.85) 0%, transparent 80%),
      linear-gradient(180deg, #ffffff 0%, hsl(20 20% 97%) 100%);
  }

  body.theme-apple .service-card,
  body.theme-apple .gallery-item {
    border-radius: 20px;
  }
}

/* Final premium chrome overrides */
body.theme-apple main {
  padding-top: 104px !important;
}

body.theme-apple .premium-site-nav.glass-nav,
body.theme-apple .premium-site-nav.glass-nav.is-scrolled {
  top: 16px !important;
  height: auto !important;
  max-height: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.theme-apple .premium-site-nav.glass-nav::after,
body.theme-apple .premium-site-nav.glass-nav.is-scrolled::after {
  display: none !important;
}

body.theme-apple .premium-site-nav .premium-nav-shell {
  background:
    linear-gradient(135deg, rgba(14, 14, 22, 0.9) 0%, rgba(18, 16, 28, 0.84) 100%) !important;
  border: 1px solid rgba(247, 223, 217, 0.08) !important;
  box-shadow:
    0 22px 54px rgba(6, 6, 12, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.theme-apple .premium-site-nav.is-scrolled .premium-nav-shell {
  background:
    linear-gradient(135deg, rgba(11, 11, 18, 0.96) 0%, rgba(15, 14, 24, 0.94) 100%) !important;
  border-color: rgba(247, 223, 217, 0.1) !important;
  box-shadow:
    0 26px 62px rgba(6, 6, 12, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.theme-apple .premium-site-nav .premium-nav-link {
  color: rgba(255, 241, 234, 0.72) !important;
}

body.theme-apple .premium-site-nav .premium-nav-link:hover,
body.theme-apple .premium-site-nav .premium-nav-link[aria-current="page"] {
  color: #fff8f3 !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

body.theme-apple .premium-site-nav .premium-nav-pill,
body.theme-apple .premium-site-nav .premium-nav-linkout {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(247, 223, 217, 0.08) !important;
  color: rgba(255, 241, 234, 0.64) !important;
}

body.theme-apple .premium-site-nav .premium-nav-linkout:hover {
  color: #fff8f3 !important;
  border-color: rgba(247, 223, 217, 0.14) !important;
}

body.theme-apple .premium-site-nav .premium-nav-toggle {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(247, 223, 217, 0.1) !important;
  color: #fff8f3 !important;
}

body.theme-apple .premium-mobile-menu.apple-mobile-menu {
  background: rgba(7, 7, 12, 0.72) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

body.theme-apple .premium-mobile-panel {
  background: linear-gradient(180deg, rgba(12, 12, 18, 0.99) 0%, rgba(18, 16, 28, 0.98) 100%) !important;
  border: 1px solid rgba(247, 223, 217, 0.08) !important;
}

body.theme-apple footer.premium-footer {
  background:
    radial-gradient(circle at top right, rgba(244, 193, 214, 0.16) 0%, rgba(244, 193, 214, 0) 32%),
    linear-gradient(180deg, #0c0c12 0%, #11111a 100%) !important;
  border-top: 0 !important;
  color: #fff8f3 !important;
  padding-top: 42px !important;
}

body.theme-apple footer.premium-footer .premium-label-light {
  color: rgba(247, 223, 217, 0.84) !important;
}

body.theme-apple footer.premium-footer .premium-footer-cta {
  transform: none !important;
  margin-top: 0 !important;
  background: linear-gradient(135deg, rgba(20, 20, 31, 0.98) 0%, rgba(28, 24, 40, 0.98) 100%) !important;
  border: 1px solid rgba(247, 223, 217, 0.12) !important;
  box-shadow:
    0 28px 80px rgba(4, 4, 10, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.theme-apple footer.premium-footer .premium-footer-grid {
  margin-top: 24px !important;
}

body.theme-apple footer.premium-footer .premium-footer-brand,
body.theme-apple footer.premium-footer .premium-footer-column {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
  border: 1px solid rgba(247, 223, 217, 0.08) !important;
}

body.theme-apple footer.premium-footer .premium-footer-cta-copy h2,
body.theme-apple footer.premium-footer .premium-footer-brand h3 {
  color: #fff8f3 !important;
}

body.theme-apple footer.premium-footer .premium-footer-cta-copy p,
body.theme-apple footer.premium-footer .premium-footer-brand p {
  color: rgba(255, 241, 234, 0.78) !important;
}

body.theme-apple footer.premium-footer .premium-footer-kicker,
body.theme-apple footer.premium-footer .premium-footer-title {
  color: rgba(247, 223, 217, 0.72) !important;
}

body.theme-apple footer.premium-footer .premium-footer-contact-pills span {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(247, 223, 217, 0.1) !important;
  color: rgba(255, 241, 234, 0.84) !important;
}

body.theme-apple footer.premium-footer .premium-footer-list li,
body.theme-apple footer.premium-footer .premium-footer-list a {
  color: rgba(255, 241, 234, 0.84) !important;
}

body.theme-apple footer.premium-footer .premium-footer-copy,
body.theme-apple footer.premium-footer .premium-footer-legal a,
body.theme-apple footer.premium-footer .premium-footer-legal span {
  color: rgba(255, 241, 234, 0.68) !important;
}

body.theme-apple footer.premium-footer a:hover {
  color: #fff8f3 !important;
}

body.theme-apple footer.premium-footer .premium-button-secondary {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff8f3 !important;
  border-color: rgba(247, 223, 217, 0.14) !important;
}

body.theme-apple .whatsapp-float {
  background: linear-gradient(180deg, #171722 0%, #0f1018 100%) !important;
  border: 1px solid rgba(247, 223, 217, 0.1) !important;
  box-shadow: 0 18px 40px rgba(9, 8, 15, 0.32) !important;
}

@media (max-width: 920px) {
  body.theme-apple main {
    padding-top: 94px !important;
  }
}

@media (max-width: 640px) {
  body.theme-apple main {
    padding-top: 88px !important;
  }

  body.theme-apple .premium-site-nav.glass-nav,
  body.theme-apple .premium-site-nav.glass-nav.is-scrolled {
    top: 10px !important;
  }

  body.theme-apple footer.premium-footer {
    padding-top: 28px !important;
  }

  body.theme-apple footer.premium-footer .premium-footer-grid {
    margin-top: 18px !important;
  }
}

/* Final spacing and button polish */
body.theme-apple .premium-button-row {
  gap: 16px !important;
  margin-top: 30px !important;
}

body.theme-apple .premium-button {
  min-height: 58px !important;
  padding: 0 28px !important;
  border: 1px solid rgba(255, 219, 229, 0.18) !important;
  background: linear-gradient(135deg, #f8d8de 0%, #efb9ca 52%, #eaa6bd 100%) !important;
  color: #15151d !important;
  box-shadow:
    0 18px 42px rgba(28, 18, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

body.theme-apple .premium-button:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 24px 48px rgba(28, 18, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

body.theme-apple .premium-button-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff8f3 !important;
  border-color: rgba(247, 223, 217, 0.18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

body.theme-apple .premium-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(247, 223, 217, 0.26) !important;
}

body.theme-apple .premium-site-nav .premium-nav-shell {
  min-height: 78px !important;
  padding: 12px 20px !important;
  gap: 20px !important;
}

body.theme-apple .premium-site-nav .premium-nav-link {
  min-height: 46px !important;
  padding-inline: 18px !important;
}

body.theme-apple .premium-site-nav .premium-nav-pill,
body.theme-apple .premium-site-nav .premium-nav-linkout {
  min-height: 44px !important;
  padding-inline: 16px !important;
}

body.theme-apple .premium-nav-links {
  gap: 12px !important;
}

body.theme-apple .premium-nav-actions {
  gap: 12px !important;
}

body.theme-apple footer.premium-footer .premium-footer-cta {
  padding: 34px !important;
  gap: 24px !important;
}

body.theme-apple footer.premium-footer .premium-footer-grid {
  gap: 18px !important;
}

body.theme-apple footer.premium-footer .premium-footer-brand,
body.theme-apple footer.premium-footer .premium-footer-column {
  padding: 24px !important;
}

body.theme-apple footer.premium-footer .premium-footer-list li,
body.theme-apple footer.premium-footer .premium-footer-list a {
  line-height: 1.6 !important;
}

body.theme-apple footer.premium-footer .premium-footer-cta-actions {
  gap: 12px !important;
}

body.theme-apple footer.premium-footer .premium-footer-cta-actions .premium-button {
  width: 100% !important;
}

body.theme-apple footer.premium-footer .premium-footer-bottom {
  margin-top: 18px !important;
  padding-top: 16px !important;
}

@media (max-width: 920px) {
  body.theme-apple .premium-site-nav .premium-nav-shell {
    min-height: 70px !important;
    padding: 10px 16px !important;
    gap: 14px !important;
  }
}

@media (max-width: 640px) {
  body.theme-apple .premium-site-nav .premium-nav-shell {
    min-height: 64px !important;
    padding: 8px 12px !important;
  }

  body.theme-apple footer.premium-footer .premium-footer-cta {
    padding: 24px !important;
    gap: 18px !important;
  }
}

/* Final services contrast fix */
body.theme-apple .premium-services-section {
  background:
    linear-gradient(180deg, rgba(247, 241, 236, 0) 0%, rgba(247, 241, 236, 0.86) 10%, #f7f1ec 100%) !important;
  padding-top: 26px !important;
}

body.theme-apple .premium-services-section .premium-section-heading {
  gap: 14px !important;
}

body.theme-apple .premium-services-section .premium-label {
  color: rgba(18, 19, 26, 0.7) !important;
}

body.theme-apple .premium-services-section .premium-section-heading h2 {
  color: #12131a !important;
  text-shadow: none !important;
}

body.theme-apple .premium-services-section .premium-section-heading p {
  color: rgba(18, 19, 26, 0.8) !important;
}

/* Premium interior pages */
body.theme-apple .premium-interior-page {
  color: #12131a;
}

body.theme-apple .premium-about-page {
  background:
    linear-gradient(180deg, #09090d 0%, #0c0d13 18%, #101222 34%, #f3ece6 34%, #f7f1ec 74%, #ffffff 100%);
}

body.theme-apple .premium-gallery-page {
  background:
    linear-gradient(180deg, #08090d 0%, #0c0d14 22%, #111321 34%, #f4ede8 34%, #f7f2ed 78%, #ffffff 100%);
}

body.theme-apple .premium-booking-page {
  background:
    linear-gradient(180deg, #09090d 0%, #0d0d15 20%, #111322 36%, #f2ebe5 36%, #f6f0ea 100%);
}

body.theme-apple .premium-interior-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 108px;
  color: #f6f2ee;
}

body.theme-apple .premium-interior-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 52px;
  align-items: center;
}

body.theme-apple .premium-display-interior {
  max-width: 11.5ch;
}

body.theme-apple .premium-interior-lead {
  max-width: 20ch;
}

body.theme-apple .premium-interior-support {
  max-width: 58ch;
}

body.theme-apple .premium-inline-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

body.theme-apple .premium-inline-metric {
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(247, 223, 217, 0.12);
  background: rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body.theme-apple .premium-inline-metric strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.15;
  color: #fff8f3;
}

body.theme-apple .premium-inline-metric span {
  display: block;
  margin-top: 7px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 244, 236, 0.66);
}

body.theme-apple .premium-interior-section {
  position: relative;
  padding: 0 0 108px;
}

body.theme-apple .premium-surface-section {
  background:
    linear-gradient(180deg, rgba(247, 241, 236, 0) 0%, rgba(247, 241, 236, 0.92) 12%, #f7f1ec 100%);
  padding-top: 28px;
}

body.theme-apple .premium-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

body.theme-apple .premium-principle-card,
body.theme-apple .premium-service-preview-card,
body.theme-apple .premium-gallery-summary-card,
body.theme-apple .premium-booking-shell-head,
body.theme-apple .premium-booking-side-card {
  border-radius: 30px;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(18, 14, 25, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body.theme-apple .premium-principle-card {
  padding: 28px;
}

body.theme-apple .premium-principle-card h3,
body.theme-apple .premium-booking-side-card h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #12131a;
}

body.theme-apple .premium-principle-card p,
body.theme-apple .premium-service-preview-card p,
body.theme-apple .premium-booking-side-card p {
  margin: 12px 0 0;
  color: rgba(18, 19, 26, 0.72);
  line-height: 1.75;
}

body.theme-apple .premium-about-visual,
body.theme-apple .premium-gallery-hero-visual,
body.theme-apple .premium-booking-hero-visual {
  position: relative;
  min-height: 680px;
}

body.theme-apple .premium-about-stage,
body.theme-apple .premium-gallery-hero-stage,
body.theme-apple .premium-booking-stage {
  position: relative;
  min-height: 620px;
  border-radius: 40px;
  overflow: hidden;
  background: #12131d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 38px 88px rgba(7, 6, 13, 0.44);
}

body.theme-apple .premium-about-stage-image,
body.theme-apple .premium-gallery-hero-image,
body.theme-apple .premium-booking-stage-image,
body.theme-apple .premium-story-image,
body.theme-apple .premium-about-cut img,
body.theme-apple .premium-gallery-floating-card img,
body.theme-apple .premium-booking-mini-card img,
body.theme-apple .premium-booking-side-image-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.theme-apple .premium-about-stage-card,
body.theme-apple .premium-gallery-hero-caption,
body.theme-apple .premium-booking-stage-card,
body.theme-apple .premium-story-stat {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 24px 26px;
  border-radius: 30px;
  background: rgba(10, 10, 15, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.theme-apple .premium-about-stage-card h2,
body.theme-apple .premium-booking-stage-card strong,
body.theme-apple .premium-gallery-hero-caption strong,
body.theme-apple .premium-story-stat strong {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.12;
  color: #fff8f3;
}

body.theme-apple .premium-about-stage-card p,
body.theme-apple .premium-booking-stage-card p,
body.theme-apple .premium-gallery-hero-caption p,
body.theme-apple .premium-story-stat p {
  margin: 0;
  color: rgba(255, 244, 236, 0.74);
  line-height: 1.7;
}

body.theme-apple .premium-about-floating {
  position: absolute;
  top: 28px;
  right: -24px;
  z-index: 2;
  max-width: 252px;
  padding: 18px 20px;
  border-radius: 28px;
  background: rgba(13, 13, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(4, 4, 10, 0.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.theme-apple .premium-about-floating strong {
  display: block;
  margin-top: 8px;
  color: #fff8f3;
  font-size: 1.08rem;
}

body.theme-apple .premium-about-floating p {
  margin: 8px 0 0;
  color: rgba(255, 244, 236, 0.72);
  line-height: 1.65;
}

body.theme-apple .premium-about-cut,
body.theme-apple .premium-gallery-floating-card,
body.theme-apple .premium-booking-mini-card {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 18, 0.84);
  box-shadow: 0 24px 52px rgba(4, 4, 10, 0.28);
}

body.theme-apple .premium-about-cut-left {
  left: -16px;
  bottom: 124px;
  width: 122px;
  height: 158px;
}

body.theme-apple .premium-about-cut-right {
  right: 24px;
  bottom: -18px;
  width: 168px;
  height: 214px;
}

body.theme-apple .premium-story-grid,
body.theme-apple .premium-services-preview-grid,
body.theme-apple .premium-gallery-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 26px;
  align-items: start;
}

body.theme-apple .premium-story-visual {
  position: relative;
  min-height: 640px;
  border-radius: 38px;
  overflow: hidden;
  background: #10111a;
  box-shadow: 0 30px 72px rgba(16, 12, 24, 0.18);
}

body.theme-apple .premium-story-overlay,
body.theme-apple .premium-booking-side-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 13, 0.02) 0%, rgba(9, 9, 13, 0.22) 46%, rgba(9, 9, 13, 0.74) 100%),
    radial-gradient(circle at top right, rgba(246, 202, 218, 0.28) 0%, rgba(246, 202, 218, 0) 44%);
}

body.theme-apple .premium-story-copy,
body.theme-apple .premium-services-preview-copy,
body.theme-apple .premium-gallery-editorial-copy {
  display: grid;
  gap: 18px;
}

body.theme-apple .premium-ritual-list,
body.theme-apple .premium-services-preview-stack,
body.theme-apple .premium-booking-notes {
  display: grid;
  gap: 16px;
}

body.theme-apple .premium-ritual-item,
body.theme-apple .premium-booking-note {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(18, 14, 25, 0.06);
}

body.theme-apple .premium-ritual-number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.08);
  color: #12131a;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.theme-apple .premium-ritual-item strong,
body.theme-apple .premium-booking-note strong,
body.theme-apple .premium-service-preview-card strong {
  display: block;
  margin: 0;
  color: #12131a;
  font-size: 1rem;
  line-height: 1.25;
}

body.theme-apple .premium-ritual-item p,
body.theme-apple .premium-booking-note p {
  margin: 8px 0 0;
  color: rgba(18, 19, 26, 0.72);
  line-height: 1.7;
}

body.theme-apple .premium-service-preview-card {
  padding: 24px 26px;
}

body.theme-apple .premium-service-preview-meta {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(18, 19, 26, 0.54);
  font-size: 0.88rem;
}

body.theme-apple .premium-interior-cta-section {
  padding: 0 0 108px;
}

body.theme-apple .premium-interior-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  color: #fff8f3;
  background:
    radial-gradient(circle at top right, rgba(244, 193, 214, 0.16) 0%, rgba(244, 193, 214, 0) 32%),
    linear-gradient(180deg, #0f1018 0%, #151522 100%);
  border: 1px solid rgba(247, 223, 217, 0.12);
  box-shadow: 0 28px 80px rgba(4, 4, 10, 0.24);
}

body.theme-apple .premium-interior-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

body.theme-apple .premium-interior-cta p {
  margin: 14px 0 0;
  color: rgba(255, 241, 234, 0.76);
  line-height: 1.72;
}

body.theme-apple .premium-inline-link-light {
  color: rgba(255, 241, 234, 0.76);
}

body.theme-apple .premium-inline-link-light:hover {
  color: #fff8f3;
}

body.theme-apple .premium-gallery-hero-grid {
  align-items: end;
}

body.theme-apple .premium-gallery-floating-card-top {
  top: 38px;
  left: -20px;
  width: 136px;
  height: 168px;
}

body.theme-apple .premium-gallery-floating-card-bottom {
  right: -18px;
  bottom: 86px;
  width: 182px;
  height: 226px;
}

body.theme-apple .premium-gallery-filter-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: end;
}

body.theme-apple .premium-gallery-filter-section .premium-label {
  color: rgba(18, 19, 26, 0.64) !important;
}

body.theme-apple .premium-gallery-filter-section .premium-section-heading h2 {
  color: #12131a !important;
  text-shadow: none !important;
}

body.theme-apple .premium-gallery-filter-section .premium-section-heading p,
body.theme-apple .premium-gallery-summary-card span {
  color: rgba(18, 19, 26, 0.82) !important;
}

body.theme-apple .premium-gallery-summary-card {
  padding: 26px;
}

body.theme-apple .premium-gallery-summary-card strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #12131a;
}

body.theme-apple .premium-gallery-summary-card span {
  display: block;
  margin-top: 10px;
  line-height: 1.65;
  color: rgba(18, 19, 26, 0.72);
}

body.theme-apple .premium-filter-wrap {
  margin-top: 28px;
}

body.theme-apple .premium-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.theme-apple .premium-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(18, 19, 26, 0.1) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 14px 28px rgba(18, 14, 25, 0.06);
}

body.theme-apple .premium-filter-btn span {
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.theme-apple .premium-filter-btn small {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(18, 19, 26, 0.08);
  color: rgba(18, 19, 26, 0.64);
  font-size: 0.74rem;
}

body.theme-apple .premium-gallery-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

body.theme-apple .premium-lookbook-card {
  position: relative;
  aspect-ratio: auto !important;
  grid-column: span 4;
  min-height: 320px;
  border-radius: 34px !important;
  overflow: hidden;
  background: #11111a;
  border: 1px solid rgba(18, 19, 26, 0.08);
  box-shadow: 0 24px 48px rgba(18, 14, 25, 0.12);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body.theme-apple .premium-lookbook-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 56px rgba(18, 14, 25, 0.18);
}

body.theme-apple .premium-lookbook-card.is-large {
  grid-column: span 7;
  min-height: 520px;
}

body.theme-apple .premium-lookbook-card.is-tall {
  grid-column: span 5;
  min-height: 520px;
}

body.theme-apple .premium-lookbook-card.is-wide {
  grid-column: span 6;
  min-height: 360px;
}

body.theme-apple .premium-lookbook-card.is-compact {
  grid-column: span 3;
  min-height: 250px;
}

body.theme-apple .premium-lookbook-overlay {
  opacity: 1 !important;
  align-items: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(9, 9, 13, 0) 38%, rgba(9, 9, 13, 0.62) 100%) !important;
}

body.theme-apple .premium-lookbook-meta {
  display: grid;
  gap: 8px;
}

body.theme-apple .premium-lookbook-meta span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 244, 236, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.theme-apple .premium-lookbook-meta p {
  margin: 0;
  max-width: 24ch;
  color: #fff8f3;
  font-size: 1.02rem;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

body.theme-apple .premium-gallery-editorial-panel {
  padding: 30px;
  border-radius: 32px;
  color: #fff8f3;
  background:
    radial-gradient(circle at top right, rgba(244, 193, 214, 0.18) 0%, rgba(244, 193, 214, 0) 34%),
    linear-gradient(180deg, #10111a 0%, #171824 100%);
  border: 1px solid rgba(247, 223, 217, 0.12);
  box-shadow: 0 28px 66px rgba(9, 8, 15, 0.2);
}

body.theme-apple .premium-gallery-editorial-panel h3 {
  margin: 10px 0 0;
  font-size: 1.9rem;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

body.theme-apple .premium-gallery-editorial-panel p {
  margin: 14px 0 0;
  color: rgba(255, 241, 234, 0.78);
  line-height: 1.72;
}

body.theme-apple .premium-button-row-compact {
  margin-top: 22px !important;
}

body.theme-apple .premium-booking-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

body.theme-apple .premium-booking-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(247, 223, 217, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 244, 236, 0.84);
  font-size: 0.86rem;
}

body.theme-apple .premium-booking-pill em {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-style: normal;
  color: #fff8f3;
}

body.theme-apple .premium-booking-mini-card-left {
  left: -10px;
  top: 46px;
  width: 132px;
  height: 168px;
}

body.theme-apple .premium-booking-mini-card-right {
  right: -16px;
  bottom: 88px;
  width: 182px;
  height: 226px;
}

body.theme-apple .premium-booking-main-section {
  padding-top: 18px;
}

body.theme-apple .premium-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 24px;
  align-items: start;
}

body.theme-apple .premium-booking-shell {
  display: grid;
  gap: 22px;
}

body.theme-apple .premium-booking-shell-head {
  padding: 28px 30px;
}

body.theme-apple .premium-booking-shell-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #12131a;
}

body.theme-apple .premium-booking-shell-head p {
  margin: 14px 0 0;
  color: rgba(18, 19, 26, 0.74);
  line-height: 1.72;
}

body.theme-apple .premium-booking-wizard-shell {
  border-radius: 34px !important;
  padding: clamp(1.2rem, 2.8vw, 2rem) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 236, 0.94)) !important;
  border: 1px solid rgba(18, 19, 26, 0.08) !important;
  box-shadow: 0 26px 60px rgba(18, 14, 25, 0.1) !important;
}

body.theme-apple .premium-booking-step-panel {
  border-radius: 28px !important;
  padding: clamp(1.15rem, 2.4vw, 1.55rem) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(18, 19, 26, 0.08) !important;
  box-shadow: none !important;
}

body.theme-apple .premium-booking-page .booking-step-title {
  color: #12131a;
  letter-spacing: -0.04em;
}

body.theme-apple .premium-booking-page .booking-step-copy,
body.theme-apple .premium-booking-page .booking-step-status,
body.theme-apple .premium-booking-page .booking-slots-copy {
  color: rgba(18, 19, 26, 0.7);
}

body.theme-apple .premium-booking-page .booking-service-card.is-selected {
  color: #12131a !important;
  border-color: rgba(18, 19, 26, 0.22) !important;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(245, 226, 232, 0.86)) !important;
}

body.theme-apple .premium-booking-page .booking-service-card.is-selected .booking-service-title,
body.theme-apple .premium-booking-page .booking-service-card.is-selected .booking-service-price {
  color: #12131a !important;
}

body.theme-apple .premium-booking-page .booking-service-card.is-selected .booking-service-meta {
  color: rgba(18, 19, 26, 0.7) !important;
}

body.theme-apple .premium-button-muted {
  background: rgba(18, 19, 26, 0.06) !important;
  color: #12131a !important;
  border-color: rgba(18, 19, 26, 0.1) !important;
  box-shadow: none !important;
}

body.theme-apple .premium-button-muted:hover {
  background: rgba(18, 19, 26, 0.09) !important;
  border-color: rgba(18, 19, 26, 0.18) !important;
}

body.theme-apple .premium-button[disabled],
body.theme-apple .premium-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

body.theme-apple .premium-privacy-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(18, 19, 26, 0.68);
  line-height: 1.65;
  cursor: pointer;
}

body.theme-apple .premium-privacy-check input {
  margin: 2px 0 0;
  width: 18px;
  height: 18px;
  accent-color: #12131a;
}

body.theme-apple .premium-booking-sidebar {
  display: grid;
  gap: 18px;
}

body.theme-apple .premium-booking-side-card {
  padding: 28px;
}

body.theme-apple .premium-booking-side-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: #fff8f3;
  background: #10111a;
  border-color: rgba(247, 223, 217, 0.12);
}

body.theme-apple .premium-booking-side-image-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding-top: 198px;
}

body.theme-apple .premium-booking-side-image-copy h3 {
  color: #fff8f3;
}

body.theme-apple .premium-booking-contact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

body.theme-apple .premium-booking-contact-list li,
body.theme-apple .premium-booking-contact-list a {
  color: rgba(18, 19, 26, 0.78);
  text-decoration: none;
}

body.theme-apple .premium-booking-contact-list a:hover {
  color: #12131a;
}

@media (max-width: 1100px) {
  body.theme-apple .premium-interior-hero-grid,
  body.theme-apple .premium-story-grid,
  body.theme-apple .premium-services-preview-grid,
  body.theme-apple .premium-gallery-editorial-grid,
  body.theme-apple .premium-booking-layout {
    grid-template-columns: 1fr;
  }

  body.theme-apple .premium-about-visual,
  body.theme-apple .premium-gallery-hero-visual,
  body.theme-apple .premium-booking-hero-visual {
    min-height: 620px;
  }

  body.theme-apple .premium-gallery-filter-head,
  body.theme-apple .premium-interior-cta {
    grid-template-columns: 1fr;
  }

  body.theme-apple .premium-lookbook-card.is-large,
  body.theme-apple .premium-lookbook-card.is-tall,
  body.theme-apple .premium-lookbook-card.is-wide {
    grid-column: span 6;
  }

  body.theme-apple .premium-lookbook-card.is-compact {
    grid-column: span 6;
  }
}

@media (max-width: 920px) {
  body.theme-apple .premium-interior-hero {
    padding: 54px 0 88px;
  }

  body.theme-apple .premium-inline-metrics,
  body.theme-apple .premium-principles-grid {
    grid-template-columns: 1fr;
  }

  body.theme-apple .premium-about-floating,
  body.theme-apple .premium-gallery-floating-card,
  body.theme-apple .premium-booking-mini-card {
    display: none;
  }

  body.theme-apple .premium-lookbook-card.is-large,
  body.theme-apple .premium-lookbook-card.is-tall,
  body.theme-apple .premium-lookbook-card.is-wide,
  body.theme-apple .premium-lookbook-card.is-compact {
    grid-column: span 12;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  body.theme-apple .premium-interior-hero {
    padding: 34px 0 74px;
  }

  body.theme-apple .premium-interior-section,
  body.theme-apple .premium-interior-cta-section {
    padding-bottom: 82px;
  }

  body.theme-apple .premium-about-stage,
  body.theme-apple .premium-gallery-hero-stage,
  body.theme-apple .premium-booking-stage,
  body.theme-apple .premium-story-visual {
    min-height: 500px;
    border-radius: 30px;
  }

  body.theme-apple .premium-about-stage-card,
  body.theme-apple .premium-gallery-hero-caption,
  body.theme-apple .premium-booking-stage-card,
  body.theme-apple .premium-story-stat,
  body.theme-apple .premium-booking-shell-head,
  body.theme-apple .premium-booking-side-card,
  body.theme-apple .premium-principle-card,
  body.theme-apple .premium-service-preview-card,
  body.theme-apple .premium-gallery-summary-card,
  body.theme-apple .premium-interior-cta {
    padding: 22px;
  }

  body.theme-apple .premium-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  body.theme-apple .premium-filter-row::-webkit-scrollbar {
    display: none;
  }

  body.theme-apple .premium-booking-pill-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Final premium refinement */
body.theme-apple {
  --premium-rose-1: #f8e5e0;
  --premium-rose-2: #efc8d1;
  --premium-rose-3: #e5b3c4;
  --premium-ink: #15141b;
  --premium-cream: #fff8f3;
  --premium-surface: rgba(255, 255, 255, 0.76);
  --premium-surface-strong: rgba(255, 255, 255, 0.84);
  --premium-border: rgba(18, 19, 26, 0.08);
  --premium-shadow: 0 22px 54px rgba(18, 14, 25, 0.1);
}

body.theme-apple .premium-home {
  overflow-x: clip;
}

@keyframes premiumGlowDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.48;
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
    opacity: 0.7;
  }
}

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

body.theme-apple .premium-hero-glow {
  animation: premiumGlowDrift 16s ease-in-out infinite;
  will-change: transform, opacity;
}

body.theme-apple .premium-hero-glow-b {
  animation-duration: 19s;
  animation-delay: -4s;
}

body.theme-apple .premium-floating-card,
body.theme-apple .premium-review-card,
body.theme-apple .premium-thumb {
  animation: premiumFloatAmbient 12s ease-in-out infinite;
}

body.theme-apple .premium-floating-card-bottom,
body.theme-apple .premium-thumb:nth-child(2) {
  animation-delay: -3s;
}

body.theme-apple .premium-review-card,
body.theme-apple .premium-thumb:nth-child(3) {
  animation-delay: -6s;
}

body.theme-apple [data-reveal] {
  transition-duration: 0.95s;
}

body.theme-apple [data-stagger] > * {
  transition-duration: 0.8s;
}

body.theme-apple .premium-kicker,
body.theme-apple .premium-label,
body.theme-apple .premium-label-light,
body.theme-apple .premium-card-tag,
body.theme-apple .premium-stage-caption-label,
body.theme-apple .premium-floating-label,
body.theme-apple .premium-journey-label,
body.theme-apple .premium-footer-kicker,
body.theme-apple .premium-footer-title {
  font-weight: 600;
  letter-spacing: 0.24em;
}

body.theme-apple .premium-button,
body.theme-apple .premium-nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 224, 231, 0.2) !important;
  background: linear-gradient(135deg, var(--premium-rose-1) 0%, var(--premium-rose-2) 52%, var(--premium-rose-3) 100%) !important;
  color: var(--premium-ink) !important;
  box-shadow:
    0 18px 38px rgba(25, 16, 27, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.52) !important;
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    filter 0.28s ease !important;
}

body.theme-apple .premium-button::before,
body.theme-apple .premium-nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 74%);
  transform: translateX(-135%) skewX(-16deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

body.theme-apple .premium-button:hover,
body.theme-apple .premium-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 46px rgba(28, 18, 30, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.58) !important;
  filter: saturate(1.02);
}

body.theme-apple .premium-button:hover::before,
body.theme-apple .premium-nav-cta:hover::before {
  transform: translateX(130%) skewX(-16deg);
}

body.theme-apple .premium-button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
  color: var(--premium-cream) !important;
  border-color: rgba(247, 223, 217, 0.16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

body.theme-apple .premium-button-secondary::before {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 80%);
}

body.theme-apple .premium-button-secondary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%) !important;
  border-color: rgba(247, 223, 217, 0.28) !important;
}

body.theme-apple .premium-trust-card,
body.theme-apple .premium-service-card,
body.theme-apple .premium-experience-point,
body.theme-apple .premium-principle-card,
body.theme-apple .premium-service-preview-card,
body.theme-apple .premium-gallery-summary-card,
body.theme-apple .premium-booking-side-card,
body.theme-apple .premium-filter-btn {
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    background-color 0.35s ease;
}

body.theme-apple .premium-trust-card:hover,
body.theme-apple .premium-service-card:hover,
body.theme-apple .premium-experience-point:hover,
body.theme-apple .premium-principle-card:hover,
body.theme-apple .premium-service-preview-card:hover,
body.theme-apple .premium-gallery-summary-card:hover,
body.theme-apple .premium-booking-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(18, 14, 25, 0.13);
}

body.theme-apple .premium-trust-card,
body.theme-apple .premium-service-card,
body.theme-apple .premium-experience-point,
body.theme-apple .premium-principle-card,
body.theme-apple .premium-service-preview-card,
body.theme-apple .premium-gallery-summary-card,
body.theme-apple .premium-booking-shell-head,
body.theme-apple .premium-booking-side-card {
  background: linear-gradient(180deg, var(--premium-surface-strong) 0%, var(--premium-surface) 100%) !important;
  border-color: var(--premium-border) !important;
  box-shadow: var(--premium-shadow) !important;
}

body.theme-apple .premium-trust-card p,
body.theme-apple .premium-section-heading p,
body.theme-apple .premium-service-card p,
body.theme-apple .premium-experience-copy p,
body.theme-apple .premium-experience-point p,
body.theme-apple .premium-booking-copy p,
body.theme-apple .premium-principle-card p,
body.theme-apple .premium-service-preview-card p,
body.theme-apple .premium-booking-note p,
body.theme-apple .premium-footer-cta-copy p,
body.theme-apple .premium-footer-brand p {
  color: rgba(18, 19, 26, 0.72);
}

body.theme-apple .premium-service-feature-meta a,
body.theme-apple .premium-service-card-footer a,
body.theme-apple .premium-inline-link {
  transition: color 0.24s ease, opacity 0.24s ease;
}

body.theme-apple .premium-service-feature-meta a:hover,
body.theme-apple .premium-service-card-footer a:hover,
body.theme-apple .premium-inline-link:hover {
  color: #0f1018;
  opacity: 0.78;
}

body.theme-apple .premium-filter-btn {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(252, 247, 243, 0.84) 100%) !important;
}

body.theme-apple .premium-filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 19, 26, 0.14) !important;
  box-shadow: 0 18px 36px rgba(18, 14, 25, 0.08);
}

body.theme-apple .premium-filter-btn.active-filter {
  background: linear-gradient(135deg, rgba(248, 229, 224, 0.96) 0%, rgba(239, 200, 209, 0.92) 100%) !important;
  border-color: rgba(224, 177, 192, 0.34) !important;
  color: #15141b !important;
  box-shadow: 0 18px 40px rgba(28, 18, 30, 0.12);
}

body.theme-apple .booking-service-icon {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6d5360;
}

body.theme-apple .premium-lookbook-card {
  position: relative;
}

body.theme-apple .premium-lookbook-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 216, 229, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

body.theme-apple .premium-lookbook-card img,
body.theme-apple .premium-lookbook-card video,
body.theme-apple .premium-gallery-card img {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
}

body.theme-apple .premium-lookbook-card:hover img,
body.theme-apple .premium-lookbook-card:hover video,
body.theme-apple .premium-gallery-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.03);
}

body.theme-apple .premium-lookbook-card:hover::after {
  opacity: 1;
}

body.theme-apple .premium-lookbook-overlay,
body.theme-apple .premium-gallery-overlay {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.theme-apple .premium-lookbook-card img,
body.theme-apple .premium-lookbook-card video,
body.theme-apple .premium-gallery-hero-image,
body.theme-apple .premium-gallery-floating-card img {
  filter: none !important;
  image-rendering: auto;
}

body.theme-apple .premium-footer-cta {
  background: linear-gradient(180deg, rgba(18, 18, 28, 0.9) 0%, rgba(14, 14, 22, 0.94) 100%) !important;
  border-color: rgba(247, 223, 217, 0.1) !important;
}

body.theme-apple .premium-footer-brand,
body.theme-apple .premium-footer-column {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
  border-color: rgba(247, 223, 217, 0.08) !important;
}

body.theme-apple .premium-footer-copy,
body.theme-apple .premium-footer-legal a,
body.theme-apple .premium-footer-legal span {
  color: rgba(255, 241, 234, 0.62) !important;
}

body.theme-apple .premium-footer-legal a:hover {
  color: #fff8f3 !important;
}

@media (prefers-reduced-motion: reduce) {
  body.theme-apple .premium-hero-glow,
  body.theme-apple .premium-floating-card,
  body.theme-apple .premium-review-card,
  body.theme-apple .premium-thumb {
    animation: none !important;
  }

  body.theme-apple .premium-button::before,
  body.theme-apple .premium-nav-cta::before,
  body.theme-apple .premium-lookbook-card::after {
    transition: none !important;
  }

  body.theme-apple .premium-lookbook-card img,
  body.theme-apple .premium-lookbook-card video,
  body.theme-apple .premium-gallery-card img,
  body.theme-apple .premium-button,
  body.theme-apple .premium-nav-cta,
  body.theme-apple .premium-trust-card,
  body.theme-apple .premium-service-card,
  body.theme-apple .premium-experience-point,
  body.theme-apple .premium-principle-card,
  body.theme-apple .premium-service-preview-card,
  body.theme-apple .premium-gallery-summary-card,
  body.theme-apple .premium-booking-side-card,
  body.theme-apple .premium-filter-btn {
    transition: none !important;
  }
}
