/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  /* Core palette */
  --ivory:      #FBF6EF;
  --ivory-deep: #F3EAE0;
  --ink:        #2B1F2A;
  --plum:       #4A1942;
  --plum-deep:  #34102E;

  /* Palette-swatch accent hues (the signature motif) */
  --rose:  #C97B84;
  --gold:  #C9A24B;
  --sage:  #8A9A7E;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;

  /* Spacing / shape */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1180px;
  --shadow-soft: 0 18px 40px -20px rgba(43, 31, 42, 0.25);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(43,31,42,0.15);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 6rem 0; }
@media (max-width: 768px) { section { padding: 4rem 0; } }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.display-lg.light, .display-xl.light, h1.light, h2.light, h3.light { color: var(--ivory); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.9rem;
  display: block;
}

.eyebrow-light { color: var(--gold); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   SIGNATURE MOTIF — palette swatch dots
   ========================================================================== */
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-rose { background: var(--rose); }
.dot-gold { background: var(--gold); }
.dot-sage { background: var(--sage); }
.dot-plum { background: var(--plum); }

.brand-dots {
  display: inline-flex;
  align-items: center;
  margin-right: 0.6rem;
}
.brand-dots .dot { width: 9px; height: 9px; margin-right: -4px; border: 2px solid var(--ivory); }
.brand-dots .dot:last-child { margin-right: 0; }
.brand-mark {
  display: inline-flex;
  align-items: center;
}
.brand-logo-img { display: none; height: 34px; width: auto; max-width: 120px; object-fit: contain; margin-right: 0.6rem; }
.brand-mark.has-logo .brand-dots { display: none; }
.brand-mark.has-logo .brand-logo-img { display: block; }
.footer-brand .brand-logo-img { height: 30px; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
}
.about .chip { background: rgba(255,255,255,0.08); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--plum);
  color: var(--ivory);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--plum-deep); }

.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.btn-block { width: 100%; margin-top: 0.5rem; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,31,42,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--plum);
}
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.current { color: var(--plum); }
.main-nav a.current::after { transform: scaleX(1); background: var(--rose); }

section[id] { scroll-margin-top: 90px; }

.nav-cta { font-size: 0.88rem; padding: 0.6rem 1.3rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(43,31,42,0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; box-shadow: 0 16px 30px -20px rgba(43,31,42,0.3); }
  .main-nav a { padding: 0.7rem 0; border-bottom: 1px solid rgba(43,31,42,0.06); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   PLACEHOLDER IMAGE BOXES
   (Used until real photos are dropped into /images — see data-label)
   ========================================================================== */
.placeholder-img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(74,25,66,0.35);
  background: repeating-linear-gradient(135deg, #F3EAE0 0px, #F3EAE0 12px, #EFE3D6 12px, #EFE3D6 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.placeholder-img[data-aspect="portrait"] { aspect-ratio: 4 / 5; }
.placeholder-img[data-aspect="square"]   { aspect-ratio: 1 / 1; }
.placeholder-img[data-aspect="wide"]     { aspect-ratio: 4 / 3; }

.placeholder-img::before {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  max-width: 80%;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum);
  background: rgba(255,255,255,0.85);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.placeholder-img.has-img { border: none; background: none; }
.placeholder-img.has-img::before { display: none; }
.placeholder-img img { 
  opacity: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.placeholder-img.has-img img { 
  opacity: 1; 
  transition: opacity 0.3s ease; 
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 77px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .placeholder-img { width: 100%; height: 100%; border-radius: 0; border: none; }
.hero-overlay {
  display: none;
}
.hero-content { position: relative; z-index: 2; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(43,31,42,0.75);
  margin: 1.2rem 0 2rem;
  max-width: 480px;
}
.hero-sub-light { color: rgba(251,246,239,0.88); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2.2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 1.8rem; color: var(--plum); display: block; }
.hero-stat .label { font-size: 0.8rem; color: rgba(43,31,42,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-stats-light .hero-stat .num { color: var(--ivory); }
.hero-stats-light .hero-stat .label { color: rgba(251,246,239,0.75); }

.btn-outline-light { border: 1.5px solid var(--ivory); color: var(--ivory); }
.btn-outline-light:hover { background: var(--ivory); color: var(--ink); }

@media (max-width: 880px) {
  .hero { min-height: 78vh; text-align: center; padding: 7rem 0 4rem; }
  
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--plum); color: var(--ivory); }
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
.about-bio { color: rgba(251,246,239,0.85); max-width: 560px; }
.about .placeholder-img {
  border-color: rgba(251,246,239,0.35);
  background: repeating-linear-gradient(135deg, rgba(251,246,239,0.06) 0px, rgba(251,246,239,0.06) 12px, rgba(251,246,239,0.1) 12px, rgba(251,246,239,0.1) 24px);
}
.about .placeholder-img::before { background: rgba(251,246,239,0.9); }

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-art { max-width: 300px; margin: 0 auto; }
  .about .chip-row { justify-content: center; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  border: 1px solid rgba(43,31,42,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.service-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory-deep);
  color: var(--plum);
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: rgba(43,31,42,0.7); margin-bottom: 1rem; }
.service-price { font-size: 0.85rem; font-weight: 600; color: var(--rose); }

@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin: 2.2rem 0 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(43,31,42,0.15);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--plum); color: var(--ivory); border-color: var(--plum); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-item .placeholder-img { border-radius: var(--radius-md); aspect-ratio: 4/5; transition: transform 0.3s ease; }
.gallery-item:hover .placeholder-img { transform: scale(1.03); }
.gallery-item.hidden { display: none; }

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

.lightbox {
  position: fixed; inset: 0;
  background: rgba(43,31,42,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 600px;
  width: 100%;
}
.lightbox-content .placeholder-img { aspect-ratio: 4/5; border-radius: var(--radius-md); }
.lightbox-caption { color: var(--ivory); text-align: center; margin-top: 1rem; font-size: 0.95rem; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.2rem;
  color: var(--ivory);
  line-height: 1;
}

/* ==========================================================================
   OFFERS — "ticket" styled cards
   ========================================================================== */
.offers { background: var(--plum-deep); color: var(--ivory); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.offer-card {
  position: relative;
  background: rgba(251,246,239,0.06);
  border: 1px solid rgba(251,246,239,0.15);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}
.offer-card::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  width: 16px; height: 16px;
  background: var(--plum-deep);
  border-radius: 50%;
  transform: translateX(-50%);
}
.offer-dot { margin-bottom: 1rem; }
.offer-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; margin-bottom: 0.6rem; }
.offer-card p { font-size: 0.9rem; color: rgba(251,246,239,0.78); margin-bottom: 1rem; }
.offer-valid { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--gold); text-transform: uppercase; }

@media (max-width: 880px) { .offers-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   BOOKING
   ========================================================================== */
.booking-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
}
.booking-text { color: rgba(43,31,42,0.75); margin-bottom: 1.8rem; max-width: 440px; }

.hours-list { margin-bottom: 2rem; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(43,31,42,0.08);
  font-size: 0.92rem;
  max-width: 380px;
}
.hours-list li span:first-child { font-weight: 600; }

.quick-contact { display: flex; gap: 1rem; flex-wrap: wrap; }
.quick-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(43,31,42,0.12);
  font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s ease;
}
.quick-link:hover { background: var(--ivory-deep); }
.quick-link .icon svg { width: 16px; height: 16px; }

.booking-form, .contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}
.contact-form { background: rgba(251,246,239,0.06); border: 1px solid rgba(251,246,239,0.15); box-shadow: none; }
.contact-form h3 { font-family: var(--font-display); color: var(--ivory); margin-bottom: 1.3rem; font-size: 1.3rem; }
.contact-form input, .contact-form textarea { background: rgba(255,255,255,0.95); }

.form-row { margin-bottom: 1.1rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.contact-form label { color: var(--ivory); }
.optional { font-weight: 400; color: rgba(43,31,42,0.5); }

.form-status { font-size: 0.88rem; margin-top: 0.8rem; min-height: 1.2em; }
.form-status.success { color: #3F7A4F; }
.form-status.error { color: #B3454A; }

.whatsapp-confirm-btn {
  margin-top: 0.8rem;
  border-color: #25D366;
  color: #1B7A43;
}
.whatsapp-confirm-btn:hover { background: #25D366; color: #fff; border-color: #25D366; }
.whatsapp-confirm-btn .icon svg { width: 18px; height: 18px; }

@media (max-width: 880px) {
  .booking-inner, .contact-inner { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--plum); color: var(--ivory); }
.contact-list { margin: 1.6rem 0 1.6rem; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: rgba(251,246,239,0.9);
}
.contact-list .icon { flex-shrink: 0; margin-top: 2px; }
.contact-list .icon svg { width: 18px; height: 18px; color: var(--gold); }

.social-row { display: flex; gap: 0.8rem; margin-bottom: 2rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(251,246,239,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--gold); }
.social-row a svg { width: 18px; height: 18px; }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(251,246,239,0.15); }
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--ivory); padding: 2.6rem 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem;
}
.footer-brand { display: flex; align-items: center; }
.footer-brand .brand-name { color: var(--ivory); font-size: 1.1rem; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.85rem; color: rgba(251,246,239,0.75); }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { width: 100%; text-align: center; font-size: 0.8rem; color: rgba(251,246,239,0.55); margin-top: 1rem; }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(37,211,102,0.6);
  z-index: 90;
  transition: transform 0.2s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp::before {
  content: "";
  width: 26px; height: 26px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.94.56 3.76 1.53 5.32L2 22l4.94-1.6a9.8 9.8 0 0 0 5.1 1.4h.01c5.46 0 9.91-4.45 9.91-9.91C21.96 6.45 17.5 2 12.04 2zm5.78 14.04c-.24.68-1.41 1.3-1.95 1.38-.5.08-1.13.11-1.83-.11-.42-.13-.96-.31-1.65-.6-2.9-1.25-4.79-4.16-4.93-4.36-.14-.2-1.18-1.57-1.18-3 0-1.42.74-2.12 1-2.41.26-.29.58-.36.77-.36.2 0 .39.002.56.01.18.008.42-.07.66.5.24.58.83 2.02.9 2.17.07.15.12.32.02.5-.1.18-.16.3-.31.46-.15.16-.32.36-.46.49-.15.13-.3.27-.13.55.18.29.79 1.3 1.7 2.1 1.17 1.04 2.16 1.36 2.46 1.5.3.15.48.13.65-.05.18-.18.74-.86.94-1.16.2-.3.4-.25.66-.15.27.1 1.7.8 2 .95.3.14.5.21.57.33.07.13.07.74-.17 1.42z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.94.56 3.76 1.53 5.32L2 22l4.94-1.6a9.8 9.8 0 0 0 5.1 1.4h.01c5.46 0 9.91-4.45 9.91-9.91C21.96 6.45 17.5 2 12.04 2zm5.78 14.04c-.24.68-1.41 1.3-1.95 1.38-.5.08-1.13.11-1.83-.11-.42-.13-.96-.31-1.65-.6-2.9-1.25-4.79-4.16-4.93-4.36-.14-.2-1.18-1.57-1.18-3 0-1.42.74-2.12 1-2.41.26-.29.58-.36.77-.36.2 0 .39.002.56.01.18.008.42-.07.66.5.24.58.83 2.02.9 2.17.07.15.12.32.02.5-.1.18-.16.3-.31.46-.15.16-.32.36-.46.49-.15.13-.3.27-.13.55.18.29.79 1.3 1.7 2.1 1.17 1.04 2.16 1.36 2.46 1.5.3.15.48.13.65-.05.18-.18.74-.86.94-1.16.2-.3.4-.25.66-.15.27.1 1.7.8 2 .95.3.14.5.21.57.33.07.13.07.74-.17 1.42z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ==========================================================================
   SECTION SUBTITLE (used under centered section headings)
   ========================================================================== */
.section-sub {
  color: rgba(43,31,42,0.65);
  max-width: 540px;
  margin: 0 auto 1rem;
}

/* ==========================================================================
   BUTTON SIZE VARIANT
   ========================================================================== */
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ==========================================================================
   SERVICE CATEGORY PREVIEW CARDS (homepage)
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.category-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(43,31,42,0.07);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.category-card .service-icon { margin: 0 auto 1.2rem; }
.category-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.92rem; color: rgba(43,31,42,0.7); margin-bottom: 0.9rem; }
.category-count {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}

@media (max-width: 880px) { .category-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   GALLERY CTA (View All Photos button under homepage preview)
   ========================================================================== */
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ==========================================================================
   BOOKING — category chips + service checklist (multi-select)
   ========================================================================== */
.checkbox-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(43,31,42,0.18);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  user-select: none;
}
.chip-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.chip-checkbox:has(input:checked) {
  background: var(--plum);
  color: var(--ivory);
  border-color: var(--plum);
}
.chip-checkbox:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.service-dropdown { position: relative; }

.service-dropdown-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(43,31,42,0.15);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.15s ease;
}
.service-dropdown-trigger:hover { border-color: var(--gold); }
.service-dropdown.open .service-dropdown-trigger { border-color: var(--gold); }
#service-dropdown-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-right: 0.8rem; }
.service-dropdown-arrow { flex-shrink: 0; color: rgba(43,31,42,0.5); transition: transform 0.15s ease; }
.service-dropdown.open .service-dropdown-arrow { transform: rotate(180deg); }

.service-checklist {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--ivory-deep);
  border: 1px solid rgba(43,31,42,0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  max-height: 280px;
  overflow-y: auto;
  padding: 1.2rem;
  z-index: 30;
}
.service-dropdown.open .service-checklist { display: block; }
.checklist-placeholder { font-size: 0.88rem; color: rgba(43,31,42,0.55); text-align: center; padding: 0.6rem 0; }
.service-group + .service-group { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(43,31,42,0.08); }
.service-group h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rose); margin-bottom: 0.6rem; }
.service-check { 
  display: flex; 
  align-items: flex-start; /* Aligns checkbox with the first line if text wraps */
  gap: 0.7rem; 
  padding: 0.5rem 0.3rem; 
  border-radius: var(--radius-sm); 
  cursor: pointer; 
  font-size: 0.92rem; 
  transition: background 0.15s ease; 
}

.service-check input[type="checkbox"] { 
  width: 17px !important; 
  height: 17px !important; 
  margin-top: 3px; 
  flex-shrink: 0; 
  accent-color: var(--plum); 
}

.service-name-text {
  flex: 1;
  line-height: 1.4;
}


.field-error {
  color: #B3454A;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.1em;
}

/* ==========================================================================
   PAGE INTRO BANNER (services.html / gallery.html)
   ========================================================================== */
.page-intro {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  background: var(--ivory-deep);
}
.page-intro-sub {
  color: rgba(43,31,42,0.7);
  max-width: 520px;
  margin: 0.6rem auto 0;
}

/* ==========================================================================
   SERVICES PAGE — sticky category sub-nav
   ========================================================================== */
.category-subnav {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(251, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,31,42,0.08);
}
.category-subnav-inner {
  display: flex;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  overflow-x: auto;
}
.subnav-tab {
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid rgba(43,31,42,0.15);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.subnav-tab.active, .subnav-tab:hover { background: var(--plum); color: var(--ivory); border-color: var(--plum); }

/* ==========================================================================
   SERVICES PAGE — category sections with detailed service cards
   ========================================================================== */
.category-section { padding: 4.5rem 0; scroll-margin-top: 150px; }
.category-section:nth-child(even) { background: var(--ivory-deep); }

.category-section-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.6rem;
}
.service-icon-lg { width: 62px; height: 62px; flex-shrink: 0; }
.service-icon-lg svg { width: 30px; height: 30px; }
.category-section-desc { color: rgba(43,31,42,0.7); max-width: 520px; }

.service-list { margin-top: 0.5rem; }

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(43,31,42,0.1);
}
.service-row:last-child { border-bottom: none; }

.service-row-main h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; margin-bottom: 0.25rem; }
.service-row-main p { font-size: 0.88rem; color: rgba(43,31,42,0.65); max-width: 480px; }

.service-row-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.service-duration { font-size: 0.8rem; color: rgba(43,31,42,0.5); white-space: nowrap; }
.service-row-meta .service-price { font-size: 0.88rem; font-weight: 600; color: var(--rose); white-space: nowrap; }
.service-row-book {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.service-row-book:hover { border-color: var(--plum); }

@media (max-width: 880px) {
  .category-section-head { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .service-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .service-row-meta { width: 100%; justify-content: space-between; }
}

/* ==========================================================================
   CTA BANNER (bottom of services.html / gallery.html)
   ========================================================================== */
.cta-banner { background: var(--plum); padding: 3.5rem 0; }
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-banner-inner h2 { margin-bottom: 0.3rem; }
.cta-banner-inner p { color: rgba(251,246,239,0.8); }

@media (max-width: 700px) { .cta-banner-inner { flex-direction: column; text-align: center; } }

/* ==========================================================================
   GALLERY PAGE — slightly tighter top padding since it follows page-intro
   ========================================================================== */
.gallery-page { padding-top: 3rem; }
