:root {
  --charcoal: #2d2d2d;
  --charcoal-soft: #3a3a3a;
  --blush: #f0a0a0;
  --blush-deep: #d98080;
  --cream: #e8e0d8;
  --cream-light: #f5f0eb;
  --white: #ffffff;
  --text-light: #f5f0eb;
  --text-dark: #2d2d2d;
  --text-muted: #6b6b6b;

  --font-script: 'Playfair Display', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --section-pad-y: clamp(3.5rem, 9vw, 6.5rem);
  --section-pad-x: clamp(1.25rem, 4vw, 2.5rem);

  --radius: 4px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--blush-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--charcoal);
}

h1, h2, h3, h4 {
  font-family: var(--font-script);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  color: var(--text-light);
  border-bottom: 1px solid rgba(240, 160, 160, 0.15);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  flex-shrink: 0;
}

.brand-mark img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* On dark surfaces, render the logo white so the light-gray text reads */
.site-header .brand-mark img,
.site-footer .brand-mark img {
  filter: brightness(0) invert(1);
}

.site-footer .brand-mark img {
  height: 68px;
}

@media (max-width: 600px) {
  .brand-mark img { height: 44px; }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blush);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--blush);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--section-pad-x);
    gap: 1.25rem;
    border-bottom: 1px solid rgba(240, 160, 160, 0.15);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============ SECTIONS ============ */
.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.section-dark {
  background: var(--charcoal);
  color: var(--text-light);
}

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

.section-cream-light {
  background: var(--cream-light);
  color: var(--text-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* Organic wave section dividers
   Each divider transitions between two adjacent section colors.
   The container background is the destination color.
   The SVG wave is filled with the source color.
   SVG bleeds 5% past viewport edges so the wave is never cut hard. */
.divider {
  display: block;
  width: 100%;
  height: clamp(60px, 8vw, 110px);
  margin: 0;
  pointer-events: none;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.divider svg {
  width: 110%;
  margin-left: -5%;
  height: 100%;
  display: block;
}

.divider[data-transition="dark-to-cream"]        { background: var(--cream); }
.divider[data-transition="dark-to-cream"] path   { fill: var(--charcoal); }

.divider[data-transition="cream-to-dark"]        { background: var(--charcoal); }
.divider[data-transition="cream-to-dark"] path   { fill: var(--cream); }

.divider[data-transition="dark-to-creamlight"]      { background: var(--cream-light); }
.divider[data-transition="dark-to-creamlight"] path { fill: var(--charcoal); }

.divider[data-transition="creamlight-to-dark"]      { background: var(--charcoal); }
.divider[data-transition="creamlight-to-dark"] path { fill: var(--cream-light); }

.divider[data-transition="cream-to-creamlight"]      { background: var(--cream-light); }
.divider[data-transition="cream-to-creamlight"] path { fill: var(--cream); }

.divider[data-transition="creamlight-to-cream"]      { background: var(--cream); }
.divider[data-transition="creamlight-to-cream"] path { fill: var(--cream-light); }

/* Subtle layered second wave for depth */
.divider .wave-back  { opacity: 1; }
.divider .wave-front { opacity: 1; }

/* ============ HERO ============ */
.hero {
  background: var(--charcoal);
  color: var(--text-light);
  padding: clamp(5rem, 12vw, 9rem) var(--section-pad-x) clamp(4rem, 10vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(240, 160, 160, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  display: block;
  width: clamp(220px, 38vw, 380px);
  height: auto;
  margin: 0 auto clamp(1.25rem, 3vw, 2.25rem);
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--blush);
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-tagline {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--cream);
  opacity: 0.85;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--blush);
  border-radius: 0;
  background: var(--blush);
  color: var(--charcoal);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-align: center;
  will-change: transform;
}

@keyframes btn-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 160, 160, 0.45);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 0 0 10px rgba(240, 160, 160, 0);
  }
}

.btn:hover {
  background: transparent;
  color: var(--blush);
  animation: btn-pulse 1.8s ease-in-out infinite;
}

.btn-outline:hover,
.btn-outline-dark:hover {
  animation: btn-pulse 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover { animation: none; }
}

.btn-outline {
  background: transparent;
  color: var(--blush);
}

.btn-outline:hover {
  background: var(--blush);
  color: var(--charcoal);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============ HOME — WHO WE ARE ============ */
.who {
  text-align: center;
}

.who-body {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ============ BOOKING CTA ============ */
.booking-cta {
  text-align: center;
}

.booking-cta h2 {
  margin-bottom: 0.5rem;
}

.booking-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ============ INSTAGRAM GRID ============ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.ig-tile {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ig-tile:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.ig-tile:hover::after {
  opacity: 1;
}

.ig-tile svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ig-tile:nth-child(n+4) { display: none; }
}

/* ============ SOCIAL ICONS ============ */
.socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--blush);
  transition: all 0.25s ease;
}

.socials a:hover {
  background: var(--blush);
  color: var(--charcoal);
}

.socials svg {
  width: 22px;
  height: 22px;
}

/* ============ COURSE CARDS ============ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.course-card {
  background: var(--cream-light);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(45, 45, 45, 0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-dark .course-card {
  background: var(--charcoal-soft);
  border-color: rgba(240, 160, 160, 0.15);
  color: var(--text-light);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.course-card h3 {
  color: var(--blush-deep);
  margin-bottom: 1rem;
}

.section-dark .course-card h3 {
  color: var(--blush);
}

.course-card p {
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============ WHY TRAIN — accordion-style cards ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 0;
}

.why-item {
  background: rgba(240, 160, 160, 0.06);
  border: 1px solid rgba(240, 160, 160, 0.22);
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18),
              inset 0 1px 0 rgba(240, 160, 160, 0.08);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 160, 160, 0.4);
  box-shadow: 0 12px 28px rgba(240, 160, 160, 0.18),
              inset 0 1px 0 rgba(240, 160, 160, 0.12);
}

.section-cream .why-item {
  background: var(--cream-light);
  border-color: rgba(217, 128, 128, 0.25);
  box-shadow: 0 4px 16px rgba(45, 45, 45, 0.06);
}

.section-cream .why-item:hover {
  border-color: rgba(217, 128, 128, 0.5);
  box-shadow: 0 12px 28px rgba(217, 128, 128, 0.16);
}

.why-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.75rem;
}

.section-cream .why-item h3 {
  color: var(--blush-deep);
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-img {
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
}

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

@media (min-width: 760px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
    max-width: 1100px;
    gap: 3rem;
  }
}

.about-pets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  max-width: 420px;
  align-items: stretch;
}

.about-pets figure {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
}

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

.pets-caption {
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--blush-deep);
  margin: 0.5rem auto 0;
  max-width: 420px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.about-text h2 {
  margin-bottom: 1rem;
  color: var(--blush-deep);
}

/* ============ JEWELRY PHOTO GRID ============ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.photo-tile {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-tile:hover img { transform: scale(1.04); }

/* Gallery for nail education page — capped at 4 rows max.
   4 cols x 4 rows = 16 visible on desktop, fewer on mobile. */
.nail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 2.5rem 0 0;
  max-height: calc(4 * (min(25vw, 280px)) + 3 * 0.5rem);
  overflow: hidden;
}

.nail-gallery a:nth-child(n+17) { display: none; }

@media (max-width: 760px) {
  .nail-gallery {
    grid-template-columns: repeat(3, 1fr);
    max-height: calc(4 * (33vw) + 3 * 0.5rem);
  }
  .nail-gallery a:nth-child(n+13) { display: none; }
}

@media (max-width: 480px) {
  .nail-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-height: calc(4 * (50vw) + 3 * 0.5rem);
  }
  .nail-gallery a:nth-child(n+9) { display: none; }
}

.nail-gallery a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
  display: block;
  position: relative;
}

.nail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nail-gallery a:hover img { transform: scale(1.05); }

/* Home hero image overlay */
.hero-feature {
  margin: 2rem auto 0;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(240, 160, 160, 0.3);
}

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

/* Generic image card used on home Who-We-Are section */
.who-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 760px) {
  .who-with-image {
    grid-template-columns: 5fr 6fr;
  }
}

.who-with-image .who-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}

.who-with-image .who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-with-image .who-body { margin-bottom: 1.5rem; }
.who-with-image .section-eyebrow,
.who-with-image .section-title {
  text-align: left;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin: 1.5rem 0 0.5rem;
  font-weight: 500;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p,
.contact-info a {
  font-size: 1rem;
}

.map-embed {
  width: 100%;
  height: 320px;
  border: none;
  margin-top: 1rem;
  filter: grayscale(0.2);
}

/* ============ FORM ============ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(45, 45, 45, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blush);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding: 3.5rem var(--section-pad-x) 2rem;
  text-align: center;
}

.site-footer .brand-mark {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-address {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.footer-email {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--blush);
}

.footer-socials {
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  list-style: none;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 160, 160, 0.15);
}

.footer-nav a {
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--blush);
}

.footer-bottom {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 2rem;
  letter-spacing: 1px;
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.muted { opacity: 0.75; }

.page-hero {
  background: var(--charcoal);
  color: var(--text-light);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) var(--section-pad-x) clamp(3.5rem, 8vw, 6rem);
  position: relative;
}

.page-hero h1 {
  color: var(--blush);
}

.page-hero p {
  max-width: 600px;
  margin: 1rem auto 0;
  opacity: 0.85;
  font-size: 1.1rem;
}

/* Coming soon */
.coming-soon {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.coming-soon h2 {
  color: var(--blush-deep);
  margin-bottom: 1rem;
}

.coming-soon p {
  max-width: 500px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ============ ACCORDION (HTML5 details/summary) ============ */
.accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
}

.accordion {
  background: var(--cream-light);
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.accordion[open] {
  box-shadow: var(--shadow);
  border-color: rgba(240, 160, 160, 0.4);
}

.section-dark .accordion {
  background: var(--charcoal-soft);
  border-color: rgba(240, 160, 160, 0.18);
}

.section-dark .accordion[open] {
  border-color: rgba(240, 160, 160, 0.5);
}

.accordion summary {
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  list-style: none;
  user-select: none;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::marker { content: ''; }

.accordion-head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.accordion-title {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.1;
  color: var(--blush-deep);
}

.section-dark .accordion-title { color: var(--blush); }

.accordion-price {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-dark .accordion-price { color: var(--cream); opacity: 0.75; }

.accordion-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--blush);
  color: var(--blush);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.accordion[open] .accordion-toggle {
  transform: rotate(45deg);
  background: var(--blush);
  color: var(--charcoal);
}

.accordion-body {
  padding: 0 1.75rem 1.75rem;
  border-top: 1px solid rgba(45, 45, 45, 0.06);
  animation: accordion-open 0.3s ease;
}

.section-dark .accordion-body {
  border-top-color: rgba(240, 160, 160, 0.12);
}

@keyframes accordion-open {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.accordion-body > * + * { margin-top: 0.75rem; }

.accordion-body ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.accordion-body li {
  margin-bottom: 0.35rem;
}

.accordion-body .btn {
  margin-top: 1.25rem;
}

@media (max-width: 600px) {
  .accordion summary { padding: 1.25rem; gap: 0.75rem; }
  .accordion-body { padding: 0 1.25rem 1.5rem; }
}

/* ============ PRODUCTS PAGE ============ */
.product-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
}

.product-card {
  background: var(--cream-light);
  border: 1px solid rgba(45, 45, 45, 0.08);
  overflow: hidden;
}

.product-card details summary {
  padding: 0;
  display: block;
  list-style: none;
  cursor: pointer;
}

.product-card details summary::-webkit-details-marker { display: none; }
.product-card details summary::marker { content: ''; }

.product-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

@media (min-width: 720px) {
  .product-summary-grid {
    grid-template-columns: 4fr 6fr;
  }
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: visible;
  background: transparent;
  position: relative;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 720px) {
  .product-image {
    aspect-ratio: 1 / 1;
    padding: 2rem;
    height: 100%;
    min-height: 360px;
  }
}

/* Hexagon-clipped product photo with a soft blush drop-shadow glow */
.product-image .shape {
  width: 100%;
  height: 100%;
  max-width: 320px;
  max-height: 320px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 0 22px rgba(240, 160, 160, 0.55))
          drop-shadow(0 6px 14px rgba(240, 160, 160, 0.35));
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1),
              filter 0.4s ease;
}

.product-card:hover .product-image .shape {
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 0 32px rgba(240, 160, 160, 0.7))
          drop-shadow(0 8px 18px rgba(240, 160, 160, 0.45));
}

.product-image .shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-meta {
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.product-name {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--blush-deep);
}

.product-price {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-toggle-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blush);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-toggle-label::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.product-card details[open] .product-toggle-label::after {
  transform: rotate(45deg);
}

.product-body {
  padding: 0 2rem 2rem;
  animation: accordion-open 0.3s ease;
}

.product-body p { margin-bottom: 1.25rem; }

@media (max-width: 600px) {
  .product-meta { padding: 1.5rem; }
  .product-body { padding: 0 1.5rem 1.5rem; }
}

/* ============ SCROLL REVEAL ============
   Default state: fully visible. No opacity:0 here.
   The hide rules are injected dynamically by main.js so that, if JS
   never runs, nothing is ever hidden. The transition lives here so
   the smooth fade-in works the moment the hide rule is removed. */
.scroll-reveal {
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.scroll-reveal[data-delay="1"] { transition-delay: 0.08s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.16s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ PARALLAX-LITE ============ */
.parallax-wrap {
  overflow: hidden;
  position: relative;
}

[data-parallax] {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* About page pets — full image, transparent containers so they sit on section bg.
   Equal aspect ratio + width keeps both photos balanced side by side. */
.about-pets figure {
  aspect-ratio: 4 / 5;
  background: transparent;
}

.about-pets img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

/* Allow about-img and who-image to clip parallax-driven movement */
.about-img, .who-image {
  overflow: hidden;
}

/* ============ JEWELRY PRICE LIST ============ */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.price-amount {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--blush-deep);
  letter-spacing: 0;
}

/* ============ JEWELRY EDITORIAL — magazine masonry layout
   +-----------+-----+
   |           | top |   jewelry-4: tall portrait, left, spans 2 rows
   | hero(j-4) |-----|   jewelry-2: top right
   |           | mid |   jewelry-3: middle right
   +-----------+-----+
   |   wide (jewelry-1)   |   jewelry-1: full-width panorama at bottom
   +----------------------+
*/
.jewelry-editorial {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1.15fr 1fr;
  grid-template-areas:
    "hero top"
    "hero mid"
    "wide wide";
  max-width: 1100px;
  margin: 3rem auto 0;
}

.jewelry-editorial figure {
  margin: 0;
  overflow: hidden;
  background: var(--cream-light);
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 24px rgba(45, 45, 45, 0.08);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.4s ease;
}

.jewelry-editorial figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(217, 128, 128, 0.2);
}

.jewelry-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.jewelry-editorial figure:hover img { transform: scale(1.05); }

.jewelry-editorial .je-hero { grid-area: hero; }
.jewelry-editorial .je-top  { grid-area: top;  aspect-ratio: 4 / 3; }
.jewelry-editorial .je-mid  { grid-area: mid;  aspect-ratio: 4 / 3; }
.jewelry-editorial .je-wide { grid-area: wide; aspect-ratio: 21 / 8; }

/* Mobile collapse — stack vertically with natural ratios */
@media (max-width: 640px) {
  .jewelry-editorial {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "top"
      "mid"
      "wide";
    gap: 0.6rem;
  }
  .jewelry-editorial .je-hero { aspect-ratio: 4 / 5; }
  .jewelry-editorial .je-wide { aspect-ratio: 16 / 9; }
}

/* ============ MOTION SUITE ============ */

/* --- Floating petals (background ambient) --- */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -8vh;
  width: 22px;
  height: 22px;
  color: var(--blush);
  opacity: 0;
  will-change: transform, opacity;
}

.petal svg { width: 100%; height: 100%; display: block; }

@keyframes petal-drift {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: var(--petal-opacity, 0.14); }
  90%  { opacity: var(--petal-opacity, 0.14); }
  100% { transform: translate3d(var(--petal-x, 40px), 115vh, 0) rotate(360deg); opacity: 0; }
}

.petal {
  animation-name: petal-drift;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.petal-1 { left:  8%; --petal-x:  60px; --petal-opacity: 0.13; animation-duration: 22s; animation-delay:  0s; width: 26px; height: 26px; }
.petal-2 { left: 22%; --petal-x: -40px; --petal-opacity: 0.10; animation-duration: 28s; animation-delay: -6s; width: 18px; height: 18px; }
.petal-3 { left: 38%; --petal-x:  30px; --petal-opacity: 0.14; animation-duration: 19s; animation-delay: -3s; width: 24px; height: 24px; }
.petal-4 { left: 53%; --petal-x: -50px; --petal-opacity: 0.09; animation-duration: 32s; animation-delay: -12s; width: 30px; height: 30px; }
.petal-5 { left: 68%; --petal-x:  20px; --petal-opacity: 0.12; animation-duration: 24s; animation-delay: -8s; width: 20px; height: 20px; }
.petal-6 { left: 82%; --petal-x: -30px; --petal-opacity: 0.11; animation-duration: 26s; animation-delay: -2s; width: 22px; height: 22px; }
.petal-7 { left: 93%; --petal-x:  10px; --petal-opacity: 0.10; animation-duration: 30s; animation-delay: -15s; width: 16px; height: 16px; }
.petal-8 { left: 15%; --petal-x: -25px; --petal-opacity: 0.13; animation-duration: 25s; animation-delay: -18s; width: 28px; height: 28px; }

/* Make sure content sits above petals (header is z-index 100 already) */
main, .site-footer { position: relative; z-index: 1; }

/* --- Sparkle cursor trail --- */
.sparkle-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(240, 160, 160, 0.95) 0%, rgba(240, 160, 160, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: sparkle-fade 0.9s ease-out forwards;
}

@keyframes sparkle-fade {
  0%   { opacity: 1;   transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, calc(-50% - 16px)) scale(0.3); }
}

/* --- Hero text stagger entrance --- */
.hero-inner > *,
.page-hero > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.85s cubic-bezier(0.25, 0.7, 0.3, 1) forwards;
}

.hero-inner > *:nth-child(1), .page-hero > *:nth-child(1) { animation-delay: 0.10s; }
.hero-inner > *:nth-child(2), .page-hero > *:nth-child(2) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(3), .page-hero > *:nth-child(3) { animation-delay: 0.40s; }
.hero-inner > *:nth-child(4), .page-hero > *:nth-child(4) { animation-delay: 0.55s; }
.hero-inner > *:nth-child(5), .page-hero > *:nth-child(5) { animation-delay: 0.70s; }
.hero-inner > *:nth-child(6), .page-hero > *:nth-child(6) { animation-delay: 0.85s; }

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Script heading handwrite reveal (clip-path wipe left to right)
   Default state: fully visible (inset 0). The "clipped" state is
   injected by main.js for sections without .is-visible. */
.scroll-reveal h1,
.scroll-reveal h2,
.scroll-reveal .accordion-title,
.scroll-reveal .product-name {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1s cubic-bezier(0.3, 0.7, 0.4, 1) 0.2s;
}

/* --- Booking CTA shimmer sweep (filled .btn) --- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn:not(.btn-outline):not(.btn-outline-dark)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%);
  transform: translateX(-120%);
  animation: shimmer-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.btn > * { position: relative; z-index: 2; }

@keyframes shimmer-sweep {
  0%   { transform: translateX(-120%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* --- Wave divider gentle drift
   ±6px peak. Front and back drift in opposite directions on
   slightly different cycles for a layered "breathing" feel.
   Well inside the 60-unit edge bleed so endpoints never expose. */
.divider .wave-front {
  transform-origin: 50% 50%;
  transform-box: fill-box;
  animation: wave-drift-front 10s ease-in-out infinite;
}

.divider .wave-back {
  transform-origin: 50% 50%;
  transform-box: fill-box;
  animation: wave-drift-back 13s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes wave-drift-front {
  0%, 100% { transform: translateX(-6px); }
  50%      { transform: translateX(6px); }
}

@keyframes wave-drift-back {
  0%, 100% { transform: translateX(6px); }
  50%      { transform: translateX(-6px); }
}

/* --- Footer logo gentle breathe --- */
.site-footer .brand-mark img {
  animation: footer-breathe 4s ease-in-out infinite;
}

@keyframes footer-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}

/* --- Card hover lift (course + accordion + product) --- */
.course-card,
.accordion,
.product-card {
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.25s ease;
}

.course-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(240, 160, 160, 0.22);
}

.accordion:not([open]):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(240, 160, 160, 0.18);
}

/* --- Nail gallery hover glow --- */
.nail-gallery a {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nail-gallery a:hover {
  box-shadow: 0 0 0 2px var(--blush), 0 12px 28px rgba(240, 160, 160, 0.3);
  z-index: 2;
}

.nail-gallery a:hover img {
  transform: scale(1.08);
}

/* --- prefers-reduced-motion — disable all decorative animation --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .petals,
  .sparkle-particle { display: none !important; }
  .hero-inner > *,
  .page-hero > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .scroll-reveal h1,
  .scroll-reveal h2,
  .scroll-reveal .accordion-title,
  .scroll-reveal .product-name {
    clip-path: none;
  }
  .scroll-reveal { opacity: 1 !important; transform: none !important; }
  .site-footer .brand-mark img,
  .divider .wave-front,
  .divider .wave-back { animation: none; }
}

/* Contact form success message */
.form-success {
  text-align: center;
  padding: 2rem;
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
}
