:root {
  --pink: #e84d9b;
  --pink-soft: #fff1f7;
  --pink-deep: #b92f73;
  --gold: #c79b43;
  --gold-soft: #f5e2b3;
  --ink: #231721;
  --muted: #6f6170;
  --white: #ffffff;
  --cream: #fffaf5;
  --shadow: 0 16px 45px rgba(35, 23, 33, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --transition: 180ms ease;
  --wa: #25d366;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 77, 155, 0.15), transparent 30%),
    linear-gradient(180deg, #fffdfd 0%, #fff7fb 100%);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 241, 247, 0.9));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pink-deep);
  border: 1px solid rgba(232, 77, 155, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 42rem;
}

.page-hero .eyebrow,
.booking-hero .eyebrow,
.hero-simple .eyebrow {
  display: none;
}



.muted {
  color: var(--muted);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(35, 23, 33, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  font-size: 1.2rem;
}

.nav-logo img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-media,
.service-image,
.gallery-image,
.card-image,
.feature-media,
.gallery-card,
.service-tile {
  background: linear-gradient(145deg, rgba(255, 244, 249, 0.95), rgba(245, 226, 179, 0.28));
}

.hero-media img,
.service-image img,
.gallery-image img,
.card-image img,
.feature-media img,
.gallery-card img,
.service-tile img {
  object-fit: cover;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--pink-deep);
}

.booking-cart-chip {
  display: none;
  min-width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.38rem;
  padding: 0 0.24rem;
  border-radius: 999px;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15rem;
  text-align: center;
  vertical-align: middle;
}

.booking-cart-chip.is-visible {
  display: inline-block;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.65rem;
  height: 3px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--pink-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink), #ff76bf);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(232, 77, 155, 0.22);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ddb55b);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(199, 155, 67, 0.22);
}

.btn-outline {
  border: 1px solid rgba(232, 77, 155, 0.25);
  background: rgba(255, 255, 255, 0.78);
  color: var(--pink-deep);
}

.btn-whatsapp {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.btn-contact {
  background: linear-gradient(135deg, #f08bbf, #e5b96b);
  color: #fff;
  box-shadow: 0 8px 20px rgba(232, 77, 155, 0.18);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-simple {
  padding: 6rem 0 4rem;
}

.home-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.home-minimal {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-shell-upgraded {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 246, 250, 0.84) 32%, rgba(255, 248, 251, 0.55) 58%, rgba(255, 248, 251, 0.18) 78%),
    linear-gradient(180deg, #fffafb 0%, #fff3f8 100%);
}

.home-aura {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.65;
  pointer-events: none;
}

.home-aura-left {
  top: -5rem;
  left: -4rem;
  width: 19rem;
  height: 19rem;
  background: rgba(232, 77, 155, 0.18);
}

.home-aura-right {
  right: -4rem;
  bottom: -4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(199, 155, 67, 0.16);
}

.home-upgraded {
  width: min(980px, calc(100% - 2rem));
  display: grid;
  gap: 2rem;
}

.home-logo-stage {
  position: relative;
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-logo-only {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.home-logo-only img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
}

.home-logo-panel {
  position: relative;
  width: min(34rem, 88vw);
  min-height: 20rem;
  margin-bottom: 0;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 24px 60px rgba(35, 23, 33, 0.1),
    0 0 60px rgba(232, 77, 155, 0.12);
  backdrop-filter: blur(16px);
}

.home-logo-panel img {
  width: min(100%, 480px);
}

.service-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.service-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 58px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 77, 155, 0.18);
  box-shadow: var(--shadow);
  color: var(--pink-deep);
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.service-bubble:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--pink), #ff76bf);
  color: var(--white);
}

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

.service-bubble-upgraded {
  min-width: 0;
  width: 100%;
  min-height: 94px;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: 28px;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(35, 23, 33, 0.08);
}

.service-bubble-upgraded:hover {
  transform: translateY(-4px) scale(1.01);
  color: var(--white);
  box-shadow: 0 24px 46px rgba(232, 77, 155, 0.2);
}

.service-bubble-primary {
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.95), rgba(255, 118, 191, 0.98));
  color: var(--white);
}

.service-bubble-primary .service-bubble-icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.service-bubble-icon {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.12), rgba(199, 155, 67, 0.12));
  color: var(--pink-deep);
  font-size: 1rem;
}

.service-bubble-text {
  display: grid;
  gap: 0.15rem;
}

.service-bubble-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.service-bubble-text small {
  font-size: 0.82rem;
  line-height: 1.2;
  opacity: 0.78;
}

.hero-grid,
.split-grid,
.trust-grid,
.booking-grid,
.service-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.3rem;
}

.hero-actions,
.card-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.glass-card,
.service-tile,
.detail-card,
.gallery-card,
.quote-card,
.contact-card,
.form-card,
.summary-card,
.trust-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(35, 23, 33, 0.07);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.15rem;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--pink-deep);
}

.hero-stack {
  display: grid;
  gap: 1rem;
}

.hero-image-card,
.service-image-card,
.gallery-card,
.trust-card {
  overflow: hidden;
}

.hero-image-card img,
.service-image-card img,
.gallery-card img,
.feature-media img,
.trust-card img,
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-card {
  min-height: 34rem;
}

.hero-image-card img {
  min-height: 34rem;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 1.5rem;
}

.logo-hero-card {
  padding: 2rem;
  min-height: 24rem;
}

.logo-card img {
  max-height: 8rem;
  object-fit: contain;
}

.logo-hero-card img {
  max-height: 18rem;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.service-grid,
.detail-grid,
.gallery-grid,
.contact-grid,
.menu-grid,
.picker-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

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

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

.service-tile {
  overflow: hidden;
}

.picker-card {
  padding: 1.6rem;
}

.picker-card h3 {
  margin-bottom: 0.55rem;
}

.picker-card p {
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.service-tile img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.gallery-card[data-lightbox-item] {
  cursor: zoom-in;
}

.gallery-card[data-lightbox-item] img {
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card[data-lightbox-item]:hover img {
  transform: scale(1.02);
  filter: saturate(1.03);
}

.gallery-grid.gallery-grid-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid-compact .gallery-card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.gallery-grid-compact .trust-card-body {
  padding: 0.85rem;
}

.gallery-grid-compact .trust-card-body strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.gallery-grid-compact .trust-card-body p {
  font-size: 0.88rem;
}

.certificate-card {
  overflow: hidden;
}

.certificate-shell {
  padding: 1.15rem;
  background:
    radial-gradient(circle at top left, rgba(232, 77, 155, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(255, 248, 251, 0.98), rgba(249, 239, 211, 0.92));
  border-bottom: 1px solid rgba(35, 23, 33, 0.06);
}

.certificate-frame {
  position: relative;
  padding: 0.9rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 236, 243, 0.96));
  border: 1px solid rgba(185, 47, 115, 0.12);
  box-shadow: 0 18px 36px rgba(35, 23, 33, 0.1);
}

.certificate-frame::before {
  content: "Verified Certificate";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(35, 23, 33, 0.78);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.certificate-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefd, #fbf6f8);
  filter: contrast(1.06) brightness(1.03) saturate(0.86);
  box-shadow: inset 0 0 0 1px rgba(35, 23, 33, 0.06);
}

.tile-body,
.detail-card,
.contact-card,
.summary-card,
.form-card,
.quote-card,
.trust-card-body {
  padding: 1.4rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(35, 23, 33, 0.1);
}

.price-line:last-child {
  border-bottom: 0;
}

.price {
  color: var(--pink-deep);
  font-weight: 800;
}

.gold-banner {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), #e1bc72);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(199, 155, 67, 0.2);
}

.checklist {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted);
}

.checklist i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.booking-hero {
  padding: 4rem 0 2rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(35, 23, 33, 0.12);
  background: var(--white);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.service-checklist {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.service-group-title {
  margin: 0.7rem 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.service-group-title:first-child {
  margin-top: 0;
}

.check-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.1rem 0;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
}

.field .check-item input[type="checkbox"],
.check-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--pink-deep);
  border-radius: 0;
  border: 1px solid rgba(35, 23, 33, 0.35);
  background: var(--white);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.contact-item i {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-deep);
}

.page-hero {
  padding: 4rem 0 2rem;
}

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

.feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 26rem;
  box-shadow: var(--shadow);
}

.feature-media img {
  min-height: 26rem;
}

.service-meta,
.process-grid,
.service-jump-grid {
  display: grid;
  gap: 1rem;
}

.service-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.service-meta-card,
.process-card,
.service-jump-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(35, 23, 33, 0.07);
  box-shadow: var(--shadow);
}

.service-meta-card {
  padding: 1rem 1.1rem;
  overflow: hidden;
  min-width: 0;
}

.service-meta-card strong,
.process-card strong,
.service-jump-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.service-meta-card span,
.process-card p,
.service-jump-card p {
  color: var(--muted);
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 0.9rem;
}

.service-meta-card span a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(35, 23, 33, 0.22);
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
}

.service-meta-card span a:hover {
  color: var(--pink-deep);
  border-bottom-color: rgba(186, 55, 112, 0.45);
}

.detail-stack {
  display: grid;
  gap: 1.25rem;
}

.detail-card > p:last-child,
.quote-card > p:last-child,
.trust-card-body > p:last-child,
.service-jump-card > p:last-child {
  margin-bottom: 0;
}

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

.process-card {
  padding: 1.35rem;
}

.process-step {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), #ff76bf);
  color: var(--white);
  font-weight: 800;
}

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

.service-jump-card {
  padding: 1.4rem;
}

.service-jump-card .tag-row {
  margin-bottom: 0.7rem;
}

.service-jump-card .card-actions {
  margin-top: 1rem;
}

.quote-card {
  padding: 1.5rem;
}

.info-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.info-list li {
  color: var(--muted);
}

.info-list strong {
  color: var(--ink);
}

.lookbook-shell {
  display: grid;
  gap: 1.25rem;
}

.lookbook-stage {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(35, 23, 33, 0.07);
  box-shadow: var(--shadow);
}

.lookbook-track {
  display: flex;
  transition: transform 420ms ease;
}

.lookbook-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f7f2ef;
}

.lookbook-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(19, 13, 18, 0.66);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.lookbook-caption strong {
  font-size: 1rem;
}

.lookbook-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.lookbook-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lookbook-buttons {
  display: flex;
  gap: 0.6rem;
}

.lookbook-btn {
  width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pink-deep);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.lookbook-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lookbook-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(35, 23, 33, 0.14);
  transition: transform var(--transition), background var(--transition);
}

.lookbook-dot.active {
  transform: scale(1.18);
  background: var(--pink);
}

.lookbook-note {
  max-width: 36rem;
}

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

.menu-column {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(35, 23, 33, 0.07);
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.menu-column li + li {
  margin-top: 0.45rem;
}

.cta-band {
  padding: 4rem 0;
  background: linear-gradient(120deg, #29121f, #4b1733 48%, #8e295d);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/homepage/logo-final.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 420px auto;
  opacity: 0.07;
  pointer-events: none;
}

.cta-shell {
  position: relative;
  z-index: 1;
}

.cta-band .lead,
.cta-band .muted {
  color: rgba(255, 255, 255, 0.82);
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer {
  background: #1a1018;
  color: rgba(255, 255, 255, 0.76);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: grid;
  gap: 0.55rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-float {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-float-toggle {
  border: 0;
  cursor: pointer;
  padding: 0.8rem 1rem;
  min-width: 8.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff63b7 0%, #ff8fd0 45%, #ffd064 100%);
  color: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.58), 0 16px 34px rgba(255, 99, 183, 0.36);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-float-menu {
  display: grid;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-float.open .contact-float-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-float-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border: 1px solid rgba(186, 55, 112, 0.22);
  box-shadow: 0 12px 22px rgba(25, 16, 24, 0.16);
  font-size: 0.87rem;
  font-weight: 600;
}

.contact-float-link:hover {
  color: var(--pink-deep);
  border-color: rgba(186, 55, 112, 0.45);
}

@media (max-width: 680px) {
  .contact-float {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .contact-float-toggle {
    min-width: 3.4rem;
    width: 3.4rem;
    height: 3.4rem;
    padding: 0;
    font-size: 1rem;
  }

  .contact-float-toggle span {
    display: none;
  }
}

.summary-card strong {
  color: var(--pink-deep);
}

.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox.hidden {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 10, 15, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.lightbox-figure img {
  width: 100%;
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.lightbox-figure figcaption {
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.deposit-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.deposit-modal.hidden {
  display: none;
}

.deposit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 16, 0.78);
  backdrop-filter: blur(8px);
}

.deposit-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(35, 23, 33, 0.1);
  box-shadow: 0 26px 70px rgba(35, 23, 33, 0.22);
  padding: 1.25rem;
  display: grid;
  gap: 0.85rem;
}

.deposit-modal-dialog h2,
.deposit-modal-dialog h3 {
  margin: 0;
}

.deposit-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem;
}

.deposit-method-btn {
  border: 1px solid rgba(35, 23, 33, 0.15);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.deposit-method-btn:hover,
.deposit-method-btn:focus-visible {
  border-color: rgba(232, 77, 155, 0.42);
  box-shadow: 0 10px 20px rgba(35, 23, 33, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.deposit-method-btn.is-active {
  border-color: rgba(232, 77, 155, 0.65);
  background: rgba(255, 241, 247, 0.92);
  color: var(--pink-deep);
}

.deposit-panel {
  border: 1px solid rgba(35, 23, 33, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.95);
  padding: 0.85rem 0.95rem;
}

.deposit-panel p {
  margin: 0.35rem 0;
}

.deposit-form-grid {
  display: grid;
  gap: 0.7rem;
}

.deposit-form-grid .field {
  margin: 0;
}

.deposit-form-grid .field input[type='file'] {
  padding: 0.55rem 0.65rem;
}

@media (max-width: 560px) {
  .deposit-modal-dialog {
    padding: 1rem;
    border-radius: 16px;
  }

  .deposit-methods {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Page-specific identities (non-home pages)
   ============================================ */

.inner-page-shell .page-hero {
  position: relative;
}

.inner-page-shell .page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(35, 23, 33, 0.14), transparent);
}

.inner-page-shell .eyebrow {
  box-shadow: 0 10px 22px rgba(35, 23, 33, 0.08);
}

.inner-page-shell .service-meta-card,
.inner-page-shell .process-card,
.inner-page-shell .service-jump-card,
.inner-page-shell .quote-card,
.inner-page-shell .trust-card,
.inner-page-shell .detail-card,
.inner-page-shell .form-card,
.inner-page-shell .summary-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.inner-page-shell .service-meta-card:hover,
.inner-page-shell .process-card:hover,
.inner-page-shell .service-jump-card:hover,
.inner-page-shell .quote-card:hover,
.inner-page-shell .trust-card:hover,
.inner-page-shell .detail-card:hover,
.inner-page-shell .form-card:hover,
.inner-page-shell .summary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(35, 23, 33, 0.13);
}

.page-services {
  background:
    radial-gradient(circle at 10% 14%, rgba(232, 77, 155, 0.12), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(199, 155, 67, 0.14), transparent 34%),
    linear-gradient(180deg, #fffefd 0%, #fff6fa 100%);
}

.page-services .page-hero {
  background: linear-gradient(120deg, rgba(255, 242, 249, 0.72), rgba(253, 245, 224, 0.62));
}

.page-spa {
  background:
    radial-gradient(circle at 14% 12%, rgba(178, 120, 255, 0.16), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(98, 141, 255, 0.16), transparent 33%),
    linear-gradient(180deg, #fbf9ff 0%, #f2f6ff 100%);
}

.page-spa .eyebrow {
  color: #5941a9;
  border-color: rgba(89, 65, 169, 0.22);
}

.page-spa .btn-pink {
  background: linear-gradient(135deg, #6f52cc, #9e7cff);
  box-shadow: 0 14px 30px rgba(111, 82, 204, 0.26);
}

.page-spa .feature-media {
  border: 1px solid rgba(89, 65, 169, 0.2);
}

.page-cleaning {
  background:
    radial-gradient(circle at 8% 16%, rgba(71, 149, 255, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(123, 214, 180, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fdff 0%, #eef8ff 100%);
}

.page-cleaning .eyebrow {
  color: #0f5b93;
  border-color: rgba(15, 91, 147, 0.24);
}

.page-cleaning .btn-pink {
  background: linear-gradient(135deg, #1682ca, #38abd6);
  box-shadow: 0 14px 30px rgba(22, 130, 202, 0.24);
}

.page-cleaning .service-meta-card,
.page-cleaning .process-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 250, 255, 0.94));
}

.page-catering {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 153, 56, 0.2), transparent 33%),
    radial-gradient(circle at 82% 22%, rgba(255, 206, 115, 0.16), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #fff4e4 100%);
}

.page-catering .eyebrow {
  color: #9a4b08;
  border-color: rgba(154, 75, 8, 0.22);
}

.page-catering .btn-pink {
  background: linear-gradient(135deg, #da6b1c, #f2943a);
  box-shadow: 0 14px 30px rgba(218, 107, 28, 0.25);
}

.page-catering .menu-column {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 223, 0.92));
}

.page-lifestyle {
  background:
    radial-gradient(circle at 8% 14%, rgba(31, 30, 35, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(205, 173, 97, 0.22), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f9f5ea 100%);
}

.page-lifestyle .eyebrow {
  color: #6f5016;
  border-color: rgba(111, 80, 22, 0.24);
}

.page-lifestyle .btn-pink {
  background: linear-gradient(135deg, #1d1c22, #5f4725);
  box-shadow: 0 14px 30px rgba(29, 28, 34, 0.28);
}

.page-lifestyle .lookbook-caption {
  background: rgba(18, 15, 10, 0.72);
}

.page-booking {
  background:
    radial-gradient(circle at 10% 18%, rgba(232, 77, 155, 0.16), transparent 31%),
    radial-gradient(circle at 90% 14%, rgba(199, 155, 67, 0.2), transparent 33%),
    linear-gradient(180deg, #fffdf8 0%, #fff8fb 100%);
}

.page-booking .booking-hero {
  background: linear-gradient(120deg, rgba(255, 244, 248, 0.74), rgba(255, 246, 226, 0.64));
}

.page-booking .form-card {
  border: 1px solid rgba(186, 55, 112, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 250, 0.9));
}

.page-thankyou {
  background:
    radial-gradient(circle at 14% 14%, rgba(68, 196, 145, 0.18), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(74, 130, 255, 0.14), transparent 35%),
    linear-gradient(180deg, #f7fff9 0%, #f2fffb 100%);
}

.page-thankyou .eyebrow {
  color: #1f7a51;
  border-color: rgba(31, 122, 81, 0.22);
}

.page-thankyou .summary-card {
  border: 1px solid rgba(31, 122, 81, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 255, 245, 0.9));
}

.page-thankyou .btn-pink {
  background: linear-gradient(135deg, #1f9c69, #45c68d);
  box-shadow: 0 14px 30px rgba(31, 156, 105, 0.24);
}

.page-404 {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 14%, rgba(232, 77, 155, 0.1), transparent 32%),
    linear-gradient(180deg, #fffdfd 0%, #fff5fa 100%);
}

.lightbox-nav,
.lightbox-close {
  width: 3.2rem;
  height: 3.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pink-deep);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  transform: translateY(-1px);
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.25rem;
}

@media (max-width: 1080px) {
  .service-grid,
  .detail-grid,
  .gallery-grid,
  .contact-grid,
  .menu-columns,
  .picker-grid,
  .service-bubbles-upgraded,
  .service-meta,
  .process-grid,
  .service-jump-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .hero-grid,
  .split-grid,
  .trust-grid,
  .booking-grid,
  .service-hero,
  .cta-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(35, 23, 33, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .stats-row {
    grid-template-columns: 1fr;
  }

  .lightbox-dialog {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 13rem);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 0.45rem;
  }

  .lightbox-next {
    right: 0.45rem;
  }
}

@media (max-width: 680px) {
  .service-grid,
  .detail-grid,
  .gallery-grid,
  .contact-grid,
  .menu-columns,
  .picker-grid,
  .service-bubbles-upgraded,
  .service-meta,
  .process-grid,
  .service-jump-grid {
    grid-template-columns: 1fr;
  }

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

  .service-bubble {
    width: 100%;
  }

  .home-logo-stage {
    min-height: 18rem;
  }

  .home-logo-panel {
    min-height: 13rem;
    border-radius: 28px;
    padding: 1.5rem;
  }

  .home-logo-panel img {
    width: min(100%, 360px);
  }

  .service-bubble-upgraded {
    min-height: 84px;
  }

  .section {
    padding: 4rem 0;
  }

  .hero,
  .booking-hero,
  .page-hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .hero-image-card,
  .hero-image-card img,
  .feature-media,
  .feature-media img {
    min-height: 20rem;
  }

  .lightbox {
    padding: 1rem 0.65rem;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 11rem);
    border-radius: 22px;
  }

  .lightbox-nav,
  .lightbox-close {
    width: 2.9rem;
    height: 2.9rem;
  }
}

/* ===== Enhanced Service Bubbles (Staggered Layout) ===== */

.service-bubbles-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-bubble-enhanced {
  position: relative;
  min-height: 110px;
  padding: 1.4rem;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 12px 28px rgba(35, 23, 33, 0.1);
  text-align: center;
}

.service-bubble-enhanced:nth-child(1) {
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.92), rgba(232, 77, 155, 0.78));
  color: var(--white);
  transform: translateY(0);
}

.service-bubble-enhanced:nth-child(2) {
  background: linear-gradient(135deg, rgba(199, 155, 67, 0.88), rgba(199, 155, 67, 0.72));
  color: var(--white);
  transform: translateY(12px);
}

.service-bubble-enhanced:nth-child(3) {
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.75), rgba(199, 155, 67, 0.65));
  color: var(--white);
  transform: translateY(-8px);
}

.service-bubble-enhanced:nth-child(4) {
  background: linear-gradient(135deg, rgba(199, 155, 67, 0.8), rgba(232, 77, 155, 0.7));
  color: var(--white);
  transform: translateY(6px);
}

.service-bubble-enhanced:nth-child(5) {
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.98), rgba(232, 77, 155, 0.88));
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(232, 77, 155, 0.28);
}

.service-bubble-enhanced:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 28px 56px rgba(35, 23, 33, 0.18);
}

.service-bubble-enhanced:nth-child(2):hover {
  transform: translateY(0px) scale(1.05);
}

.service-bubble-enhanced:nth-child(3):hover {
  transform: translateY(-20px) scale(1.05);
}

.service-bubble-enhanced:nth-child(4):hover {
  transform: translateY(-6px) scale(1.05);
}

.service-bubble-enhanced:nth-child(5):hover {
  transform: translateY(-18px) scale(1.05);
}

.service-bubble-enhanced-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.service-bubble-enhanced-title {
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.service-bubble-enhanced-desc {
  font-size: 0.75rem;
  opacity: 0.88;
  line-height: 1.3;
}

/* ===== Logo Watermark Background ===== */

.page-watermark-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.08;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(80vw, 600px) auto;
  background-attachment: fixed;
}

.inner-page-shell {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(232, 77, 155, 0.13) 0%, transparent 40%),
    radial-gradient(ellipse at 100% 80%, rgba(232, 77, 155, 0.1) 0%, transparent 38%),
    linear-gradient(165deg, #fdf0f6 0%, #fce8f2 50%, #fdf5f0 100%);
  position: relative;
  overflow-x: hidden;
}

.inner-page-shell .site-header {
  background: rgba(255, 250, 252, 0.82);
  backdrop-filter: blur(18px);
}

.inner-page-shell .nav-logo {
  gap: 0;
}

.inner-page-shell .nav-logo img {
  width: 8.75rem;
  height: auto;
  max-height: 3.7rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.inner-page-shell .nav-logo span {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.inner-page-shell .page-hero,
.inner-page-shell .booking-hero {
  position: relative;
  padding: 4.25rem 0 2.35rem;
}

.inner-page-shell .page-hero::before,
.inner-page-shell .booking-hero::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.38) 42%, transparent 74%);
  pointer-events: none;
}

.inner-page-shell .page-hero-copy,
.inner-page-shell .service-hero > div:first-child,
.inner-page-shell .booking-grid > div:first-child {
  position: relative;
  z-index: 1;
}

.inner-page-shell .page-hero h1,
.inner-page-shell .booking-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin-bottom: 0.8rem;
}

.inner-page-shell .page-hero .lead,
.inner-page-shell .booking-hero .lead,
.inner-page-shell .section-heading .lead {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  letter-spacing: 0.03em;
  color: rgba(35, 23, 33, 0.72);
}

.inner-page-shell .eyebrow {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.inner-page-shell .feature-media,
.inner-page-shell .service-meta-card,
.inner-page-shell .process-card,
.inner-page-shell .service-jump-card,
.inner-page-shell .service-tile,
.inner-page-shell .detail-card,
.inner-page-shell .gallery-card,
.inner-page-shell .quote-card,
.inner-page-shell .contact-card,
.inner-page-shell .form-card,
.inner-page-shell .summary-card,
.inner-page-shell .trust-card,
.inner-page-shell .menu-column,
.inner-page-shell .lookbook-stage {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  box-shadow:
    0 22px 50px rgba(35, 23, 33, 0.08),
    0 0 40px rgba(232, 77, 155, 0.06);
}

.inner-page-shell .service-tile,
.inner-page-shell .detail-card,
.inner-page-shell .process-card,
.inner-page-shell .service-jump-card,
.inner-page-shell .summary-card,
.inner-page-shell .quote-card {
  transition: transform 260ms cubic-bezier(.22,1,.36,1), box-shadow 260ms ease, border-color 260ms ease;
}

.inner-page-shell .service-tile:hover,
.inner-page-shell .detail-card:hover,
.inner-page-shell .process-card:hover,
.inner-page-shell .service-jump-card:hover,
.inner-page-shell .summary-card:hover,
.inner-page-shell .quote-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 58px rgba(35, 23, 33, 0.11),
    0 0 48px rgba(232, 77, 155, 0.09);
  border-color: rgba(232, 77, 155, 0.24);
}

.inner-page-shell .section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
}

.inner-page-shell .cta-band {
  background: linear-gradient(120deg, rgba(41,18,31,0.94), rgba(75,23,51,0.94) 48%, rgba(142,41,93,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.inner-page-shell .page-watermark-bg {
  opacity: 0.16;
  background-size: min(88vw, 760px) auto;
  filter: saturate(1.05) contrast(1.03);
}

@media (max-width: 1080px) {
  .service-bubbles-enhanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-bubbles-enhanced {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.5rem;
  }

  .service-bubble-enhanced {
    min-height: 100px;
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .service-bubble-enhanced:nth-child(1),
  .service-bubble-enhanced:nth-child(2),
  .service-bubble-enhanced:nth-child(3),
  .service-bubble-enhanced:nth-child(4),
  .service-bubble-enhanced:nth-child(5) {
    transform: translateY(0) !important;
  }

  .service-bubble-enhanced:hover {
    transform: translateY(-8px) scale(1.02) !important;
  }

  .page-watermark-bg {
    background-size: min(90vw, 500px) auto;
  }

  .inner-page-shell .nav-logo img {
    width: 7rem;
    height: auto;
    max-height: 3.15rem;
  }
}

.admin-shell {
  display: grid;
  gap: 1.2rem;
}

.admin-form-grid {
  display: grid;
  gap: 0.9rem;
}

.admin-inline-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

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

.admin-multi-grid button {
  justify-self: start;
}

.admin-msg {
  margin: 0.5rem 0 0;
}

.admin-otp-divider {
  position: relative;
  text-align: center;
  margin: 1rem 0 0.8rem;
}

.admin-otp-divider::before {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  border-top: 1px solid rgba(35, 23, 33, 0.14);
}

.admin-otp-divider span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.admin-panel-card {
  background: rgba(255, 255, 255, 0.84);
}

.admin-links-inline {
  display: inline-flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.admin-links-inline a {
  color: var(--pink-deep);
  font-weight: 700;
}

.admin-gallery-list {
  display: grid;
  gap: 0.85rem;
}

.admin-gallery-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(35, 23, 33, 0.09);
  background: rgba(255, 255, 255, 0.85);
}

.admin-gallery-row img {
  width: 92px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.admin-gallery-row-info {
  min-width: 0;
}

.admin-gallery-row-info p {
  margin: 0.2rem 0;
  overflow-wrap: anywhere;
}

.admin-remove-btn {
  min-width: 88px;
}

@media (max-width: 860px) {
  .admin-inline-grid,
  .admin-multi-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-gallery-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .admin-gallery-row img {
    width: 100%;
    max-width: 220px;
    height: 140px;
  }
}

/* ===== Clean Homepage Design ===== */

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

@keyframes softPulse {
  0%, 100% { box-shadow: 0 24px 60px rgba(35,23,33,.1), 0 0 70px rgba(232,77,155,.14); }
  50%       { box-shadow: 0 24px 60px rgba(35,23,33,.1), 0 0 110px rgba(232,77,155,.28); }
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.92; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes sparkleRise {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  20%  { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}

@keyframes titleSlide {
  from { opacity: 0; transform: translateY(18px); letter-spacing: 0.12em; }
  to   { opacity: 1; transform: translateY(0);    letter-spacing: 0.02em; }
}

@keyframes subtitleFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes cardPop {
  0%   { opacity: 0; transform: translateY(32px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.92; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes sparkleRise {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  20%  { opacity: 1; transform: translateY(-20px) scale(1); }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}

@keyframes titleSlide {
  from { opacity: 0; transform: translateY(18px); letter-spacing: 0.12em; }
  to   { opacity: 1; transform: translateY(0);    letter-spacing: 0.02em; }
}

@keyframes subtitleFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes cardPop {
  0%   { opacity: 0; transform: translateY(32px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

.home-shell-clean {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(232, 77, 155, 0.13) 0%, transparent 40%),
    radial-gradient(ellipse at 100% 80%, rgba(232, 77, 155, 0.1) 0%, transparent 38%),
    linear-gradient(165deg, #fdf0f6 0%, #fce8f2 50%, #fdf5f0 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-clean {
  flex: 0 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-container {
  text-align: center;
  max-width: 620px;
  width: 100%;
  animation: floatIn 0.7s cubic-bezier(.22,1,.36,1) both;
}

.logo-hero-wrapper {
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.logo-hero-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 115%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.42) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 12s ease-in-out infinite;
}

.logo-hero-img {
  width: min(700px, 88vw);
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(35,23,33,0.1));
  animation: floatIn 0.8s cubic-bezier(.22,1,.36,1) both, logoFloat 22s ease-in-out 1s infinite;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.1;
  animation: titleSlide 0.9s cubic-bezier(.22,1,.36,1) 0.4s both;
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.06em;
  min-height: 1.6em;
  overflow: hidden;
  animation: subtitleFade 0.7s ease 1s both;
}

.typewriter::after {
  content: '|';
  animation: subtitleFade 0.6s step-end infinite alternate;
  color: var(--pink);
  margin-left: 1px;
}

/* Services Grid */
.services-clean {
  flex: 1;
  padding: 1.5rem 0 3.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.services-container {
  width: 100%;
  max-width: 1100px;
  padding: 0 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service-card {
  border-radius: 26px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 32px rgba(35, 23, 33, 0.12);
  transition: transform 280ms cubic-bezier(.22,1,.36,1), box-shadow 280ms ease;
  animation: cardPop 0.7s cubic-bezier(.22,1,.36,1) both;
}

.service-card:nth-child(1) { animation-delay: 0.08s; }
.service-card:nth-child(2) { animation-delay: 0.14s; }
.service-card:nth-child(3) { animation-delay: 0.20s; }
.service-card:nth-child(4) { animation-delay: 0.26s; }
.service-card:nth-child(5) { animation-delay: 0.32s; }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), transparent 60%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 56px rgba(35, 23, 33, 0.2);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.service-card p {
  font-size: 0.82rem;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

/* Card shimmer sweep on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.service-card:hover::before {
  left: 160%;
}

/* Sparkles */
.sparkle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleRise linear forwards;
}

/* Service card animation delays */
.service-card-1 { background: linear-gradient(145deg, #e84d9b, #d63d8b); }
.service-card-2 { background: linear-gradient(145deg, #c79b43, #b88a30); }
.service-card-3 { background: linear-gradient(145deg, #e06090, #c0436e); }
.service-card-4 { background: linear-gradient(145deg, #d4a045, #e07730); }
.service-card-5 { background: linear-gradient(145deg, #ff76bf, #e84d9b); box-shadow: 0 18px 44px rgba(232,77,155,0.32); }

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }

  .service-card { padding: 1.4rem 1rem; }
  .hero-clean { padding: 2.5rem 2rem 1.5rem; }
  .logo-hero-img { width: min(560px, 88vw); }
}

@media (max-width: 680px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .service-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .service-card h3 { font-size: 0.92rem; }
  .service-card p { font-size: 0.78rem; }
  .hero-clean { padding: 2rem 1rem 1rem; }
  .logo-hero-img { width: min(380px, 92vw); }
  .hero-title { font-size: 1.7rem; }
}

/* ===== Orbital Layout (Logo + Bubbles Around) ===== */

.home-orbital-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.orbital-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 2rem;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.orbital-center .home-logo-only {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-bottom: 0;
}

.orbital-center .home-logo-panel {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  box-shadow:
    0 32px 72px rgba(35, 23, 33, 0.15),
    0 0 80px rgba(232, 77, 155, 0.16),
    inset 0 0 40px rgba(255, 255, 255, 0.4);
}

.orbital-center .home-logo-panel img {
  width: 100%;
  max-width: 280px;
}

.orbital-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.orbital-bubble {
  position: absolute;
  width: 140px !important;
  min-height: 120px !important;
  padding: 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  border-radius: 24px !important;
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* 5-bubble orbital arrangement */
.orbital-bubble:nth-child(1) {
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-200px);
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.92), rgba(232, 77, 155, 0.78)) !important;
  z-index: 2;
}

.orbital-bubble:nth-child(2) {
  top: 35%;
  right: 10%;
  transform: translate(50%, -50%) translateX(80px);
  background: linear-gradient(135deg, rgba(199, 155, 67, 0.88), rgba(199, 155, 67, 0.72)) !important;
  z-index: 3;
}

.orbital-bubble:nth-child(3) {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(140px);
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.75), rgba(199, 155, 67, 0.65)) !important;
  z-index: 2;
}

.orbital-bubble:nth-child(4) {
  top: 65%;
  left: 10%;
  transform: translate(-50%, -50%) translateX(-80px);
  background: linear-gradient(135deg, rgba(199, 155, 67, 0.8), rgba(232, 77, 155, 0.7)) !important;
  z-index: 3;
}

.orbital-bubble:nth-child(5) {
  top: 35%;
  left: 10%;
  transform: translate(-50%, -50%) translateX(-80px);
  background: linear-gradient(135deg, rgba(232, 77, 155, 0.98), rgba(232, 77, 155, 0.88)) !important;
  z-index: 3;
  box-shadow: 0 16px 40px rgba(232, 77, 155, 0.28) !important;
}

.orbital-bubble:hover {
  transform: translate(0, 0) scale(1.1) !important;
  box-shadow: 0 28px 56px rgba(35, 23, 33, 0.2) !important;
}

.orbital-bubble:nth-child(1):hover {
  transform: translate(-50%, -50%) translateY(-220px) scale(1.1) !important;
}

.orbital-bubble:nth-child(2):hover {
  transform: translate(50%, -50%) translateX(100px) scale(1.1) !important;
}

.orbital-bubble:nth-child(3):hover {
  transform: translate(-50%, -50%) translateY(160px) scale(1.1) !important;
}

.orbital-bubble:nth-child(4):hover {
  transform: translate(-50%, -50%) translateX(-100px) scale(1.1) !important;
}

.orbital-bubble:nth-child(5):hover {
  transform: translate(-50%, -50%) translateX(-100px) scale(1.1) !important;
}

.orbital-bubble .service-bubble-enhanced-icon {
  font-size: 1.6rem;
}

.orbital-bubble .service-bubble-enhanced-title {
  font-size: 0.9rem;
  font-weight: 800;
}

.orbital-bubble .service-bubble-enhanced-desc {
  font-size: 0.7rem;
}

/* Responsive orbital layout */
@media (max-width: 1200px) {
  .orbital-stage {
    height: 560px;
  }

  .orbital-center .home-logo-panel {
    width: 280px;
    height: 280px;
  }

  .orbital-bubble {
    width: 120px !important;
    min-height: 110px !important;
    padding: 0.85rem !important;
  }

  .orbital-bubble:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-170px) !important;
  }

  .orbital-bubble:nth-child(2) {
    transform: translate(50%, -50%) translateX(70px) !important;
  }

  .orbital-bubble:nth-child(3) {
    transform: translate(-50%, -50%) translateY(120px) !important;
  }

  .orbital-bubble:nth-child(4) {
    transform: translate(-50%, -50%) translateX(-70px) !important;
  }

  .orbital-bubble:nth-child(5) {
    transform: translate(-50%, -50%) translateX(-70px) !important;
  }
}

@media (max-width: 900px) {
  .orbital-stage {
    height: 480px;
  }

  .orbital-center .home-logo-panel {
    width: 240px;
    height: 240px;
  }

  .orbital-bubble {
    width: 110px !important;
    min-height: 100px !important;
    padding: 0.75rem !important;
    font-size: 0.9rem;
  }

  .orbital-bubble:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-140px) !important;
  }

  .orbital-bubble:nth-child(2) {
    transform: translate(50%, -50%) translateX(55px) !important;
  }

  .orbital-bubble:nth-child(3) {
    transform: translate(-50%, -50%) translateY(100px) !important;
  }

  .orbital-bubble:nth-child(4) {
    transform: translate(-50%, -50%) translateX(-55px) !important;
  }

  .orbital-bubble:nth-child(5) {
    transform: translate(-50%, -50%) translateX(-55px) !important;
  }
}

@media (max-width: 680px) {
  .orbital-stage {
    height: auto;
    padding: 2rem 0;
    flex-direction: column;
  }

  .orbital-center {
    position: relative;
    transform: none;
    margin-bottom: 2rem;
    z-index: 20;
  }

  .orbital-center .home-logo-panel {
    width: 200px;
    height: 200px;
  }

  .orbital-bubbles {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    top: auto;
    left: auto;
  }

  .orbital-bubble {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    min-height: 100px !important;
  }

  .orbital-bubble:hover {
    transform: translateY(-4px) scale(1.02) !important;
  }

  .orbital-bubble:nth-child(5) {
    grid-column: 1 / -1;
  }
}

/* ===== Admin CMS Content Editor ===== */

/* Small button variant */
.btn-sm {
  padding: .35rem .9rem;
  font-size: .8rem;
}

/* Gallery header row (title + reset button side by side) */
.admin-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.admin-gallery-header h3 { margin: 0; }

/* Main tab row (Gallery / Edit Pages) */
.admin-main-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(232,77,155,.15);
  padding-bottom: 0;
}
.admin-main-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: .65rem 1.2rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.admin-main-tab:hover { color: var(--pink); }
.admin-main-tab.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* ── Content Editor layout ── */
.ce-intro-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.ce-quick-links {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.ce-quick-links a {
  font-size: .8rem;
  padding: .3rem .75rem;
  border: 1px solid rgba(232,77,155,.35);
  border-radius: 20px;
  color: var(--pink);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.ce-quick-links a:hover { background: var(--pink); color: #fff; }

/* Save toast */
.ce-saved-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--pink);
  color: #fff;
  padding: .65rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 6px 20px rgba(232,77,155,.35);
  z-index: 9999;
  transition: opacity .3s;
  pointer-events: none;
}
.ce-saved-toast.hidden { display: none; }

/* Page tabs */
.ce-page-tabs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ce-page-tab {
  background: none;
  border: 1.5px solid rgba(232,77,155,.25);
  border-radius: 20px;
  padding: .4rem 1rem;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.ce-page-tab:hover { border-color: var(--pink); color: var(--pink); }
.ce-page-tab.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

/* Page fields panels */
.ce-page-fields { display: none; }
.ce-page-fields.active { display: block; }

/* Section title inside card */
.ce-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(232,77,155,.15);
}

/* Individual field */
.ce-field {
  margin-bottom: 1.2rem;
}
.ce-field:last-child { margin-bottom: 0; }

/* Field label */
.ce-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.ce-tag {
  font-size: .7rem;
  background: rgba(232,77,155,.12);
  color: var(--pink);
  border-radius: 10px;
  padding: .1rem .5rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

/* Text inputs */
.ce-input {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid rgba(35,23,33,.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.ce-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,77,155,.12);
}
.ce-textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.55;
}
.ce-menu-textarea { min-height: 120px; }

/* Field note */
.ce-field-note {
  font-size: .77rem;
  color: var(--muted);
  margin: .35rem 0 0;
  line-height: 1.5;
}

/* Price grid: 2 columns */
.ce-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.25rem;
}
.ce-price-grid .ce-input { max-width: 160px; }

/* Image upload UI */
.ce-img-wrap { margin-top: .25rem; }
.ce-img-preview {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(232,77,155,.2);
  margin-bottom: .75rem;
  background: #f5f0f3;
}
.ce-img-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}

/* Bottom action bar */
.ce-bottom-bar {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(35,23,33,.08);
  display: flex;
  justify-content: flex-end;
}

/* Responsive tweaks for content editor */
@media (max-width: 640px) {
  .admin-main-tabs { gap: .2rem; }
  .admin-main-tab { padding: .5rem .8rem; font-size: .82rem; }
  .ce-page-tabs { gap: .3rem; }
  .ce-price-grid { grid-template-columns: 1fr; }
  .ce-img-preview { max-width: 100%; }
  .ce-intro-bar { flex-direction: column; }
  .ce-bottom-bar { justify-content: stretch; }
  .ce-bottom-bar .btn { width: 100%; }
}