/* ═══════════════════════════════════════════════════════════════════════
   MOE'S CUTS BARBERSHOP — Premium Redesign
   Place at: assets/css/style.css
   No PHP / JS changes needed.
═══════════════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=Montserrat:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────────────── */
:root {
  /* Core palette — matches the M logo (black bg, crimson M) */
  --black:      #080808;
  --black2:     #111113;
  --black3:     #1a1a1d;
  --black4:     #252529;
  --crimson:    #c0392b;
  --crimson2:   #e74c3c;
  --crimson3:   #ff6b6b;
  --gold:       #b8983a;
  --gold2:      #d4ae52;
  --gold3:      #e8c96a;
  --offwhite:   #f4f0eb;
  --offwhite2:  #ece8e2;
  --cream:      #faf8f5;
  --text:       #18181b;
  --muted:      #71717a;
  --muted2:     #a1a1aa;

  /* Typography */
  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', 'Georgia', serif;

  /* Layout */
  --container:  1280px;
  --header-h:   80px;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.12);
  --shadow:     0 8px 32px rgba(0,0,0,.18);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.28);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.4);

  /* Transitions */
  --ease:       cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* must be on BOTH html + body to prevent layout shift */
}
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── Container ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* Every section is clamped to the viewport — prevents child overflow from shifting layout */
.hero-slider,
.join-us-section,
.about-modern-section,
#Services.section,
.working-hours-section,
.our-team-section,
.contact-section,
.footer {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── Typography Utilities ───────────────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 112px) 0; }

.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 48px;
  max-width: 520px;
}
.accent { color: var(--crimson); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: var(--black3);
  color: #fff;
  border-color: rgba(255,255,255,.15);
}
.btn:hover { background: var(--black4); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }

.btn-primary {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson2);
  border-color: var(--crimson2);
  box-shadow: 0 8px 28px rgba(192,57,43,.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black);
  border-color: transparent;
  font-weight: 800;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  box-shadow: 0 8px 24px rgba(184,152,58,.35);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════════════ */
.top-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s var(--ease);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  /* No gap — logo image IS the brand, no text needed */
}
.logo-img {
  height: 52px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
}
/* Fallback: shown if logo file fails to load */
.logo-fallback {
  display: none;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  letter-spacing: .06em;
  white-space: nowrap;
}
/* Hide the text span — logo image carries the full brand name */
.brand-text {
  display: none;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 24px;
}
.nav a {
  padding: 8px 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  border-radius: var(--radius-sm);
  transition: all .2s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.nav a i {
  font-size: .75rem;
  color: var(--gold);
  transition: color .2s;
  flex-shrink: 0;
}
.nav a:hover i { color: var(--crimson); }

/* Welcome user pill (profile.php) */
.welcome-user {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.3);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--crimson3);
  white-space: nowrap;
}
.welcome-user::before {
  content: '✦';
  font-size: .6rem;
  color: var(--crimson);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta .btn {
  padding: 9px 18px;
  font-size: .7rem;
}

/* Login link hidden on desktop — only shown inside mobile nav */
.nav-login-mobile { display: none; }

/* Hamburger */
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  margin-left: 8px;
}
.menu-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 1000px;
  margin-top: var(--header-h);
  overflow: hidden;
}

.slides { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.slide.is-active { opacity: 1; z-index: 2; }

.slide-media {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,.88) 0%,
    rgba(8,8,8,.55) 50%,
    rgba(8,8,8,.2) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  z-index: 3;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

/* ── Big centered hero logo ── */
.hero-logo-wrap {
  margin-bottom: 32px;
}
.hero-logo-img {
  width: auto;
  height: clamp(180px, 28vw, 360px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.1);
  animation: heroLogoIn 1s var(--ease) both;
}
.hero-logo-fallback {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: .06em;
  animation: heroLogoIn 1s var(--ease) both;
}
.hero-logo-fallback span { color: var(--crimson); font-style: italic; }
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(-20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 680px;
  text-align: center;
}
.slide-title .accent { color: var(--crimson); font-style: italic; }

.slide-text {
  font-size: clamp(.82rem, 1.3vw, .95rem);
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
  text-align: center;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(8,8,8,.5);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.slider-arrow:hover { background: var(--crimson); border-color: var(--crimson); transform: translateY(-50%) scale(1.08); }
.slider-arrow.left  { left: 32px; }
.slider-arrow.right { right: 32px; }
.slider-arrow span  { font-size: 24px; line-height: 1; }

.slider-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dots button {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  transition: all .3s;
}
.slider-dots button.is-active {
  background: var(--crimson);
  width: 28px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════
   JOIN US SECTION
═══════════════════════════════════════════════════════════════════════ */
.join-us-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.join-us-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}

.join-us-wrapper {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.join-us-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}
.join-us-image-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.join-us-image-card:hover img { transform: scale(1.05); }
.join-us-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,.7) 100%);
  z-index: 1;
}

.join-us-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--crimson);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(192,57,43,.5);
}

.join-us-topline { @extend .section-eyebrow; }
.join-us-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.join-us-topline::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.join-us-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}
.join-us-heading span { display: block; color: var(--crimson); font-style: italic; }

.join-us-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 36px;
}

.join-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.join-us-box {
  padding: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid var(--crimson);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.join-us-box:hover { border-top-color: var(--gold); }
.join-us-box h3 {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.join-us-list { display: flex; flex-direction: column; gap: 9px; }
.join-us-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.join-us-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-weight: 700;
}

.join-us-highlight {
  padding: 18px 22px;
  background: rgba(192,57,43,.08);
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.join-us-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.join-us-note {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  flex: 1;
  min-width: 160px;
}

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════════════ */
.about-modern-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-modern-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-modern-image {
  position: relative;
  overflow: visible; /* decorative frame is intentionally outside on desktop */
}
.about-modern-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
/* Decorative frame */
.about-modern-image::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 24px; bottom: 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .4;
}

.about-modern-floating {
  position: absolute;
  bottom: 28px;
  right: 0;          /* was -16px — that hangs outside the viewport on mobile */
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100% - 16px); /* never wider than the image */
}
.about-modern-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--black);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-modern-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-modern-topline::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.about-modern-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.about-modern-title span { display: block; color: var(--crimson); font-style: italic; }

.about-modern-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-modern-story { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.about-modern-story p { font-size: .95rem; color: #3d3d42; line-height: 1.8; }

.about-modern-quote {
  padding: 18px 22px;
  background: rgba(184,152,58,.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-modern-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--offwhite2);
}
.about-modern-stat { text-align: center; }
.about-modern-stat .number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 6px;
}
.about-modern-stat .label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════════════ */
#Services.section {
  background: var(--black2);
  padding: clamp(64px, 8vw, 112px) 0;
}
#Services .h2 { color: #fff; }
#Services .sub { color: rgba(255,255,255,.5); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 20px;
}

.card.service-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  position: relative;
}
.card.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.card.service-card:hover::after { transform: scaleX(1); }

.service-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--black4);
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.card.service-card:hover .service-image img { transform: scale(1.08); }
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,.6) 100%);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  padding: 20px 20px 8px;
  letter-spacing: -.01em;
}

.service-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  padding: 0 20px 14px;
  line-height: 1.65;
}

.service-points {
  padding: 0 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.service-points li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .84rem;
  color: rgba(255,255,255,.65);
}
.service-points li:last-child { border-bottom: 0; }
.service-points li strong {
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.service-actions {
  padding: 16px 20px 22px;
}
.service-actions .btn-primary { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════
   WORKING HOURS
═══════════════════════════════════════════════════════════════════════ */
.working-hours-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--offwhite);
  position: relative;
}
.working-hours-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--crimson) 30%, var(--gold) 70%, transparent);
}

.working-hours-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.working-hours-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.working-hours-topline::before,
.working-hours-topline::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.working-hours-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 12px;
}
.working-hours-title span { color: var(--crimson); font-style: italic; }
.working-hours-sub { font-size: .95rem; color: var(--muted); }

.working-hours-wrap { max-width: 1000px; margin: 0 auto; }

/* ── Grid: 3 columns on desktop, 2 on tablet, 1 on mobile ── */
.working-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Each card is a clean vertical block ── */
.hour-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  transition: all .28s var(--ease);
  position: relative;
  overflow: hidden;
}
.hour-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.hour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.hour-card:hover::before { transform: scaleX(1); }

/* Icon row */
.hour-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.hour-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

/* Day name — large and bold */
.hour-day-info { display: flex; flex-direction: column; gap: 2px; }
.hour-day {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  line-height: 1;
}
.hour-date {
  font-size: .72rem;
  color: var(--muted2);
  font-weight: 500;
}

/* Divider */
.hour-divider {
  height: 1px;
  background: var(--offwhite2);
  margin-bottom: 14px;
}

/* Bottom row: time left, status right */
.hour-card-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.hour-time {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
.hour-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.hour-status::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.hour-status.open {
  background: rgba(22,163,74,.1);
  color: #16a34a;
  border: 1px solid rgba(22,163,74,.22);
}
.hour-status.closed {
  background: rgba(192,57,43,.08);
  color: var(--crimson);
  border: 1px solid rgba(192,57,43,.2);
}

.working-hours-empty {
  text-align: center;
  padding: 56px 32px;
  color: var(--muted);
  background: #fff;
  border-radius: 20px;
  border: 1px dashed var(--offwhite2);
  font-size: .95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   OUR TEAM
═══════════════════════════════════════════════════════════════════════ */
.our-team-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
}
/* Decorative large M watermark */
.our-team-section::before {
  content: 'M';
  position: absolute;
  right: -60px; top: -80px;
  font-family: var(--font-serif);
  font-size: clamp(300px, 40vw, 600px);
  color: rgba(255,255,255,.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.our-team-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.our-team-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.our-team-topline::before,
.our-team-topline::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.our-team-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 14px;
}
.our-team-title span { color: var(--crimson); font-style: italic; }
.our-team-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.our-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: 24px;
}

.team-member-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all .35s var(--ease);
  position: relative;
}
.team-member-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192,57,43,.3);
  box-shadow: 0 28px 72px rgba(0,0,0,.5);
}

.team-member-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--black4);
}
.team-member-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s var(--ease);
}
.team-member-card:hover .team-member-image { transform: scale(1.06); }
.team-member-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,.85) 100%);
}

.team-member-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--crimson);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(192,57,43,.5);
}

.team-member-content { padding: 24px; }
.team-member-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 4px;
  line-height: 1;
}
.team-member-role {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-member-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 20px;
}
.team-member-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.team-member-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.team-member-pill i { color: var(--gold); font-size: .65rem; }

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  padding: clamp(64px, 8vw, 112px) 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-left .h2 { color: var(--text); }
.contact-left .sub { color: var(--muted); margin-bottom: 32px; }
.contact-phone {
  color: var(--crimson);
  font-weight: 700;
  transition: color .2s;
}
.contact-phone:hover { color: var(--crimson2); }

.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--offwhite2);
  border-radius: var(--radius);
  border-left: 3px solid var(--crimson);
  transition: all .22s;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { transform: translateX(4px); border-left-color: var(--gold); box-shadow: var(--shadow); }
.contact-card strong {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}
.contact-card span, .contact-card a {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
}
.contact-card a:hover { color: var(--crimson); }

/* Form */
.contact-form {
  background: var(--black);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}

.contact-form label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 7px;
  margin-top: 18px;
}
.contact-form label:first-of-type { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .92rem;
  transition: all .22s;
  outline: none;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--crimson);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(192,57,43,.15);
}
.contact-form select { cursor: pointer; color: rgba(255,255,255,.8); }
.contact-form select option { background: var(--black2); color: #fff; }
.contact-form textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row > div { display: flex; flex-direction: column; }

.contact-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: .8rem;
  margin-top: 24px;
  background: var(--crimson);
  color: #fff;
  border: none;
}
.contact-btn:hover {
  background: var(--crimson2);
  box-shadow: 0 8px 28px rgba(192,57,43,.4);
}

.contact-alert { margin-top: 14px; font-size: .88rem; font-weight: 600; min-height: 20px; }
.contact-alert.success { color: #4ade80; }
.contact-alert.error   { color: var(--crimson3); }

.contact-note {
  margin-top: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}
.contact-note a { color: rgba(255,255,255,.5); transition: color .2s; }
.contact-note a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.footer {
  /* Fixed to bottom on ALL devices — just call button + social icons */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 10px 0;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson) 30%, var(--gold) 70%, transparent);
}

/* Push page content above the fixed footer */
body { padding-bottom: 68px; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}

/* Hide brand text — footer is minimal */
.footer-brand { display: none; }
.footer-small  { display: none; }

/* Left side — social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Right side — call + location buttons */
.footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-left: auto;
}

/* Call button — large and prominent */
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--crimson);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.footer-call-btn:hover {
  background: var(--crimson2);
  box-shadow: 0 4px 20px rgba(192,57,43,.5);
  transform: translateY(-1px);
}
.footer-call-btn i { font-size: .88rem; }

/* Location button */
.footer-location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-location-btn:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-1px);
}
.footer-location-btn i { font-size: .88rem; color: var(--gold); }

/* Social icons — compact row */
.social-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  transition: all .22s;
  flex-shrink: 0;
}
.social-icon:hover { transform: translateY(-2px); }
.social-icon.instagram:hover {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  border-color: transparent; color: #fff;
}
.social-icon.facebook:hover {
  background: #1877f2;
  border-color: transparent; color: #fff;
}
.social-icon.tiktok:hover {
  background: #111;
  border-color: transparent; color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════ */

/* Tablet – 1024px */
/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 1024px  (large tablet)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-modern-floating  { right: 0; }
  .join-us-wrapper        { grid-template-columns: 1fr 1.1fr; gap: 40px; }
  .about-modern-wrapper   { gap: 48px; }
  .working-hours-grid     { grid-template-columns: repeat(3, 1fr); }
  .our-team-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap           { gap: 48px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 900px  (tablet / hamburger nav)
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Header — hamburger */
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(8,8,8,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 16px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 900;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a            { padding: 13px 16px; font-size: .9rem; width: 100%; border-radius: var(--radius-sm); }
  .nav a::after     { display: none; }
  .welcome-user     { margin: 4px 0; border-radius: var(--radius-sm); justify-content: flex-start; }
  .menu-btn         { display: flex; }
  .header-cta .btn:first-child { display: none; }

  /* Login button inside mobile nav */
  .nav-login-mobile {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 13px 16px !important;
    background: var(--crimson);
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-size: .8rem !important;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-login-mobile i { color: #fff !important; font-size: .85rem; }
  .nav-login-mobile:hover { background: var(--crimson2) !important; }

  /* Sections go single column */
  .join-us-wrapper        { grid-template-columns: 1fr; }
  .join-us-image-card     { aspect-ratio: 16/9; max-height: 380px; }
  .join-us-grid           { grid-template-columns: 1fr 1fr; }

  .about-modern-wrapper   { grid-template-columns: 1fr; }
  .about-modern-image     { max-width: 480px; margin: 0 auto; }
  .about-modern-image::before { display: none; }
  .about-modern-floating  { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 16px; justify-content: center; gap: 8px; }
  .about-modern-stats     { grid-template-columns: repeat(3, 1fr); }

  .working-hours-grid     { grid-template-columns: repeat(2, 1fr); }

  .our-team-grid          { grid-template-columns: repeat(2, 1fr); }

  .contact-wrap           { grid-template-columns: 1fr; }
  .contact-left           { max-width: 560px; margin: 0 auto; text-align: center; }
  .contact-cards          { text-align: left; }
  .contact-form           { max-width: 560px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 640px  (mobile)
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  :root {
    --header-h: 64px;
  }

  body { padding-bottom: 60px; }

  /* Header */
  .logo-img         { height: 40px !important; width: auto !important; max-width: 160px; }
  .header-cta       { gap: 6px; }
  .header-cta .btn  { padding: 7px 12px; font-size: .68rem; letter-spacing: .06em; }

  /* Hero — logo big and centered */
  .hero-slider      { height: calc(100svh - var(--header-h)); min-height: 500px; max-height: 780px; }
  .hero-logo-img    { height: clamp(100px, 32vw, 180px); max-width: 82vw; }
  .hero-logo-wrap   { margin-bottom: 14px; }
  .slide-title      { font-size: clamp(1.1rem, 4.5vw, 1.6rem); margin-bottom: 14px; }
  .slide-text       { font-size: .72rem; margin-bottom: 22px; }
  .slide-actions    { flex-direction: column; gap: 10px; }
  .slide-actions .btn { width: 100%; justify-content: center; padding: 12px 20px; }
  .slider-arrow     { display: none; }
  .slider-dots      { bottom: 24px; }

  /* Join Us */
  .join-us-section  { padding: 56px 0; }
  .join-us-image-card { aspect-ratio: 4/3; max-height: 300px; }
  .join-us-grid     { grid-template-columns: 1fr; gap: 12px; }
  .join-us-heading  { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .join-us-desc     { font-size: .88rem; }
  .join-us-footer   { flex-direction: column; gap: 12px; }
  .join-us-footer .btn { width: 100%; justify-content: center; }

  /* About */
  .about-modern-section { padding: 56px 0; }
  .about-modern-image   { max-width: 100%; }
  .about-modern-title   { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .about-modern-subtitle { font-size: .9rem; }
  .about-modern-stats   { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-modern-chip    { font-size: .68rem; padding: 8px 12px; }
  .about-modern-floating { gap: 8px; }
  .about-modern-stat .number { font-size: 2rem; }
  .about-modern-stat .label  { font-size: .65rem; }
  .about-modern-quote   { font-size: .92rem; padding: 14px 16px; }

  /* Services */
  #Services.section { padding: 56px 0; }
  .services-grid    { grid-template-columns: 1fr; gap: 16px; }

  /* Working Hours */
  .working-hours-section { padding: 56px 0; }
  .working-hours-title   { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .working-hours-grid    { grid-template-columns: 1fr; gap: 12px; }
  .hour-card             { padding: 18px 16px 14px; border-radius: 14px; }
  .hour-icon             { width: 42px; height: 42px; font-size: 17px; }
  .hour-day              { font-size: .88rem; letter-spacing: .08em; }
  .hour-time             { font-size: .88rem; }
  .hour-status           { padding: 3px 10px; font-size: .6rem; }

  /* Team */
  .our-team-section  { padding: 56px 0; }
  .our-team-title    { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .our-team-grid     { grid-template-columns: 1fr; gap: 20px; }
  .team-member-name  { font-size: 1.6rem; }
  .team-member-desc  { font-size: .85rem; }

  /* Contact */
  .contact-section { padding: 56px 0; }
  .contact-wrap    { gap: 32px; }
  .contact-form    { padding: 22px 16px; border-radius: var(--radius-lg); }
  .form-row        { grid-template-columns: 1fr; gap: 0; }
  .form-row > div  { margin-bottom: 2px; }
  .contact-left    { text-align: left; }

  /* Footer */
  .footer-inner         { padding: 0; }
  .footer-call-btn      { padding: 8px 12px; font-size: .68rem; letter-spacing: .06em; }
  .footer-location-btn  { padding: 8px 10px; font-size: .68rem; letter-spacing: .04em; }
  .footer-actions       { gap: 6px; }
  .footer-social        { gap: 6px; }
  .social-icon          { width: 34px; height: 34px; font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 400px  (small phones)
═══════════════════════════════════════════════════════ */
@media (max-width: 400px) {

  :root { --header-h: 58px; }

  .logo-img           { height: 36px !important; max-width: 140px; }
  .header-cta .btn    { padding: 6px 10px; font-size: .62rem; }

  .hero-logo-img      { height: clamp(100px, 36vw, 160px); }
  .slide-title        { font-size: 1rem; }

  .about-modern-stats { grid-template-columns: 1fr; gap: 8px; }
  .about-modern-stat .number { font-size: 1.8rem; }

  .working-hours-grid { grid-template-columns: 1fr; }
  .hour-card          { padding: 16px 14px 12px; }

  .our-team-grid      { grid-template-columns: 1fr; }
  .team-member-image-wrap { aspect-ratio: 4/5; }

  .footer-call-btn     { padding: 7px 10px; font-size: .62rem; }
  .footer-location-btn { padding: 7px 8px; font-size: .62rem; }
  .social-icon         { width: 30px; height: 30px; font-size: 13px; }

  body { padding-bottom: 54px; }
}

/* ─── Touch / swipe support for slider ───────────────── */
.hero-slider { touch-action: pan-y; }

/* ─── Remove tap highlight on mobile ─────────────────── */
a, button, .btn, .nav a, .social-icon,
.footer-call-btn, .footer-location-btn {
  -webkit-tap-highlight-color: transparent;
}

/* ─── Safe area insets (notched iPhones) ─────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   Elements start hidden and animate in when they enter the viewport.
   JS (IntersectionObserver) adds  .is-visible  class.
   No PHP/HTML changes needed.
═══════════════════════════════════════════════════════════════════════ */

/* ── Base hidden state ── */
.reveal {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1 !important; transform: none !important; }

/* ── Direction variants ── */
.reveal-up    { transform: translateY(48px); }
.reveal-down  { transform: translateY(-40px); }
.reveal-left  { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-scale { transform: scale(.92); }
.reveal-fade  { transform: none; }

/* ── Stagger delays for grids ── */
.reveal-d1  { transition-delay: .08s; }
.reveal-d2  { transition-delay: .16s; }
.reveal-d3  { transition-delay: .24s; }
.reveal-d4  { transition-delay: .32s; }
.reveal-d5  { transition-delay: .40s; }
.reveal-d6  { transition-delay: .48s; }
.reveal-d7  { transition-delay: .56s; }

/* ── Number counter pulse ── */
@keyframes countPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); color: var(--crimson); }
  100% { transform: scale(1); }
}
.about-modern-stat.is-visible .number {
  animation: countPulse .6s var(--ease) .5s both;
}

/* ── Floating chips gentle bob ── */
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.about-modern-chip {
  animation: floatBob 3.2s ease-in-out infinite;
}
.about-modern-chip:nth-child(2) {
  animation-delay: 1.2s;
}

/* ── Join-us badge pulse ── */
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,57,43,.5); }
  50%       { box-shadow: 0 8px 36px rgba(192,57,43,.8); }
}
.join-us-badge {
  animation: badgePulse 2.4s ease-in-out infinite;
}

/* ── Hero logo shimmer on active slide ── */
@keyframes logoShimmer {
  0%   { filter: brightness(1.15) contrast(1.1); }
  50%  { filter: brightness(1.35) contrast(1.15) drop-shadow(0 0 24px rgba(255,255,255,.25)); }
  100% { filter: brightness(1.15) contrast(1.1); }
}
.slide.is-active .hero-logo-img {
  animation: heroLogoIn 1s var(--ease) both, logoShimmer 4s ease-in-out 1.2s infinite;
}

/* ── Slide title word reveal ── */
@keyframes slideWordIn {
  from { opacity: 0; transform: translateY(28px) skewY(3deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}
.slide.is-active .slide-title {
  animation: slideWordIn .8s var(--ease) .3s both;
}
.slide.is-active .slide-text {
  animation: slideWordIn .7s var(--ease) .55s both;
}
.slide.is-active .slide-actions {
  animation: slideWordIn .7s var(--ease) .75s both;
}

/* ── Hour card hover ripple ── */
@keyframes cardRipple {
  from { transform: scale(1); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
  to   { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.14); }
}

/* ── Section eyebrow line draw ── */
@keyframes lineDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.working-hours-topline.is-visible::before,
.working-hours-topline.is-visible::after,
.our-team-topline.is-visible::before,
.our-team-topline.is-visible::after {
  animation: lineDraw .6s var(--ease) .2s both;
  transform-origin: left;
}

/* ── Service card sequential hover shimmer ── */
@keyframes cardShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Contact card slide-in ── */
.contact-card {
  transition: transform .22s var(--ease), border-left-color .22s, box-shadow .22s;
}

/* ── Working hours top gradient bar animate on hover ── */
.hour-card:hover::before {
  animation: lineDraw .35s var(--ease) both;
}

/* ── Team card border glow pulse ── */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(255,255,255,.06); }
  50%       { border-color: rgba(192,57,43,.25); }
}
.team-member-card {
  animation: borderGlow 4s ease-in-out infinite;
}
.team-member-card:nth-child(2) { animation-delay: 2s; }

/* ── Footer bar gradient sweep ── */
@keyframes footerSweep {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.footer::before {
  background: linear-gradient(90deg,
    transparent,
    var(--crimson) 30%,
    var(--gold) 70%,
    transparent);
  background-size: 200% auto;
  animation: footerSweep 3s linear infinite;
}

/* ── On mobile: replace horizontal slides with vertical so translateX never bleeds ── */
@media (max-width: 900px) {
  .reveal-left  { transform: translateY(36px) !important; }
  .reveal-right { transform: translateY(36px) !important; }
}

/* ── Reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-down, .reveal-left,
  .reveal-right, .reveal-scale, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .about-modern-chip,
  .join-us-badge,
  .team-member-card {
    animation: none !important;
  }
}