/* ============================================
   Camellia Nails & Beauty — Design tokens
   ============================================ */
:root {
  /* Softened, muted rose — was a saturated hot-pink/magenta (#ff4f8b, gradient
     to #ff2e78) that read as harsh against the pale blush background. This
     dusty-rose tone keeps the brand pink but at a gentler, more boutique-salon
     saturation; still passes comfortable contrast for white button text. */
  --color-primary: #d6748f;
  --color-primary-dark: #b85a75;
  --gradient-primary: linear-gradient(135deg, #e3a0b2 0%, #c26685 100%);
  --color-charcoal: #43363b;
  --color-text: #4a3d41;
  --color-text-soft: #8a767c;
  /* Base palette sampled from the real live site (camellianailsandbeauty.com) —
     see CLAUDE.md "Color palette" for the sampled hex values and rationale. */
  --color-bg: #fceeee;
  --color-bg-soft: #fef9f9;
  --color-bg-alt: #f8dee2;
  --color-blush: #f3cbd3;
  --color-white: #ffffff;

  /* Alex Brush — a thin, flowing script, closer in spirit to the salon's
     real signage than the previous Playball (which read as thick/bubbly). */
  --font-script: "Alex Brush", cursive;
  --font-body: "Poppins", sans-serif;

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

  --shadow-soft: 0 20px 45px rgba(184, 90, 117, 0.14);
  --shadow-card: 0 10px 30px rgba(74, 61, 65, 0.08);

  --container-width: 1120px;
  --header-height: 84px;
}

/* ============================================
   Reset
   ============================================ */
* , *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; color: var(--color-charcoal); font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

section { scroll-margin-top: var(--header-height); }

.script { font-family: var(--font-script); font-weight: 400; color: var(--color-primary); }
/* "Perfected" in the hero headline, 20% larger than the surrounding text —
   scoped to the hero only so other .script usages (menu category titles
   etc.) are unaffected. */
.hero h1 .script { font-size: 1.2em; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  text-align: center;
}
.eyebrow-light { color: var(--color-blush); }

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
  color: var(--color-text-soft);
  font-size: 0.98rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 40px rgba(184, 90, 117, 0.22); }
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   Placeholder photo blocks
   (real photography not supplied yet — see CLAUDE.md)
   ============================================ */
.placeholder-photo {
  position: relative;
  background: linear-gradient(135deg, var(--color-blush) 0%, #e3a0b2 45%, #c26685 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.placeholder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.45) 0, transparent 40%),
                     radial-gradient(circle at 80% 75%, rgba(255,255,255,0.3) 0, transparent 45%);
}
.placeholder-photo::after {
  content: attr(data-label);
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(67, 54, 59, 0.55);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.placeholder-icon {
  font-size: 2.6rem;
  color: rgba(255,255,255,0.85);
  z-index: 1;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 238, 238, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(184, 90, 117, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo img { height: 52px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: 6px 0;
}
.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav ul a:hover::after { transform: scaleX(1); }

/* Smaller than the base .btn — at the base size (13px/28px padding,
   0.95rem) the pill read as oversized next to the plain-text nav links
   in the 84px-tall header. */
.nav-book { padding: 10px 22px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 64px 0 56px;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--color-blush) 0%, var(--color-bg) 60%);
  z-index: -1;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-portrait {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
  object-fit: cover;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 760px;
  line-height: 1.15;
}
.hero-text {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--color-text-soft);
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}
.hero-meta-item strong { font-size: 1rem; color: var(--color-charcoal); }
.hero-meta-item span { font-size: 0.82rem; color: var(--color-text-soft); margin-top: 4px; }

/* ============================================
   Business hours strip
   ============================================ */
.hours-strip {
  background: var(--color-bg-alt);
  padding: 48px 0;
}
.hours-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 36px;
  align-items: start;
}
.hours-col h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  text-align: center;
}
.hours-divider {
  width: 1px;
  background: rgba(184, 90, 117, 0.18);
  align-self: stretch;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
  margin: 0 auto;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(74, 61, 65, 0.15);
}
.hours-list li span:first-child { color: var(--color-charcoal); font-weight: 500; }
.hours-list li span:last-child { color: var(--color-text-soft); }

/* Call Us column — icon-prefixed rows read more clearly than the previous
   center-stacked phone/email/address lines, and a single outline "About
   Us" button here (instead of a 3rd filled "Book Now"-style button) avoids
   piling up near-duplicate booking CTAs right under the hero. */
.hours-col-contact { display: flex; flex-direction: column; align-items: center; }
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 300px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-soft);
  text-align: left;
}
a.contact-row { color: var(--color-primary-dark); font-weight: 600; }
.contact-icon { flex-shrink: 0; line-height: 1.4; }

/* The button sits inside .contact-rows (a flex column), which stretches
   children full-width by default — override back to its natural pill
   size, centered, with a little extra breathing room above/below so it
   reads as a distinct action rather than just another stretched row. */
.contact-rows .btn {
  align-self: center;
  margin: 2px 0 6px;
}

.hours-col-map { display: flex; flex-direction: column; align-items: center; }
.hours-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.hours-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================
   Services banner
   ============================================ */
.services-banner {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 620px;
  padding: 0 24px;
}
.services-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(67, 54, 59, 0.45);
  z-index: 1;
}
.banner-overlay h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.banner-overlay p { color: rgba(255,255,255,0.9); }

/* ============================================
   Menu
   ============================================ */
.menu { padding: 96px 0; }

.menu-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.menu-pills a {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.menu-pills a:hover { background: var(--gradient-primary); color: #fff; transform: translateY(-2px); }

.menu-category {
  max-width: 560px;
  margin: 0 auto 88px;
  text-align: center;
}
.menu-category:last-of-type { margin-bottom: 48px; }
.menu-photo {
  height: 220px;
  border-radius: var(--radius-lg);
  margin-bottom: 26px;
}
.menu-title {
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.menu-list-head {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.7rem;
  color: var(--color-text-soft);
  font-weight: 600;
  padding: 0 4px 10px;
  border-bottom: 2px solid var(--color-blush);
  margin-bottom: 6px;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px dashed rgba(74, 61, 65, 0.15);
  font-size: 0.96rem;
  text-align: left;
}
.menu-list li span:first-child { color: var(--color-charcoal); }
.menu-list li span:last-child { color: var(--color-primary-dark); font-weight: 600; white-space: nowrap; }
.menu-category .btn { margin-top: 26px; }

.menu-category-special {
  background: var(--color-bg-alt);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
}

.menu-note {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.badge {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-policy {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  text-align: center;
}
.service-policy h3 { font-size: 0.95rem; margin-bottom: 10px; }
.service-policy p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin-bottom: 8px;
}
.service-policy p:last-child { margin-bottom: 0; }

/* ============================================
   Gallery
   ============================================ */
.gallery { padding: 96px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-soft);
  background: var(--color-bg-alt);
  padding: 48px 24px;
  border-radius: var(--radius-lg);
}

/* ============================================
   Blog (blog.html)
   ============================================ */
.blog-hero {
  padding: 64px 0 32px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--color-blush) 0%, var(--color-bg) 60%);
}
.blog-list { padding: 48px 0 96px; }
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.blog-post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.blog-post-photo { aspect-ratio: 16 / 8; }
.blog-post-photo img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-body { padding: 32px; }
.blog-post-date { color: var(--color-primary-dark); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.blog-post-title { font-size: 1.6rem; margin-bottom: 14px; }
.blog-post-content { color: var(--color-text-soft); line-height: 1.7; }
.blog-post-content p { margin-bottom: 14px; }
.blog-post-content p:last-child { margin-bottom: 0; }

/* ============================================
   Policy page (privacy.html)
   ============================================ */
.policy-content { padding: 48px 0 96px; }
.policy-body { max-width: 720px; margin: 0 auto; color: var(--color-text-soft); line-height: 1.75; }
.policy-body h2 { color: var(--color-charcoal); font-size: 1.15rem; margin: 32px 0 12px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p { margin-bottom: 14px; }
.policy-body a { color: var(--color-primary-dark); font-weight: 600; }

/* ============================================
   About
   ============================================ */
.about { padding: 96px 0; background: var(--color-bg-alt); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-blush) 0%, var(--color-bg) 100%);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius-lg) - 8px);
}
.about-photo-caption {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  box-shadow: var(--shadow-card);
}
.about-photo-caption em { color: var(--color-primary-dark); font-style: normal; }
.about-content .eyebrow { text-align: left; }
.about-content .section-title { text-align: left; }
.about-content p {
  color: var(--color-text-soft);
  margin-bottom: 18px;
  font-size: 1rem;
}
.about-content p strong { color: var(--color-charcoal); }

/* ============================================
   Locations / community
   ============================================ */
.locations { padding: 96px 0; }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.locations-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.locations-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.locations-card figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  box-shadow: var(--shadow-card);
}
.locations-card figcaption em { color: var(--color-primary-dark); font-style: normal; }

/* ============================================
   Testimonials
   ============================================ */
.testimonials { padding: 96px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.testimonial-card .stars { color: var(--color-primary); letter-spacing: 2px; }
.testimonial-card p { margin: 16px 0 22px; color: var(--color-text-soft); font-size: 0.95rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-author .name { font-weight: 600; color: var(--color-charcoal); font-size: 0.9rem; display: flex; flex-direction: column; gap: 2px; }
.testimonial-when { font-weight: 400; color: var(--color-text-soft); font-size: 0.78rem; }

/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--gradient-primary);
  padding: 72px 0;
  text-align: center;
}
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.cta .btn-primary { background: #fff; color: var(--color-primary-dark); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.cta .btn-primary:hover { background: var(--color-charcoal); color: #fff; }

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--color-bg-soft);
  color: var(--color-charcoal);
  padding: 72px 0 0;
  border-top: 1px solid rgba(67, 54, 59, 0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(67, 54, 59, 0.1);
}
.footer-brand img { height: 48px; margin-bottom: 12px; }
.footer-brand p { color: var(--color-text-soft); font-size: 0.85rem; letter-spacing: 1px; }
footer h4 { color: var(--color-charcoal); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.5px; }
footer p, footer a { color: var(--color-text-soft); font-size: 0.88rem; }
footer .footer-col p { margin-bottom: 10px; line-height: 1.6; }
footer a:hover { color: var(--color-primary-dark); }
.hours-list-footer li { border-bottom-color: rgba(67, 54, 59, 0.12); }
.hours-list-footer li span:first-child { color: var(--color-charcoal); }
.hours-list-footer li span:last-child { color: var(--color-text-soft); }
.footer-links li { margin-bottom: 10px; }
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

/* ============================================
   Floating book button (mobile)
   ============================================ */
.floating-book {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--gradient-primary);
  color: #fff;
  /* Smaller footprint than before (was 14px/22px padding, 0.85rem) — a
     fixed-position button always overlaps whatever content scrolls under
     it (hero text, the map, testimonial cards...); shrinking it keeps it
     reachable while covering noticeably less of that content. */
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  box-shadow: var(--shadow-soft);
  display: none;
}

/* ============================================
   Scroll reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4 / 3; order: -1; }
  .locations-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hours-inner { grid-template-columns: 1fr; gap: 32px; }
  .hours-divider { display: none; }
  .hours-map { max-width: 340px; margin: 0 auto; }
}

/* Nav switches to the hamburger/off-canvas menu earlier than the rest of the
   tablet rules below: at 721-900px the full horizontal link row (logo + 5
   links + Book Now pill) doesn't fit and the button label was clipping. */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 20px 30px rgba(0,0,0,0.08);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; gap: 16px; width: 100%; }
  .nav-book { width: 100%; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 720px) {
  :root { --header-height: 72px; }
  .logo img { height: 42px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .about-content .eyebrow, .about-content .section-title { text-align: center; }
  .floating-book { display: inline-flex; }
  .hero { padding-top: 40px; }
  .menu { padding: 64px 0; }
  .about, .testimonials { padding: 64px 0; }
}
