html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0c0a08;
  color: #cfc9c0;
  font-family: 'Poppins', sans-serif;
}
:root { --accent: #d8a94a; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #efd48c; }
* { box-sizing: border-box; }

@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(60px, -40px); }
  66% { transform: translate(-40px, 30px); }
}
@keyframes speckUp {
  0% { transform: translateY(20vh); opacity: 0; }
  12% { opacity: .7; }
  88% { opacity: .7; }
  100% { transform: translateY(-115vh); opacity: 0; }
}
@keyframes shimmer { 0%, 100% { opacity: .35; } 50% { opacity: .9; } }

/* ── Ambient background fx ── */
.ambient-fx { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,169,74,.10), transparent 70%);
  animation-name: orbFloat; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
.orb-1 { top: 8%; left: -6%; width: 420px; height: 420px; animation-duration: 22s; }
.orb-2 { top: 55%; left: 78%; width: 520px; height: 520px; animation-duration: 28s; animation-delay: 4s; }
.orb-3 { top: 80%; left: 20%; width: 380px; height: 380px; animation-duration: 25s; animation-delay: 9s; }
.speck {
  position: absolute; bottom: -4vh; border-radius: 50%;
  background: rgba(216,169,74,.55); box-shadow: 0 0 6px rgba(216,169,74,.5);
  opacity: 0;
  animation-name: speckUp, shimmer;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 48px;
  background: rgba(12,10,8,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(216,169,74,.12);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(216,169,74,.4); }
.nav-brand-text { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 17px; letter-spacing: 2px; color: #f4efe6; }
.nav-links { display: flex; align-items: center; gap: 28px; font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; font-weight: 500; }
.nav-link { color: #b8b0a4; transition: color .2s; }
.nav-link:hover { color: var(--accent); }
.nav-cta { display: inline-flex; align-items: center; background: var(--accent); color: #151009; padding: 10px 20px; font-weight: 600; border-radius: 2px; }
.nav-cta:hover { background: #efd48c; color: #151009; }
.lang-switch { display: flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; color: #b8b0a4;
  padding: 5px 4px; border-radius: 2px; cursor: pointer;
  font-family: inherit; font-size: 11px; letter-spacing: 1px; font-weight: 500;
  transition: color .2s, background .2s;
}
.lang-btn .fi { width: 20px; height: 15px; border-radius: 2px; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.1); }
.lang-btn:hover { color: #f4efe6; background: rgba(216,169,74,.08); }
.lang-btn.active { color: var(--accent); background: rgba(216,169,74,.1); }
.lang-sep { width: 1px; height: 16px; background: rgba(216,169,74,.2); flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: #f4efe6; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Expand Hero (scroll-driven video reveal) ── */
.expand-hero {
  position: relative; min-height: 100dvh; overflow: hidden; background: #0c0a08;
}
.expand-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 26s ease-in-out infinite alternate;
  transition: opacity .1s linear;
}
.expand-bg-scrim {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(12,10,8,.5) 0%, rgba(12,10,8,.7) 55%, #0c0a08 100%);
}
.expand-viewport {
  position: relative; z-index: 1;
  min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.expand-media {
  position: absolute; top: 50%; left: 50%; z-index: 1;
  transform: translate(-50%, -50%);
  width: min(1250px, 92vw); height: min(620px, 78vh);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(216,169,74,.22);
}
.expand-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.expand-media-overlay { position: absolute; inset: 0; background: #0c0a08; opacity: .5; transition: opacity .2s ease; }
.expand-text {
  position: relative; z-index: 2;
  transform: translateY(max(-24vh, -190px));
}
.expand-title-row {
  display: flex; align-items: baseline; justify-content: center; gap: 18px; flex-wrap: nowrap;
  pointer-events: none;
}
.expand-title {
  font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(30px, 6vw, 72px); line-height: 1.05; margin: 0; white-space: nowrap; color: #f4efe6;
}
.expand-title-right { color: var(--accent); }
.expand-caption { position: relative; z-index: 2; text-align: center; margin-top: 22px; transition: opacity .3s ease; }
.expand-caption .eyebrow { margin: 0 0 10px; }
.expand-hint {
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 3px; color: #8b8478; margin: 0;
  background: none; border: none; padding: 6px 10px; cursor: pointer;
  animation: hintFloat 2s ease-in-out infinite; transition: color .2s ease;
}
.expand-hint:hover, .expand-hint:focus-visible { color: var(--accent); }
@keyframes hintFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.expand-reveal {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  margin-top: 30px; opacity: 1; transition: opacity .7s ease;
}
.expand-reveal.hidden { opacity: 0; pointer-events: none; }
.expand-reveal .hero-sub { text-align: center; }
.expand-reveal .btn-row { justify-content: center; }
.eyebrow { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 6px; color: var(--accent); margin: 0 0 20px; }
.hero-sub { max-width: 440px; font-size: 16px; line-height: 1.7; color: #c4bcb0; margin: 0 0 36px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: #151009;
  font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; font-weight: 600;
  padding: 15px 30px; border-radius: 2px;
}
.btn-gold:hover { background: #efd48c; color: #151009; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--accent); color: var(--accent);
  font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; font-weight: 600;
  padding: 15px 26px; border-radius: 2px; transition: background .2s;
}
.btn-outline:hover { background: rgba(216,169,74,.12); color: var(--accent); }

/* ── Section shells ── */
.section { padding: 110px 48px; }
.section.bg-a { background: #0c0a08; }
.section.bg-b { background: #080706; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 5px; color: var(--accent); margin: 0 0 16px; }
.section-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 42px; color: #f4efe6; text-transform: uppercase; margin: 0 0 22px; }
.section-rule { width: 56px; height: 2px; background: var(--accent); margin: 0 auto; }

/* ── About ── */
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: center; }
.about-figure { margin: 0; border: 1px solid rgba(216,169,74,.25); border-radius: 6px; padding: 10px; background: #12100d; }
.about-figure img { width: 100%; display: block; border-radius: 4px; }
.about-figure figcaption { font-size: 11px; font-style: italic; color: #7d766b; padding: 12px 4px 4px; }
.about-heading { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 42px; line-height: 1.1; color: #f4efe6; text-transform: uppercase; margin: 0 0 24px; }
.about-p { font-size: 15px; line-height: 1.8; margin: 0 0 18px; }
.about-p strong { color: #f4efe6; }
.stat-row { border-top: 1px solid rgba(216,169,74,.2); padding-top: 32px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 32px; color: var(--accent); }
.stat-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: #8b8478; margin-top: 6px; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; perspective: 1200px; }
.service-card { background: #14110d; border: 1px solid rgba(216,169,74,.12); border-radius: 4px; padding: 26px 24px; position: relative; }
.service-card.popular { border-color: var(--accent); }
.badge-popular {
  position: absolute; top: -10px; right: 14px; background: var(--accent); color: #151009;
  font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 2px;
}
.service-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.service-name { font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 1px; color: #f4efe6; margin: 0; }
.service-price { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 19px; color: var(--accent); }
.service-desc { font-size: 13.5px; line-height: 1.7; color: #a49c8f; margin: 0; }

/* ── Gallery ── */
.gallery-wrap { max-width: 840px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; perspective: 1200px; }
.gallery-item { position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }

/* ── Tilt effect (3D mouse-follow movement) ── */
.tilt-card {
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) scale3d(1,1,1);
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), box-shadow .6s cubic-bezier(.34,1.56,.64,1);
  will-change: transform;
}
.tilt-card.tilting { transition: transform 60ms linear, box-shadow 60ms linear; }
.tilt-card:hover, .tilt-card.tilting { box-shadow: 0 26px 50px -12px rgba(0,0,0,.6), 0 0 0 1px rgba(216,169,74,.15); z-index: 3; }

/* Buttons keep their own background-color transition alongside the tilt transform/shadow */
.btn-gold.tilt-card, .nav-cta.tilt-card {
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), box-shadow .6s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.btn-gold.tilt-card.tilting, .nav-cta.tilt-card.tilting {
  transition: transform 60ms linear, box-shadow 60ms linear, background .2s;
}
.btn-gold.tilt-card:hover, .nav-cta.tilt-card:hover, .btn-gold.tilt-card.tilting, .nav-cta.tilt-card.tilting {
  box-shadow: 0 16px 32px -10px rgba(0,0,0,.55), 0 0 0 1px rgba(216,169,74,.15);
}
/* WhatsApp fab: let the tilt's own moving shadow take over from the ambient pulse while active */
.whatsapp-fab.tilt-card {
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), box-shadow .6s cubic-bezier(.34,1.56,.64,1);
}
.whatsapp-fab.tilt-card.tilting {
  transition: transform 60ms linear, box-shadow 60ms linear;
  animation-play-state: paused;
}

/* ── Glowing effect (mouse-tracking border glow) ── */
.glow-card { position: relative; }
.glow-effect {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  --glow-start: 0;
  --glow-active: 0;
  --glow-spread: 24;
  --glow-border-width: 1.5px;
  --glow-gradient:
    radial-gradient(circle, #f4e0ac 10%, #f4e0ac00 20%),
    radial-gradient(circle at 40% 40%, #d8a94a 5%, #d8a94a00 15%),
    radial-gradient(circle at 60% 60%, #efd48c 10%, #efd48c00 20%),
    radial-gradient(circle at 40% 60%, #8f6a1a 10%, #8f6a1a00 20%),
    repeating-conic-gradient(
      from 236.84deg at 50% 50%,
      #f4e0ac 0%,
      #d8a94a calc(25% / 5),
      #efd48c calc(50% / 5),
      #8f6a1a calc(75% / 5),
      #f4e0ac calc(100% / 5)
    );
}
.glow-effect .glow { border-radius: inherit; position: relative; height: 100%; }
.glow-effect .glow::after {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--glow-border-width));
  border-radius: inherit;
  border: var(--glow-border-width) solid transparent;
  background: var(--glow-gradient);
  background-attachment: fixed;
  opacity: var(--glow-active);
  transition: opacity .3s;
  -webkit-mask-image: linear-gradient(#0000,#0000), conic-gradient(from calc((var(--glow-start) - var(--glow-spread)) * 1deg), #00000000 0deg, #fff, #00000000 calc(var(--glow-spread) * 2deg));
  mask-image: linear-gradient(#0000,#0000), conic-gradient(from calc((var(--glow-start) - var(--glow-spread)) * 1deg), #00000000 0deg, #fff, #00000000 calc(var(--glow-spread) * 2deg));
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
@media (prefers-reduced-motion: reduce) {
  .glow-effect .glow::after { transition: none; }
}
.gallery-more { text-align: center; margin-top: 48px; }
.gallery-more a { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2.5px; color: var(--accent); border-bottom: 1px solid rgba(216,169,74,.4); padding-bottom: 6px; }
.gallery-more a:hover { color: #efd48c; }

/* ── Barber ── */
.barber-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.barber-grid img { width: 100%; display: block; border-radius: 6px; border: 1px solid rgba(216,169,74,.25); }
.barber-role { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 3px; color: var(--accent); margin: 0 0 26px; }
.barber-p { font-size: 14.5px; line-height: 1.8; margin: 0 0 16px; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #14110d; border: 1px solid rgba(216,169,74,.2); border-radius: 3px; padding: 9px 16px; font-size: 12px; color: #c4bcb0; }
.pill .ic { color: var(--accent); }

/* ── Reviews ── */
.reviews-sub { font-size: 13.5px; color: #8b8478; margin: 0; }
.stars { color: var(--accent); letter-spacing: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: #14110d; border-left: 3px solid var(--accent); border-radius: 3px; padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; }
.review-stars { color: var(--accent); letter-spacing: 3px; font-size: 13px; }
.review-quote { font-size: 14px; line-height: 1.8; font-style: italic; color: #b8b0a4; margin: 0; flex: 1; }
.review-name { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1.5px; color: #f4efe6; }
.review-source { font-size: 11.5px; color: #7d766b; margin-top: 4px; }

/* ── Find us ── */
.findus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.map-block {
  position: relative; display: block; min-height: 380px; border-radius: 6px; border: 1px solid rgba(216,169,74,.2);
  background-color: #100e0b;
  background-image: repeating-linear-gradient(0deg, rgba(216,169,74,.05) 0 1px, transparent 1px 46px), repeating-linear-gradient(90deg, rgba(216,169,74,.05) 0 1px, transparent 1px 46px);
  overflow: hidden;
}
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 8px rgba(216,169,74,.18), 0 0 0 18px rgba(216,169,74,.08); }
.map-label { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; color: var(--accent); border: 1px solid rgba(216,169,74,.4); padding: 9px 18px; border-radius: 2px; background: rgba(12,10,8,.8); }
.findus-title { font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 2px; color: #f4efe6; margin: 0 0 24px; }
.findus-info { display: flex; flex-direction: column; gap: 18px; font-size: 14px; line-height: 1.6; margin-bottom: 34px; }
.findus-row { display: flex; gap: 14px; }
.findus-row .ic { color: var(--accent); }
.findus-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: #8b8478; margin-bottom: 4px; }
.hours { border-top: 1px solid rgba(216,169,74,.15); padding-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; font-size: 13px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; }
.hours-day { color: #8b8478; }
.hours-time { color: #cfc9c0; }
.hours-time.closed { color: var(--accent); }

/* ── CTA ── */
.cta-section {
  position: relative; padding: 110px 48px;
  background: linear-gradient(rgba(12,10,8,.88), rgba(12,10,8,.88)), url('../img/craft.png') center/cover;
  text-align: center;
}
.cta-title { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 44px; color: #f4efe6; text-transform: uppercase; margin: 0 0 18px; }
.cta-sub { max-width: 460px; margin: 0 auto 36px; font-size: 14.5px; line-height: 1.8; color: #a49c8f; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 48px; background: #060504; border-top: 1px solid rgba(216,169,74,.12); flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; }
.footer-brand-text { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; color: #f4efe6; }
.footer-addr { font-size: 12px; color: #7d766b; }
.footer-ig { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; color: var(--accent); }

/* ── WhatsApp floating button ── */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: waPulse 2.6s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,.5); }
.whatsapp-fab svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 18px rgba(0,0,0,.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0c0a08; border-bottom: 1px solid rgba(216,169,74,.12);
    padding: 8px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-cta { padding: 14px 0; border-bottom: 1px solid rgba(216,169,74,.08); text-align: center; }
  .nav-cta { margin-top: 12px; border-bottom: none; border-radius: 2px; }
  .lang-switch { justify-content: center; padding: 16px 0 4px; }
  .nav-toggle { display: flex; }
  .about-grid, .barber-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .findus-grid { grid-template-columns: 1fr; }
  .expand-title-row { gap: 10px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 24px; }
  .nav { padding: 14px 20px; }
  .expand-title-row { flex-wrap: wrap; gap: 4px 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .stat-row { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .hours { grid-template-columns: 1fr; gap: 10px; }
  .footer { flex-direction: column; text-align: center; }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
