/* ============================================================
   Sugaring NYC McKinney — Global Stylesheet
   ============================================================

   TABLE OF CONTENTS
   1.  CSS Custom Properties
   2.  Reset & Base
   3.  Typography
   4.  Layout & Container
   5.  Header & Navigation
   6.  Buttons
   7.  Hero Sections
   8.  Service Cards (homepage)
   9.  Hub Cards (category pages)
   10. Trust / Dark Section
   11. Benefits Strip
   12. FAQ Component
   13. CTA Banner
   14. Location Info Section
   15. Internal Links / Pill Links
   16. Breadcrumb
   17. Footer
   18. Utility
   19. Responsive
   ============================================================ */


/* ============================================================
   1. CSS Custom Properties
   ============================================================ */

:root {
  /* Backgrounds */
  --cream:         #ffffff;
  --cream-dark:    #fff8f9;
  --cream-accent:  #ffeab9;
  --bg-dark:       #191919;

  /* Text */
  --text-dark:     #191919;
  --text-body:     #595959;
  --text-muted:    #82838e;
  --text-light:    #ffffff;

  /* Brand Pink (maps to --gold vars for compatibility) */
  --gold:          #fdabb7;
  --gold-hover:    #e8909e;
  --gold-light:    #ffc1c1;
  --gold-pale:     #fff0f2;

  /* Borders */
  --border-light:  #ffe0e5;
  --border-mid:    #fdc0cb;

  /* Typography — Poppins only */
  --serif:  'Poppins', Arial, Helvetica, sans-serif;
  --sans:   'Poppins', Arial, Helvetica, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;

  /* Layout */
  --max-w:     1160px;
  --gutter:    clamp(1.25rem, 4.5vw, 2rem);

  /* Transition */
  --ease: 0.2s ease;
}


/* ============================================================
   2. Reset & Base
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--cream);
}

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

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

/* Inline prose links — dark base for contrast, pink hover accent */
p a, li a, address a {
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-color: var(--border-mid);
  text-underline-offset: 3px;
  transition: color var(--ease), text-decoration-color var(--ease);
}
p a:hover, li a:hover, address a:hover {
  color: var(--gold-hover);
  text-decoration-color: var(--gold-hover);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--sans);
  border: none;
  background: none;
  line-height: inherit;
}

address { font-style: normal; }


/* ============================================================
   3. Typography
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem);  font-weight: 700; color: var(--text-dark); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem);  font-weight: 600; color: var(--text-dark); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem);  font-weight: 600; color: var(--text-dark); }
h4 { font-size: 1rem;  font-weight: 600; color: var(--text-dark); }

p {
  margin-bottom: 1rem;
  max-width: 65ch;
}
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-body);
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}


/* ============================================================
   4. Layout & Container
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 780px;
}

section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header .lead {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--text-body);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-md);
}

/* Fixed 4-column lash style gallery (Classic/Hybrid/Volume/MegaVolume) */
.lash-style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}

.lash-style-grid h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 0.6rem;
}

/* Taller, larger photos to match donor page proportions (4:5 instead of default 16:9) */
.lash-style-grid .photo-placeholder {
  aspect-ratio: 4 / 5;
}

/* Full result card (image + title + description) for leaf-page 4-photo rows */
.lash-photo-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.lash-photo-card .photo-placeholder {
  border: none;
  margin: 0;
}

.lash-photo-card-caption {
  padding: 0.9rem 1rem 1.1rem;
  border-top: 3px solid var(--gold);
}

.lash-photo-card-caption h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}

.lash-photo-card-caption p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .lash-style-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .lash-style-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   5. Header & Navigation
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 78px;
  width: auto;
  display: block;
}

.logo-location {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Footer logo: slightly smaller than header, same proportions */
.footer-brand .site-logo img {
  height: 66px;
}

/* Nav */
.site-nav {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.5rem 0.9rem;
  transition: color var(--ease);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  margin-left: 1.25rem;
}

.nav-secondary {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-secondary a {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.2rem 0.75rem;
  transition: color var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.nav-secondary a:hover,
.nav-secondary a[aria-current="page"] {
  color: var(--gold-hover);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 300;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   6. Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.85rem;
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  border: none;
}
.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(25,25,25,0.4);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(25,25,25,0.35);
}
.btn-outline-light:hover {
  background: var(--text-dark);
  color: var(--gold);
  border-color: var(--text-dark);
}

.btn-lg {
  font-size: 0.78rem;
  padding: 0.95rem 2.2rem;
}


/* ============================================================
   7. Hero Sections
   ============================================================ */

.hero {
  background: var(--cream-dark);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero .eyebrow { margin-bottom: 0.75rem; }
.hero h1     { margin-bottom: 1rem; }
.hero .lead  { margin-bottom: 1.75rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* Page-level hero (inner pages) */
.page-hero {
  background: var(--cream-dark);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border-light);
}

.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero h1       { margin-bottom: 0.75rem; }
.page-hero .lead    { margin-bottom: 1.5rem; max-width: 55ch; }


/* ============================================================
   8. Service Cards (homepage overview)
   ============================================================ */

.service-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: 0 6px 28px rgba(44,36,34,0.1);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.service-card h3 { font-size: 1.4rem; }

.service-card p {
  color: var(--text-body);
  font-size: 0.94rem;
  flex: 1;
  max-width: none;
}

.card-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--ease), gap var(--ease);
}
.service-card:hover .card-cta,
.card-cta:hover { color: var(--gold-hover); gap: 0.6rem; }


/* ============================================================
   9. Hub Cards (category sub-service grid)
   ============================================================ */

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.hub-card {
  border: 1px solid var(--border-light);
  background: var(--cream);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.hub-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 18px rgba(44,36,34,0.08);
}

.hub-card .eyebrow { font-size: 0.75rem; }
.hub-card h3       { font-size: 1.2rem; }

.hub-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  flex: 1;
  max-width: none;
}

.hub-card-footer {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

.status-pill--available {
  background: #EAF2EA;
  color: #3D7A3D;
}

.status-pill--soon {
  background: var(--cream-accent);
  color: var(--text-dark);
}

.hub-card-link {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--ease);
  text-decoration: none;
}
.hub-card-link:hover { color: var(--gold-hover); }


/* ============================================================
   10. Trust / Dark Section
   ============================================================ */

.trust-section {
  background: var(--gold);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.trust-section .eyebrow { color: var(--text-dark); }

.trust-section .section-header h2 {
  color: var(--text-dark);
}

.trust-section .section-header .lead {
  color: var(--text-body);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.5rem;
  margin-top: var(--sp-md);
}

.trust-item { text-align: center; }

.trust-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(25,25,25,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,0.3);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  max-width: none;
  line-height: 1.65;
}


/* ============================================================
   11. Benefits Strip
   ============================================================ */

.benefits-section { background: var(--cream); }

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.benefit-item {
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.benefit-item h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  max-width: none;
  margin-bottom: 0;
}


/* ============================================================
   12. FAQ Component
   ============================================================ */

.faq-section { background: var(--cream-dark); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  border-top: 1px solid var(--border-mid);
}

.faq-item {
  border-bottom: 1px solid var(--border-mid);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--ease);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--gold);
  font-family: var(--sans);
  transition: transform var(--ease), border-color var(--ease);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq-answer {
  padding-bottom: 1.15rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  display: none;
}

.faq-answer p { max-width: none; }

.faq-item.is-open .faq-answer { display: block; }


/* ============================================================
   13. CTA Banner
   ============================================================ */

.cta-banner {
  text-align: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--gold);
}

.cta-banner .eyebrow  { color: var(--text-dark); }
.cta-banner h2        { margin-bottom: 0.75rem; color: var(--text-dark); }
.cta-banner .lead {
  max-width: 48ch;
  margin-inline: auto;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.cta-banner--dark {
  background: var(--gold);
}
.cta-banner--dark h2 {
  color: var(--text-dark);
}
.cta-banner--dark .lead {
  color: var(--text-body);
}


/* ============================================================
   14. Location Info Section
   ============================================================ */

.location-section { background: var(--cream); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.location-details h2 { margin-bottom: 1.25rem; }

.info-block { margin-bottom: 1.5rem; }

.info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.3rem;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.info-value a {
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-color: var(--border-mid);
  text-underline-offset: 3px;
  transition: color var(--ease), text-decoration-color var(--ease);
}
.info-value a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* Deferred map embed */
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  gap: 1rem;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: none;
  margin-bottom: 0;
}

.map-load-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--text-dark);
  border: none;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--ease);
}
.map-load-btn:hover { opacity: 0.85; }

.map-link { margin-top: 0.25rem; }
.map-link a {
  font-size: 0.85rem;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-link a:hover { color: var(--text-muted); }

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ============================================================
   15. Internal Links / Pill Links
   ============================================================ */

.pill-links-section {
  background: var(--cream-dark);
  padding-block: 2rem;
}

.pill-links-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-mid);
  color: var(--text-body);
  background: var(--cream);
  text-decoration: none;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.pill-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}


/* ============================================================
   16. Breadcrumb
   ============================================================ */

.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding-block: 0.6rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--border-mid);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--gold); }

.breadcrumb li:last-child { color: var(--text-dark); }


/* ============================================================
   17. Footer
   ============================================================ */

.site-footer {
  background: var(--gold);
  color: var(--text-dark);
}

.footer-body {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: 2rem;
  border-bottom: 1px solid rgba(25,25,25,0.12);
}

.footer-brand .logo-location { color: var(--text-dark); }

.footer-brand .footer-tagline {
  font-size: 0.87rem;
  color: var(--text-body);
  margin-top: 0.75rem;
  max-width: 26ch;
  line-height: 1.65;
  margin-bottom: 0;
}

.footer-cta {
  margin-top: 1.35rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-body);
  transition: color var(--ease);
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--text-dark); }

.footer-nap address {
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.85;
}

.footer-nap address a {
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-nap address a:hover { color: var(--text-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-block: 1.1rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-body);
}


/* ============================================================
   18. Utility
   ============================================================ */

.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;
}

.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.mt-sm        { margin-top: var(--sp-sm); }
.mt-md        { margin-top: var(--sp-md); }
.bg-cream-dark { background: var(--cream-dark); }


/* ============================================================
   19. Step 2 Component Classes
   ============================================================ */

/* Narrow content wrapper (used inside .container) */
.content-narrow {
  max-width: 760px;
  margin-inline: auto;
}

/* Numbered steps list */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
  list-style: none;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Bullet list with pink left-border accent */
.styled-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.styled-list li {
  font-size: 0.92rem;
  color: var(--text-body);
  padding-left: 1rem;
  border-left: 2px solid var(--border-mid);
  line-height: 1.65;
}

/* Two-column prep/aftercare cards */
.location-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
}
.location-card h3 { margin-bottom: 0.85rem; }

/* Benefit icon accent */
.benefit-icon {
  color: var(--gold);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

/* ============================================================
   20. Step 2 Nav / Footer Aliases
   (Step 2 money pages use different class names from the canonical
    hub pattern; these aliases ensure parity without rebuilding.)
   ============================================================ */

/* Logo alias */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 78px;
  width: auto;
  display: block;
}

/* Nav aliases */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-list a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.5rem 0.9rem;
  transition: color var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.nav-list a:hover,
.nav-list a[aria-current="page"] { color: var(--gold); }

.header-cta { margin-left: 1.25rem; }

.btn-sm {
  font-size: 0.65rem;
  padding: 0.55rem 1.25rem;
}

/* Footer aliases */
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(25,25,25,0.12);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0;
}
.footer-nav ul li a {
  font-size: 0.88rem;
  color: var(--text-body);
  transition: color var(--ease);
  text-decoration: none;
}
.footer-nav ul li a:hover { color: var(--text-dark); }

.footer-address {
  font-size: 0.87rem;
  font-style: normal;
  color: var(--text-body);
  line-height: 1.85;
}
.footer-address a {
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-address a:hover { color: var(--text-dark); }


/* ============================================================
   21. Reviews Section
   ============================================================ */

.reviews-section { background: var(--cream-dark); }

/* Placeholder invite — displayed before real review cards are available */
.reviews-invite {
  max-width: 520px;
  margin-inline: auto;
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.reviews-invite p {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 38ch;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Review card grid — ready for real verified content */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

.review-quote {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.review-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  font-style: normal;
  display: block;
}

.reviews-footer {
  text-align: center;
  margin-top: 2rem;
}


/* ============================================================
   22. Responsive
   ============================================================ */

@media (max-width: 960px) {
  .footer-body {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  .nav-links,
  .nav-list,
  .nav-cta,
  .header-cta,
  .nav-secondary {
    display: none;
  }

  .nav-toggle { display: flex; }

  /* Mobile nav overlay — both .site-nav and .main-nav alias */
  .site-nav.is-open,
  .main-nav.is-open {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 250;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem var(--gutter);
  }

  .site-nav.is-open .nav-links,
  .main-nav.is-open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
  }

  .site-nav.is-open .nav-links a,
  .main-nav.is-open .nav-list a {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--serif);
    font-weight: 400;
    color: var(--text-dark);
  }

  .site-nav.is-open .nav-cta {
    display: block;
    margin-left: 0;
    margin-top: 1.75rem;
  }

  .site-nav.is-open .nav-cta .btn { width: 100%; justify-content: center; }

  .site-nav.is-open .nav-secondary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
  }

  .site-nav.is-open .nav-secondary a {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--serif);
    font-weight: 400;
    color: var(--text-dark);
  }

  /* Keep hamburger on top when nav is open */
  .nav-toggle { position: relative; z-index: 300; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .footer-body,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-logo img          { height: 60px; }
  .footer-brand .site-logo img { height: 52px; }
  .logo img               { height: 60px; }
  .logo-location          { font-size: 0.95rem; }
}


/* ============================================================
   23. Blog, Coupons & Careers Components
   ============================================================ */

/* Blog post card */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ease), transform var(--ease);
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(44,36,34,0.09);
  transform: translateY(-2px);
}

.blog-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-category {
  color: var(--gold-hover);
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-top: 0.25rem;
  line-height: 1.35;
}

.blog-card > p {
  font-size: 0.9rem;
  color: var(--text-body);
  flex: 1;
  max-width: none;
  margin-top: 0.1rem;
}

.blog-card-cta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--ease), gap var(--ease);
}

.blog-card:hover .blog-card-cta {
  color: var(--gold-hover);
  gap: 0.6rem;
}

/* Blog article body */
.article-body {
  max-width: 720px;
  margin-inline: auto;
}

.article-body h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  max-width: none;
  margin-bottom: 1.1rem;
}

.article-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.article-body ul li {
  font-size: 0.93rem;
  color: var(--text-body);
  padding-left: 1rem;
  border-left: 2px solid var(--border-mid);
  line-height: 1.7;
}

/* Offer / coupon cards */
.offer-card {
  background: var(--cream);
  border: 1px solid var(--border-mid);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.offer-card .eyebrow { font-size: 0.72rem; }

.offer-card h3 { font-size: 1.2rem; }

.offer-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  max-width: none;
  flex: 1;
}

.offer-card-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

/* Careers role cards */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.role-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.role-card h3 { font-size: 1.2rem; }

.role-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.role-card ul li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 0.9rem;
  border-left: 2px solid var(--border-mid);
  line-height: 1.6;
}

/* Topic pills (blog hub) */
.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border-mid);
  color: var(--text-dark);
  background: var(--cream);
  text-decoration: none;
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}

.topic-pill:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-hover);
}

/* Photo placeholder — full-width image container; background shows until real photo is added */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid var(--border-mid);
  margin: 0;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Portrait studio photos — override the default 16:9 box so the full photo shows uncropped */
.photo-placeholder.studio-photo {
  aspect-ratio: 3 / 4;
  max-width: 480px;
  margin-inline: auto;
}



/* ============================================================
   24. Services & Prices Section (Homepage)
   ============================================================ */

.price-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-category {
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
}

.price-category-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
}

.price-category-summary::-webkit-details-marker {
  display: none;
}

.price-category-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.price-category-toggle {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
}

.price-category-toggle::before,
.price-category-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold-hover);
  transform: translate(-50%, -50%);
  transition: transform var(--ease);
}

.price-category-toggle::before {
  width: 100%;
  height: 2px;
}

.price-category-toggle::after {
  width: 2px;
  height: 100%;
}

.price-category[open] .price-category-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.price-category-body {
  padding: 0 1.75rem 1.75rem;
  border-top: 1px solid var(--border-mid);
  padding-top: 1.25rem;
}

.price-category-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 65ch;
}

.price-category-cta {
  margin: 0 0 1.25rem;
}

.price-category-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.price-rows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}

.price-subgroup-heading {
  grid-column: 1 / -1;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-top: 1rem;
}

.price-subgroup-heading:first-child {
  margin-top: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  line-height: 1.45;
}

.price-name {
  color: var(--text-body);
  flex: 1;
}

.price-amount {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.price-category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  transition: color var(--ease);
}

.price-category-link:hover {
  color: var(--gold-hover);
}

@media (max-width: 700px) {
  .price-rows-grid {
    grid-template-columns: 1fr;
  }
  .price-category-summary {
    padding: 1.1rem 1.25rem;
  }
  .price-category-body {
    padding: 0 1.25rem 1.4rem;
    padding-top: 1.1rem;
  }
  .price-category-name {
    font-size: 1.25rem;
  }
}
