/* Miley's 3D Areola — brand layer on Bootstrap 5.3
   Palette: Gray Orange #bbaa96 · Light Orange #fff8e8 · Black #000000 · Gray Orange 2 #af8a7f
   Headings: Cormorant Garamond (Versailles-style serif) · Body: Montserrat */

:root {
  --fb-taupe: #bbaa96;
  --fb-cream: #fff8e8;
  --fb-black: #000000;
  --fb-accent: #af8a7f;
  --fb-accent-hover: #9e7a70;
  --fb-bg: var(--fb-cream);
  --fb-bg-soft: #f3ebe0;
  --fb-peach: var(--fb-accent);
  --fb-peach-hover: var(--fb-accent-hover);
  --fb-text: #1c1614;
  --fb-muted: rgba(28, 22, 20, 0.72);
  --fb-on-dark-muted: rgba(255, 255, 255, 0.82);
  --fb-nav-height: 5.5rem;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--fb-nav-height) + 0.75rem);
}

body {
  font-family: var(--font-sans);
  background-color: var(--fb-bg);
  color: var(--fb-text);
}

/* Main content: treat legacy text-white / text-white-80 as brand ink on light surfaces */
main .text-white {
  color: var(--fb-text) !important;
}

main .text-white-80 {
  color: var(--fb-muted) !important;
}

main .modal-content.bg-dark .text-white,
main .modal-content.bg-dark h3,
main .modal-content.bg-dark h2 {
  color: #ffffff !important;
}

main .modal-content.bg-dark .text-white-80 {
  color: var(--fb-on-dark-muted) !important;
}

main .modal-content.bg-dark .text-white-50 {
  color: rgba(255, 255, 255, 0.55) !important;
}

.hero .text-white,
.hero .hero-title {
  color: #ffffff !important;
}

.hero .text-white-80,
.hero .hero-lead {
  color: var(--fb-on-dark-muted) !important;
}

.page-hero .text-white,
.page-hero h1 {
  color: #ffffff !important;
}

.page-hero .text-white-80,
.page-hero .lead.text-white-80 {
  color: var(--fb-on-dark-muted) !important;
}

.site-footer .text-white {
  color: #ffffff !important;
}

.site-footer .text-white-80 {
  color: var(--fb-on-dark-muted) !important;
}

.modal-content.bg-dark {
  color: #fff8e8;
}

.modal-content.bg-dark .text-white,
.modal-content.bg-dark h3 {
  color: #ffffff !important;
}

.modal-content.bg-dark .text-white-80 {
  color: var(--fb-on-dark-muted) !important;
}

.modal-content.bg-dark .text-white-50 {
  color: rgba(255, 255, 255, 0.55) !important;
}

.service-showcase-card .service-showcase-card__title,
.service-showcase-card .text-white {
  color: #ffffff !important;
}

.service-showcase-card .service-showcase-card__desc,
.service-showcase-card .text-white-80 {
  color: rgba(255, 255, 255, 0.88) !important;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-accent {
  color: var(--fb-peach) !important;
}

.tracking-wide {
  letter-spacing: 0.12em;
}

.tracking-wider {
  letter-spacing: 0.2em;
}

/* Header — clear over hero (white text); solid cream when scrolled (dark text) */
.site-header {
  background: transparent;
  pointer-events: none;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 232, 0.98);
  box-shadow: 0 4px 24px rgba(28, 22, 20, 0.08);
}

.site-header .navbar,
.site-header a,
.site-header button {
  pointer-events: auto;
}

.site-header .navbar {
  background-color: transparent !important;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled .navbar {
  background-color: rgba(255, 248, 232, 0.94) !important;
  border-bottom-color: rgba(187, 170, 150, 0.45);
}

/* Top of page — white nav (over dark hero / page hero) */
.site-header:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header:not(.is-scrolled) .nav-link:hover,
.site-header:not(.is-scrolled) .nav-link:focus {
  color: #fff8e8;
}

.site-header:not(.is-scrolled) .nav-link.active {
  color: var(--fb-peach) !important;
}

.site-header:not(.is-scrolled) .brand-mark {
  color: rgba(255, 255, 255, 0.95);
}

.site-header:not(.is-scrolled) .brand-text .small {
  color: rgba(255, 255, 255, 0.72);
}

.site-header:not(.is-scrolled) .navbar-toggler-main {
  border-color: rgba(255, 255, 255, 0.4) !important;
  background-color: rgba(0, 0, 0, 0.25);
}

/* Scrolled — dark nav on cream bar */
.site-header.is-scrolled .nav-link {
  color: rgba(28, 22, 20, 0.88);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link:focus {
  color: var(--fb-accent);
}

.site-header.is-scrolled .nav-link.active {
  color: var(--fb-accent) !important;
  font-weight: 600;
  position: relative;
}

.site-header.is-scrolled .brand-mark {
  color: var(--fb-text);
}

.site-header.is-scrolled .brand-text .small {
  color: var(--fb-muted);
}

.site-header.is-scrolled .navbar-toggler-main {
  border-color: rgba(175, 138, 127, 0.45) !important;
  background-color: rgba(255, 248, 232, 0.9);
}

.site-header .nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0 !important;
  transition: color 0.25s ease;
}

.site-header .nav-link.active {
  font-weight: 600;
  position: relative;
}

.site-header .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--fb-accent), transparent);
  opacity: 0.95;
}

@media (max-width: 991.98px) {
  .site-header .nav-link.active::after {
    left: 0;
    right: auto;
    width: 2rem;
    bottom: 50%;
    transform: translateY(50%);
    background: var(--fb-accent);
  }
}

/* Mobile — compact top bar + slide-in menu (offcanvas) */
@media (max-width: 991.98px) {
  .site-header .navbar {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .site-header .navbar > .container-fluid {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    overflow: hidden;
  }

  .site-header .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 3.5rem);
    min-width: 0;
    margin-right: 0.35rem;
  }

  .brand-text__name--short {
    font-size: 0.62rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    max-width: 100%;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-mark svg {
    width: 40px;
    height: 50px;
  }

  .navbar-toggler-main {
    flex-shrink: 0;
    min-width: 3rem;
    min-height: 3rem;
    padding: 0.55rem;
    border-radius: 0.5rem !important;
    transition: background-color 0.25s ease, border-color 0.25s ease;
  }

  .navbar-toggler-main:focus-visible {
    outline: 2px solid var(--fb-peach);
    outline-offset: 2px;
  }

  /* Solid bar while mobile menu is open (readable over hero) */
  body.nav-menu-open .site-header {
    background: rgba(255, 248, 232, 0.98);
    box-shadow: 0 4px 24px rgba(28, 22, 20, 0.1);
  }

  body.nav-menu-open .site-header .navbar {
    background-color: rgba(255, 248, 232, 0.94) !important;
    border-bottom-color: rgba(187, 170, 150, 0.45);
  }

  body.nav-menu-open .site-header .nav-link,
  body.nav-menu-open .site-header .brand-mark {
    color: var(--fb-text);
  }

  body.nav-menu-open .site-header .brand-text .small,
  body.nav-menu-open .site-header .brand-text__tagline {
    color: var(--fb-muted);
  }

  body.nav-menu-open .site-header .navbar-toggler-main {
    border-color: rgba(175, 138, 127, 0.45) !important;
    background-color: rgba(255, 248, 232, 0.9);
  }
}

/* Mobile offcanvas menu */
.mobile-nav-offcanvas {
  --bs-offcanvas-width: min(100vw, 20.5rem);
  background-color: var(--fb-cream);
  border-left: 1px solid rgba(187, 170, 150, 0.55);
}

.mobile-nav-offcanvas__header {
  padding: 1.1rem 1.25rem;
  border-bottom-color: rgba(187, 170, 150, 0.45) !important;
}

.mobile-nav-offcanvas__body {
  padding: 0.75rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

.mobile-nav-list {
  gap: 0;
  width: 100%;
}

.mobile-nav-list .nav-item {
  border-bottom: 1px solid rgba(187, 170, 150, 0.35);
}

.mobile-nav-list .nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.85rem 0.25rem !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fb-text) !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: var(--fb-accent) !important;
}

.mobile-nav-link.active {
  color: var(--fb-accent) !important;
  font-weight: 600;
}

.mobile-nav-link:active {
  background-color: rgba(175, 138, 127, 0.12);
  border-radius: 0.35rem;
}

.mobile-nav-offcanvas__actions {
  border-top-color: rgba(187, 170, 150, 0.45) !important;
}

.mobile-nav-offcanvas__actions .btn {
  min-height: 3rem;
}

body.nav-menu-open {
  overflow: hidden;
  touch-action: none;
}

.offcanvas-backdrop.show {
  opacity: 0.55;
}

.brand-mark {
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.site-header .navbar-brand {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.brand-text {
  line-height: 1.15;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  min-width: 0;
  overflow: hidden;
}

.brand-text__name--short {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text .small {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--fb-muted);
}

/* Business hours list */
.hours-list li {
  line-height: 1.45;
}

.hours-list--on-light {
  color: var(--fb-muted);
}

.hours-list--on-light strong {
  color: var(--fb-text);
  font-weight: 600;
}

.hours-list--on-dark {
  color: var(--fb-on-dark-muted);
}

.hours-list--on-dark strong {
  color: #fff8e8;
  font-weight: 600;
}

/* Hero — dark carousel slides, white copy */
.hero {
  padding-top: var(--fb-nav-height);
  background-color: var(--fb-black);
}

/* Background carousel (images only) — gradient lives in .hero-overlay below */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #121212;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  --bs-carousel-transition-duration: 1.15s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel {
    --bs-carousel-transition-duration: 0.01ms;
  }
}

.hero-carousel .carousel-inner {
  height: 100%;
}

.hero-carousel .carousel-item {
  height: 100%;
  min-height: 100%;
}

.hero-slide {
  height: 100%;
  width: 100%;
  background-color: #121212;
  background-size: cover;
  background-position: 20% center;
}

.hero-slide--1 {
  background-image: url("../img/glamorous-woman-with-perfect-makeup-featuring-eyeliner-blush.jpg");
}

.hero-slide--2 {
  background-image: url("../img/2150649878.jpg");
  background-position: center center;
}

.hero-slide--3 {
  background-image: url("../img/woman-beauty-clinic-face-treatment.jpg");
  background-position: 30% center;
}

/*
  Local slides: set backgrounds here (example).
  .hero-slide--1 { background-image: url("../img/banner-home1.jpg"); }
*/

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.5) 35%,
    rgba(10, 10, 10, 0.88) 55%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.deco,
.star {
  z-index: 2;
}

.z-1 {
  z-index: 1;
}

.hero-motto {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.hero-motto--footer {
  letter-spacing: 0.06em;
  text-transform: none;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.hero-lead {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.65;
  font-weight: 400;
}

.btn-cta {
  background-color: var(--fb-peach);
  border: none;
  color: #fff8e8 !important;
  min-width: 11rem;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background-color: var(--fb-peach-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.play-ring {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(28, 22, 20, 0.22);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.hero-video-link:hover .play-ring {
  border-color: var(--fb-peach);
  background-color: rgba(175, 138, 127, 0.12);
}

.hero-video-link:hover {
  color: var(--fb-peach) !important;
}

/* Decorative */
.deco {
  position: absolute;
  pointer-events: none;
  color: rgba(175, 138, 127, 0.4);
}

.hero .deco {
  color: rgba(255, 255, 255, 0.35);
}

.deco-swirl {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.5;
}

.deco-swirl::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.deco-swirl--top {
  top: 8%;
  left: 50%;
  transform: translateX(-35%) rotate(12deg);
}

.deco-swirl--bottom {
  bottom: -8%;
  right: -5%;
  transform: rotate(-25deg);
}

.deco-flowers {
  left: 8%;
  bottom: 18%;
  width: min(28vw, 220px);
  opacity: 0.55;
}

@media (max-width: 991.98px) {
  .deco-flowers {
    left: 2%;
    bottom: 22%;
    width: 160px;
    opacity: 0.35;
  }

  .deco-swirl--top {
    opacity: 0.25;
  }
}

.star {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--fb-peach);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.75;
}

.star--1 {
  top: 28%;
  right: 18%;
}

.star--2 {
  top: 42%;
  right: 12%;
  width: 6px;
  height: 6px;
  opacity: 0.55;
}

.star--3 {
  top: 52%;
  right: 28%;
}

.star--4 {
  bottom: 35%;
  right: 8%;
  width: 5px;
  height: 5px;
}

.star--5 {
  top: 36%;
  right: 35%;
  width: 5px;
  height: 5px;
}

/* Footer strip in hero */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(187, 170, 150, 0.65);
  color: var(--fb-text);
  font-size: 0.95rem;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.social-icon:hover {
  color: var(--fb-peach);
  border-color: var(--fb-peach);
  background-color: rgba(175, 138, 127, 0.1);
}

.hero-footer .social-icon {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
}

.hero-footer .social-icon:hover {
  color: var(--fb-peach);
  border-color: var(--fb-peach);
  background-color: rgba(175, 138, 127, 0.15);
}

.hero-footer .text-accent,
.hero-footer .hero-motto {
  color: var(--fb-peach) !important;
}

.hero-footer .text-white-80 {
  color: var(--fb-on-dark-muted) !important;
}

.hero .btn-outline-light,
.hero .btn-outline-mileys {
  --bs-btn-color: rgba(255, 255, 255, 0.92);
  --bs-btn-border-color: rgba(255, 255, 255, 0.45);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.75);
  --bs-btn-focus-shadow-rgb: 175, 138, 127;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: rgba(255, 255, 255, 0.14);
  --bs-btn-active-border-color: rgba(255, 255, 255, 0.75);
}

.section-muted {
  background-color: var(--fb-bg-soft);
}

/* Home — services showcase (matches site dark theme) */
.services-showcase {
  background: linear-gradient(180deg, var(--fb-bg-soft) 0%, var(--fb-bg) 50%, var(--fb-bg-soft) 100%);
  color: var(--fb-text);
}

.services-showcase__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  overflow: hidden;
  border-radius: inherit;
  background-image:
    radial-gradient(ellipse 100px 60px at 8% 15%, rgba(175, 138, 127, 0.18), transparent 70%),
    radial-gradient(ellipse 120px 80px at 92% 25%, rgba(175, 138, 127, 0.14), transparent 65%),
    radial-gradient(ellipse 90px 55px at 75% 85%, rgba(175, 138, 127, 0.12), transparent 70%),
    radial-gradient(ellipse 70px 45px at 20% 70%, rgba(175, 138, 127, 0.1), transparent 65%);
  filter: blur(0.5px);
}

.services-showcase__heading {
  font-weight: 600;
  line-height: 1.15;
}

.services-showcase__lead {
  line-height: 1.65;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .services-showcase__lead {
    margin-left: 0;
    margin-right: 0;
  }
}

.services-showcase__btn {
  background-color: var(--fb-peach);
  border: none;
  color: #fff8e8 !important;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.services-showcase__btn:hover {
  background-color: var(--fb-peach-hover);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.service-showcase-card {
  position: relative;
  min-height: 300px;
  color: var(--fb-text);
  border: 1px solid rgba(187, 170, 150, 0.45);
}

.service-showcase-card:focus-visible {
  outline: 2px solid var(--fb-peach);
  outline-offset: 3px;
}

.service-showcase-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
}

.service-showcase-card__bg--placeholder {
  background: linear-gradient(145deg, #f3ebe0 0%, #e0d4c8 45%, #cbbfb2 100%);
}

.service-showcase-card:hover .service-showcase-card__bg {
  transform: scale(1.06);
}

.service-showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 20, 0.52);
  transition: background-color 0.25s ease;
}

.service-showcase-card:hover .service-showcase-card__overlay {
  background: rgba(28, 22, 20, 0.4);
}

.service-showcase-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.35rem;
  min-height: 300px;
}

.service-showcase-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.service-showcase-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 248, 232, 0.88);
  margin-top: 0.85rem;
  max-width: 18rem;
}

.service-showcase-card__price {
  font-size: 0.75rem;
  color: rgba(255, 248, 232, 0.85);
  margin-top: 1rem;
  letter-spacing: 0.06em;
}

.service-showcase-card__price strong {
  color: var(--fb-peach);
  font-weight: 700;
}

/* Slick — home services category slider */
.services-showcase-slider {
  margin: 0 -0.5rem;
}

.services-showcase-slider .slick-slide {
  padding: 0 0.5rem;
}

.services-showcase-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.services-showcase-slider .slick-slide {
  height: auto;
}

.services-showcase-slider .slick-slide > div {
  height: 100%;
}

.services-showcase-slider .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 1.25rem;
}

.services-showcase-slider .slick-dots li button:before {
  color: var(--fb-peach);
  opacity: 0.35;
  font-size: 10px;
}

.services-showcase-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.services-slick-prev,
.services-slick-next {
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(187, 170, 150, 0.65);
  background: rgba(255, 248, 232, 0.95);
  color: var(--fb-peach);
  font-size: 1rem;
  line-height: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.services-slick-prev:hover,
.services-slick-next:hover,
.services-slick-prev:focus,
.services-slick-next:focus {
  background: rgba(175, 138, 127, 0.18);
  border-color: var(--fb-peach);
  color: var(--fb-peach-hover);
}

.services-slick-prev {
  left: -0.25rem;
}

@media (min-width: 992px) {
  .services-slick-prev {
    left: -0.75rem;
  }

  .services-slick-next {
    right: -0.75rem;
  }
}

.services-slick-next {
  right: -0.25rem;
}

.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: auto;
}

.service-card .service-card-media {
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.service-mini-list li {
  line-height: 1.45;
}

.service-detail-card {
  box-shadow: 0 0.75rem 2rem rgba(28, 22, 20, 0.08);
  border-color: rgba(187, 170, 150, 0.45) !important;
}

.service-row:last-child {
  border-bottom: 0 !important;
}

@media (min-width: 768px) {
  .service-card .service-card-media {
    min-height: 100%;
  }
}

.gallery-thumb img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {
  .map-embed {
    min-height: 220px;
  }
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--fb-peach);
  background-color: rgba(175, 138, 127, 0.12);
}

.site-footer {
  background-color: var(--fb-black);
  color: #fff8e8;
  border-top: 1px solid rgba(255, 248, 232, 0.12) !important;
}

.site-footer .social-icon:hover {
  color: #fff8e8;
  border-color: rgba(255, 248, 232, 0.75);
  background-color: rgba(255, 248, 232, 0.08);
}

.social-icon--footer {
  color: rgba(255, 248, 232, 0.95);
  border-color: rgba(255, 248, 232, 0.35);
}

main {
  flex: 1 0 auto;
}

/* Inner pages — hero band (matches about.php style) */
.page-hero {
  padding-top: calc(var(--fb-nav-height) + 2rem);
}

.page-hero__shade {
  background:linear-gradient(180deg, rgba(28, 22, 20, 0.78) 0%, rgba(28, 22, 20, 0.52) 55%, rgb(231 231 231 / 0%) 100%);
}

/* Store rating + years serving (About) */
.store-rating-stars {
  display: inline-flex;
  gap: 0.125rem;
  font-size: 1.05rem;
  line-height: 1;
}

.store-reputation--compact .store-rating-stars {
  font-size: 0.95rem;
}

.store-reputation--compact .store-reputation__inner {
  padding: 0.75rem 1rem !important;
}

.store-reputation__inner {
  background-color: rgba(255, 248, 232, 0.92) !important;
  border: 1px solid rgba(187, 170, 150, 0.55) !important;
}

.store-review-links__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.store-review-links__btn:hover {
  border-color: var(--fb-peach) !important;
  color: var(--fb-peach) !important;
}

/* Social showcase (#social) — unified board + tiles */
#social.social-showcase {
  --social-embed-h: 520px;
  --social-embed-max-w: 500px;
  background: linear-gradient(180deg, var(--fb-bg) 0%, var(--fb-bg-soft) 45%, var(--fb-bg) 100%);
}

.social-showcase__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background-image:
    radial-gradient(ellipse 140px 90px at 12% 20%, rgba(175, 138, 127, 0.16), transparent 72%),
    radial-gradient(ellipse 180px 100px at 88% 35%, rgba(175, 138, 127, 0.12), transparent 70%),
    radial-gradient(ellipse 100px 70px at 70% 88%, rgba(175, 138, 127, 0.1), transparent 68%),
    radial-gradient(ellipse 80px 55px at 25% 75%, rgba(175, 138, 127, 0.08), transparent 65%);
}

.social-showcase__container {
  position: relative;
  z-index: 1;
}

.social-showcase__title-rule {
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--fb-peach), transparent);
  opacity: 0.85;
}

.social-showcase__board {
  max-width: min(42rem, 100%);
  background: linear-gradient(145deg, rgba(255, 248, 232, 0.98) 0%, rgba(243, 235, 224, 0.96) 100%);
  border: 1px solid rgba(187, 170, 150, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 18px 44px rgba(28, 22, 20, 0.08),
    0 0 48px rgba(175, 138, 127, 0.12);
  backdrop-filter: blur(8px);
}

.social-showcase__actions .social-showcase__btn {
  min-width: 14rem;
}

.social-showcase__pane--fb {
  background: linear-gradient(165deg, rgba(24, 119, 242, 0.07) 0%, transparent 52%);
}

.social-showcase__pane--ig {
  background: linear-gradient(195deg, rgba(225, 48, 108, 0.07) 0%, transparent 50%);
}

.social-showcase__pane-inner {
  padding: 1.35rem 1.25rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .social-showcase__pane-inner {
    padding: 1.65rem 1.75rem 1.85rem;
  }

  .social-showcase__pane--border-end {
    border-right: 1px solid rgba(175, 138, 127, 0.14);
  }
}

@media (max-width: 991.98px) {
  .social-showcase__pane--border-end {
    border-bottom: 1px solid rgba(175, 138, 127, 0.14);
  }
}

.social-tile__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.social-tile__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(187, 170, 150, 0.45);
}

.social-tile__icon--fb {
  color: #8bb9ff;
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.25);
}

.social-tile__icon--ig {
  color: #f0a6c8;
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.28);
}

.social-tile__titles {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.social-tile__label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fb-text);
  letter-spacing: 0.02em;
}

.social-tile__hint {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fb-muted);
}

.social-tile__outlink {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fb-peach);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-tile__outlink:hover {
  color: var(--fb-peach-hover);
  border-bottom-color: rgba(175, 138, 127, 0.45);
}

#social .social-embed-row > .social-embed-col {
  min-width: 0;
}

#social .social-embed-row > .social-embed-col > .social-embed-card {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

#social .social-embed-card {
  min-height: 0;
  flex: 1 1 auto;
}

#social .social-embed-body {
  box-sizing: border-box;
  --social-embed-box: min(var(--social-embed-h), 85vh);
  height: var(--social-embed-box);
  min-height: min(260px, var(--social-embed-box));
  max-height: var(--social-embed-box);
}

#social .social-embed-frame.social-embed-body {
  border-radius: 0.85rem;
  border: 1px solid rgba(187, 170, 150, 0.45);
  background: rgba(255, 248, 232, 0.55);
  overflow: hidden;
  max-width: min(100%, var(--social-embed-max-w));
  margin-inline: auto;
  width: 100%;
}

#social .social-embed-frame.social-embed-body > iframe {
  display: block;
  border: 0;
  max-width: 100%;
}

#social .instagram-embed-stack.social-embed-body {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem;
  scrollbar-gutter: stable;
}

#social .instagram-embed-stack .instagram-media {
  min-width: 0 !important;
  margin-bottom: 0 !important;
}

#social .instagram-embed-stack iframe {
  max-width: 100% !important;
}

.social-map-mini {
  min-height: 220px;
}

.social-link-card {
  background: rgba(255, 248, 232, 0.75);
}

@media (max-width: 991.98px) {
  .social-map-mini {
    min-height: 200px;
  }
}

.contact-mailto-form .form-control:focus {
  border-color: var(--fb-peach);
  box-shadow: 0 0 0 0.2rem rgba(175, 138, 127, 0.22);
}

.contact-mailto-form .form-check-input:focus {
  border-color: var(--fb-peach);
  box-shadow: 0 0 0 0.2rem rgba(175, 138, 127, 0.22);
}

.contact-mailto-form .form-check-input:checked {
  background-color: var(--fb-peach);
  border-color: var(--fb-peach);
}

.privacy-policy-trigger {
  vertical-align: baseline;
}

.privacy-policy-modal .modal-body {
  max-height: min(70vh, 32rem);
}

.privacy-policy-modal__section:last-child {
  margin-bottom: 0 !important;
}

/* Outline buttons on light brand surfaces */
.btn-outline-mileys {
  --bs-btn-color: #1c1614;
  --bs-btn-border-color: rgba(175, 138, 127, 0.55);
  --bs-btn-hover-color: #1c1614;
  --bs-btn-hover-bg: rgba(175, 138, 127, 0.12);
  --bs-btn-hover-border-color: #af8a7f;
  --bs-btn-focus-shadow-rgb: 175, 138, 127;
  --bs-btn-active-color: #1c1614;
  --bs-btn-active-bg: rgba(175, 138, 127, 0.18);
  --bs-btn-active-border-color: #af8a7f;
}

.services-price-toggle .btn-outline-light {
  --bs-btn-color: #1c1614;
  --bs-btn-border-color: rgba(175, 138, 127, 0.5);
  --bs-btn-hover-color: #1c1614;
  --bs-btn-hover-bg: rgba(175, 138, 127, 0.1);
  --bs-btn-hover-border-color: #af8a7f;
}

.store-review-links__btn.btn-outline-light {
  --bs-btn-color: #1c1614;
  --bs-btn-border-color: rgba(187, 170, 150, 0.55);
  --bs-btn-hover-color: #1c1614;
  --bs-btn-hover-bg: rgba(175, 138, 127, 0.1);
  --bs-btn-hover-border-color: #af8a7f;
}

.faq-accordion .accordion-button {
  color: var(--fb-text) !important;
}

.faq-accordion .accordion-button.collapsed {
  color: var(--fb-text) !important;
}
