/* =============================================================
   GLITZ BELFAST — luxury nail-salon site
   Palette: cream / blush / rose-gold / deep plum
   ============================================================= */

:root {
  --cream:        #faf6f1;
  --cream-2:      #f3ece2;
  --blush:        #f3d9d4;
  --blush-2:      #e7b8b0;
  --rose:         #b76e79;
  --rose-deep:    #8e4a55;
  --plum:         #3a1a2a;
  --plum-2:       #2a1220;
  --ink:          #1a1418;
  --muted:        #6e5d63;
  --line:         #e7dccf;
  --gold:         #c9a16b;

  --maxw: 1240px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shadow-sm: 0 2px 14px rgba(58, 26, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(58, 26, 42, 0.12);
  --shadow-lg: 0 30px 80px rgba(58, 26, 42, 0.20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: var(--rose-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--plum); }

.container {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}

/* ---------- typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 .5em;
}
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 em { font-style: italic; color: var(--rose-deep); }
h3 { font-size: 1.45rem; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 14px;
}
.lede { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head.center .lede { margin-inline: auto; }

section { padding: clamp(70px, 9vw, 130px) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--plum);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(58,26,42,0.25);
}
.btn-primary:hover {
  background: var(--rose-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(143,74,85,0.35);
}
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26,20,24,0.2);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.nav-inner {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  box-shadow: 0 6px 16px rgba(143,74,85,.35);
}
.brand-mark.big { width: 52px; height: 52px; font-size: 28px; }
.brand-text { line-height: 1; }
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 20px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-burger { display: none; }
.nav.is-scrolled {
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(58,26,42,0.08);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 20px 80px;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(58,26,42,.62), rgba(143,74,85,.45) 60%, rgba(58,26,42,.7)),
    url('images/nail1.jpg') center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(26,20,24,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 30px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  font-size: clamp(3.2rem, 11vw, 9rem);
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
.hero-title .italic { font-style: italic; color: var(--blush); }
.hero-title .big { font-size: 1.25em; display: block; margin-top: -.05em; }
.hero-title span { display: block; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto 38px;
  color: rgba(255,255,255,0.9);
}
.hero-sub strong { color: var(--blush); font-weight: 600; }
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-ctas .btn-primary {
  background: var(--cream);
  color: var(--plum);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}
.hero-ctas .btn-primary:hover { background: var(--blush); color: var(--plum-2); }
.hero-ctas .btn-outline {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}
.hero-ctas .btn-outline:hover { background: #fff; color: var(--plum); border-color: #fff; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: .04em;
}
.meta-item { display: inline-flex; align-items: center; gap: 8px; }
.stars { color: var(--gold); letter-spacing: 2px; }
.stars.big { font-size: 2.4rem; color: var(--gold); letter-spacing: 6px; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  z-index: 3;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--plum);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid var(--plum-2);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--blush);
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- SPLIT layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-2);
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.split-media:hover img { transform: scale(1.04); }

.float-card {
  position: absolute;
  bottom: 24px; right: -24px;
  background: var(--cream);
  padding: 22px 26px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  max-width: 230px;
  border: 1px solid var(--line);
}
.float-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--plum);
  line-height: 1;
  font-style: italic;
}
.float-num small {
  font-size: 1rem;
  margin-left: 4px;
  color: var(--rose-deep);
  font-style: normal;
}
.float-text { font-size: 13px; color: var(--muted); margin-top: 8px; }

.badges {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-2);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line);
}
.badges li span {
  color: var(--rose-deep);
  font-weight: 700;
}

/* ---------- SERVICES ---------- */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.section-head { text-align: left; }

/* ---------- TABS ---------- */
.tabs {
  display: flex;
  gap: 6px;
  background: var(--cream);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin: 0 auto 50px;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.tab {
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  transition: all .25s ease;
  white-space: nowrap;
}
.tab:hover { color: var(--rose-deep); }
.tab.is-active {
  background: var(--plum);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(58,26,42,.2);
}
.tab-panel { display: none; }
.tab-panel.is-active {
  display: block;
  animation: panelFade .45s ease;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px 28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush-2);
}
/* card with image header */
.service-card.has-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card.has-image .card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}
.service-card.has-image .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.service-card.has-image:hover .card-image img { transform: scale(1.06); }
.service-card.has-image .card-content {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card.has-image .service-icon {
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.service-card.has-image .service-foot { margin-top: auto; }

.service-card.feature {
  background: linear-gradient(160deg, var(--plum) 0%, var(--rose-deep) 100%);
  color: var(--cream);
  border-color: transparent;
}
.service-card.feature h3,
.service-card.feature .service-icon { color: var(--cream); }
.service-card.feature p { color: rgba(255,255,255,0.85); }
.service-card.feature .service-foot { border-color: rgba(255,255,255,0.2); }
.service-card.feature .service-foot span:first-child { color: var(--gold); }
.service-card.feature .time { color: var(--blush); }
.service-icon {
  font-size: 2rem;
  color: var(--rose-deep);
  margin-bottom: 18px;
  font-family: var(--serif);
}
.service-card h3 { color: var(--ink); margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.service-card.feature p { color: rgba(255,255,255,0.88); }
.service-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  font-size: 14px;
}
.service-foot span:first-child {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--plum);
  font-style: italic;
}
.time { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.service-note {
  text-align: center;
  margin-top: 50px;
  color: var(--muted);
  font-size: 14px;
}
.service-note.small {
  margin-top: 30px;
  font-size: 13px;
  max-width: 760px;
  margin-inline: auto;
}

/* ---------- SHOP ---------- */
.shop {
  background: var(--cream);
  padding-block: 90px;
}
.shop-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--blush) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.shop-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,110,121,0.18), transparent 70%);
}
.shop-text h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: 16px;
}
.shop-text p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 56ch;
}
.shop-deco {
  font-size: clamp(5rem, 12vw, 10rem);
  text-align: center;
  filter: drop-shadow(0 10px 30px rgba(143,74,85,0.25));
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .shop-card { grid-template-columns: 1fr; gap: 20px; }
  .shop-deco { font-size: 5rem; }
}

/* ---------- GALLERY ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gal-tile {
  overflow: hidden;
  border-radius: var(--r-md);
  position: relative;
  display: block;
  background: var(--cream-2);
}
.gal-tile.tall { grid-row: span 2; }
.gal-tile.wide { grid-column: span 2; }
.gal-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
}
.gal-tile:hover img { transform: scale(1.08); filter: brightness(1.05); }
.center-row { text-align: center; margin-top: 50px; }

/* ---------- REVIEWS ---------- */
.reviews {
  background: linear-gradient(180deg, var(--cream-2), var(--blush));
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.review {
  background: var(--cream);
  margin: 0;
  padding: 36px 30px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review::before {
  content: '"';
  position: absolute;
  top: -10px; left: 18px;
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--blush-2);
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
}
.review footer {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
}

/* ---------- ACADEMY ---------- */
.academy {
  background:
    radial-gradient(ellipse at top right, rgba(183,110,121,0.08), transparent 50%),
    var(--cream);
}
.course-list {
  margin: 32px 0 36px;
  border-top: 1px solid var(--line);
}
.course {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.course span { color: var(--ink); }
.course strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--rose-deep);
}

/* ---------- VISIT ---------- */
.visit { background: var(--plum); color: var(--cream); }
.visit .eyebrow { color: var(--blush); }
.visit h2 { color: var(--cream); }
.visit h2 em { color: var(--gold); }
.visit p { color: rgba(255,255,255,0.85); }
.visit a { color: var(--blush); }
.visit a:hover { color: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin: 36px 0;
}
.contact-grid h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-grid p { margin: 0; color: rgba(255,255,255,0.92); font-size: 15px; }
.map-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--plum-2);
  filter: grayscale(1) contrast(1.05);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--plum-2);
  color: var(--cream);
  padding: 70px 0 30px;
}
.footer-inner {
  display: grid;
  gap: 50px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.6rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-block: 30px;
  border-block: 1px solid rgba(255,255,255,0.1);
}
.footer-cols h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 12px;
}
.footer-cols p { margin: 0; color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-cols a { color: var(--cream); }
.footer-cols a:hover { color: var(--gold); }
.copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: .05em;
}

/* ---------- FAB call button ---------- */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(58,26,42,0.4);
  transition: transform .25s, background .25s;
}
.fab:hover { background: var(--rose-deep); transform: scale(1.08); }

/* ---------- REVEAL animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: transparent;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    width: 16px; height: 1.5px;
    background: var(--ink);
    margin: 0 auto;
    transition: transform .3s;
  }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 30px;
    gap: 18px;
    border-top: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }

  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .float-card { right: 12px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gal-tile.wide { grid-column: span 2; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 4/3; }

  .hero-meta { font-size: 12px; }
  .dot { display: none; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gal-tile.wide, .gal-tile.tall { grid-column: span 1; grid-row: span 1; }
  .footer-cols { grid-template-columns: 1fr; }
  .badges { gap: 8px; }
  .badges li { font-size: 12px; padding: 8px 12px; }
}
