/* ========================================
   EFFE STUDIO BARBER CLUB
   Modern, light, clean — matches the real shop
   ======================================== */

/* ---------- Accessibility / SEO ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Variables ---------- */
:root {
  --black: #111111;
  --dark: #1a1a1a;
  --gray-900: #222;
  --gray-700: #555;
  --gray-500: #888;
  --gray-400: #aaa;
  --gray-300: #ccc;
  --gray-200: #e0dcd7;
  --gray-100: #e8e4df;
  --cream: #f5f2ed;
  --white: #fafaf8;
  --bg: #fafaf8;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* ---------- Typography ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn--hero {
  background: #ffffff;
  color: var(--black);
  font-size: 0.85rem;
  padding: 16px 36px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 4px 24px rgba(255, 255, 255, 0.18);
  animation: heroBtnGlow 2.8s ease-in-out infinite;
}

.btn--hero:hover {
  background: #f0f0ee;
  transform: translateY(-3px);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08), 0 12px 40px rgba(255, 255, 255, 0.28);
}

@keyframes heroBtnGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45), 0 4px 24px rgba(255, 255, 255, 0.18);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0), 0 4px 32px rgba(255, 255, 255, 0.3);
  }
}

.btn--white {
  background: var(--white);
  color: var(--black);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 0.85rem;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn--inline {
  margin-top: 28px;
}

/* ========== LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from {
    opacity: 0.4;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader__circle {
  width: 80px;
  height: 80px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.loader__circle span {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.loader__circle small {
  font-family: var(--font);
  font-size: 0.35rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  text-transform: uppercase;
}

.loader__bar {
  width: 120px;
  height: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.loader__progress {
  height: 100%;
  background: var(--black);
  border-radius: 2px;
  animation: loaderBar 1.2s var(--ease) forwards;
}

@keyframes loaderBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  flex-shrink: 0;
  z-index: 1001;
}

.nav__logo-circle {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: transform 0.3s var(--ease);
}

.nav__logo-circle:hover {
  transform: scale(1.05);
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.nav__logo-sub {
  font-size: 0.22rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--black);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}

/* White bars when floating over the dark hero, but not when the X is open */
.nav:not(.nav--scrolled) .nav__toggle:not(.active) span {
  background: #ffffff;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  padding: 12px 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
  letter-spacing: -0.02em;
}

.mobile-menu.open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu__link:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.open .mobile-menu__link:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.open .mobile-menu__link:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.open .mobile-menu__link:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu.open .mobile-menu__link:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-menu__link:hover {
  opacity: 0.5;
}

.mobile-menu__book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  padding: 16px 40px;
  border-radius: 100px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open .mobile-menu__book {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.mobile-menu__footer {
  margin-top: 48px;
  font-size: 0.75rem;
  color: var(--gray-500);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open .mobile-menu__footer {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}

.mobile-menu__footer p {
  margin-bottom: 4px;
}

.mobile-menu__footer a {
  color: var(--black);
  font-weight: 600;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 20px 80px;
  background: #111;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.55;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero__bg--loaded {
  transform: scale(1);
}

.hero__canvas {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__left {
  flex: 1;
  min-width: 0;
}

.hero__book {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__book-btn {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  animation: heroBtnGlow 2.8s ease-in-out infinite;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
  cursor: pointer;
}

.hero__book-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 10px rgba(255,255,255,0.08), 0 16px 48px rgba(255,255,255,0.3);
}

.hero__book-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--black);
}

.hero__book-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--black);
}

.hero__book-btn svg {
  margin-top: 6px;
  color: var(--gray-500);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero__title {
  margin-bottom: 24px;
}

.hero__title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero__title-line--accent {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}

.hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 640px) {
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__book {
    width: 100%;
    justify-content: flex-start;
    margin-top: 8px;
  }
  .hero__book-btn {
    width: 160px;
    height: 160px;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-track {
  width: 2px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.hero__scroll-thumb {
  width: 100%;
  height: 50%;
  background: #ffffff;
  border-radius: 2px;
  animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* Hero entry animations */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  animation: animUp 0.8s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes animUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== MARQUEE ========== */
.marquee {
  padding: 20px 0;
  background: var(--black);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  flex-shrink: 0;
}

.marquee__content span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.marquee__dot {
  width: 5px !important;
  height: 5px;
  background: var(--gray-500);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========== ABOUT ========== */
.about {
  background: var(--cream);
  padding: 80px 0;
}

.about__layout {
  display: grid;
  gap: 56px;
}

.about__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__visual-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.about__visual-card:hover {
  transform: translateY(-4px);
}

.about__visual-card--1 {
  grid-column: span 2;
  background: var(--black);
  color: var(--white);
}

.about__visual-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
}

.about__visual-card--1 .about__visual-inner {
  min-height: 200px;
}

.about__visual-photo {
  position: relative;
  height: 425px;
  overflow: hidden;
  border-radius: var(--radius);
}

.about__visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.about__visual-card:hover .about__visual-photo img {
  transform: scale(1.04);
}

.about__visual-photo .about__visual-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.about__visual-icon svg {
  width: 56px;
  height: 56px;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0.7;
}

.about__visual-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Stats ring */
.about__stats-ring {
  position: relative;
  width: 100px;
  height: 100px;
}

.about__stats-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stats-ring__fill {
  transition: stroke-dashoffset 1.5s var(--ease-out);
}

.about__stats-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__stats-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.about__stats-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Rating */
.about__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.about__rating-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.about__rating-stars {
  display: flex;
  gap: 2px;
}

.about__rating-src {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* About text */
.about__text .tag {
  margin-bottom: 12px;
}

.about__lead {
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__body p {
  color: var(--gray-700);
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ========== SERVICES ========== */
.services {
  background: var(--white);
  padding: 80px 0;
}

.services__header {
  margin-bottom: 48px;
}

.services__intro {
  font-size: 0.9rem;
  color: var(--gray-500);
  max-width: 400px;
}

.services__grid {
  display: grid;
  gap: 48px;
}

.services__cat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--black);
}

.services__cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
}

.services__cat-icon svg {
  color: var(--black);
}

/* Service card */
.service {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease);
  color: inherit;
  text-decoration: none;
  position: relative;
}

.service:hover {
  padding-left: 8px;
}

.service--highlight {
  background: var(--cream);
  padding: 20px 16px;
  margin: 8px -16px;
  border-radius: var(--radius-sm);
  border-bottom: none;
}

.service--highlight:hover {
  padding-left: 20px;
  background: #ebe7e0;
}

.service__badge {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 3px 10px;
  border-radius: 100px;
}

.service__info {
  flex: 1;
  min-width: 0;
}

.service__info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 2px;
}

.service__info p {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.service__price .price-old {
  text-decoration: line-through;
  opacity: 0.45;
  font-size: 1rem;
  font-weight: 400;
  margin-right: 0.3rem;
}

.service__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  line-height: 1;
}

.service__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s var(--ease);
}

.service:hover .service__arrow {
  opacity: 1;
  transform: translateX(0);
}

.services__cta {
  margin-top: 32px;
  text-align: center;
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}

.gallery__header {
  margin-bottom: 40px;
}

.gallery__scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 20px;
}

.gallery__scroller::-webkit-scrollbar {
  display: none;
}

.gallery__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-right: 20px;
}

.gallery__card {
  width: 260px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}

.gallery__card:hover {
  transform: translateY(-6px);
}

.gallery__card-visual {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery__card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.gallery__card:hover .gallery__card-visual img {
  transform: scale(1.05);
}

.gallery__card-visual svg {
  width: 60%;
  height: 60%;
  opacity: 0.7;
  transition: all 0.5s var(--ease);
}

.gallery__card:hover .gallery__card-visual svg {
  opacity: 1;
  transform: scale(1.05);
}

.gallery__card-label {
  display: block;
  padding: 16px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--white);
  padding: 80px 0;
}

.reviews__header {
  margin-bottom: 48px;
}

.reviews__grid {
  display: grid;
  gap: 16px;
}

.review {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.4s var(--ease);
}

.review:hover {
  transform: translateY(-4px);
}

.review__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review__avatar {
  width: 40px;
  height: 40px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.review__top strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.review__top span {
  font-size: 0.7rem;
  color: var(--gray-500);
}

.review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

/* ========== CTA ========== */
.cta {
  background: var(--white);
  padding: 40px 0 80px;
}

.cta__box {
  position: relative;
  background: var(--black);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  padding: 64px 24px;
}


.cta__canvas {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta__text {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta__micro {
  font-size: 0.68rem;
  color: var(--gray-500);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ========== LOCATION ========== */
.location {
  background: var(--cream);
  padding: 80px 0;
}

.location__layout {
  display: grid;
  gap: 48px;
}

.location__details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location__item {
  display: flex;
  gap: 16px;
}

.location__icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location__icon svg {
  color: var(--black);
}

.location__item h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.location__item p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.location__hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location__hours div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location__hours div span:first-child {
  color: var(--black);
  font-weight: 500;
}

.location__closed {
  color: var(--gray-400) !important;
  font-style: italic;
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  background: var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.location__map iframe {
  display: block;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--white);
  padding: 80px 0;
}

.contact__layout {
  display: grid;
  gap: 40px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.35s var(--ease);
}

.contact__link:hover {
  padding-left: 8px;
}

.contact__link-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  min-width: 100px;
}

.contact__link-value {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.contact__link svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: all 0.3s var(--ease);
}

.contact__link:hover svg {
  color: var(--black);
  transform: translate(2px, -2px);
}

.contact__link--book {
  border-bottom: none;
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.contact__link--book:hover {
  background: #ebe7e0;
  padding-left: 24px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 32px;
}

.footer__top {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__logo small {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__book {
  display: flex;
  align-items: flex-start;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__bottom p {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ========== STICKY MOBILE BAR ========== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06), 0 -8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar__left {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sticky-bar__left strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

.sticky-bar__left span {
  font-size: 0.65rem;
  color: var(--gray-500);
}

.sticky-bar__btn {
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.sticky-bar__btn:active {
  transform: scale(0.97);
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 120px 0;
  }

  .about,
  .services,
  .gallery,
  .reviews,
  .cta,
  .location,
  .contact {
    padding: 120px 0;
  }

  .cta {
    padding: 40px 0 120px;
  }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__toggle {
    display: none;
  }

  .about__layout {
    grid-template-columns: 5fr 6fr;
    gap: 64px;
    align-items: center;
  }

  .about__visual {
    gap: 16px;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .gallery__card {
    width: 300px;
  }

  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .cta__box {
    padding: 96px 48px;
  }

  .location__layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .location__map {
    min-height: 440px;
  }

  .contact__layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
  }

  .footer__top {
    grid-template-columns: 1fr auto auto;
    gap: 64px;
    align-items: start;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .sticky-bar {
    display: none;
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .hero {
    padding: 140px 40px 100px;
  }

  .hero__title-line {
    font-size: clamp(5rem, 9vw, 8rem);
  }

  .hero__canvas {
    opacity: 0.6;
  }

  .gallery__card {
    width: 320px;
  }

  .about__visual-card--1 .about__visual-inner {
    min-height: 240px;
  }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .anim-up {
    opacity: 1;
    transform: none;
  }

  .mobile-menu.open .mobile-menu__link,
  .mobile-menu.open .mobile-menu__book,
  .mobile-menu.open .mobile-menu__footer {
    transform: none;
    opacity: 1;
  }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

/* Mobile bottom padding for sticky bar */
@media (max-width: 767px) {
  .footer {
    padding-bottom: 88px;
  }
}