/* ====================================================
   Beauty Clinic — Static HTML conversion
   Design system mirrors the original Wix site
   ==================================================== */

:root {
  --bg-cream: #FFFDF7;
  --bg-beige: #EFE9E1;
  --beige-mid: #D8CEC2;
  --blush: #FAE3E1;
  --text-taupe: #5C514A;
  --accent-brown: #8B735B;
  --heading-dark: #2D231F;
  --border-soft: rgba(45, 35, 31, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Wix Madefor Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-taupe);
  background: var(--bg-cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Syne', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--heading-dark);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h3, h4 { font-family: 'Madefor Display', 'Wix Madefor Text', sans-serif; }

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading-dark);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-brown);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent-brown);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--heading-dark);
  background: var(--heading-dark);
  color: var(--bg-cream);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--accent-brown);
  border-color: var(--accent-brown);
}

.btn-outline {
  background: transparent;
  color: var(--heading-dark);
}

.btn-outline:hover {
  background: var(--heading-dark);
  color: var(--bg-cream);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--heading-dark);
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 32px 60px;
  text-align: center;
  background: var(--bg-cream);
}

.hero-headline {
  max-width: 1280px;
  margin: 0 auto 36px;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-taupe);
}

.hero-sub em {
  font-style: normal;
  color: var(--accent-brown);
  font-weight: 500;
}

.hero-image {
  max-width: 760px;
  margin: 50px auto 0;
  border-radius: 4px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Clinic gallery ---------- */
.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.clinic-gallery figure {
  margin: 0;
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.clinic-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}

.clinic-gallery figcaption {
  padding: 14px 18px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-brown);
  text-align: center;
  border-top: 1px solid var(--border-soft);
}

@media (max-width: 700px) {
  .clinic-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--heading-dark);
  color: var(--bg-cream);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.marquee-track span {
  padding: 0 30px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
.section {
  padding: 100px 32px;
}

.section-beige { background: var(--bg-beige); }
.section-blush { background: var(--blush); }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-brown);
  margin-bottom: 18px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 5.5vw, 72px);
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1.02;
}

.section-text {
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 32px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse .col-image { order: 2; }

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ---------- Feature lists ---------- */
.feature-list {
  list-style: none;
  margin: 24px 0;
}

.feature-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 14px;
  height: 1px;
  background: var(--accent-brown);
}

.feature-list strong {
  color: var(--heading-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Services grid ---------- */
.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(45, 35, 31, 0.08);
}

.service-category {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-brown);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--heading-dark);
}

.service-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--text-taupe);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}

.service-meta div {
  display: flex;
  flex-direction: column;
}

.service-meta span:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-brown);
  margin-bottom: 4px;
}

.service-meta span:last-child {
  color: var(--heading-dark);
  font-weight: 500;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* Category filter */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-tab {
  padding: 10px 22px;
  border: 1px solid var(--border-soft);
  background: transparent;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tab:hover { border-color: var(--accent-brown); }

.filter-tab.active {
  background: var(--heading-dark);
  color: var(--bg-cream);
  border-color: var(--heading-dark);
}

/* ---------- Calendly section ---------- */
.calendly-section {
  background: var(--bg-cream);
  padding: 80px 32px 100px;
}

.calendly-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.calendly-wrap h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.calendly-wrap p {
  text-align: center;
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 750px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-cream);
}

/* ---------- Service detail page ---------- */
.service-detail {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.service-detail h1 {
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-detail .lead {
  font-size: 19px;
  color: var(--text-taupe);
  margin-bottom: 40px;
}

.service-detail-meta {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 40px;
}

.service-detail-meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-detail-meta .label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-brown);
  margin-bottom: 8px;
}

.service-detail-meta .value {
  color: var(--heading-dark);
  font-weight: 500;
  font-size: 16px;
}

.contact-block {
  background: var(--bg-beige);
  padding: 40px;
  margin: 50px auto;
  max-width: 600px;
  text-align: center;
}

.contact-block h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--heading-dark);
}

.contact-block p { margin: 6px 0; font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--heading-dark);
  color: var(--bg-cream);
  padding: 80px 32px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-cream);
  margin-bottom: 20px;
}

.footer-col p, .footer-col a {
  font-size: 15px;
  color: rgba(255, 253, 247, 0.78);
  line-height: 1.8;
  display: block;
}

.footer-col a:hover { color: var(--bg-cream); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 253, 247, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--bg-cream);
  color: var(--heading-dark);
  border-color: var(--bg-cream);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 247, 0.15);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 253, 247, 0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col.reverse .col-image { order: 0; }
  .section { padding: 70px 24px; }
  .hero { padding: 50px 20px 40px; }
}

@media (max-width: 700px) {
  .header-inner { padding: 14px 20px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    gap: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 20px;
    width: 100%;
  }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .service-detail-meta { gap: 30px; }
  .filter-tabs { gap: 8px; }
  .filter-tab { padding: 8px 14px; font-size: 11px; }
}

/* === Services Overview === */
.services-overview {
  background: linear-gradient(180deg, #FFFDF7 0%, #F7F1E8 100%);
  padding: 110px 24px 100px;
  position: relative;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.services-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.02em;
  color: #2D231F;
  margin: 14px 0 16px;
  line-height: 1.05;
}
.services-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #5C514A;
  margin: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 30px;
  background: #FFFFFF;
  border: 1px solid rgba(45, 35, 31, 0.08);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139, 115, 91, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(45, 35, 31, 0.18);
  border-color: rgba(139, 115, 91, 0.35);
}
.service-card:hover::before { opacity: 1; }
.service-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8B735B;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 115, 91, 0.25);
  transition: color 0.35s ease, border-color 0.35s ease;
}
.service-card:hover .service-eyebrow {
  color: #2D231F;
  border-color: rgba(45, 35, 31, 0.35);
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #2D231F;
  margin: 0 0 10px;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #5C514A;
  margin: 0 0 22px;
  flex-grow: 1;
}
.service-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B735B;
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-link {
  color: #2D231F;
}
.service-card-cta {
  background: #2D231F;
  border-color: #2D231F;
  color: #FFFDF7;
}
.service-card-cta h3,
.service-card-cta p { color: #FFFDF7; }
.service-card-cta p { color: rgba(255, 253, 247, 0.75); }
.service-card-cta .service-eyebrow {
  color: #FAE3E1;
  border-color: rgba(250, 227, 225, 0.3);
}
.service-card-cta .service-link {
  color: #FAE3E1;
}
.service-card-cta:hover {
  background: #1f1815;
  border-color: #1f1815;
  box-shadow: 0 20px 40px -18px rgba(45, 35, 31, 0.5);
}
.service-card-cta:hover .service-eyebrow {
  color: #FFFDF7;
  border-color: rgba(255, 253, 247, 0.5);
}
.service-card-cta:hover .service-link { color: #FFFDF7; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .services-overview { padding: 80px 18px 70px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card { padding: 24px 20px 22px; border-radius: 14px; }
  .service-eyebrow { font-size: 10px; margin-bottom: 12px; padding-bottom: 10px; }
  .service-card h3 { font-size: 16px; }
  .service-card p { font-size: 13px; margin-bottom: 16px; }
}
@media (max-width: 440px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* === Hero Promo Pill === */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  margin: 0 auto 28px;
  background: #FAE3E1;
  border: 1px solid rgba(139, 115, 91, 0.25);
  border-radius: 999px;
  box-shadow: 0 4px 14px -8px rgba(45, 35, 31, 0.2);
  animation: heroPromoIn 0.7s ease both;
}
.hero-promo-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #2D231F;
  color: #FFFDF7;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-promo-text {
  font-size: 14px;
  color: #2D231F;
  letter-spacing: 0.01em;
  padding-right: 4px;
}
.hero-promo-text strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #8B735B;
  margin-right: 4px;
  letter-spacing: 0.02em;
}
@keyframes heroPromoIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .hero-promo { gap: 8px; padding: 6px 14px 6px 6px; margin-bottom: 22px; }
  .hero-promo-tag { padding: 5px 9px; font-size: 9.5px; letter-spacing: 0.14em; }
  .hero-promo-text { font-size: 12.5px; }
}

/* ============================================================
   Bio / Hero section
   ============================================================ */
.hero-bio {
  padding: 60px 32px 50px;
  text-align: left;
}
.hero-bio > .hero-promo {
  display: flex;
  width: fit-content;
  margin: 0 auto 28px;
}
.bio-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.bio-image {
  flex-shrink: 0;
  width: 180px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bio-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bio-name {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}
.bio-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-taupe);
  max-width: 560px;
}
.bio-specialty {
  font-size: 13px;
  color: var(--accent-brown);
  letter-spacing: 0.03em;
}
.bio-specialty strong {
  color: var(--heading-dark);
}
.bio-meta {
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
}
@media (max-width: 600px) {
  .bio-card { flex-direction: column; gap: 24px; }
  .bio-image { width: 120px; height: 150px; }
  .hero-bio { padding: 40px 20px 30px; }
}

/* ============================================================
   Footer social — WhatsApp hover colour
   ============================================================ */
.social-whatsapp:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
}

/* ============================================================
   Floating Action Bar (WhatsApp + Book Now)
   Visible on ALL screen sizes, bottom-right corner
   ============================================================ */
.fab-bar {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
}

.fab-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.fab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}

/* WhatsApp — green */
.fab-wa {
  background: #25D366;
}
.fab-wa:hover { background: #1ebe5c; }

/* Book Now — site dark */
.fab-book {
  background: var(--heading-dark);
}
.fab-book:hover { background: var(--accent-brown); }

/* On desktop, collapse label to icon-only until hover */
@media (min-width: 701px) {
  .fab-btn span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-left: 0;
  }
  .fab-btn:hover span {
    max-width: 120px;
    opacity: 1;
    margin-left: 4px;
  }
  .fab-btn {
    padding: 14px;
    border-radius: 50%;
  }
  .fab-btn:hover {
    padding: 13px 20px 13px 16px;
    border-radius: 999px;
  }
}

/* On mobile, always show label */
@media (max-width: 700px) {
  .fab-bar { bottom: 18px; right: 16px; gap: 10px; }
  .fab-btn { font-size: 12px; padding: 11px 18px 11px 14px; }
  .fab-btn svg { width: 18px; height: 18px; }
}

/* ============================================================
   Reviews Section
   ============================================================ */
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 24px;
  margin-top: 18px;
}
.google-rating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.google-score {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--heading-dark);
}
.google-stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 2px;
}
.google-label {
  font-size: 12px;
  color: var(--text-taupe);
  letter-spacing: 0.05em;
}

/* Slider */
.reviews-track-outer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-track-clip {
  overflow: hidden;
  flex: 1;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.rev-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rev-stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 3px;
}
.rev-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-taupe);
  flex: 1;
  font-style: italic;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-beige);
  color: var(--accent-brown);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-author strong { display: block; font-size: 14px; color: var(--heading-dark); }
.rev-author span { font-size: 12px; color: var(--accent-brown); letter-spacing: 0.05em; }

.rev-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-dark);
  transition: all 0.2s;
}
.rev-arrow:hover { background: var(--heading-dark); color: #fff; border-color: var(--heading-dark); }
.rev-arrow:disabled { opacity: 0.3; cursor: default; }

.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.rev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige-mid);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.rev-dot.active { background: var(--accent-brown); transform: scale(1.3); }

@media (max-width: 900px) {
  .rev-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .rev-card { flex: 0 0 100%; }
  .reviews-track-outer { gap: 8px; }
  .rev-arrow { width: 36px; height: 36px; font-size: 15px; }
}

/* ============================================================
   Location Section
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.loc-info-block h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.loc-info-block h4 {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-brown);
  margin-bottom: 8px;
}
.loc-info-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-taupe);
}
.loc-info-block {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}
.loc-info-block:last-of-type { border-bottom: none; padding-bottom: 0; }

.call-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--heading-dark);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 10px;
}
.call-cta-btn:hover { background: var(--accent-brown); }
.call-cta-wa { background: #25D366; }
.call-cta-wa:hover { background: #1ebe5c; }

.loc-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.loc-photos img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  display: block;
}

.location-map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  height: 480px;
  display: flex;
  flex-direction: column;
}
.location-map iframe {
  flex: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--heading-dark);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.map-directions-btn:hover { background: var(--accent-brown); }

@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 360px; }
}

/* Service tag pills */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px;
}
.service-tag {
  display: inline-block;
  background: #f0f7f4;
  color: #2a7a5a;
  border: 1px solid #b6dece;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
