/* ROYAL Nails & Beauty — site styles */

:root {
  --gold: #b8873b;
  --gold-light: #d4a84f;
  --gold-pale: #f3e6cc;
  --black: #0e0d0c;
  --near-black: #161412;
  --charcoal: #221f1c;
  --cream: #faf6ee;
  --off-white: #f6f1e7;
  --text-muted: #a89b86;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--near-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 700; letter-spacing: .02em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--near-black); }
.section-head p { color: #665f53; margin-top: 14px; font-size: 1.02rem; }

section { padding: 96px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-weight: 600;
}
.btn-gold:hover { background: linear-gradient(135deg, #e0b862, var(--gold-light)); transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-dark {
  border-color: var(--gold);
  color: var(--near-black);
}
.btn-outline-dark:hover { background: var(--gold); color: var(--black); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled {
  background: rgba(14,13,12,.92);
  backdrop-filter: blur(6px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; transition: height .3s ease; }
.site-header.scrolled .brand img { height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--serif); font-size: 1.15rem; color: #fff; letter-spacing: .04em; }
.brand-text span { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #eee;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 11px 22px; font-size: .78rem; }
.nav-toggle {
  display: none;
  background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,.72) 55%, rgba(10,9,8,.92) 100%), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: -1;
}
.hero-inner { max-width: 780px; padding: 0 24px; }
.hero-crest { height: 92px; width: auto; margin: 0 auto 22px; filter: drop-shadow(0 4px 18px rgba(0,0,0,.5)); }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-pale);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-top: 14px;
  letter-spacing: .02em;
}
.hero-sub {
  margin-top: 22px;
  color: #e9e3d6;
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-cta { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 46px;
  display: flex; gap: 34px; justify-content: center; flex-wrap: wrap;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #cfc6b4;
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta .stars { color: var(--gold-light); letter-spacing: 2px; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 1px solid rgba(255,255,255,.5); border-radius: 20px;
}
.scroll-cue::before {
  content: ''; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px;
  background: var(--gold-light); border-radius: 3px; transform: translateX(-50%);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 18px; } 100% { opacity: 0; top: 18px; } }

/* Trust strip */
.trust-strip {
  background: var(--near-black);
  color: #ded4bf;
  padding: 22px 0;
}
.trust-strip .container {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 18px;
  text-align: center; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
}
.trust-strip strong { color: var(--gold-light); font-family: var(--serif); text-transform: none; letter-spacing: 0; font-size: 1rem; }

/* Services */
.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid #ece3d1;
  padding: 32px 28px;
  text-align: left;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(20,15,5,.35);
}
.service-card .icon {
  width: 42px; height: 42px; margin-bottom: 18px;
  color: var(--gold);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--near-black); }
.service-card p { color: #75695a; font-size: .92rem; }

.services-note {
  text-align: center; margin-top: 44px; color: #6b6255; font-size: .92rem;
}
.services-note a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* About / split */
.about { background: var(--near-black); color: #efe9db; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: 2px; }
.split-media .frame {
  position: absolute; top: 18px; left: 18px; right: -18px; bottom: -18px;
  border: 1px solid var(--gold); z-index: -1;
}
.split-text .eyebrow { color: var(--gold-light); }
.split-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); color: #fff; margin-bottom: 20px; }
.split-text p { color: #c9c0ac; margin-bottom: 16px; }
.split-text .btn { margin-top: 12px; }

/* Gallery */
.gallery { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid a { overflow: hidden; display: block; aspect-ratio: 1/1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid .wide { grid-column: span 2; }

/* Reviews */
.reviews { background: var(--black); color: #fff; text-align: center; }
.rating-badge { display: inline-flex; flex-direction: column; align-items: center; gap: 10px; }
.rating-badge .stars { color: var(--gold-light); font-size: 1.8rem; letter-spacing: 6px; }
.rating-badge .score { font-family: var(--serif); font-size: 3rem; color: #fff; }
.rating-badge .count { color: #a89b86; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.review-links { margin-top: 26px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.review-links a { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); border-bottom: 1px solid rgba(212,168,79,.4); padding-bottom: 3px; }
.review-links a:hover { color: #fff; border-color: #fff; }

/* Hours & Location */
.info { background: var(--cream); }
.info-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: stretch; }
.hours-card {
  background: #fff; border: 1px solid #ece3d1; padding: 40px;
}
.hours-card h3 { font-size: 1.4rem; margin-bottom: 22px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #e4d9c2; font-size: .95rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row.today { color: var(--gold); font-weight: 600; }
.contact-block { margin-top: 26px; padding-top: 22px; border-top: 1px solid #ece3d1; }
.contact-block p { margin-bottom: 8px; font-size: .95rem; }
.contact-block strong { color: var(--near-black); }
.map-frame { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(20%) contrast(1.05); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 64px 0;
  text-align: center;
  color: var(--black);
}
.cta-banner h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-bottom: 12px; }
.cta-banner p { margin-bottom: 28px; color: #3a2c10; }
.cta-banner .btn-gold { background: var(--black); color: #fff; }
.cta-banner .btn-gold:hover { background: var(--near-black); }

/* Footer */
footer { background: var(--black); color: #a89b86; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 42px; }
.footer-brand strong { font-family: var(--serif); color: #fff; font-size: 1.1rem; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: .9rem; margin-bottom: 10px; color: #a89b86; }
.footer-col a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 14px; margin-top: 6px; }
.socials a {
  width: 38px; height: 38px; border: 1px solid #3a352c; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #d8cdb6;
}
.socials a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid #262219; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .8rem; color: #756c5c;
}

/* Sticky mobile call bar */
.mobile-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none;
  background: var(--near-black);
  padding: 12px 16px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  font-size: .88rem; padding: 14px; border-radius: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn-outline { display: none; }
  section { padding: 68px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 72px; }
  .trust-strip .container { gap: 12px 24px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10,9,8,.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  transform: translateY(-100%);
  transition: transform .35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-family: var(--serif); font-size: 1.6rem; color: #fff; }
.mobile-nav .btn { margin-top: 10px; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}
