/* Beauty Template - Xeronio Public Pages */
/* Warm, elegant aesthetic for beauty & wellness businesses */

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fdf8f4;
  color: #3d3230;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hidden checkbox for mobile menu */
.nav-toggle-checkbox { display: none; }

/* Actual Info Banner */
.actual-info-banner {
  background: var(--primary, #c9956b);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 400;
}
.actual-info-banner p { margin: 0; }

/* Hero - Full Viewport */
.hero {
  position: relative;
  min-height: 40vh;
  background-color: var(--accent, #8b6f4e);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero.hero-with-image {
  min-height: 60vh;
  color: #fff;
}
.hero-with-image h1,
.hero-with-image .tagline { color: #fff; }
.hero-with-image .tagline { opacity: 0.9; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60,40,30,0.45) 0%, rgba(60,40,30,0.35) 50%, rgba(60,40,30,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 2rem 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--primary, #c9956b);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-cta:hover {
  background: var(--accent, #8b6f4e);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

/* Scroll chevron */
.scroll-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-chevron:hover { color: #fff; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sticky Navigation */
.page-nav {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(61,50,48,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-nav .container,
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3d3230;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1.5rem;
  white-space: nowrap;
}
.nav-logo {
  flex-shrink: 0;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  padding: 0.5rem 1.25rem;
  color: #6b5a56;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary, #c9956b);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--primary, #c9956b); }
.nav-links a:hover::after { width: 60%; }

/* Hamburger - hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3d3230;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(61,50,48,0.4);
  z-index: 98;
  cursor: pointer;
}

/* Main Content Card */
main.container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(61,50,48,0.07);
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 1rem;
  margin-bottom: 2rem;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-warm { background: #fdf8f4; }
.section-white { background: #fff; }

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3d3230;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary, #c9956b);
}

/* About */
.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6b5a56;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Services - 2-Column Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(61,50,48,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61,50,48,0.1);
}

.service-info { flex: 1; margin-bottom: 1rem; }

.service-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #3d3230;
  margin-bottom: 0.4rem;
}

.service-info p {
  font-size: 0.9rem;
  color: #8a7a76;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(61,50,48,0.08);
}

.service-meta .price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary, #c9956b);
}

.service-meta .duration {
  font-size: 0.85rem;
  color: #a89994;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.service-long-desc {
  font-size: 0.9rem;
  color: #8a7a76;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.service-long-desc a { color: var(--primary, #c9956b); text-decoration: underline; }

/* Custom Block */
.custom-block-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a4a46;
  max-width: 800px;
  margin: 0 auto;
}

.custom-block-content a { color: var(--primary, #c9956b); text-decoration: underline; }

/* Gallery - CSS Columns Masonry */
.gallery-masonry {
  column-count: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(61,50,48,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(61,50,48,0.12);
}

.gallery-item img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.gallery-item .caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #8a7a76;
  text-align: center;
}

/* Contact */
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(61,50,48,0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  display: flex;
  gap: 0.75rem;
}

.contact-row strong {
  color: #3d3230;
  min-width: 70px;
  font-weight: 700;
}

.contact-row a {
  color: var(--primary, #c9956b);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-row a:hover {
  color: var(--accent, #8b6f4e);
  text-decoration: underline;
}

.opening-hours { margin-top: 1.25rem; }

.opening-hours h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3d3230;
  margin-bottom: 0.75rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(61,50,48,0.06);
  font-size: 0.9rem;
}
.hours-table .day { font-weight: 400; color: #6b5a56; }
.hours-table .hours { text-align: right; color: #8a7a76; }

.contact-map {
  border-radius: 10px;
  overflow: hidden;
}

.contact-map iframe { border-radius: 10px; display: block; }

/* Hero With Image */
.hero-with-image {
  background-size: cover;
  background-position: center;
  padding: 6rem 1.5rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--primary, #c9956b);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Contact Extras */
.contact-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  padding-top: 0.1rem;
}
.contact-grid-single {
  grid-template-columns: 1fr;
  max-width: 600px;
}
.contact-row div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hours-text {
  font-size: 0.92rem;
  white-space: pre-line;
  color: #8a7a76;
  line-height: 1.7;
}

/* Insurance */
.insurance-info {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(61,50,48,0.08);
}
.insurance-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.insurance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.insurance-tag {
  background: rgba(201,149,107,0.1);
  color: var(--primary, #c9956b);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
}
.team-card {
  text-align: center;
  background: #fff;
  padding: 1.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(61,50,48,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover {
  box-shadow: 0 4px 16px rgba(61,50,48,0.1);
  transform: translateY(-2px);
}
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  display: block;
  border: 3px solid var(--primary, #c9956b);
}
.team-photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--primary, #c9956b);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.team-square .team-photo,
.team-square .team-photo-placeholder {
  border-radius: 12px;
  width: 140px; height: 160px;
}
.team-card h3 { font-size: 0.95rem; margin-bottom: 0.15rem; color: #3d3230; }
.team-role { font-size: 0.82rem; color: #8a7a76; }

/* Footer Logo */
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Lightbox Close */
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* Footer */
.page-footer {
  background: #3d3230;
  color: #b5a9a5;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.page-footer .powered-by {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #8a7a76;
}

.page-footer a {
  color: var(--primary, #c9956b);
  text-decoration: none;
}

.page-footer a:hover { text-decoration: underline; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.lightbox p {
  color: #ccc;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Booking Wizard */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.booking-steps .step {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #a89994;
  border-bottom: 2px solid rgba(61,50,48,0.1);
  white-space: nowrap;
}

.booking-steps .step.active {
  color: var(--primary, #c9956b);
  border-bottom-color: var(--primary, #c9956b);
  font-weight: 700;
}

.booking-steps .step.done {
  color: var(--accent, #8b6f4e);
  border-bottom-color: var(--accent, #8b6f4e);
}

.booking-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 2px solid rgba(61,50,48,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-service-card:hover {
  border-color: var(--primary, #c9956b);
  box-shadow: 0 4px 16px rgba(61,50,48,0.08);
}

.booking-service-info h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: #3d3230;
  margin: 0 0 0.25rem;
}

.booking-service-info p { font-size: 0.9rem; color: #8a7a76; margin: 0; }

.booking-service-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  white-space: nowrap;
}

.booking-price { font-size: 1.1rem; font-weight: 700; color: var(--primary, #c9956b); }
.booking-duration { font-size: 0.8rem; color: #a89994; }

.booking-selected-service {
  background: rgba(201,149,107,0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #3d3230;
  border-left: 3px solid var(--primary, #c9956b);
}

.booking-date-picker { margin-bottom: 1.5rem; }

.booking-date-picker input[type="date"] {
  padding: 0.75rem;
  border: 1px solid rgba(61,50,48,0.15);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  width: 100%;
  max-width: 300px;
  color: #3d3230;
}

.booking-date-picker input[type="date"]:focus {
  outline: none;
  border-color: var(--primary, #c9956b);
}

.booking-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.booking-slot-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid rgba(61,50,48,0.12);
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  color: #3d3230;
  transition: border-color 0.3s, background 0.3s;
}

.booking-slot-btn:hover { border-color: var(--primary, #c9956b); }

.booking-slot-btn.selected {
  background: var(--primary, #c9956b);
  border-color: var(--primary, #c9956b);
  color: #fff;
}

.booking-hint { color: #a89994; font-size: 0.9rem; }
.booking-error { color: #c0392b; font-size: 0.9rem; }
.booking-summary { margin-bottom: 1.5rem; }

.booking-summary-details {
  background: rgba(201,149,107,0.06);
  padding: 1.25rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  border: 1px solid rgba(201,149,107,0.15);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.booking-form-group label { font-size: 0.85rem; font-weight: 700; color: #6b5a56; }

.booking-form-group input,
.booking-form-group textarea {
  padding: 0.75rem;
  border: 1px solid rgba(61,50,48,0.15);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #3d3230;
}

.booking-form-group input:focus,
.booking-form-group textarea:focus {
  outline: none;
  border-color: var(--primary, #c9956b);
}

.booking-card-element {
  padding: 0.75rem;
  border: 1px solid rgba(61,50,48,0.15);
  border-radius: 8px;
}

.booking-card-errors { color: #c0392b; font-size: 0.85rem; min-height: 1.2em; }

.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.booking-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.3s, opacity 0.3s;
}

.booking-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.booking-btn-primary {
  background: var(--primary, #c9956b);
  color: #fff;
}

.booking-btn-primary:hover:not(:disabled) { background: var(--accent, #8b6f4e); }

.booking-btn-outline {
  background: transparent;
  border: 1px solid rgba(61,50,48,0.2);
  color: #6b5a56;
}

.booking-btn-outline:hover { background: rgba(61,50,48,0.04); }

.booking-confirmation { text-align: center; padding: 2rem 0; }

.booking-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent, #8b6f4e);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.booking-confirmation .booking-summary-details {
  max-width: 400px;
  margin: 1rem auto;
}

/* --- Announcements --- */
.announcements-bar {
  background: #fff8e1;
  color: #6d5300;
  padding: 0.65rem 0;
  border-bottom: 2px solid #ffe082;
}
.announcement-item {
  padding: 0.25rem 0;
  font-size: 0.88rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.badge-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* --- Featured Services --- */
.services-featured {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.service-featured-card {
  text-align: center;
  max-width: 220px;
  flex: 0 1 220px;
}
.service-featured-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary, #c9956b);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.service-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-featured-card:hover .service-featured-image img {
  transform: scale(1.08);
}
.service-featured-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #3d3230;
  margin-bottom: 0.3rem;
}
.service-featured-card .service-desc {
  font-size: 0.85rem;
  color: #8a7a76;
  line-height: 1.5;
}

/* --- Hero Split Layout --- */
.hero-split {
  background: linear-gradient(135deg, var(--primary, #c9956b) 0%, var(--accent, #8b6f4e) 100%);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.hero-split-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 400px;
}
.hero-split .hero-content {
  flex: 1;
  padding: 3rem 1.5rem 3rem 2.5rem;
  text-align: left;
}
.hero-split .hero-content h1 { text-align: left; }
.hero-split .hero-content .tagline { margin: 0; text-align: left; }
.hero-image {
  flex: 0 0 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 2rem;
}
.hero-image img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid rgba(61,50,48,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 1.25rem;
}
.blog-date {
  font-size: 0.78rem;
  color: #a89994;
  font-weight: 500;
}
.blog-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #3d3230;
  margin: 0.4rem 0;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: #8a7a76;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-masonry { column-count: 2; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
  .hero .tagline { font-size: 1.05rem; }
  .hero-cta { padding: 0.75rem 2rem; font-size: 0.9rem; }

  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 105;
    overflow-y: auto;
  }

  .nav-links a {
    padding: 1rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(61,50,48,0.06);
  }

  .nav-links a::after { display: none; }

  .nav-toggle-checkbox:checked ~ .page-nav .nav-links { right: 0; }
  .nav-toggle-checkbox:checked ~ .nav-overlay { display: block; }

  .nav-toggle-checkbox:checked ~ .page-nav .nav-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle-checkbox:checked ~ .page-nav .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle-checkbox:checked ~ .page-nav .nav-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  main.container { padding: 0 1.25rem 0.5rem; border-radius: 12px; margin-top: -1.5rem; }
  .section { padding: 3rem 0; }
  .section h2 { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 1; }
  .contact-card { padding: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-featured { gap: 1.5rem; }
  .service-featured-image { width: 120px; height: 120px; }
  .hero-split-inner { flex-direction: column; }
  .hero-split .hero-content { padding: 2.5rem 1.5rem 1rem; text-align: center; }
  .hero-split .hero-content h1, .hero-split .hero-content .tagline { text-align: center; }
  .hero-image { flex: none; padding-top: 0; }
  .hero-image img { max-height: 260px; }

  .booking-steps .step { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
  .booking-service-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .booking-service-meta { flex-direction: row; gap: 1rem; align-items: center; }
  .booking-nav { flex-direction: column; }
  .booking-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .container { padding: 0 1rem; }
  .nav-brand { font-size: 1.1rem; }
}

/* Rich text / Quill editor output */
.about-text, .custom-block-content, .service-long-desc {
  overflow-wrap: break-word; word-break: break-word;
}
.about-text p, .custom-block-content p, .service-long-desc p { margin-bottom: 0.75em; }
.about-text p:last-child, .custom-block-content p:last-child, .service-long-desc p:last-child { margin-bottom: 0; }
.about-text strong, .custom-block-content strong, .service-long-desc strong,
.about-text b, .custom-block-content b, .service-long-desc b { font-weight: 700; }
.about-text em, .custom-block-content em, .service-long-desc em,
.about-text i, .custom-block-content i, .service-long-desc i { font-style: italic; }
.about-text u, .custom-block-content u, .service-long-desc u { text-decoration: underline; }
.about-text s, .custom-block-content s, .service-long-desc s { text-decoration: line-through; }
.about-text ul, .about-text ol,
.custom-block-content ul, .custom-block-content ol,
.service-long-desc ul, .service-long-desc ol {
  padding-left: 1.75em; margin: 0.4em 0 0.75em;
}
.about-text li, .custom-block-content li, .service-long-desc li { margin-bottom: 0.3em; }
.about-text h1, .about-text h2, .about-text h3, .about-text h4,
.custom-block-content h1, .custom-block-content h2, .custom-block-content h3, .custom-block-content h4,
.service-long-desc h1, .service-long-desc h2, .service-long-desc h3, .service-long-desc h4 {
  font-weight: 600; line-height: 1.3; margin: 0.8em 0 0.4em;
}
.about-text blockquote, .custom-block-content blockquote, .service-long-desc blockquote {
  border-left: 3px solid var(--primary); padding-left: 1em;
  margin: 0.75em 0; font-style: italic; opacity: 0.85;
}
.about-text .ql-align-center, .custom-block-content .ql-align-center, .service-long-desc .ql-align-center { text-align: center; }
.about-text .ql-align-right, .custom-block-content .ql-align-right, .service-long-desc .ql-align-right { text-align: right; }
.about-text .ql-align-justify, .custom-block-content .ql-align-justify, .service-long-desc .ql-align-justify { text-align: justify; }

/* Footer contact/socials */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.footer-contact a { color: #ccc; }
.page-footer .social-links {
  justify-content: center;
  margin-bottom: 1rem;
}

/* Blog detail expand */
.blog-card-clickable { cursor: pointer; }
.blog-detail {
  grid-column: 1 / -1;
  background: #f9fafb;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  margin-top: -0.5rem;
}
.blog-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-detail-header h3 { font-size: 1.3rem; color: #1a1a1a; }
.blog-detail-content { font-size: 0.95rem; line-height: 1.7; color: #444; }
.blog-detail-content p { margin-bottom: 0.75rem; }
.blog-detail-content ul, .blog-detail-content ol { margin: 0.5rem 0 0.75rem 1.5rem; }
.blog-detail-content li { margin-bottom: 0.3rem; }

/* Booking demo contact */
.booking-demo-contact {
  text-align: center;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
}
.booking-demo-contact p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.booking-demo-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Booking Demo ─── */
.booking-demo { position: relative; }
.booking-demo-badge {
  display: inline-block;
  background: #fff3cd; color: #856404;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.85rem; border-radius: 20px;
  margin-bottom: 1.25rem; letter-spacing: 0.02em;
  border: 1px solid #ffeeba;
}
.booking-check-demo { background: #ffc107 !important; }
.booking-demo-contact-cta {
  display: flex; gap: 0.75rem; justify-content: center;
  flex-wrap: wrap; margin-top: 1.25rem;
}
.booking-demo-contact-cta .booking-btn {
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 0.4rem;
}
/* ─── Broken Image Fallback ─── */
img[src=""], img:not([src]) { display: none; }

