/* ============================================================
   Pleasant Nails & Spa — Grand Rapids, MI
   Shared stylesheet for all pages
   Palette: cream / blush / beige / warm taupe / dark warm ink
   Type: Cormorant Garamond (display) + Lato (body)
   ============================================================ */

:root {
  --cream: #FAF7F2;
  --cream-deep: #F3EDE4;
  --blush: #EED9D3;
  --blush-soft: #F7EAE6;
  --sand: #EFE7DB;
  --taupe: #8A7A6B;
  --taupe-light: #B3A493;
  --rose: #B76E79;
  --rose-deep: #9E5561;
  --ink: #2B2622;
  --ink-soft: #55493F;
  --line: #E4D9CC;
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;

  --radius-card: 18px;
  --radius-pill: 999px;
  --radius-arch: 220px 220px 18px 18px; /* signature nail-arch image frame */

  --shadow-soft: 0 10px 30px rgba(80, 62, 48, 0.10);
  --shadow-lift: 0 16px 40px rgba(80, 62, 48, 0.16);

  --max-width: 1160px;
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--rose); }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4.5rem 0; }
.section--tint { background: var(--cream-deep); }
.section--blush { background: var(--blush-soft); }

/* Eyebrow label: small polish-swatch dot + tracked caps */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 12px;
  height: 16px;
  background: var(--rose);
  border-radius: 8px 8px 4px 4px; /* tiny nail-swatch shape */
  flex: none;
}

.section-intro { max-width: 640px; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.9rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: var(--rose-deep); color: var(--white); box-shadow: var(--shadow-lift); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--taupe-light);
}
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-deep); }

.btn--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.btn--light:hover { color: var(--rose-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- Header / navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
}
.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.93rem;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--rose-deep); }

.header-actions { display: flex; align-items: center; gap: 0.7rem; }

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
}
.call-link:hover { color: var(--rose-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--taupe-light);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
}

/* ---------- Hero (split, arched photo) ---------- */

.hero {
  padding: 4rem 0 4.5rem;
  background:
    radial-gradient(60% 80% at 85% 10%, var(--blush-soft) 0%, transparent 60%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 { margin-bottom: 0.6rem; }

.hero-sub {
  font-size: 1.18rem;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.hero-trust {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--taupe);
}

.hero-photo {
  position: relative;
  justify-self: center;
}
.hero-photo img {
  width: min(400px, 100%);
  aspect-ratio: 4 / 5.4;
  object-fit: cover;
  border-radius: var(--radius-arch);
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--taupe-light);
  border-radius: var(--radius-arch);
  z-index: -1;
}

/* ---------- AI summary strip ---------- */

.ai-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
}
.ai-summary p { margin: 0; font-size: 1.02rem; }

/* ---------- Quick facts ---------- */

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.3rem;
}
.fact dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.3rem;
}
.fact dd { margin: 0; color: var(--ink); font-weight: 600; font-size: 0.98rem; }

/* ---------- Service cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.4rem; }
.card-body p { font-size: 0.96rem; margin-bottom: 0.9rem; }

.card-meta {
  font-size: 0.85rem;
  color: var(--taupe);
  margin: 0 0 1rem;
  display: grid;
  gap: 0.25rem;
}
.card-meta strong { color: var(--ink-soft); font-weight: 700; }

.card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  color: var(--rose-deep);
}
.card-link::after { content: " →"; }
.card-link:hover { text-decoration: underline; }

/* ---------- PNS Standard pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.pillar {
  background: var(--white);
  border-top: 4px solid var(--rose);
  border-radius: 12px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.93rem; margin: 0; }

/* ---------- About split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-photo img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}
.gallery-grid img {
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ---------- Testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
  margin: 0;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.quote footer { font-size: 0.85rem; font-weight: 700; color: var(--taupe); letter-spacing: 0.06em; }

/* ---------- Big CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--blush) 0%, var(--sand) 100%);
  border-radius: 26px;
  padding: 3.2rem 2.4rem;
  text-align: center;
}
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band p { max-width: 540px; margin: 0 auto 1.5rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- FAQ ---------- */

.faq-list { margin-top: 2rem; max-width: 780px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--rose);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.3rem 1.2rem; }
.faq-item .faq-answer p { margin-bottom: 0.5em; }

/* ---------- Contact / location ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.7rem 1.7rem;
  box-shadow: var(--shadow-soft);
}
.info-card h3 { margin-bottom: 0.6rem; }
.info-card address { font-style: normal; color: var(--ink-soft); margin-bottom: 0.8rem; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.hours-table td { padding: 0.35rem 0; color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--ink); }
.hours-table tr + tr td { border-top: 1px dashed var(--line); }

.map-embed {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

/* ---------- Forms (booking / contact) ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  max-width: 720px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field--full { grid-column: 1 / -1; }

.form-field label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.form-field .hint { font-size: 0.8rem; color: var(--taupe); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
  background: var(--white);
}

.form-note {
  background: var(--blush-soft);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 1.2rem 0;
}

.form-status { margin-top: 1rem; font-weight: 700; display: none; }
.form-status.is-success { display: block; color: #3E6B4A; }
.form-status.is-error { display: block; color: #A0403E; }

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: var(--taupe);
}
.breadcrumbs li + li::before { content: "›"; margin-right: 0.4rem; color: var(--taupe-light); }
.breadcrumbs a { color: var(--taupe); text-decoration: none; }
.breadcrumbs a:hover { color: var(--rose-deep); text-decoration: underline; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero { padding: 3rem 0 3.2rem; }
.page-hero .lead { font-size: 1.15rem; max-width: 42rem; }

/* ---------- Prose blocks on service pages ---------- */

.prose { max-width: 720px; }
.prose h2 { margin-top: 2.2rem; }
.prose ul { color: var(--ink-soft); padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

.price-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.8rem; max-width: 620px; }
.price-table th, .price-table td { text-align: left; padding: 0.7rem 0.4rem; border-bottom: 1px solid var(--line); }
.price-table th { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #D8CFC5;
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: #D8CFC5; text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: var(--blush); text-decoration: underline; }
.site-footer address { font-style: normal; font-size: 0.95rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: #A79B8E;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo img { width: min(340px, 90%); margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 0;
  }
  .main-nav a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .header-actions .btn { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
  .call-link span.call-label { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 3.2rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 2.4rem 1.4rem; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- One-line helper ---------- */
.one-line { white-space: nowrap; }
@media (max-width: 700px) { .one-line { white-space: normal; } }
