/* ============================================================
   Wirral Cut Co — global stylesheet
   Charcoal + gold premium barber brand
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;1,6..96,500&display=swap');

:root {
  --ink:        #0C0A09;  /* near-black bg            */
  --char:       #141210;  /* charcoal panel          */
  --char-2:     #1C1917;  /* raised charcoal         */
  --line:       #2A2622;  /* hairline border         */
  --grey:       #8B847C;  /* muted text              */
  --grey-2:     #B9B2A9;  /* secondary text          */
  --cream:      #F5F1EA;  /* light section bg        */
  --white:      #FAF7F2;  /* primary text on dark    */
  --gold:       #C8972E;  /* primary gold accent     */
  --gold-2:     #E4BC63;  /* lighter gold            */
  --gold-deep:  #A87B1E;
  --maxw: 1200px;
  --r: 14px;
  --shadow: 0 30px 80px -30px rgba(0,0,0,.7);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
.display { font-family: 'Bebas Neue', sans-serif; font-weight: 400; line-height: .92; letter-spacing: .01em; }
.serif { font-family: 'Bodoni Moda', serif; }
.eyebrow {
  font-size: 13px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center::after { content: ''; width: 28px; height: 1px; background: var(--gold); display: inline-block; }

h1,h2,h3 { font-weight: 600; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: .95; letter-spacing: .01em; }
.section-title em { font-family: 'Bodoni Moda', serif; font-style: italic; font-weight: 500; color: var(--gold-2); }
.lead { color: var(--grey-2); font-size: 1.05rem; max-width: 60ch; }

section { padding: 110px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; border: 1px solid transparent; transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--ink); box-shadow: 0 12px 30px -10px rgba(200,151,46,.5); }
.btn-gold:hover { box-shadow: 0 16px 40px -8px rgba(200,151,46,.7); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(250,247,242,.28); color: var(--white); background: rgba(250,247,242,.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(200,151,46,.06); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--char-2); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(12,10,9,.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; font-family: 'Bodoni Moda', serif; color: var(--gold-2);
  font-size: 1rem; font-weight: 500; flex-shrink: 0;
}
.brand-logo { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; display: block; }
.brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .06em; line-height: 1; }
.brand-name small { display: block; font-family: 'Inter'; font-size: .56rem; letter-spacing: .42em; color: var(--gold); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { font-size: .92rem; color: var(--grey-2); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); width: 44px; height: 44px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: grid; place-items: center; }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 49; background: rgba(12,10,9,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: .04em; color: var(--grey-2); transition: color .2s; }
.mobile-menu a:hover { color: var(--gold-2); }
.mobile-menu .btn { margin-top: 20px; font-family: 'Inter'; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { height: 100vh; min-height: 680px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.12); transition: opacity 1.6s var(--ease);
  animation: kenburns 9s ease-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.16); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,10,9,.55) 0%, rgba(12,10,9,.35) 35%, rgba(12,10,9,.78) 100%),
    radial-gradient(120% 90% at 50% 110%, rgba(200,151,46,.10), transparent 60%);
}
.hero-grain { position: absolute; inset: 0; z-index: 1; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.6rem, 11vw, 9rem); line-height: .88; letter-spacing: .01em; }
.hero h1 em { font-family: 'Bodoni Moda', serif; font-style: italic; font-weight: 500; color: var(--gold-2); display: block; }
.hero p { color: var(--grey-2); font-size: 1.15rem; max-width: 44ch; margin: 26px 0 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
}
.hero-rating { display: flex; align-items: center; gap: 12px; color: var(--grey-2); font-size: .9rem; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 30px; height: 3px; border-radius: 2px; border: 0; background: rgba(250,247,242,.25); transition: background .3s; }
.hero-dots button.active { background: var(--gold); }
.scroll-hint { writing-mode: vertical-rl; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--grey); }
@media (max-width: 720px){ .hero-meta .hero-rating { display:none; } }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.strip { background: var(--gold); color: var(--ink); overflow: hidden; padding: 16px 0; }
.strip-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 28s linear infinite; }
.strip span { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .08em; display: inline-flex; align-items: center; gap: 48px; }
.strip span::after { content: '✦'; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--ink); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--char); border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px 30px; transition: border-color .3s, transform .3s, background .3s;
  position: relative; overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.svc-card:hover { transform: translateY(-6px); border-color: rgba(200,151,46,.4); background: var(--char-2); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.svc-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: .03em; }
.svc-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold-2); flex-shrink: 0; }
.svc-desc { color: var(--grey-2); font-size: .95rem; }
.svc-meta { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--grey); font-size: .82rem; }
.svc-meta svg { width: 15px; height: 15px; color: var(--gold); }
.svc-book { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-2); font-size: .9rem; font-weight: 600; transition: gap .25s; }
.svc-card:hover .svc-book { gap: 14px; }
.svc-book svg { width: 16px; height: 16px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--char); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--r); }
.about-badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--gold); color: var(--ink);
  border-radius: var(--r); padding: 22px 26px; box-shadow: var(--shadow);
}
.about-badge strong { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1; display: block; }
.about-badge span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.about-stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.about-stats .stat strong { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--gold-2); display: block; line-height: 1; }
.about-stats .stat span { color: var(--grey); font-size: .85rem; letter-spacing: .05em; }
.about p + p { margin-top: 16px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ink); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gal-item { overflow: hidden; border-radius: 12px; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(12,10,9,.6)); opacity: 0; transition: opacity .3s; }
.gal-item:hover::after { opacity: 1; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
@media (max-width: 860px){ .gal-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; } .gal-wide { grid-column: span 2; } }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--char); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.barber-card { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--char-2); transition: transform .3s, border-color .3s; }
.barber-card:hover { transform: translateY(-6px); border-color: rgba(200,151,46,.4); }
.barber-card img { width: 100%; height: 340px; object-fit: cover; filter: grayscale(.2); transition: filter .4s; }
.barber-card:hover img { filter: grayscale(0); }
.barber-body { padding: 22px 24px; }
.barber-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .03em; }
.barber-body .role { color: var(--gold-2); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.barber-body .tag { color: var(--grey); font-size: .9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews { background: var(--ink); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rev-card { background: var(--char); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 30px; transition: border-color .3s; }
.rev-card:hover { border-color: rgba(200,151,46,.35); }
.rev-card .stars { margin-bottom: 16px; }
.rev-card p { color: var(--grey-2); font-size: 1rem; }
.rev-who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.rev-who .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.rev-who strong { display: block; font-size: .95rem; }
.rev-who span { color: var(--grey); font-size: .82rem; }

/* ============================================================
   CONTACT / LOCATION
   ============================================================ */
.contact { background: var(--char); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.contact-list { display: grid; gap: 22px; margin: 32px 0; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--char-2); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ico svg { width: 20px; height: 20px; color: var(--gold-2); }
.contact-row h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.contact-row p { font-size: 1.02rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-table td:last-child { text-align: right; color: var(--gold-2); font-weight: 500; }
.hours-table tr.today td { color: var(--white); }
.hours-table tr.today td:first-child::after { content: ' • Today'; color: var(--gold); font-size: .72rem; letter-spacing: .1em; }
.map-card { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); min-height: 420px; position: relative; background: var(--char-2); }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.4) invert(.9) contrast(.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080706; border-top: 1px solid var(--line); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--grey-2); font-size: .94rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold-2); }
.footer .blurb { color: var(--grey); font-size: .94rem; margin: 18px 0 22px; max-width: 32ch; }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: all .25s; }
.socials a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--grey); font-size: .85rem; }

/* ============================================================
   FORMS (booking, auth)
   ============================================================ */
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-2); font-weight: 600; }
.field input, .field select {
  width: 100%; padding: 14px 16px; background: var(--char-2); border: 1px solid var(--line);
  border-radius: 10px; color: var(--white); font-size: 1rem; font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: var(--grey); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,46,.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C8972E' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { padding: 13px 16px; border-radius: 10px; font-size: .92rem; margin-bottom: 18px; display: none; }
.form-msg.show { display: block; }
.form-msg.error { background: rgba(220,80,60,.12); border: 1px solid rgba(220,80,60,.4); color: #f3b3a8; }
.form-msg.ok { background: rgba(200,151,46,.12); border: 1px solid rgba(200,151,46,.4); color: var(--gold-2); }

/* ============================================================
   PAGE SHELL (subpages)
   ============================================================ */
.page { padding-top: 76px; min-height: 100vh; }
.page-hero { padding: 70px 0 30px; border-bottom: 1px solid var(--line); background: var(--char); }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem,7vw,5rem); line-height: .95; }
.page-hero p { color: var(--grey-2); margin-top: 10px; }
.breadcrumb { color: var(--grey); font-size: .85rem; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-2); }

/* ---------- booking layout ---------- */
.booking-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; padding: 56px 0 100px; align-items: start; }
.booking-card { background: var(--char); border: 1px solid var(--line); border-radius: var(--r); padding: 36px; }
.step-row { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 10px; color: var(--grey); font-size: .85rem; }
.step .num { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: .8rem; }
.step.active { color: var(--white); } .step.active .num { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 700; }
.step-sep { flex: 1; height: 1px; background: var(--line); min-width: 14px; }

.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.choice {
  border: 1px solid var(--line); background: var(--char-2); border-radius: 12px; padding: 16px 18px;
  cursor: pointer; transition: all .2s; display: flex; justify-content: space-between; align-items: center; gap: 12px; text-align: left;
}
.choice:hover { border-color: rgba(200,151,46,.5); }
.choice.sel { border-color: var(--gold); background: rgba(200,151,46,.08); box-shadow: 0 0 0 3px rgba(200,151,46,.12); }
.choice .c-name { font-weight: 600; font-size: .98rem; }
.choice .c-sub { color: var(--grey); font-size: .82rem; }
.choice .c-price { color: var(--gold-2); font-family: 'Bebas Neue'; font-size: 1.3rem; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px,1fr)); gap: 10px; }
.slot {
  padding: 12px 6px; border: 1px solid var(--line); background: var(--char-2); border-radius: 10px;
  text-align: center; font-size: .95rem; font-weight: 500; transition: all .2s; color: var(--white);
}
.slot:hover { border-color: var(--gold); color: var(--gold-2); }
.slot.sel { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 700; }
.slots-empty { color: var(--grey); font-size: .94rem; padding: 18px 0; grid-column: 1/-1; }

/* summary / sticky */
.summary { background: var(--char); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; position: sticky; top: 96px; }
.summary h3 { font-family: 'Bebas Neue'; font-size: 1.6rem; letter-spacing: .03em; margin-bottom: 6px; }
.sum-row { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.sum-row span:first-child { color: var(--grey); }
.sum-row span:last-child { font-weight: 600; text-align: right; }
.sum-total { display: flex; justify-content: space-between; align-items: center; margin: 20px 0; }
.sum-total .lab { color: var(--grey-2); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; }
.sum-total .val { font-family: 'Bebas Neue'; font-size: 2.4rem; color: var(--gold-2); }

.block { display: none; }
.block.active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* confirmation */
.confirm { text-align: center; padding: 30px 10px; }
.confirm .tick { width: 84px; height: 84px; border-radius: 50%; background: rgba(200,151,46,.12); border: 2px solid var(--gold); display: grid; place-items: center; margin: 0 auto 24px; }
.confirm .tick svg { width: 40px; height: 40px; color: var(--gold-2); }
.confirm h2 { font-family: 'Bebas Neue'; font-size: 2.6rem; letter-spacing: .02em; }
.confirm .ref { display: inline-block; margin-top: 14px; padding: 8px 18px; border: 1px dashed var(--gold); border-radius: 999px; color: var(--gold-2); letter-spacing: .12em; font-size: .9rem; }
.confirm-detail { background: var(--char-2); border: 1px solid var(--line); border-radius: 12px; padding: 24px; max-width: 420px; margin: 28px auto; text-align: left; }

/* ============================================================
   AUTH PAGE
   ============================================================ */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 76px); }
.auth-visual { position: relative; overflow: hidden; }
.auth-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-visual .ov { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(12,10,9,.4), rgba(12,10,9,.85)); display: flex; flex-direction: column; justify-content: flex-end; padding: 56px; }
.auth-visual .ov h2 { font-family: 'Bebas Neue'; font-size: 3rem; line-height: .95; }
.auth-visual .ov p { color: var(--grey-2); margin-top: 12px; max-width: 38ch; }
.auth-form-side { display: flex; align-items: center; justify-content: center; padding: 56px 40px; }
.auth-box { width: 100%; max-width: 420px; }
.auth-tabs { display: flex; gap: 6px; background: var(--char-2); border: 1px solid var(--line); border-radius: 12px; padding: 5px; margin-bottom: 28px; }
.auth-tabs button { flex: 1; padding: 11px; border: 0; background: none; color: var(--grey-2); border-radius: 8px; font-weight: 600; font-size: .92rem; transition: all .2s; }
.auth-tabs button.active { background: var(--gold); color: var(--ink); }
.auth-alt { text-align: center; color: var(--grey); font-size: .9rem; margin-top: 22px; }
.auth-alt button { background: none; border: 0; color: var(--gold-2); font-weight: 600; }
.demo-creds { background: var(--char-2); border: 1px dashed var(--line); border-radius: 12px; padding: 16px 18px; margin-top: 24px; font-size: .85rem; color: var(--grey-2); }
.demo-creds b { color: var(--gold-2); }
.demo-creds .row { display: flex; justify-content: space-between; gap: 10px; padding: 4px 0; }

/* ============================================================
   DASHBOARDS
   ============================================================ */
.dash { padding: 40px 0 90px; }
.dash-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.dash-head h1 { font-family: 'Bebas Neue'; font-size: clamp(2.2rem,5vw,3.4rem); line-height: 1; }
.dash-head p { color: var(--grey); margin-top: 6px; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 34px; }
.stat-card { background: var(--char); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.stat-card .k { color: var(--grey); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.stat-card .v { font-family: 'Bebas Neue'; font-size: 2.6rem; color: var(--gold-2); line-height: 1.1; margin-top: 6px; }

.toolbar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.toolbar input, .toolbar select { padding: 11px 14px; background: var(--char-2); border: 1px solid var(--line); border-radius: 10px; color: var(--white); font-family: inherit; font-size: .92rem; }
.toolbar input:focus, .toolbar select:focus { outline: none; border-color: var(--gold); }
.toolbar .spacer { flex: 1; }

.table-wrap { background: var(--char); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
table.data { width: 100%; border-collapse: collapse; }
table.data th { text-align: left; padding: 16px 18px; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--line); background: var(--char-2); white-space: nowrap; }
table.data td { padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: .92rem; vertical-align: middle; }
table.data tr:last-child td { border-bottom: 0; }
table.data tr:hover td { background: rgba(200,151,46,.03); }
.cust-cell strong { display: block; }
.cust-cell span { color: var(--grey); font-size: .82rem; }
.pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; }
.pill.confirmed { background: rgba(200,151,46,.14); color: var(--gold-2); border: 1px solid rgba(200,151,46,.3); }
.pill.cancelled { background: rgba(150,140,130,.12); color: var(--grey); border: 1px solid var(--line); text-decoration: line-through; }
.pill.upcoming { background: rgba(90,170,120,.14); color: #87d3a3; border: 1px solid rgba(90,170,120,.3); }
.pill.past { background: rgba(150,140,130,.1); color: var(--grey); border: 1px solid var(--line); }
.icon-btn { width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line); background: var(--char-2); color: var(--grey-2); display: inline-grid; place-items: center; transition: all .2s; }
.icon-btn:hover { border-color: #d9543f; color: #f3b3a8; background: rgba(220,80,60,.1); }
.icon-btn svg { width: 17px; height: 17px; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--grey); }
.empty-state svg { width: 48px; height: 48px; color: var(--line); margin: 0 auto 16px; }

.tablecards { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .svc-grid, .team-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media img { height: 420px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .summary { position: static; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 80px 0; }
  .svc-grid, .team-grid, .rev-grid, .choice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .booking-card { padding: 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  /* mobile card table */
  table.data { display: none; }
  .tablecards { display: grid; gap: 12px; }
  .tcard { background: var(--char); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
  .tcard .tc-top { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
  .tcard .tc-row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: .9rem; }
  .tcard .tc-row span:first-child { color: var(--grey); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero-slide { animation: none; }
}
