/* ===================================================
   MEHMET TUNBUL BARBER'S CLUB — Premium Stylesheet
   =================================================== */

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

:root {
  --bg: #0a0a0a;
  --bg-alt: #070707;
  --bg-card: #111110;
  --fg: #ede7dc;
  --fg-rgb: 237,231,220;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-dim: rgba(201,169,110,.5);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --gap: 100px;
  --gap-lg: 140px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

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

/* --- GPU HINTS & PAINT CONTAINMENT --- */
.about, .services, .gallery, .whyus, .booking, .contact, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 56px; } }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1c1b18; border-radius: 2px; }

/* --- SELECTION --- */
::selection { background: rgba(201,169,110,.18); color: var(--fg); }

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-stagger > .reveal:nth-child(1)  { transition-delay: .04s; }
.reveal-stagger > .reveal:nth-child(2)  { transition-delay: .08s; }
.reveal-stagger > .reveal:nth-child(3)  { transition-delay: .12s; }
.reveal-stagger > .reveal:nth-child(4)  { transition-delay: .16s; }
.reveal-stagger > .reveal:nth-child(5)  { transition-delay: .20s; }
.reveal-stagger > .reveal:nth-child(6)  { transition-delay: .24s; }
.reveal-stagger > .reveal:nth-child(7)  { transition-delay: .28s; }
.reveal-stagger > .reveal:nth-child(8)  { transition-delay: .32s; }
.reveal-stagger > .reveal:nth-child(9)  { transition-delay: .36s; }
.reveal-stagger > .reveal:nth-child(10) { transition-delay: .40s; }

/* --- SECTION PRIMITIVES --- */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.section-title--center { text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: all .4s var(--ease), transform .25s;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn { padding: 16px 44px; font-size: 10.5px; }
}

/* Click animation — scale press + ripple */
.btn:active { transform: scale(.96); }

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  padding: 18px 48px;
  font-size: 11px;
}
@media (min-width: 768px) {
  .btn--gold { padding: 20px 56px; font-size: 11.5px; }
}
.btn--gold::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(var(--fg-rgb),.2);
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease-out), height .6s var(--ease-out), opacity .6s;
  opacity: 0;
}
.btn--gold:active::before {
  width: 300px; height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--fg-rgb),.1), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.btn--gold:hover::after { opacity: 1; }
.btn--gold:hover { box-shadow: 0 6px 32px rgba(201,169,110,.25); }

.btn--outline {
  border: 1px solid rgba(var(--fg-rgb),.1);
  color: rgba(var(--fg-rgb),.6);
}
.btn--outline::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(var(--fg-rgb),.06);
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease-out), height .6s var(--ease-out), opacity .6s;
  opacity: 0;
}
.btn--outline:active::before {
  width: 300px; height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}
.btn--outline:hover {
  border-color: rgba(var(--fg-rgb),.25);
  color: var(--fg);
  background: rgba(var(--fg-rgb),.03);
}

/* =====================
   HEADER
   ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .6s cubic-bezier(.16,1,.3,1), border-color .6s, backdrop-filter .6s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(var(--fg-rgb),.04);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 768px)  { .header__inner { padding: 0 40px; height: 72px; } }
@media (min-width: 1024px) { .header__inner { padding: 0 56px; height: 80px; } }

/* ---- HEADER LOGO ---- */
.header__logo {
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.header__logo-monogram {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .header__logo-monogram { width: 40px; height: 40px; }
}
@media (min-width: 1024px) {
  .header__logo-monogram { width: 42px; height: 42px; }
}

.header__logo-text {
  display: none;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .01em;
  color: rgba(var(--fg-rgb),.85);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header__logo-text { display: block; }
}

.header__nav {
  display: none;
  gap: 32px;
}
@media (min-width: 1024px) { .header__nav { display: flex; } }

.header__link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(var(--fg-rgb),.38);
  transition: color .3s;
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.header__link:hover { color: rgba(var(--fg-rgb),.85); }
.header__link:hover::after { transform: scaleX(1); transform-origin: left; }

.header__right {
  display: none;
  align-items: center;
  gap: 18px;
}
@media (min-width: 1024px) { .header__right { display: flex; } }

.header__social {
  color: rgba(var(--fg-rgb),.25);
  transition: color .3s, transform .3s;
  display: flex; align-items: center;
}
.header__social:hover { color: rgba(var(--fg-rgb),.75); transform: translateY(-1px); }

.header__cta {
  margin-left: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(201,169,110,.22);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.header__cta:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 2px 16px rgba(201,169,110,.18);
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 1024px) { .header__burger { display: none; } }
.header__burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--fg);
  transition: transform .4s var(--ease-out), opacity .3s;
  transform-origin: center;
}
.header__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.header__burger.is-open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .5s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu__nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.mobile-menu__link {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 400;
  letter-spacing: .02em;
  color: rgba(var(--fg-rgb),.5);
  transform: translateY(16px); opacity: 0;
  transition: color .3s, transform .5s var(--ease-out), opacity .5s;
}
.mobile-menu.is-open .mobile-menu__link { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: .05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: .1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: .15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: .2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: .25s; }
.mobile-menu__link:hover { color: var(--fg); }

.mobile-menu__cta {
  margin-top: 12px;
  padding: 14px 44px;
  border: 1px solid rgba(201,169,110,.22);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0; transform: translateY(12px);
  transition: all .5s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: translateY(0); transition-delay: .32s; }
.mobile-menu__cta:hover { background: var(--gold); color: var(--bg); }

.mobile-menu__social {
  display: flex; gap: 24px; margin-top: 12px;
  opacity: 0; transition: opacity .5s .38s;
}
.mobile-menu.is-open .mobile-menu__social { opacity: 1; }
.mobile-menu__social a { color: rgba(var(--fg-rgb),.22); transition: color .3s; display: flex; }
.mobile-menu__social a:hover { color: var(--fg); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 100vh; height: 100dvh;
  min-height: 580px;
  overflow: hidden;
}
.hero__video-wrap { position: absolute; inset: 0; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .6s ease;
}
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.52); }
.hero__gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,.4) 50%, transparent 100%);
}

.hero__logo3d {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

.hero__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 56px;
  max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px)  { .hero__content { padding: 0 40px 88px; } }
@media (min-width: 1024px) { .hero__content { padding: 0 56px 110px; } }

.hero__location {
  font-size: 10px; font-weight: 400;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
@media (min-width: 768px) {
  .hero__location { font-size: 11px; margin-bottom: 28px; }
}
.hero__location::before {
  content: ''; width: 20px; height: 1px;
  background: rgba(201,169,110,.28);
}

.hero__headline {
  font-family: var(--display);
  font-weight: 400; font-style: normal;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: .95; letter-spacing: -.015em;
  margin-bottom: 20px;
  color: var(--fg);
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
@media (min-width: 768px) {
  .hero__headline { margin-bottom: 24px; }
}
.hero__sub {
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  font-weight: 300;
  color: rgba(var(--fg-rgb),.45);
  letter-spacing: .02em;
  margin-bottom: 10px;
  max-width: 440px;
}
.hero__sub--detail {
  font-size: clamp(.85rem, 1.5vw, .95rem);
  color: rgba(var(--fg-rgb),.22);
  letter-spacing: .015em;
  margin-bottom: 36px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .hero__sub--detail { margin-bottom: 44px; }
}
.hero__ctas {
  display: flex; flex-wrap: wrap;
  align-items: stretch; gap: 10px;
}
@media (min-width: 640px) { .hero__ctas { gap: 14px; align-items: center; } }

/* Hero primary CTA — oversized, magnetic */
.hero__cta-primary {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 22px 52px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all .45s var(--ease), transform .25s;
  box-shadow: 0 4px 24px rgba(201,169,110,.15);
}
@media (min-width: 768px) {
  .hero__cta-primary {
    padding: 24px 64px;
    font-size: 13px;
    letter-spacing: .26em;
  }
}
@media (min-width: 1024px) {
  .hero__cta-primary {
    padding: 26px 72px;
    font-size: 13.5px;
  }
}
.hero__cta-primary:active { transform: scale(.97); }
.hero__cta-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(var(--fg-rgb),.18);
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease-out), height .6s var(--ease-out), opacity .6s;
  opacity: 0;
}
.hero__cta-primary:active::before {
  width: 400px; height: 400px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}
.hero__cta-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--fg-rgb),.12), transparent 60%);
  opacity: 0;
  transition: opacity .45s;
}
.hero__cta-primary:hover::after { opacity: 1; }
.hero__cta-primary:hover {
  box-shadow: 0 8px 40px rgba(201,169,110,.3), 0 0 0 1px rgba(201,169,110,.1);
  transform: translateY(-1px);
}

/* Hero secondary CTAs — gold outlined rectangles */
.hero__cta-secondary {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 16px 32px;
  border: 1px solid rgba(201,169,110,.28);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all .45s cubic-bezier(.16,1,.3,1), transform .25s;
}
@media (min-width: 768px) {
  .hero__cta-secondary { padding: 17px 38px; font-size: 10.5px; }
}
.hero__cta-secondary:active { transform: scale(.96); }
.hero__cta-secondary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(201,169,110,.1);
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease-out), height .6s var(--ease-out), opacity .6s;
  opacity: 0;
}
.hero__cta-secondary:active::before {
  width: 300px; height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}
.hero__cta-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,.08);
  color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,169,110,.12);
}

.hero__scroll {
  position: absolute; bottom: 20px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767px) { .hero__scroll { display: none; } }
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(var(--fg-rgb),.15), transparent);
  animation: scrollPulse 3s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .2; transform: scaleY(1); }
  50% { opacity: .6; transform: scaleY(1.06) translateY(3px); }
}

/* =====================
   ABOUT
   ===================== */
.about {
  padding: var(--gap) 0;
  border-top: 1px solid rgba(var(--fg-rgb),.03);
}
@media (min-width: 1024px) { .about { padding: var(--gap-lg) 0; } }

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 5fr 6fr; gap: 72px; }
}

.about__image-col { order: 2; }
@media (min-width: 1024px) { .about__image-col { order: 1; } }

.about__image-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .about__image-wrap { margin: 0; max-width: none; } }

.about__image-mask {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.about__image {
  width: 100%;
  display: block;
  mix-blend-mode: luminosity;
  filter: contrast(1.08) brightness(.88);
  position: relative; z-index: 1;
  transition: filter .8s var(--ease);
}
.about__image-mask:hover .about__image {
  filter: contrast(1.1) brightness(.9);
}
.about__image-mask::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to right,  var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 6%, transparent 85%, var(--bg) 100%);
  pointer-events: none;
}

.about__text-col { order: 1; }
@media (min-width: 1024px) { .about__text-col { order: 2; } }

.about__paragraph {
  color: rgba(var(--fg-rgb),.38);
  font-size: 15px; line-height: 1.85;
  margin-top: 20px;
  letter-spacing: .01em;
}
@media (min-width: 768px) { .about__paragraph { font-size: 16px; } }

.about__brand {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(var(--fg-rgb),.04);
  text-align: center;
}
.about__wordmark {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: .15;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .about__wordmark { height: 52px; }
}

/* =====================
   SERVICES
   ===================== */
.services {
  padding: var(--gap) 0;
  border-top: 1px solid rgba(var(--fg-rgb),.03);
}
@media (min-width: 1024px) { .services { padding: var(--gap-lg) 0; } }

.services__list { margin-top: 48px; }
@media (min-width: 1024px) { .services__list { margin-top: 64px; } }

a.services__item { text-decoration: none; color: inherit; }
.services__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 28px 16px;
  border-top: 1px solid rgba(var(--fg-rgb),.04);
  transition: background .6s cubic-bezier(.16,1,.3,1), border-color .5s, transform .5s cubic-bezier(.16,1,.3,1);
  position: relative;
  cursor: pointer;
}
.services__item:last-child { border-bottom: 1px solid rgba(var(--fg-rgb),.04); }
.services__item:hover {
  background: rgba(var(--fg-rgb),.015);
  border-top-color: rgba(201,169,110,.08);
}

@media (min-width: 1024px) {
  .services__item {
    grid-template-columns: 36px 2.5fr 4fr 1.8fr;
    gap: 28px; align-items: center;
    padding: 40px 24px;
  }
}

/* Gold accent bar on left */
.services__item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2px; height: 0;
  background: var(--gold);
  transform: translateY(-50%);
  transition: height .5s var(--ease-out), opacity .4s;
  opacity: 0;
}
.services__item:hover::before {
  height: 60%;
  opacity: 1;
}

.services__num {
  font-size: 10px; color: rgba(var(--fg-rgb),.06);
  letter-spacing: .06em; font-variant-numeric: tabular-nums;
  transition: color .4s;
}
.services__item:hover .services__num { color: rgba(201,169,110,.2); }

.services__name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  letter-spacing: .01em;
  transition: color .4s, transform .4s var(--ease);
  color: rgba(var(--fg-rgb),.85);
}
.services__item:hover .services__name {
  color: var(--fg);
  transform: translateX(4px);
}

.services__desc {
  color: rgba(var(--fg-rgb),.28);
  font-size: 14px; line-height: 1.7;
  transition: color .4s;
}
@media (min-width: 768px) { .services__desc { font-size: 15px; } }
.services__item:hover .services__desc { color: rgba(var(--fg-rgb),.4); }

.services__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(201,169,110,.15);
  transition: color .4s, gap .4s var(--ease);
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 1024px) { .services__cta { text-align: right; justify-self: end; } }
.services__cta-arrow {
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .4s var(--ease-out);
}
.services__cta-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.services__item:hover .services__cta {
  color: var(--gold);
  gap: 10px;
}
.services__item:hover .services__cta-arrow { width: 24px; }

/* Services section CTA */
.services__booking {
  margin-top: 48px;
  text-align: center;
}
@media (min-width: 1024px) { .services__booking { margin-top: 64px; } }

/* =====================
   GALLERY
   ===================== */
.gallery {
  padding: var(--gap) 0;
  border-top: 1px solid rgba(var(--fg-rgb),.03);
}
@media (min-width: 1024px) { .gallery { padding: var(--gap-lg) 0; } }

/* --- Photo Grid --- */
.gallery__photos {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .gallery__photos {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .gallery__photos {
    gap: 16px;
    margin-top: 56px;
  }
}

/* --- Frame (photo) --- */
.gallery__frame {
  position: relative;
  overflow: hidden;
  background: #080807;
}

.gallery__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(.88) contrast(1.04);
  transition: transform 1.4s cubic-bezier(.16,1,.3,1), filter 1.2s ease;
  will-change: transform;
}
.gallery__frame:hover .gallery__img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.06);
}

/* --- Video Row --- */
.gallery__videos {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .gallery__videos {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .gallery__videos { gap: 16px; }
}

.gallery__vframe {
  position: relative;
  overflow: hidden;
  background: #080807;
}

.gallery__video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  filter: saturate(.88) contrast(1.04);
  transition: filter 1.2s ease, transform 1.4s cubic-bezier(.16,1,.3,1);
}
.gallery__vframe:hover .gallery__video {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.02);
}

/* =====================
   WHY US
   ===================== */
.whyus {
  padding: var(--gap) 0;
  border-top: 1px solid rgba(var(--fg-rgb),.05);
  position: relative;
}
@media (min-width: 1024px) { .whyus { padding: var(--gap-lg) 0; } }

/* Subtle radial glow behind grid */
.whyus::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  width: 800px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,169,110,.025) 0%, transparent 65%);
  pointer-events: none;
}

.whyus__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
@media (min-width: 1024px) { .whyus__header { margin-bottom: 64px; } }

.whyus__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .45;
  margin-bottom: 18px;
}

.whyus__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--fg);
}

.whyus__heading-sub {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(var(--fg-rgb),.32);
  letter-spacing: .02em;
  line-height: 1.6;
}

.whyus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(var(--fg-rgb),.06);
  position: relative;
}
@media (min-width: 768px) { .whyus__grid { grid-template-columns: 1fr 1fr; } }

.whyus__card {
  background: var(--bg);
  padding: 36px 24px;
  position: relative;
  transition: background .6s cubic-bezier(.16,1,.3,1);
}
@media (min-width: 768px)  { .whyus__card { padding: 44px 36px; } }
@media (min-width: 1024px) { .whyus__card { padding: 52px 48px; } }

.whyus__card:hover {
  background: rgba(var(--fg-rgb),.02);
}

/* Gold top accent on hover */
.whyus__card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
@media (min-width: 768px) { .whyus__card::before { left: 36px; right: 36px; } }
@media (min-width: 1024px) { .whyus__card::before { left: 48px; right: 48px; } }
.whyus__card:hover::before { opacity: .3; }

.whyus__num {
  font-size: 11px;
  color: rgba(201,169,110,.2);
  letter-spacing: .1em;
  margin-bottom: 20px;
  display: block;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.whyus__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: .01em;
  margin-bottom: 12px;
  transition: color .4s;
  color: rgba(var(--fg-rgb),.88);
}
@media (min-width: 768px) { .whyus__title { font-size: 1.3rem; } }
.whyus__card:hover .whyus__title { color: var(--gold); }

.whyus__desc {
  color: rgba(var(--fg-rgb),.4);
  font-size: 15px;
  line-height: 1.8;
  transition: color .4s;
}
@media (min-width: 768px) { .whyus__desc { font-size: 16px; } }
.whyus__card:hover .whyus__desc { color: rgba(var(--fg-rgb),.52); }

/* =====================
   BOOKING
   ===================== */
.booking {
  padding: var(--gap) 0;
  border-top: 1px solid rgba(var(--fg-rgb),.05);
  text-align: center;
  position: relative; overflow: hidden;
}
@media (min-width: 1024px) { .booking { padding: var(--gap-lg) 0; } }

/* Warm radial glow */
.booking::before {
  content: '';
  position: absolute; top: 35%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,.035) 0%, transparent 60%);
  pointer-events: none;
}

.booking__stamp {
  width: 48px; height: 48px;
  object-fit: contain;
  opacity: .08;
  margin: 0 auto 28px;
  display: block;
}
@media (min-width: 1024px) { .booking__stamp { width: 56px; height: 56px; margin-bottom: 32px; } }

.booking__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--fg);
}

.booking__sub {
  color: rgba(var(--fg-rgb),.38);
  font-size: 1.05rem; font-weight: 300;
  margin-top: 16px; margin-bottom: 36px;
  letter-spacing: .02em;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .booking__sub { font-size: 1.12rem; margin-bottom: 44px; }
}

.booking__ctas {
  display: flex; flex-direction: column;
  gap: 12px; align-items: center;
}
@media (min-width: 640px) {
  .booking__ctas { flex-direction: row; justify-content: center; gap: 16px; }
}

/* Booking primary CTA — bigger than standard gold */
.booking__cta-primary {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 20px 52px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all .45s var(--ease), transform .25s;
  box-shadow: 0 4px 24px rgba(201,169,110,.12);
}
@media (min-width: 768px) {
  .booking__cta-primary { padding: 22px 60px; font-size: 12.5px; }
}
.booking__cta-primary:active { transform: scale(.97); }
.booking__cta-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(var(--fg-rgb),.18);
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease-out), height .6s var(--ease-out), opacity .6s;
  opacity: 0;
}
.booking__cta-primary:active::before {
  width: 400px; height: 400px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}
.booking__cta-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--fg-rgb),.1), transparent 60%);
  opacity: 0;
  transition: opacity .45s;
}
.booking__cta-primary:hover::after { opacity: 1; }
.booking__cta-primary:hover {
  box-shadow: 0 8px 36px rgba(201,169,110,.25);
  transform: translateY(-1px);
}

/* Booking secondary buttons */
.booking__cta-secondary {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 16px 36px;
  border: 1px solid rgba(var(--fg-rgb),.1);
  color: rgba(var(--fg-rgb),.5);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .4s var(--ease), transform .25s;
  position: relative; overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) {
  .booking__cta-secondary { padding: 17px 40px; font-size: 11px; }
}
.booking__cta-secondary:active { transform: scale(.96); }
.booking__cta-secondary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(var(--fg-rgb),.05);
  transform: translate(-50%, -50%);
  transition: width .6s var(--ease-out), height .6s var(--ease-out), opacity .6s;
  opacity: 0;
}
.booking__cta-secondary:active::before {
  width: 300px; height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}
.booking__cta-secondary:hover {
  border-color: rgba(var(--fg-rgb),.22);
  color: var(--fg);
  background: rgba(var(--fg-rgb),.03);
}

/* =====================
   CONTACT
   ===================== */
.contact {
  padding: var(--gap) 0;
  border-top: 1px solid rgba(var(--fg-rgb),.03);
}
@media (min-width: 1024px) { .contact { padding: var(--gap-lg) 0; } }

.contact__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 1024px) { .contact__grid { grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 64px; } }

.contact__heading {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(var(--fg-rgb),.18);
  margin-bottom: 18px;
}
.contact__text {
  color: rgba(var(--fg-rgb),.42);
  line-height: 1.85; font-size: 15px;
}
@media (min-width: 768px) { .contact__text { font-size: 16px; } }

.contact__links { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.contact__links a {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(201,169,110,.38);
  transition: color .3s;
}
.contact__links a:hover { color: var(--gold); }

.contact__hours { display: flex; flex-direction: column; gap: 10px; }
.contact__hour-row {
  display: flex; justify-content: space-between;
  color: rgba(var(--fg-rgb),.38); font-size: 14px;
}
@media (min-width: 768px) { .contact__hour-row { font-size: 15px; } }
.contact__hour-row span:last-child { color: rgba(var(--fg-rgb),.22); }

.contact__social-list { display: flex; flex-direction: column; gap: 10px; }
.contact__social-list a {
  font-size: 14px; color: rgba(var(--fg-rgb),.28);
  transition: color .3s, transform .3s;
  display: inline-flex; align-items: center; gap: 8px;
}
@media (min-width: 768px) { .contact__social-list a { font-size: 15px; } }
.contact__social-list a:hover { color: rgba(var(--fg-rgb),.55); transform: translateX(3px); }
.contact__social-list a::before {
  content: ''; width: 10px; height: 1px;
  background: rgba(var(--fg-rgb),.07);
  transition: width .3s, background .3s;
}
.contact__social-list a:hover::before { width: 16px; background: rgba(201,169,110,.2); }

.contact__map {
  margin-top: 56px;
  width: 100%; aspect-ratio: 16/9;
  background: #0d0d0c; overflow: hidden;
  border: 1px solid rgba(var(--fg-rgb),.03);
}
@media (min-width: 768px)  { .contact__map { aspect-ratio: 21/9; } }
@media (min-width: 1024px) { .contact__map { margin-top: 64px; } }
.contact__map iframe {
  width: 100%; height: 100%;
  filter: grayscale(1) invert(1) contrast(.75) brightness(.45) sepia(.2);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 56px 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(var(--fg-rgb),.03);
}
@media (min-width: 1024px) { .footer { padding: 80px 0; } }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px; margin-bottom: 48px;
}
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2.5fr 1fr 1fr; gap: 36px; margin-bottom: 56px; } }

.footer__wordmark {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: .3;
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  .footer__wordmark { height: 32px; }
}

.footer__tagline {
  color: rgba(var(--fg-rgb),.16);
  font-size: 14px; line-height: 1.6;
  max-width: 320px;
}
@media (min-width: 768px) { .footer__tagline { font-size: 15px; } }

.footer__heading {
  font-size: 9.5px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(var(--fg-rgb),.1);
  margin-bottom: 14px;
}
.footer__nav { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a { font-size: 14px; color: rgba(var(--fg-rgb),.22); transition: color .3s; }
@media (min-width: 768px) { .footer__nav a { font-size: 15px; } }
.footer__nav a:hover { color: rgba(var(--fg-rgb),.48); }

.footer__text { font-size: 14px; color: rgba(var(--fg-rgb),.22); line-height: 1.8; }
@media (min-width: 768px) { .footer__text { font-size: 15px; } }

.footer__social { display: flex; gap: 18px; margin-top: 18px; }
.footer__social a {
  font-size: 10px; font-weight: 500;
  letter-spacing: .1em;
  color: rgba(var(--fg-rgb),.1);
  transition: color .3s;
}
.footer__social a:hover { color: rgba(var(--fg-rgb),.32); }

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(var(--fg-rgb),.03);
  display: flex; flex-direction: column;
  gap: 4px; align-items: center;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__bottom span { font-size: 10px; color: rgba(var(--fg-rgb),.07); letter-spacing: .04em; }

