/* ============================================================
   BLACKOUT BARBERSHOP — Premium Landing Page
   Design system: matte black, cinematic, luxury masculine
   ============================================================ */

:root {
  /* Palette (per brand spec) */
  --bg: #050505;
  --surface: #0F0F0F;
  --card: #141414;
  --accent: #FFFFFF;
  --accent-2: #BDBDBD;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #FFFFFF;
  --muted: #8A8A8A;

  /* Conversion accent — restrained warm metal (NOT bright) */
  --gold: #C7A671;
  --gold-soft: rgba(199, 166, 113, 0.14);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  /* Rhythm */
  --section-y: clamp(72px, 12vw, 160px);
  --maxw: 1240px;
  --radius: 16px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: var(--section-y); position: relative; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.section-title .thin { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: 0; }

.section-lead {
  color: var(--muted);
  max-width: 56ch;
  margin-top: 18px;
  font-size: clamp(15px, 1.6vw, 17px);
}
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
}

.btn-gold {
  background: linear-gradient(135deg, #d9bd8b, var(--gold));
  color: #1a1407;
  box-shadow: 0 12px 44px rgba(199, 166, 113, 0.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 64px rgba(199, 166, 113, 0.42); }

.btn svg { width: 18px; height: 18px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease), padding .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height .5s var(--ease);
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled .nav-inner { height: 68px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 16px;
  text-transform: uppercase;
}
.brand .mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
}
.brand .mark svg { width: 30px; height: 30px; }
.brand small { color: var(--gold); font-size: 9px; letter-spacing: 0.4em; font-weight: 600; display: block; margin-top: 2px; }
.brand .brand-text { line-height: 1; }

/* Real logo — transparent white PNG, sits cleanly on the dark theme */
.brand-logo {
  height: 56px; width: auto; display: block;
  transition: height .5s var(--ease);
}
.navbar.scrolled .brand-logo { height: 44px; }
.footer .brand-logo { height: 84px; margin-bottom: 18px; }

/* Language switcher */
.lang-switch { display: flex; align-items: center; gap: 2px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; }
.lang-switch a {
  padding: 6px 9px; border-radius: 8px; color: var(--muted);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active { color: #050505; background: var(--accent); }
.lang-switch .sep { color: var(--border-strong); }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  text-transform: uppercase;
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transform: scale(1.08); }
/* cinematic vignette + spotlight */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(255,255,255,0.10) 0%, rgba(5,5,5,0) 42%),
    radial-gradient(80% 70% at 50% 50%, rgba(5,5,5,0) 35%, rgba(5,5,5,0.55) 78%, #050505 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.2) 38%, rgba(5,5,5,0.85) 100%);
}
/* hexagon LED glow accent */
.hero-hex {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: min(520px, 80vw); aspect-ratio: 1; z-index: -1; opacity: .5;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-content { position: relative; max-width: min(100%, 880px); }
.hero .eyebrow { margin-bottom: 26px; }

.hero h1 {
  font-weight: 800;
  font-size: clamp(42px, 8.6vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero h1 span { display: block; width: fit-content; max-width: 100%; }
.hero h1 span:nth-child(2) { color: var(--accent-2); }
.hero h1 .accent-word {
  background: linear-gradient(180deg, #ffffff 0%, #cfae79 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  color: var(--accent-2);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 46ch;
  margin-top: 28px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--accent-2); letter-spacing: 0.02em;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.hero-badge strong { color: var(--text); font-weight: 600; }
.hero-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.4s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity:.4; transform-origin: top; } 50% { transform: scaleY(1); opacity:1; transform-origin: top; } }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.strip {
  border-block: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding-block: 22px;
}
.marquee { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2.4vw, 26px); color: var(--accent-2); white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, var(--gold-soft), transparent 55%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.service-card:hover::before { opacity: 1; }

.service-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  margin-bottom: 22px;
  transition: border-color .5s var(--ease), background .5s var(--ease);
}
.service-card:hover .icon { border-color: var(--gold); background: var(--gold-soft); }
.service-card .icon svg { width: 24px; height: 24px; stroke: var(--accent-2); transition: stroke .5s var(--ease); }
.service-card:hover .icon svg { stroke: var(--gold); }

.service-card .s-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.service-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.service-card .price { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--text); }
.service-card .price .cur { font-size: 16px; color: var(--gold); vertical-align: super; }
.service-card p { color: var(--muted); font-size: 14px; margin-top: 12px; }
.service-card .s-cta {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateY(6px); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.service-card:hover .s-cta { opacity: 1; transform: translateY(0); }

.services-note { margin-top: 34px; text-align: center; color: var(--muted); font-size: 14px; }
.services-note a { color: var(--text); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { background: var(--surface); border-block: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 18px;
}
.why-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
  overflow: hidden;
}
.why-card .glow {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,166,113,0.22), transparent 65%);
  top: -90px; right: -90px; opacity: 0; transition: opacity .6s var(--ease); filter: blur(10px);
}
.why-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.why-card:hover .glow { opacity: 1; }
.why-card .num { font-family: var(--font-serif); font-size: 15px; color: var(--gold); letter-spacing: 0.1em; }
.why-card h3 { font-size: 21px; font-weight: 700; margin-top: 14px; letter-spacing: -0.01em; }
.why-card p { color: var(--muted); font-size: 14px; margin-top: 12px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 14px;
  border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); filter: grayscale(0.2) brightness(0.82); }
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0) brightness(1); }
.gallery-item::after {
  content: attr(data-label);
  position: absolute; left: 18px; bottom: 16px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7); z-index: 2;
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.7));
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery-item:hover::after, .gallery-item:hover::before { opacity: 1; transform: translateY(0); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* Logo tile — centred brand mark on matte black, no photo treatment */
.gallery-item.g-logo { background: linear-gradient(135deg, #161616, #090909); }
.gallery-item.g-logo img { object-fit: contain; padding: clamp(22px, 4vw, 44px); filter: none; }
.gallery-item.g-logo:hover img { transform: none; filter: none; }
.gallery-item.g-logo::before, .gallery-item.g-logo::after { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: 20px; border: 1px solid var(--border); filter: brightness(0.85); }
.about-media .frame {
  position: absolute; inset: 16px; border: 1px solid var(--border-strong); border-radius: 16px; pointer-events: none;
}
.about-stats { display: flex; gap: 36px; margin-top: 38px; flex-wrap: wrap; }
.about-stat .n { font-family: var(--font-serif); font-size: clamp(34px, 5vw, 48px); font-weight: 600; line-height: 1; background: linear-gradient(180deg,#fff,#cfae79); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-stat .l { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; margin-top: 8px; text-transform: uppercase; }
.about-text .section-lead { color: var(--accent-2); }
.about-list { margin-top: 28px; display: grid; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 14px; color: var(--accent-2); font-size: 15px; }
.about-list svg { width: 20px; height: 20px; stroke: var(--gold); flex: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--surface); border-block: 1px solid var(--border); }
.rating-summary { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.rating-summary .big { font-family: var(--font-serif); font-size: 52px; font-weight: 600; line-height: 1; }
.rating-summary .stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
.rating-summary .meta { color: var(--muted); font-size: 13px; text-align: left; }
.rating-summary .meta strong { color: var(--text); display: block; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.review-card:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review-card blockquote { font-family: var(--font-serif); font-size: 20px; line-height: 1.5; color: var(--text); font-style: italic; }
.review-card .author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,#2a2a2a,#0f0f0f); display: grid; place-items: center; font-weight: 700; color: var(--gold); border: 1px solid var(--border); font-size: 15px; }
.review-card .who { font-size: 14px; font-weight: 600; }
.review-card .who span { display: block; color: var(--muted); font-size: 12px; font-weight: 400; }
.review-card .gverify { margin-left: auto; font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.review-card .gverify svg { width: 14px; height: 14px; }

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: stretch; }
.location-info { display: flex; flex-direction: column; }
.info-block { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.info-block:first-of-type { padding-top: 0; }
.info-block .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); display: grid; place-items: center; flex: none; }
.info-block .ic svg { width: 22px; height: 22px; stroke: var(--gold); }
.info-block .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.info-block .val { font-size: 16px; margin-top: 6px; color: var(--text); font-weight: 500; }
.info-block .val a:hover { color: var(--gold); }
.info-block .val .closed { color: var(--muted); }
.location-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); min-height: 420px; position: relative; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; text-align: center; overflow: hidden; isolation: isolate; }
.final-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(199,166,113,0.18), transparent 60%),
    radial-gradient(80% 100% at 50% 50%, #0e0e0e, #050505 75%);
}
.final-cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(40% 60% at 50% 40%, rgba(255,255,255,0.06), transparent 70%);
}
.final-cta h2 { font-size: clamp(36px, 7vw, 84px); font-weight: 800; letter-spacing: -0.03em; line-height: 0.98; text-transform: uppercase; }
.final-cta h2 .thin { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: 0; text-transform: none; background: linear-gradient(180deg,#fff,#cfae79); -webkit-background-clip:text; background-clip:text; color: transparent; }
.final-cta p { color: var(--accent-2); max-width: 46ch; margin: 24px auto 0; font-size: 17px; }
.final-cta .final-actions { margin-top: 42px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .reassure { margin-top: 26px; color: var(--muted); font-size: 13px; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.final-cta .reassure .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding-block: 64px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer p { color: var(--muted); font-size: 14px; max-width: 32ch; }
.footer h4 { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col a, .footer-col .row { display: block; color: var(--accent-2); font-size: 14px; margin-bottom: 12px; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; transition: border-color .3s var(--ease), background .3s var(--ease); }
.footer-social a:hover { border-color: var(--gold); background: var(--gold-soft); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 12px; }

/* ============================================================
   FLOATING CONTACT (mobile conversion)
   ============================================================ */
.float-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  padding: 12px clamp(14px, 4vw, 20px) calc(12px + env(safe-area-inset-bottom));
  gap: 12px;
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.float-bar .btn { flex: 1; padding: 15px; }

.whats-fab {
  position: fixed; right: 22px; bottom: 24px; z-index: 91;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1faf54;
  display: grid; place-items: center;
  box-shadow: 0 12px 36px rgba(31,175,84,0.4);
  transition: transform .4s var(--ease);
  animation: fabIn .6s var(--ease) .8s both;
}
.whats-fab:hover { transform: scale(1.08) translateY(-2px); }
.whats-fab svg { width: 30px; height: 30px; }
@keyframes fabIn { from { transform: scale(0); } to { transform: scale(1); } }
/* gentle attention ring */
.whats-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(31,175,84,0.55);
  animation: fabPulse 2.8s var(--ease) infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(31,175,84,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(31,175,84,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,175,84,0); }
}
.whats-fab .fab-label {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: #0f0f0f; border: 1px solid var(--border); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  padding: 9px 15px; border-radius: 100px; white-space: nowrap;
  opacity: 0; transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none; box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.whats-fab:hover .fab-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================================================
   HERO META (live status · phone · hours)
   ============================================================ */
.hero h1.lead-h1 { font-size: clamp(40px, 7.4vw, 92px); }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px;
  margin-top: 30px;
}
.hero-meta-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; color: var(--accent-2); letter-spacing: 0.01em;
  transition: color .3s var(--ease);
}
.hero-meta-item svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; flex: none; }
.hero-meta-item strong { color: var(--text); font-weight: 600; }
a.hero-meta-item:hover { color: var(--text); }
.open-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  padding: 6px 13px; border-radius: 100px; border: 1px solid var(--border);
}
.open-status .pulse { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.open-status.is-open { color: #4fd183; background: rgba(46,204,113,0.08); border-color: rgba(46,204,113,0.25); }
.open-status.is-open .pulse { background: #2ecc71; box-shadow: 0 0 0 0 rgba(46,204,113,0.6); animation: livePulse 2s infinite; }
.open-status.is-closed { color: var(--muted); }
.open-status.is-closed .pulse { background: var(--muted); }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* ============================================================
   LOCAL TRUST BAND
   ============================================================ */
.local-trust .trust-inner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #151515, #0b0b0b);
  border: 1px solid var(--border); border-radius: 24px;
  padding: clamp(40px, 5.5vw, 72px); text-align: center;
}
.local-trust .trust-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, var(--gold-soft), transparent 62%);
  pointer-events: none;
}
.local-trust .trust-inner > * { position: relative; }
.local-trust .section-lead { margin-inline: auto; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border: 1px solid var(--border); border-radius: 100px;
  background: rgba(255,255,255,0.02); font-size: 14px; color: var(--accent-2);
  transition: border-color .4s var(--ease), color .4s var(--ease);
}
.trust-pill:hover { border-color: var(--gold); color: var(--text); }
.trust-pill svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; flex: none; }
.trust-cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { background: var(--surface); border-block: 1px solid var(--border); }
.ig-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ig-handle { display: flex; align-items: center; gap: 16px; }
.ig-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex: none; padding: 2.5px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: grid; place-items: center;
}
.ig-avatar > span { width: 100%; height: 100%; border-radius: 50%; background: var(--surface); display: grid; place-items: center; }
.ig-avatar svg { width: 30px; height: 30px; }
.ig-handle .h { font-weight: 700; font-size: 18px; letter-spacing: 0.01em; }
.ig-handle .h small { display: block; color: var(--muted); font-weight: 400; font-size: 13px; margin-top: 3px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-grid a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px; border: 1px solid var(--border); }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15) brightness(0.82); transition: transform .8s var(--ease), filter .5s var(--ease); }
.ig-grid a:hover img { transform: scale(1.08); filter: none; }
.ig-grid a::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(0,0,0,0.35), transparent 70%); opacity: 0; transition: opacity .4s var(--ease); }
.ig-grid a:hover::after { opacity: 1; }
.btn-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: #fff; box-shadow: 0 12px 40px rgba(220,39,67,0.26); }
.btn-ig:hover { transform: translateY(-3px); box-shadow: 0 18px 56px rgba(220,39,67,0.4); }
.btn-ig svg { width: 18px; height: 18px; }

/* ============================================================
   URGENCY (subtle, premium)
   ============================================================ */
.urgency-note {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 24px; border-radius: 100px;
  border: 1px solid rgba(199,166,113,0.28); background: rgba(199,166,113,0.06);
  color: var(--accent-2); font-size: 14.5px; line-height: 1.4;
}
.urgency-note svg { width: 19px; height: 19px; stroke: var(--gold); fill: none; flex: none; }

/* ============================================================
   ONLINE BOOKING (MyHour)
   ============================================================ */
.section[id] { scroll-margin-top: 84px; }
.booking-card {
  max-width: 880px; margin-inline: auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden;
}
.booking-embed { width: 100%; display: flex; justify-content: center; padding: clamp(20px, 3vw, 34px); }
.booking-embed iframe { width: 100%; max-width: 480px; height: 780px; border: 0; display: block; border-radius: 12px; background: #fff; }
.booking-fallback {
  padding: clamp(36px, 5vw, 64px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.booking-fallback .b-ic {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid rgba(199,166,113,0.3);
}
.booking-fallback .b-ic svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; }
.booking-fallback h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.booking-fallback p { color: var(--muted); max-width: 42ch; }
.booking-fallback .btn { margin-top: 10px; }
.booking-or { font-size: 14px; color: var(--muted); text-align: center; padding: 0 20px 28px; }
.booking-or a { color: var(--text); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-text-hide { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 8px; }

  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: rgba(8,8,8,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 40px; gap: 28px;
    transform: translateX(100%); transition: transform .5s var(--ease);
    border-left: 1px solid var(--border); display: flex;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; }

  .hero h1 { font-size: clamp(46px, 16vw, 90px); }
  .float-bar { display: flex; }
  .whats-fab { bottom: calc(96px + env(safe-area-inset-bottom)); }
  /* reserve space so the fixed bar never covers the footer */
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }

  .about-stats { gap: 24px; }
  .rating-summary { flex-direction: column; }
  .rating-summary .meta { text-align: center; }
}

@media (max-width: 980px) {
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-head { justify-content: center; text-align: center; }
  .ig-head .btn { width: 100%; }
  .hero-meta { gap: 10px 18px; }
  .whats-fab .fab-label { display: none; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-cta .btn, .final-cta .final-actions .btn, .location-cta .btn { width: 100%; }
}

/* ============================================================
   MOBILE OPTIMISATION
   ============================================================ */
html { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* Touch devices can't hover — keep conversion CTAs visible + 44px tap targets */
@media (hover: none) {
  .service-card .s-cta { opacity: 1; transform: none; padding-block: 4px; }
  .lang-switch a { padding: 10px 12px; }
  .nav-toggle { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
}

@media (max-width: 760px) {
  /* tighten the hero so the primary CTA is reachable sooner */
  .hero h1.lead-h1 { font-size: clamp(38px, 11vw, 60px); }
  .hero .eyebrow { margin-bottom: 18px; }
  .hero-sub { margin-top: 20px; }
  .hero-meta { margin-top: 22px; }
  .hero-actions { margin-top: 28px; }
  .hero-badges { margin-top: 30px; padding-top: 22px; gap: 12px 18px; }
  /* a bit more tap height on the service price/booking link row */
  .service-card { padding: 30px 26px; }
}

@media (max-width: 560px) {
  /* stack hero CTAs full-width — thumb-friendly, no cramping */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .booking-embed { padding: 16px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
