/* =========================================================
   ProfessioNail Narellan — multipage site
   Palette: cream / ivory / brown (per Vicki's brand brief)
   All copy original. Images + prices are placeholders.
   ========================================================= */

:root {
  --ivory: #fdeeea;        /* light pink pastel page background (soft, easy on the eye) */
  --cream: #fffaf6;        /* lighter cards / sections */
  --beige: #fae6e1;        /* soft pink alternating band */
  --rose: #d98c97;         /* dusty pink — eyebrows, accents, soft pops */
  --cocoa: #d81f27;        /* BRAND RED — buttons only, used sparingly (logo P) */
  --cocoa-deep: #4a3636;   /* warm deep rose-brown — headings + dark text */
  --taupe: #b98a86;        /* muted rosy secondary */
  --footer: #f7dde1;       /* light pastel pink footer */
  --ink: #4a3a37;          /* warm dark body text */
  --ink-soft: #7a6a64;     /* muted body */
  --line: #f0ddd6;         /* soft pink hairline borders */

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Jost", system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 3px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  color: var(--cocoa-deep);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--rose);
  margin: 0 0 0.9rem;
}

/* ---------- layout helpers ---------- */
section { padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.section-head.left { margin-left: 0; }
.band-beige { background: var(--beige); }
.band-cream { background: var(--cream); }

/* ---------- placeholder media ---------- */
.ph {
  background: repeating-linear-gradient(45deg, #f1e9d8 0 14px, #f6f0e2 14px 28px);
  display: grid;
  place-items: center;
  position: relative;
  color: var(--cocoa);
  min-height: 220px;
}
.ph::after {
  content: attr(data-ph);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
  opacity: 0.8;
}
/* a .ph that has a real photo dropped in */
.ph.filled { background: none; }
.ph.filled::after { content: none; }
.ph > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-solid { background: var(--cocoa); color: var(--cream); }
.btn-solid:hover { background: var(--cocoa-deep); }
.btn-outline { background: transparent; color: var(--cocoa-deep); border-color: var(--cocoa); }
.btn-outline:hover { background: var(--cocoa); color: var(--cream); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.85rem; }
/* hero CTA: light outline so it's softer than the solid nav button */
.hero .btn-outline { color: var(--cream); border-color: rgba(255,255,255,0.85); background: transparent; }
.hero .btn-outline:hover { background: var(--cream); color: var(--cocoa-deep); border-color: var(--cream); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,228,228,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--cocoa-deep);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 3px;
  font-weight: 400;
}
.brand-logo { height: 56px; width: auto; display: block; }
.footer-brand .brand-logo { height: 76px; }
@media (max-width: 900px) { .brand-logo { height: 46px; } }
.nav-list { display: flex; gap: 2rem; align-items: center; }
.nav-list a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }
.nav-list a.active { color: var(--cocoa-deep); }
.nav-cta { white-space: nowrap; }

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cocoa-deep); transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 0.4rem; padding: 0 var(--pad) 1.5rem; }
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { text-align: center; margin-top: 0.6rem; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  padding: var(--pad);
}
.hero-media { position: absolute; inset: 0; min-height: 100%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(253,238,234,0.55) 0%, transparent 26%),
    radial-gradient(120% 92% at 50% 46%, rgba(38,20,24,0.32), rgba(38,20,24,0.62));
}
.hero-content { position: relative; max-width: 720px; }
.hero-content .eyebrow { color: var(--ivory); opacity: 0.9; }
.hero h1 {
  color: var(--cream);
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: clamp(3.8rem, 9.5vw, 6.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 22px rgba(33,16,20,0.6);
}
.hero-sub { font-size: 1.1rem; font-weight: 300; margin: 1.2rem auto 2.2rem; max-width: 500px; color: #fff; text-shadow: 0 1px 12px rgba(33,16,20,0.55); }
.hero-wordmark { width: min(440px, 84vw); height: auto; margin: 0.3rem auto 0; filter: drop-shadow(0 4px 20px rgba(33,16,20,0.5)); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* page hero (inner pages, shorter) */
.page-hero {
  background: var(--beige);
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero p.eyebrow { margin-bottom: 0.8rem; }
.page-hero p.lead { color: var(--ink-soft); max-width: 560px; margin: 1rem auto 0; }

/* ---------- intro / two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--maxw);
  margin: 0 auto;
}
.split .ph { min-height: 420px; height: 100%; }
.split-text p { color: var(--ink-soft); }

/* ---------- service cards ---------- */
.card-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.s-card {
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(77,48,24,0.4); }
.s-card .ph { min-height: 240px; }
.s-card .body { padding: 1.8rem; }
.s-card h3 { margin-bottom: 0.7rem; }
.s-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }

/* ---------- price menu (services page) ---------- */
.menu-block { max-width: 760px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); }
.menu-block h2 { margin-bottom: 0.4rem; }
.menu-block .menu-note { color: var(--taupe); font-size: 0.9rem; margin-bottom: 1.8rem; }
.menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-row .name { font-size: 1.05rem; color: var(--ink); }
.menu-row .desc { font-size: 0.85rem; color: var(--ink-soft); display: block; margin-top: 2px; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-row .price { font-family: var(--font-display); font-size: 1.25rem; color: var(--cocoa-deep); white-space: nowrap; }

/* ---------- gallery ---------- */
.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid .ph { aspect-ratio: 1 / 1; min-height: 0; }
.gallery-grid .tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* ---------- story band ---------- */
.story { background: var(--beige); display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.story .ph { min-height: 460px; }
.story .content { padding: clamp(3rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.story .content p { color: var(--ink-soft); max-width: 48ch; }

/* ---------- highlight strip ---------- */
.highlights { background: var(--cream); color: var(--ink); }
.highlights .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; text-align: center; }
.highlights h3 { color: var(--cocoa); font-size: 2.4rem; margin-bottom: 0.3rem; }
.highlights p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--beige); color: var(--ink); text-align: center; }
.cta-band h2 { color: var(--cocoa-deep); }
.cta-band p { color: var(--ink-soft); max-width: 46ch; margin: 1rem auto 2rem; }
.cta-band .btn-solid { background: var(--cocoa); color: var(--cream); }
.cta-band .btn-solid:hover { background: var(--cocoa-deep); }

/* ---------- contact ---------- */
.contact-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); }
.info-list { margin: 0 0 2rem; }
.info-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.info-list .label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cocoa); margin-bottom: 0.2rem; }
.info-list a, .info-list span { color: var(--ink); font-size: 1.05rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.hours-row span:last-child { color: var(--ink-soft); }
.booking-box { background: var(--cream); border: 1px solid var(--line); padding: 2rem; }
.note-box {
  background: var(--beige);
  border-left: 3px solid var(--cocoa);
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

/* simple form */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cocoa); margin-bottom: 0.4rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer); color: var(--ink-soft); border-top: 1px solid var(--line); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 2.5rem;
}
.footer-brand .brand { color: var(--ivory); }
.footer-brand .brand small { color: var(--taupe); }
.footer-tag { font-size: 0.9rem; margin-top: 0.8rem; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cocoa-deep); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cocoa); }
.socials { display: flex; gap: 1.2rem; margin-top: 1.2rem; }
.socials a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 1.4rem var(--pad);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-list, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .story, .contact-grid, .highlights .wrap { grid-template-columns: 1fr; }
  .split .ph, .story .ph { min-height: 320px; }
  .story .ph { order: -1; }
  .highlights .wrap { gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .gallery-grid, .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid .tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  /* tighter overall so less scrolling on phones */
  section { padding-top: 2.8rem; padding-bottom: 2.8rem; }
  .page-hero { padding-top: 2.4rem; padding-bottom: 1.8rem; }
  .section-head { margin-bottom: 1.8rem; }
  /* services: keep all three side by side, compact */
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .s-card .body { padding: 0.6rem 0.45rem 0.85rem; }
  .s-card h3 { font-size: 0.9rem; line-height: 1.15; margin-bottom: 0.35rem; }
  .s-card p { display: none; }
  .s-card .ph { min-height: 0; aspect-ratio: 1 / 1; }
  .s-card .btn { padding: 0.45rem 0.3rem; font-size: 0.54rem; letter-spacing: 0.04em; white-space: nowrap; }
  /* contact: tighter, less scrolling */
  .contact-grid { gap: 1.4rem; }
  .info-list li { padding: 0.55rem 0; }
  .info-list a, .info-list span { font-size: 0.98rem; }
  .hours-row { padding: 0.32rem 0; font-size: 0.88rem; }
  .booking-box { padding: 1.3rem; }
}

/* ---------- hero blend ---------- */
.hero-content { position: relative; z-index: 2; }
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to top, var(--ivory), transparent);
  z-index: 1;
  pointer-events: none;
}
/* soften the hard edge between blush bands */
.band-beige, .reviews { position: relative; }

/* ---------- reviews ---------- */
.reviews { background: var(--cream); }
.reviews-carousel { position: relative; max-width: var(--maxw); margin: 0 auto; }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 2px 1rem;
  scroll-behavior: smooth;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 clamp(280px, 33%, 360px);
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--rose); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 0.8rem; }
.review-text { color: var(--ink); font-size: 0.98rem; line-height: 1.65; margin: 0 0 1.3rem; flex: 1; }
.review-meta { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--taupe); }
.review-name { color: var(--ink); font-weight: 500; font-size: 0.98rem; display: block; margin-bottom: 1px; }
.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--cream); color: var(--cocoa-deep);
  font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 6px 18px -8px rgba(74,54,54,0.4); transition: background 0.2s;
}
.rev-arrow:hover { background: var(--beige); }
.rev-prev { left: -12px; }
.rev-next { right: -12px; }
.reviews-cta { text-align: center; margin-top: 2.4rem; }
.reviews-cta a { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border-bottom: 1px solid var(--rose); padding-bottom: 3px; color: var(--cocoa-deep); }
@media (max-width: 700px) { .rev-arrow { display: none; } .review-card { flex-basis: 82%; } }

/* ---------- services accordion ---------- */
.menu-accordion { max-width: 760px; margin: 0 auto; }
details.menu-cat { border-bottom: 1px solid var(--line); }
details.menu-cat:first-child { border-top: 1px solid var(--line); }
details.menu-cat > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--cocoa-deep);
}
details.menu-cat > summary::-webkit-details-marker { display: none; }
details.menu-cat > summary::after {
  content: "+";
  font-family: var(--font-ui);
  font-weight: 300;
  color: var(--rose);
  font-size: 1.7rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
details.menu-cat[open] > summary::after { content: "\2013"; }
details.menu-cat .cat-body { padding: 0 0.2rem 1.5rem; }
details.menu-cat .menu-note { margin: -0.4rem 0 1rem; }
