html {
  background: var(--bg-dark, #16120f);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f3eee8;
  --bg-dark: #16120f;
  --text: #2c241e;
  --text-muted: #756457;
  --text-light: #f0ece6;
  --accent: #c4905a;
  --accent-text: #956035;
  --accent-hover: #b67d48;
  --gold: #d4a84b;
  --border: #ddd2c6;
  --font: 'Montserrat', -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --container: 1120px;
  --nav-h: 80px;
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
[hidden] { display: none !important; }
a:focus-visible,
button:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 2000; padding: 11px 16px;
  border-radius: 8px; background: var(--text-light); color: var(--bg-dark);
  font-size: 0.75rem; font-weight: 700; transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
main { display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; }
.section-head { max-width: 600px; margin: 0 auto 60px; text-align: center; }

.label {
  display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent-text); margin-bottom: 14px;
}
.page-hero .label { color: var(--accent); }
.page-hero .section-sub { color: rgba(240,236,230,0.65); }

.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.15; color: var(--bg-dark); margin-bottom: 16px;
}

.section-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background var(--transition);
}
.nav.scrolled { background: var(--bg-dark); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }

.logo { display: flex; align-items: center; }
.logo-img { height: 100px; width: auto; display: block; }

.nav-menu { display: flex; gap: 40px; }
.nav-link {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 0.75rem; font-weight: 500; color: rgba(240,236,230,0.6);
  letter-spacing: 1.5px; text-transform: uppercase; transition: color var(--transition);
}
.nav-link:hover { color: var(--text-light); }
.nav-link[aria-current="page"] { color: var(--text-light); }

/* ===== BARBER POLE BUTTON (mobile) ===== */
.pole-btn {
  display: none;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 44px;
  height: 44px;
  transition: transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
  font: inherit;
}
.pole-btn:active { transform: scale(0.92); }
.pole-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 4px; }

.pole-svg { width: 40px; height: 40px; display: block; }

.pole-stripe { animation: barberSpin 1.25s linear infinite; }

.pole-btn.open .pole-stripe { animation: spinFast 0.6s linear; animation-fill-mode: forwards; }

@keyframes barberSpin {
  from { transform: translateY(-18px); }
  to { transform: translateY(0); }
}

@keyframes spinFast {
  from { transform: translateY(0); }
  to { transform: translateY(-144px); }
}

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 620px; overflow: hidden;
}
.hero-media,
.hero-static { position: absolute; inset: 0; }
.hero-media { z-index: 0; background: var(--bg-dark); }
.hero-static {
  margin: 0;
}
.hero-static img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  object-position: 50% 50%;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(22,18,15,0.85) 0%, rgba(22,18,15,0.4) 60%, rgba(22,18,15,0.2) 100%);
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05; color: var(--text-light); margin-bottom: 24px;
}
.hero-sub {
  font-size: 1rem; color: rgba(240,236,230,0.6); line-height: 1.7; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; border-radius: 100px; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn--primary { color: var(--bg-dark); background: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,144,90,0.3); }
.btn--outline { color: var(--text-light); background: transparent; border: 2px solid rgba(240,236,230,0.3); }
.btn--outline:hover { background: var(--text-light); color: var(--bg-dark); border-color: var(--text-light); }
.btn--outline-dark { color: var(--bg-dark); background: transparent; border: 2px solid var(--bg-dark); }
.btn--outline-dark:hover { background: var(--bg-dark); color: var(--text-light); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-light); font-size: 0.6rem; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; opacity: 0.35;
}
.hero-scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--text-light), transparent); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }

/* ===== ABOUT HERO ===== */
.about-hero {
  text-align: center; max-width: 720px;
  margin: 0 auto 60px; padding-top: 20px;
}
.about-hero-title {
  font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.05; color: var(--bg-dark); margin-bottom: 20px;
}
.about-hero-text {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.about-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===== ABOUT ===== */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(56px, 5vw, 80px); align-items: center;
}
.about-img {
  position: relative; height: clamp(560px, 45vw, 640px); border-radius: var(--radius); overflow: hidden;
  isolation: isolate; background: var(--bg-dark);
  box-shadow: 0 30px 70px rgba(22,18,15,0.18), 0 8px 24px rgba(22,18,15,0.1);
}
.about-img::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), transparent 34%, rgba(22,18,15,0.08));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), inset 0 -70px 100px rgba(22,18,15,0.1);
}
.about-slide {
  position: absolute; inset: 0; z-index: 0; margin: 0; opacity: 0;
  overflow: hidden; transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1); will-change: opacity;
}
.about-slide.is-active { z-index: 2; opacity: 1; }
.about-slide.is-previous { z-index: 1; opacity: 0; }
.about-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.018); filter: saturate(0.94) contrast(1.02) brightness(0.95);
  transition: filter 1.5s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform, filter;
}
.about-slide.is-active img { filter: saturate(1.02) contrast(1.025) brightness(1); }
.about-slide.is-previous img { filter: saturate(0.96) contrast(1.02) brightness(0.94); }
.about-slide--shop img { object-position: 50% 50%; }
.about-slide--entrance img { object-position: 50% 44%; }
.about-slide--station img { object-position: 48% 50%; }
.about-slide--portrait img { object-position: 50% 48%; }
.about-slide:is(.is-active, .is-previous) img { animation: aboutKenBurns 6s cubic-bezier(0.2, 0.65, 0.3, 1) both; }
@keyframes aboutKenBurns {
  from { transform: scale(1.018); }
  to { transform: scale(1.06); }
}
.about-title {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 600;
  line-height: 1.2; color: var(--bg-dark); margin-bottom: 24px;
}
.about-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--accent-text); }
.stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1.5px; }

/* ===== PRICES ===== */
.prices { background: var(--bg-dark); }
.prices .section-title { color: var(--text-light); }
.prices .section-sub { color: rgba(240,236,230,0.65); }
.prices-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px; max-width: 1060px; margin: 0 auto;
  align-items: stretch;
}
.price-card {
  min-height: 220px;
  background: #e9e0d3;
  border: 1px solid rgba(143,126,110,0.22);
  border-radius: var(--radius);
  padding: 30px 0 28px; text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.price-card:hover { background: #ede5da; border-color: rgba(143,126,110,0.38); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(44,36,30,0.07); }
.price-card--featured { background: #e4d7c7; border-color: rgba(196,144,90,0.55); }
.price-badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-size: 0.5rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bg-dark); background: var(--accent); border: 1px solid rgba(44,36,30,0.12);
  padding: 4px 16px; border-radius: 20px; z-index: 2;
}
.price-name { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 10px; letter-spacing: 0.4px; line-height: 1.45; padding: 0 24px; overflow-wrap: anywhere; }
.price-desc { font-size: 0.78rem; color: #6f5c4d; line-height: 1.65; margin-bottom: 22px; padding: 0 24px; }
.price-val { font-size: 1.5rem; font-weight: 700; color: #a77443; padding: 0 24px; margin-top: auto; }
.price-card--featured .price-val { font-size: 1.7rem; }

/* ===== INSTAGRAM ===== */
.instagram { background: var(--bg); }
.insta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 1060px; margin: 0 auto;
}
.insta-item { display: block; overflow: hidden; aspect-ratio: 1; position: relative; border-radius: var(--radius); background: #e9e0d3; }
.insta-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); z-index: 1; }
.insta-item:hover::after { background: rgba(0,0,0,0.2); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.06); }
.instagram-editorial {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  max-width: 1060px; min-height: 500px; margin: 0 auto;
  background: #e9e0d3; border: 1px solid rgba(143,126,110,0.22);
  border-radius: var(--radius); overflow: hidden;
}
.instagram-editorial-media { min-height: 500px; overflow: hidden; }
.instagram-editorial-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }
.instagram-editorial-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 64px 56px; }
.instagram-editorial-icon { width: 34px; height: 34px; color: var(--accent); margin-bottom: 24px; }
.instagram-editorial-copy h2 {
  font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 600; line-height: 1.18; color: var(--text); margin-bottom: 20px;
}
.instagram-editorial-copy p { color: #6f5c4d; font-size: 0.92rem; line-height: 1.8; margin-bottom: 30px; }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg); }
.reviews-page { padding: 96px 0 110px; }
.google-reviews-shell { max-width: 1064px; margin: 0 auto; }
.google-reviews-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  margin-bottom: 42px; padding: 0 0 34px; border-bottom: 1px solid rgba(102,78,58,0.2);
}
.google-reviews-brand { display: flex; align-items: center; gap: 15px; }
.google-brand-mark {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 38px; height: 38px; border: 1px solid rgba(102,78,58,0.25); border-radius: 50%;
  background: #eee4d7; color: #7a5536; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
}
.google-brand-kicker { display: block; color: #8c725d; font-size: 0.58rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.google-reviews-brand strong { display: block; margin-top: 3px; color: var(--text); font-family: var(--font-heading); font-size: 1.3rem; line-height: 1.1; }
.google-reviews-score { display: flex; align-items: center; gap: 18px; }
.reviews-rating-value { display: block; color: var(--text); font-family: var(--font-heading); font-size: 3.75rem; line-height: 0.9; }
.reviews-rating-stars,
.google-review-stars { display: flex; gap: 3px; line-height: 1; }
.reviews-rating-stars { margin-bottom: 8px; font-size: 1rem; }
.google-star { color: #cfc1b2; }
.google-star.is-filled { color: var(--gold); }
.google-reviews-score p { color: #7e6d5f; font-size: 0.72rem; }
.google-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.google-review-card {
  min-width: 0; min-height: 320px; display: flex; flex-direction: column; padding: 30px 28px 26px;
  background: #ece2d5; border: 1px solid rgba(102,78,58,0.18); border-radius: 18px;
}
.google-review-source { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: #806b59; font-size: 0.58rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.google-review-source-mark { display: inline-flex; align-items: center; justify-content: center; width: 25px; height: 25px; border: 1px solid rgba(102,78,58,0.2); border-radius: 50%; background: #f5efe7; color: #7a5536; font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; }
.google-review-stars { margin-bottom: 20px; font-size: 0.88rem; }
.google-review-text { color: #3c3028; font-family: var(--font-heading); font-size: 1rem; line-height: 1.68; overflow-wrap: anywhere; }
.google-review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(143,126,110,0.25); }
.google-review-avatar { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(102,78,58,0.22); border-radius: 50%; background: #e2d2bf; color: #5f4632; font-size: 0.65rem; font-weight: 700; }
.google-review-author strong { display: block; color: var(--text); font-size: 0.76rem; line-height: 1.35; overflow-wrap: anywhere; }
.google-review-date { display: block; color: #806f61; font-size: 0.62rem; margin-top: 3px; }
.google-reviews-fallback { max-width: 760px; margin: 0 auto; padding: 58px 64px; text-align: center; background: #ece2d5; border: 1px solid rgba(102,78,58,0.18); border-radius: 18px; }
.google-reviews-fallback .google-brand-mark { margin: 0 auto 24px; }
.google-reviews-fallback .label { display: block; margin-bottom: 16px; }
.google-reviews-fallback h2 { color: var(--text); font-family: var(--font-heading); font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 600; line-height: 1.2; }
.google-reviews-fallback p { max-width: 560px; margin: 20px auto 0; color: #6f5c4d; font-size: 0.88rem; line-height: 1.75; }
.reviews-public-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.reviews-google-link { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 26px; border: 1px solid rgba(74,53,38,0.5); border-radius: 100px; color: #4d392a; font-size: 0.66rem; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.reviews-google-link:hover { background: var(--text); border-color: var(--text); color: var(--text-light); }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info { display: grid; gap: 32px; }
.contact-label {
  display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent-text); margin-bottom: 6px;
}
.contact-val { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.contact-val a { color: var(--text); transition: color var(--transition); }
.contact-val a:hover { color: var(--accent); }
.contact-hours h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--bg-dark); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 500; }
.hours-row span:last-child { color: var(--text-muted); }
.social { display: flex; gap: 12px; }
.social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%;
  color: var(--text); transition: all var(--transition);
}
.social a svg { width: 16px; height: 16px; }
.social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.contact-map { border-radius: var(--radius); overflow: hidden; height: 460px; }
.contact-map iframe { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); padding: 64px 0 24px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo-img { height: 80px; }
.footer-text { font-size: 0.8rem; color: rgba(240,236,230,0.5); line-height: 1.7; max-width: 300px; margin-top: 16px; }
.footer-head { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-links a { display: flex; align-items: center; min-height: 28px; font-size: 0.8rem; color: rgba(240,236,230,0.55); margin-bottom: 6px; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-links p { font-size: 0.8rem; color: rgba(240,236,230,0.55); margin-bottom: 8px; }
.footer-bottom { padding-top: 24px; text-align: center; font-size: 0.7rem; color: rgba(240,236,230,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: 48px; }
  .about-img { height: 560px; }
  .contact-grid { gap: 56px; }
  .contact-map { height: 360px; }
  .google-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .instagram-editorial-copy { padding: 44px 38px; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hide-mobile { display: none; }
  html { scroll-padding-top: 100px; }

  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-dark); flex-direction: column; gap: 0;
    padding: 20px 28px; transform: translateY(-120%); opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    border-bottom: 1px solid rgba(255,255,255,0.06); visibility: hidden;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .pole-btn { display: flex; }

  .hero-title { font-size: 2rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-scroll { display: none; }
  .hero { min-height: auto; height: auto; aspect-ratio: 3 / 2; }
  .hero-static img { object-position: 58% 50%; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: clamp(400px, 72vw, 500px); }
  .about-slide--shop img { object-position: 50% 50%; }
  .about-slide--entrance img { object-position: 50% 42%; }
  .about-slide--station img { object-position: 50% 50%; }
  .about-slide--portrait img { object-position: 50% 44%; }
  .about-title { font-size: 1.5rem; }
  .about-stats { gap: 16px; margin-top: 28px; padding-top: 28px; }
  .stat-num { font-size: 1.5rem; }

  .prices-grid { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
  .logo-img { height: 85px; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-editorial { grid-template-columns: 1fr; min-height: 0; }
  .instagram-editorial-media { min-height: 360px; max-height: 460px; }
  .instagram-editorial-copy { padding: 42px 30px; }
  .reviews-page { padding: 72px 0 82px; }
  .google-reviews-summary { align-items: flex-start; gap: 28px; }
  .google-review-card { min-height: 0; }
  .google-reviews-fallback { padding: 48px 34px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { height: 280px; }

  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-text { max-width: 100%; }
}

@media (max-width: 480px) {
  .prices-grid { grid-template-columns: 1fr; max-width: 340px; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .google-reviews-summary { flex-direction: column; }
  .google-reviews-score { width: 100%; justify-content: space-between; }
  .reviews-rating-value { font-size: 3.35rem; }
  .google-review-card { padding: 26px 24px 24px; border-radius: 16px; }
  .google-reviews-fallback { padding: 42px 24px; border-radius: 16px; }
  .reviews-google-link { width: 100%; }
}

/* ===== SERVICES PREVIEW (homepage) ===== */
.prices-grid--preview {
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
}
.prices-cta {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .prices-grid--preview { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .prices-grid--preview { grid-template-columns: 1fr; }
}

/* ===== CTA SECTION (homepage) ===== */
.page-cta-index {
  text-align: center;
  padding: 80px 0;
  background: var(--bg-dark);
}
.page-cta-index h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-cta-index p {
  color: rgba(240,236,230,0.65);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .page-cta-index { padding: 60px 0; }
}

/* ===== RESPONSIVE BOOKING BUTTONS ===== */

.booking-desktop {
  display: inline-flex;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid rgba(196,144,90,0.3);
  transition: all var(--transition);
}

.booking-desktop:hover {
  color: #e0b88a;
  border-color: rgba(196,144,90,0.6);
  box-shadow: 0 0 24px rgba(196,144,90,0.2);
  transform: translateY(-1px);
}

.booking-mobile {
  display: none !important;
}

.booking-mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  .booking-desktop {
    display: none !important;
  }

  .booking-mobile {
    display: none !important;
  }

  .booking-mobile-menu {
    display: block;
    color: var(--accent) !important;
    font-weight: 700;
  }

}

/* ===== PAGE TRANSITIONS ===== */
body {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(4px);
  transition: opacity 350ms ease, transform 350ms ease, filter 350ms ease;
}

body.page-loaded {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body.page-leaving {
  opacity: 0;
  transform: translateY(-12px);
  filter: blur(4px);
}

/* ===== PREMIUM DESIGN SYSTEM & BOOKING WIZARD ===== */
:root {
  --bg-premium: #0f0d0c;
  --text-premium: #fafaf9;
  --gold-premium: #d4af37;
  --gold-hover: #f1c40f;
  --wheat-premium: #e5d3b3;
  --charcoal-premium: #1c1917;
  --border-premium: rgba(212, 175, 55, 0.15);
  --glass-bg: rgba(15, 13, 12, 0.75);
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  --glow-premium: 0 0 20px rgba(212, 175, 55, 0.35);
}

/* Base Body override for Booking page and generic premium look */
#bookingPage {
  background: radial-gradient(circle at 50% 0%, #201a15 0%, var(--bg-premium) 80%);
  min-height: 100vh;
  padding: 60px 0 100px;
}

.text-gold {
  color: var(--gold-premium) !important;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-premium);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  padding: 40px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--glass-shadow), 0 0 30px rgba(212, 175, 55, 0.04);
}

/* Auth Section Containers */
.auth-container {
  max-width: 480px;
  margin: 0 auto;
}
.auth-card {
  animation: cardFadeIn 0.5s ease-out;
}
.auth-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-premium);
  text-align: center;
  margin-bottom: 8px;
}
.auth-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}
.auth-toggle-text {
  text-align: center;
  font-size: 0.82rem;
  margin-top: 24px;
  color: var(--text-muted);
}
.auth-toggle-text a {
  color: var(--gold-premium);
  font-weight: 600;
  transition: color 0.2s;
}
.auth-toggle-text a:hover {
  color: var(--gold-hover);
}

/* Floating Input Groups */
.input-group {
  position: relative;
  margin-bottom: 24px;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  outline: none;
  font-size: 0.9rem;
  color: var(--text-premium);
  font-family: var(--font);
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.input-group textarea {
  resize: vertical;
}
.input-group input:focus,
.input-group textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-premium);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}
.input-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.input-group textarea ~ label {
  top: 28px;
}
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  left: 14px;
  font-size: 0.72rem;
  color: var(--gold-premium);
  background: var(--bg-premium);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Form Buttons */
.btn--block {
  width: 100%;
  text-align: center;
}
.btn--sm {
  padding: 10px 24px;
  font-size: 0.7rem;
}
.btn--glow {
  box-shadow: var(--glow-premium);
}
.btn--glow:hover {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.55);
}

/* Booking Dashboard Area */
.booking-app-container {
  animation: fadeIn 0.6s ease;
}
.booking-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  margin-bottom: 32px;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-premium), var(--wheat-premium));
  color: var(--bg-premium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.user-welcome {
  font-size: 1.1rem;
  color: var(--text-premium);
  font-weight: 600;
}
.user-email {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Dashboard Grid Layout */
.booking-dashboard-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.panel-header {
  border-bottom: 1px solid var(--border-premium);
  padding-bottom: 16px;
  margin-bottom: 28px;
}
.panel-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-premium);
}

/* Multi-step Forms */
.booking-step {
  display: none;
  animation: stepFadeIn 0.4s ease-out;
}
.booking-step.active {
  display: block;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-premium);
  color: var(--bg-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.step-header h3 {
  font-size: 1.05rem;
  color: var(--text-premium);
  letter-spacing: 1px;
}

/* STEP 1: Select Service Selectable Cards Grid */
.services-select-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 28px;
}
.services-select-grid::-webkit-scrollbar {
  width: 6px;
}
.services-select-grid::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: 10px;
}
.service-select-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
}
.service-select-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(4px);
}
.service-select-card.selected {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-premium);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
.service-select-badge {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  background: var(--gold-premium);
  color: var(--bg-premium);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
}
.service-select-title {
  font-size: 0.9rem;
  color: var(--text-premium);
  font-weight: 600;
  margin-bottom: 4px;
}
.service-select-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 80%;
}
.service-select-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-premium);
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  border-top: 1px solid var(--border-premium);
  padding-top: 24px;
  margin-top: 24px;
}

/* STEP 2: Date & Time Picker Layout */
.datetime-picker-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.picker-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-premium);
  margin-bottom: 12px;
  font-weight: 600;
}
.custom-date-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-premium);
  font-family: var(--font);
  transition: border-color 0.3s;
}
.custom-date-input:focus {
  border-color: var(--gold-premium);
}
.custom-date-input::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(0.6);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.custom-date-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
}
.time-slots-grid::-webkit-scrollbar {
  width: 4px;
}
.time-slots-grid::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.15);
  border-radius: 4px;
}
.time-slot-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-premium);
  border-radius: 6px;
  padding: 10px 0;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-premium);
}
.time-slot-btn.selected {
  background: var(--gold-premium);
  border-color: var(--gold-premium);
  color: var(--bg-premium);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.no-slots-msg {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 20px 0;
}

/* STEP 3: Summary details Box */
.booking-summary-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-premium);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}
.summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.summary-row:first-child {
  padding-top: 0;
}
.summary-label {
  color: var(--text-muted);
}
.summary-val {
  color: var(--text-premium);
  font-weight: 600;
}

/* ===== APPOINTMENTS PANEL (right side) ===== */

/* Segmented Tabs */
.segmented-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  padding: 4px;
}
.seg-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 50px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.seg-tab:hover:not(.active) {
  color: var(--text-premium);
  background: rgba(255,255,255,0.03);
}
.seg-tab.active {
  background: var(--gold-premium);
  color: var(--bg-dark);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
}
.seg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 6px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: all 0.35s ease;
}
.seg-tab.active .seg-badge {
  background: rgba(0,0,0,0.15);
  color: var(--bg-dark);
}

/* Helper text */
.appointment-helper-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin: -6px 0 18px;
  padding: 10px 16px;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Scrollable list */
.appointments-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 4px;
}
.appointments-scroll::-webkit-scrollbar {
  width: 4px;
}
.appointments-scroll::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.15);
  border-radius: 10px;
}
.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-loading {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 48px 0;
}
.appt-empty {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 48px 0;
  letter-spacing: 0.3px;
}

/* Appointment Card */
.appt-card {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.appt-card:hover {
  border-color: rgba(212, 175, 55, 0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.appt-card--past {
  opacity: 0.45;
}
.appt-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.appt-card-info {
  flex: 1;
  min-width: 0;
}
.appt-card-service {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-premium);
  margin-bottom: 10px;
  line-height: 1.3;
}
.appt-card-date,
.appt-card-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--wheat-premium);
  margin-bottom: 4px;
}
.appt-card-date svg,
.appt-card-time svg {
  flex-shrink: 0;
  opacity: 0.6;
  color: var(--gold-premium);
}

/* Status Badge */
.appt-card-status {
  flex-shrink: 0;
}
.appt-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.appt-badge--upcoming {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-premium);
}
.appt-badge--done {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* Notes */
.appt-card-notes {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 2px solid var(--border-premium);
  line-height: 1.5;
}

/* Cancel button */
.appt-card-action {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: flex-end;
}
.appt-cancel-btn {
  font-size: 0.68rem;
  padding: 10px 24px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Montserrat', sans-serif;
}
.appt-cancel-btn:hover {
  border-color: #c41e3a;
  color: #c41e3a;
  background: rgba(196, 30, 58, 0.06);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.06);
}

/* SUCCESS VIEWS & CHECKMARK ANIMATION */
.success-checkmark-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  animation: scaleUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.success-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-premium);
  margin-top: 24px;
  margin-bottom: 8px;
}
.success-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 320px;
}
.checkmark-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--gold-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.checkmark-draw {
  width: 14px;
  height: 28px;
  border-right: 4px solid var(--gold-premium);
  border-bottom: 4px solid var(--gold-premium);
  transform: rotate(45deg) translate(-2px, -4px);
  animation: drawCheck 0.3s ease-out 0.2s forwards;
  opacity: 0;
}

/* Keyframe Animations */
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes drawCheck {
  from { opacity: 0; width: 0; height: 0; }
  to { opacity: 1; width: 14px; height: 28px; }
}

/* ===== NOTIFICATION TOAST ===== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-premium);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(212, 175, 55, 0.15);
  color: var(--text-premium);
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  pointer-events: none;
}
.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Booking Style Overrides */
@media (max-width: 1024px) {
  .booking-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  #bookingPage {
    padding: 40px 0 80px;
  }
  .glass-card {
    padding: 24px;
  }
  .datetime-picker-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-user-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .user-actions {
    width: 100%;
  }
  .user-actions .btn {
    width: 100%;
  }
}

/* Pulsing Gold Glow for Call-to-actions */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.booking-desktop {
  animation: pulseGlow 2.5s infinite;
}
.btn--primary {
  animation: pulseGlow 3.5s infinite;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  body,
  body.page-loaded,
  body.page-leaving { opacity: 1; transform: none; filter: none; }
  .reveal { opacity: 1; transform: none; }
  .about-slide {
    display: block;
    opacity: 0;
    transition: opacity 180ms linear !important;
  }
  .about-slide.is-active { opacity: 1; }
  .about-slide.is-previous { opacity: 0; }
  .about-slide img {
    animation: none !important; transform: none !important; filter: none !important;
    transition: none !important;
  }
}
