/* ==========================================================================
   Nails by Nuke — design tokens (from brand guide)
   ========================================================================== */
:root {
  --blush: #FBCBCE;
  --blush-deep: #F2A8AE;
  --cream: #F6F3F1;
  --ink: #1A1A1A;
  --magenta: #D6216B;
  --indigo: #150B52;
  --gold: #E8B93A;
  --chrome: #C9CDD2;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --max-w: 1080px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.display {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 6vw;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--magenta);
  color: white;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 28px;
}
.btn.btn-light {
  background: var(--ink);
  color: var(--blush);
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
}
.nav .logo {
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.nav-toggle {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}
.nav-links {
  position: fixed;
  inset: 0 0 0 30%;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 100px 8vw 40px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}
.nav-links.open { transform: translateX(0); }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.nav-links a.book-link { color: var(--magenta); }
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 40;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static;
    inset: auto;
    background: none;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 0;
    transform: none;
    transition: none;
  }
  .nav-links a {
    border-bottom: none;
    padding: 0;
    font-size: 0.95rem;
  }
  .nav-links a.book-link {
    background: var(--magenta);
    color: white;
    padding: 10px 22px;
    border-radius: 999px;
  }
  .nav-scrim { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
  padding: 48px 6vw 40px;
}
.hero .wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-copy .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26,26,26,0.65);
  margin: 0 0 14px;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 11vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 18px;
}
.hero-copy p.tagline {
  font-size: 1.1rem;
  max-width: 38ch;
  margin: 0 0 28px;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 860px) {
  .hero { padding: 88px 6vw 80px; }
  .hero .wrap {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .hero-copy { flex: 1; }
  .hero-photo { flex: 0 0 380px; aspect-ratio: 4/5; }
}

/* ---------- Sections ---------- */
section.block { padding: 56px 0; }
.block-head {
  margin-bottom: 32px;
}
.block-head .kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin: 0 0 8px;
}
.block-head h2 {
  font-size: 1.9rem;
  margin: 0;
  max-width: 22ch;
}
.block-head p {
  margin: 12px 0 0;
  max-width: 52ch;
  color: rgba(26,26,26,0.75);
}
.block-foot { margin-top: 28px; }

/* ---------- Intro / bio teaser ---------- */
.intro-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.intro-card .avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blush);
}
.intro-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.intro-card p { margin: 0 0 12px; font-size: 1rem; }
.intro-card p:last-of-type { margin-bottom: 0; }
.intro-card .signature { font-weight: 600; color: var(--magenta); }

@media (min-width: 860px) {
  .intro-card { flex-direction: row; align-items: flex-start; padding: 40px; gap: 32px; }
  .intro-card .avatar { width: 120px; height: 120px; }
}

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-grid a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--chrome);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Circle thumbs (services / press-ons teaser) ---------- */
.circle-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.circle-row::-webkit-scrollbar { display: none; }
.circle-item {
  flex: 0 0 auto;
  width: 132px;
  text-align: center;
}
.circle-item .circle-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--blush);
}
.circle-item .circle-photo img { width: 100%; height: 100%; object-fit: cover; }
.circle-item .circle-label { font-weight: 600; font-size: 0.9rem; }
.circle-item .circle-price { font-size: 0.85rem; color: rgba(26,26,26,0.6); margin-top: 2px; }

/* ---------- Testimonial cards ---------- */
.testimonial-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.testimonial-scroll::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 82%;
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.t-card p.quote { margin: 0 0 14px; font-size: 1rem; }
.t-card p.author { margin: 0; font-weight: 600; font-size: 0.88rem; color: var(--magenta); }

@media (min-width: 640px) {
  .t-card { flex: 0 0 340px; }
}

/* ---------- Dark CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--indigo) 0%, #2a1a6e 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
}
.cta-band h2 { margin: 0 0 14px; font-size: 1.7rem; }
.cta-band p { margin: 0 0 26px; color: rgba(255,255,255,0.8); max-width: 42ch; margin-left: auto; margin-right: auto; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.5); color: white; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 48px 6vw 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid h3 {
  color: white;
  font-size: 0.95rem;
  margin: 0 0 14px;
}
.footer-grid p, .footer-grid a {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 8px;
}
.footer-grid a:hover { color: var(--blush); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Nav active state ---------- */
.nav-links a.active { color: var(--magenta); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
  padding: 44px 6vw 40px;
}
.page-header .kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26,26,26,0.65);
  margin: 0 0 10px;
}
.page-header h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
  margin: 0 0 14px;
  line-height: 1;
}
.page-header p {
  max-width: 46ch;
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Full portfolio grid ---------- */
.full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.full-grid button {
  display: block;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--chrome);
}
.full-grid img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 640px) {
  .full-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 860px) {
  .full-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-md);
  margin: 0 auto;
}
.lightbox .lb-close {
  position: absolute;
  top: 20px;
  right: 6vw;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox .lb-prev { left: 3vw; }
.lightbox .lb-next { right: 3vw; }

/* ---------- Pricing table ---------- */
.price-group { margin-bottom: 40px; }
.price-group h3 {
  font-size: 1.15rem;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(26,26,26,0.15);
}
.price-row:last-child { border-bottom: none; }
.price-row .p-name { font-weight: 600; }
.price-row .p-desc { font-size: 0.85rem; color: rgba(26,26,26,0.6); margin-top: 2px; }
.price-row .p-cost { font-weight: 600; color: var(--magenta); white-space: nowrap; }
.price-note {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  font-size: 0.92rem;
  margin-top: 8px;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--magenta);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: rgba(26,26,26,0.8);
}
.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Product cards (press-ons) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-card .p-photo { aspect-ratio: 1/1; background: var(--chrome); }
.product-card .p-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-card .p-info { padding: 22px; }
.product-card .p-info h3 { margin: 0 0 6px; font-size: 1.1rem; }
.product-card .p-info p { margin: 0 0 14px; font-size: 0.9rem; color: rgba(26,26,26,0.7); }
.product-card .p-info .p-cost { font-weight: 600; color: var(--magenta); margin-bottom: 16px; display: block; }

/* ---------- About page ---------- */
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 28px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { font-size: 1.05rem; margin: 0 0 18px; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.stat-card .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  color: var(--magenta);
}
.stat-card .label { font-size: 0.82rem; color: rgba(26,26,26,0.65); margin-top: 4px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card h3 { margin: 0 0 16px; font-size: 1.1rem; }
.contact-card .row { display: flex; gap: 14px; margin-bottom: 16px; }
.contact-card .row:last-child { margin-bottom: 0; }
.contact-card .row .label { font-weight: 600; width: 90px; flex-shrink: 0; font-size: 0.9rem; }
.contact-card .row .val { font-size: 0.9rem; color: rgba(26,26,26,0.8); }

/* ---------- Testimonials grid (full page) ---------- */
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
}
.t-grid .t-card { flex: none; }

/* ---------- Booking page ---------- */
.booking-panel {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.booking-panel h2 { margin: 0 0 14px; }
.booking-panel p { max-width: 44ch; margin: 0 auto 26px; color: rgba(26,26,26,0.75); }
.booking-steps {
  text-align: left;
  max-width: 42ch;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-steps .step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.booking-steps .step .step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
