/* ══════════════════════════════════════════════════════════════
   GONI'S BARBERSHOP — Ultra Premium Dark Mode
   ══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg:          #080808;
  --bg-2:        #0F0F0F;
  --bg-card:     #111111;
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --gold-dim:    rgba(201,169,110,0.15);
  --white:       #F5F5F0;
  --grey:        #666666;
  --grey-light:  #999999;
  --border:      rgba(201,169,110,0.18);

  --font-serif:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --radius:      2px;
  --transition:  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

img, video { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
#cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}

#cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              width 0.4s, height 0.4s, opacity 0.3s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width:14px; height:14px; background: var(--gold-light); }
body:has(a:hover) #cursor-follower,
body:has(button:hover) #cursor-follower { width:56px; height:56px; opacity:0.5; }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}

[data-anim="fade-up"]    { transform: translateY(48px); }
[data-anim="fade-right"] { transform: translateX(-48px); }
[data-anim="fade-left"]  { transform: translateX(48px); }

[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* ── NAVBAR ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition),
              border-color var(--transition), height var(--transition);
  border-bottom: 1px solid transparent;
  background: transparent;
}

/* Hide logo & nav links when at top */
#navbar .navbar-logo-center,
#navbar .nav-links {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Show everything when scrolled */
#navbar.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  height: 72px;
}

#navbar.scrolled .navbar-logo-center,
#navbar.scrolled .nav-links {
  opacity: 1;
  pointer-events: auto;
}

.navbar-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo-center img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.navbar-logo-center:hover img {
  transform: scale(1.05);
}

.nav-placeholder {
  flex: 0 0 1px;
}

.logo-g {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #000;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.logo-g:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,169,110,0.2);
}

.nav-links {
  display: flex; align-items: center; gap: 40px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  letter-spacing: 1.5px !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: #000 !important;
}

.nav-cta::after { display: none !important; }

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) saturate(0.6);
  z-index: 0;
  transform: scale(1.02);
}

/* Subtle film-grain noise overlay */
.hero-noise {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.55) 0%,
      rgba(8,8,8,0) 40%,
      rgba(8,8,8,0.1) 60%,
      rgba(8,8,8,0.9) 100%),
    linear-gradient(to right, rgba(8,8,8,0.3) 0%, transparent 50%, rgba(8,8,8,0.3) 100%);
}

/* Decorative G letterforms */
.deco-g {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(260px, 28vw, 420px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,169,110,0.07);
  z-index: 2;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}

.deco-g-left  { left: -80px; }
.deco-g-right { right: -80px; }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 40px;
  max-width: 1100px;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}

.hero-main-logo {
  width: 120px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 4px 15px rgba(0,0,0,0.8));
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow .line {
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--white);
}

.hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  position: relative; overflow: hidden;
  transition: color var(--transition);
}

.hero-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}

.hero-btn:hover::before { transform: scaleX(1); }
.hero-btn:hover { color: #000; }

.hero-btn span, .hero-btn svg {
  position: relative; z-index: 1;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), rgba(201,169,110,0));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── FLOATING DECO IMAGES ──────────────────────────────────── */
.deco-float {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  filter: grayscale(30%) brightness(0.8);
}

.deco-float-left {
  left: -60px;
  top: 35%;
  width: 280px;
  height: auto;
  animation: decoFloatLeft 8s ease-in-out infinite;
}

.deco-float-right {
  right: -40px;
  top: 65%;
  width: 220px;
  height: auto;
  animation: decoFloatRight 9s ease-in-out infinite;
}

@keyframes decoFloatLeft {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes decoFloatRight {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-16px) rotate(-1deg);
  }
}

/* ── SECTION SHARED ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

.gold-rule.left { margin: 24px 0 0; }

/* ── SERVICES ───────────────────────────────────────────────── */
#services {
  background: var(--bg-2);
  padding: 120px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  padding: 52px 40px 48px;
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
}

.service-card.featured {
  background: #131313;
  border-color: var(--border);
}

.card-icon-wrap {
  width: 64px; height: 64px;
  color: var(--gold);
  margin-bottom: 28px;
}

.card-icon-wrap svg { width:100%; height:100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--white);
}

.card-divider {
  width: 28px; height: 1px;
  background: var(--gold);
  margin: 20px 0 28px;
}

.service-card ul {
  list-style: none;
  width: 100%; text-align: left;
}

.service-card ul li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.service-card ul li:last-child { border-bottom: none; }

.srv-name { flex: 1; }

.srv-price {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  white-space: nowrap;
}

.srv-sub {
  display: block;
  font-family: var(--font-sans) !important;
  font-size: 9px !important; font-weight: 600 !important;
  letter-spacing: 3px !important; text-transform: uppercase !important;
  color: rgba(201,169,110,0.4) !important;
  border-bottom: none !important;
  padding: 16px 0 4px !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Gold glow on hover */
.card-glow {
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}

.service-card:hover .card-glow { opacity: 1; }

/* ── REVIEWS ────────────────────────────────────────────────── */
#reviews {
  padding: 120px 0 60px;
  background: var(--bg);
  text-align: center;
  position: relative;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.review-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 48px 32px;
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

/* Subtle gold reflection */
.review-box::before {
  content: '';
  position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(201,169,110,0.1), transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.review-box:hover {
  border-color: var(--border);
  transform: translateY(-5px);
}

.review-box .stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.review-box .score {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.review-box .platform {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.review-box .count {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── MAP ────────────────────────────────────────────────────── */
#map { width:100%; padding: 0; }

.map-frame {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.map-frame::before,
.map-frame::after {
  content: '';
  position: absolute; top:0; bottom:0;
  width: 100px; z-index: 1;
  pointer-events: none;
}

.map-frame::before {
  left:0;
  background: linear-gradient(to right, var(--bg-2), transparent);
}

.map-frame::after {
  right:0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}

.map-frame iframe {
  width:100%; height:100%; border:0;
  filter: grayscale(100%) contrast(0.9) brightness(0.75);
}

/* ── OPENING HOURS ──────────────────────────────────────────── */
#opening-hours {
  background: var(--bg);
  padding: 120px 60px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.oh-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.oh-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white);
}

.oh-cta {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition);
}

.oh-cta:hover { color: var(--gold-light); border-color: var(--gold); }

.oh-right {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hours-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase;
}

.hours-row .day  { min-width: 190px; color: var(--grey-light); }
.hours-row .time { white-space: nowrap; color: var(--white); margin-left: auto; }

.hours-row .dots {
  flex: 1; height: 1px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.hours-row.closed .time { color: rgba(255,255,255,0.25); }

.hours-note {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ── BOOK APPOINTMENT ───────────────────────────────────────── */
#book {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}

.book-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=1440&q=80&auto=format') center/cover no-repeat;
  filter: blur(6px) brightness(0.35) saturate(0.5);
  transform: scale(1.06);
  z-index: 0;
}

.book-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center,
    rgba(8,8,8,0) 0%, rgba(8,8,8,0.75) 100%);
}

.book-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.section-label.light { color: var(--gold); }

.book-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 400; font-style: italic;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
}

.book-btn {
  display: inline-flex; align-items: center; gap: 20px;
  margin-top: 12px;
  padding: 18px 48px;
  background: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: #000;
  transition: background var(--transition), transform var(--transition);
}

.book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 18px;
  transition: transform var(--transition);
}

.book-btn:hover .btn-arrow { transform: translateX(6px); }

.book-sub {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 60px 48px;
}

.footer-top {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; margin-bottom: 48px; text-align: center;
}

.footer-logo {
  width: 64px; height: 64px;
  font-size: 32px !important;
  border-color: var(--border) !important;
  color: var(--gold) !important;
  display: flex !important;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px; font-weight: 300;
  font-style: italic; letter-spacing: 1px;
  color: var(--grey);
}

.footer-divider {
  width: 100%; max-width: 1100px;
  height: 1px; margin: 0 auto 48px;
  background: rgba(255,255,255,0.05);
}

.footer-links {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 48px;
  margin-bottom: 48px;
}

.footer-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
}

.footer-item:hover { color: var(--gold); }

.footer-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: color var(--transition);
}

.footer-copy {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  display: flex; justify-content: center; gap: 12px;
}

.footer-dot { opacity: 0.4; }

.footer-legal {
  display: flex; justify-content: center;
  gap: 16px; margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-legal a {
  color: var(--grey);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold); }

/* ── COOKIE BANNER ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0 20px 20px;
  animation: cookieSlideUp 0.5s ease-out;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 16px;
}

.cookie-inner p {
  font-family: var(--font-sans);
  font-size: 12px; line-height: 1.7;
  color: var(--grey-light);
  margin: 0;
}

.cookie-inner a {
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.cookie-inner a:hover { border-color: var(--gold); }

.cookie-actions {
  display: flex; gap: 10px;
}

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.cookie-btn-accept {
  background: var(--gold);
  color: #080808;
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--grey);
  border: 1px solid rgba(255,255,255,0.1);
}

.cookie-btn-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  #navbar { padding: 0 32px; }
  #services { padding: 80px 32px; }
  .services-grid, .review-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; gap: 32px; }
  #reviews { padding: 80px 32px 40px; }
  #opening-hours { padding: 80px 32px; }
  .oh-inner { grid-template-columns: 1fr; gap: 48px; }
  #footer { padding: 64px 32px 40px; }
  .deco-float-left { width: 200px; opacity: 0.05; }
  .deco-float-right { width: 160px; opacity: 0.05; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 20px; gap: 24px; }
  .hero-main-logo { width: 75px; }
  .deco-g { display: none; }
  .hero-heading { font-size: clamp(28px, 8vw, 42px); line-height: 1.25; }
  .hero-eyebrow { letter-spacing: 2px; }
  .hero-eyebrow .line { width: 25px; }
  
  .service-card { padding: 32px 24px; }
  .service-card h3 { font-size: 24px; }
  
  #reviews { padding: 60px 20px 20px; }
  .review-box { padding: 32px 24px; }
  .review-box .score { font-size: 46px; }
  
  #opening-hours { padding: 60px 24px; }
  .oh-inner { text-align: center; gap: 40px; }
  .oh-left h2 { font-size: clamp(32px, 8vw, 46px); }
  .gold-rule.left { margin: 24px auto 0; }
  
  .hours-row { font-size: 13px; }
  .hours-row .day { min-width: 110px; font-size: 12px; }
  
  #book { padding: 80px 24px; }
  .book-heading { font-size: clamp(28px, 8vw, 42px); }
  
  .footer-links { flex-direction: column; gap: 20px; align-items: center; }
  .deco-float { display: none; }
}
