/*
Theme Name: Ritual Yoga
Theme URI: https://ritual-yoga.co.uk
Description: A clean, minimal WordPress theme for Your Ritual Yoga studio. Inter font, mobile-first, app-like UI with sage-green accent palette.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Author: Your Ritual Yoga
Author URI: https://ritual-yoga.co.uk
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ritual-yoga
*/

/* ===================================
   DESIGN TOKENS
   =================================== */
:root {
  --sage: #8B9E8B;
  --sage-light: #D4DDD4;
  --sage-lighter: #EDF1ED;
  --sage-dark: #5A6B5A;
  --sage-darkest: #3D4D3D;
  --gold: #C9B99A;
  --gold-dark: #B39F7F;

  --bg: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-card: #FFFFFF;
  --text: #0A0A0A;
  --text-secondary: #737373;
  --text-tertiary: #A3A3A3;
  --border: #E5E5E5;
  --border-light: #F0F0F0;

  --font: 'Inter', -apple-system, system-ui, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 100px;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;

  --header-h: 60px;
  --bottom-nav-h: 64px;
  --container-max: 1080px;
  --container-narrow: 680px;

  --ease: cubic-bezier(.22,1,.36,1);
  --dur: 200ms;
}

/* ===================================
   RESET & BASE
   =================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--bottom-nav-h);
}
@media (min-width: 769px) { body { padding-bottom: 0; font-size: 16px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--text); }
::selection { background: var(--sage-light); color: var(--sage-darkest); }

/* ===================================
   TYPOGRAPHY (Inter, tight tracking)
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.375rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.375rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 0.875em; color: var(--text-secondary); font-size: inherit; }
p:last-child { margin-bottom: 0; }

.label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-2);
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--sp-12) 0; }
@media (min-width: 769px) { .section { padding: var(--sp-16) 0; } }

/* ===================================
   HEADER — Clean, fixed, minimal
   =================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.site-brand {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.site-brand:hover { color: var(--sage-dark); }

/* Desktop nav */
.desktop-nav { display: none; }
@media (min-width: 769px) {
  .desktop-nav { display: flex; align-items: center; gap: var(--sp-1); }
}
.desktop-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text);
  background: var(--bg-secondary);
}

.nav-cta {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #fff !important;
  background: var(--sage-dark) !important;
  padding: 7px 16px !important;
  border-radius: var(--radius-full) !important;
  border: none;
}
.nav-cta:hover {
  background: var(--sage-darkest) !important;
  color: #fff !important;
}

/* Hamburger */
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.menu-toggle:hover { background: var(--bg-secondary); }
.menu-toggle svg { width: 18px; height: 18px; color: var(--text); }
@media (min-width: 769px) { .menu-toggle { display: none; } }

/* Mobile slide-over */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.2);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--bg);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
  display: flex; flex-direction: column;
  padding: var(--sp-6) var(--sp-5);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  margin-bottom: var(--sp-6);
}
.mobile-menu-close svg { width: 16px; height: 16px; }

.mobile-menu-panel nav a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.mobile-menu-panel nav a:last-child { border-bottom: none; }
.mobile-menu-panel nav a.active { color: var(--text); font-weight: 500; }

.mobile-menu-cta {
  margin-top: auto;
  display: block; text-align: center;
  padding: 10px;
  background: var(--sage-dark);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: 14px;
}

/* ===================================
   BOTTOM NAV (mobile)
   =================================== */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--bottom-nav-h);
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-around;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 769px) { .bottom-nav { display: none; } }

.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 10px; font-weight: 500;
  color: var(--text-tertiary);
  padding: var(--sp-2);
  min-width: 56px;
  transition: color var(--dur) var(--ease);
}
.bottom-nav a svg { width: 20px; height: 20px; stroke-width: 1.5; }
.bottom-nav a.active,
.bottom-nav a:hover { color: var(--sage-dark); }

/* ===================================
   BUTTONS — Clean, pill-shaped
   =================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font);
  font-size: 14px; font-weight: 500;
  line-height: 1;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none; cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn--primary { background: var(--sage-dark); color: #fff; }
.btn--primary:hover { background: var(--sage-darkest); color: #fff; }
.btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--outline:hover { background: var(--bg-secondary); border-color: var(--text-tertiary); }
.btn--ghost { background: transparent; color: var(--sage-dark); padding: 10px 12px; }
.btn--ghost:hover { background: var(--bg-secondary); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-dark); color: #fff; }
.btn--lg { padding: 12px 28px; font-size: 15px; }
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--block { width: 100%; }

/* ===================================
   CARDS — 12px radius, 1px border, no shadow
   =================================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.card:hover { border-color: var(--text-tertiary); }

.card__img {
  aspect-ratio: 16/9;
  background: var(--sage-lighter);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  font-size: 13px; font-weight: 500;
}
.card__body { padding: var(--sp-5); }
.card__body h3 { margin-bottom: var(--sp-2); font-size: 15px; }
.card__body h3 a { color: var(--text); }
.card__body h3 a:hover { color: var(--sage-dark); }
.card__body p { font-size: 13px; line-height: 1.55; color: var(--text-secondary); }
.card__tag {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  color: var(--sage-dark);
  background: var(--sage-lighter);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-2);
}

/* ===================================
   HERO
   =================================== */
/* Hero image layer */
.hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.75) 100%);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--sp-10)) var(--sp-4) var(--sp-12);
  background: var(--bg);
}
.hero__content { max-width: 580px; position: relative; z-index: 1; }
.hero__label { margin-bottom: var(--sp-3); }
.hero__title { margin-bottom: var(--sp-5); }
.hero__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* ===================================
   PAGE HERO (inner pages)
   =================================== */
.page-hero {
  padding: calc(var(--header-h) + var(--sp-10)) var(--sp-4) var(--sp-8);
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: var(--sp-3); }
.page-hero p { max-width: 520px; margin: 0 auto; font-size: 15px; }

/* ===================================
   BENTO GRID — tight 12px gaps
   =================================== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 600px) { .bento-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr 1fr; }
  .bento-grid .bento-item--wide { grid-column: span 2; }
}

.bento-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: var(--sp-5);
  transition: border-color var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.bento-item:hover { border-color: var(--text-tertiary); }

.bento-item__icon {
  width: 40px; height: 40px;
  background: var(--sage-lighter);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--sage-dark);
}
.bento-item__icon svg { width: 20px; height: 20px; }
.bento-item h3 { margin-bottom: var(--sp-2); font-size: 15px; }
.bento-item p { font-size: 13px; line-height: 1.55; flex: 1; }
.bento-item .btn { margin-top: var(--sp-4); align-self: flex-start; }

/* ===================================
   PRICING CARDS
   =================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 600px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr 1fr; } }

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: var(--sp-6);
  text-align: center;
  position: relative;
  transition: border-color var(--dur) var(--ease);
}
.price-card:hover { border-color: var(--text-tertiary); }
.price-card--featured { border-color: var(--sage); }

.price-card__badge {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--sage-dark);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.price-card h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: var(--sp-3);
  letter-spacing: 0;
}
.price-card__amount {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--sp-1);
  letter-spacing: -0.04em;
}
.price-card__period {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: var(--sp-5);
}
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: var(--sp-5);
}
.price-card li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: var(--sp-2);
}
.price-card li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}
.price-card li:last-child { border-bottom: none; }

/* ===================================
   FAQ ACCORDION
   =================================== */
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: var(--sp-2);
  overflow: hidden;
}
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  font-weight: 500; font-size: 14px;
  color: var(--text);
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font);
}
.faq-item__q svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform var(--dur) var(--ease);
}
.faq-item.open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 300ms var(--ease); }
.faq-item.open .faq-item__a { max-height: 500px; }
.faq-item__a-inner {
  padding: 0 var(--sp-5) var(--sp-4);
  font-size: 13px; color: var(--text-secondary); line-height: 1.65;
}

/* ===================================
   TESTIMONIAL
   =================================== */
.testimonial {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.testimonial__text {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}
.testimonial__author { font-size: 13px; font-weight: 500; color: var(--sage-dark); }

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: var(--text);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-banner p { color: var(--text-tertiary); max-width: 460px; margin: 0 auto var(--sp-6); font-size: 14px; }
.cta-banner .btn--primary { background: #fff; color: var(--text); }
.cta-banner .btn--primary:hover { background: var(--sage-lighter); }

/* ===================================
   CONTENT AREA (blog / pages)
   =================================== */
.content-area { padding-top: calc(var(--header-h) + var(--sp-6)); }

.entry-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}
.entry-content h2 { margin: var(--sp-8) 0 var(--sp-3); }
.entry-content h3 { margin: var(--sp-6) 0 var(--sp-2); }
.entry-content p { margin-bottom: var(--sp-4); }
.entry-content ul, .entry-content ol {
  margin: 0 0 var(--sp-4) var(--sp-5);
  color: var(--text-secondary);
}
.entry-content li { margin-bottom: var(--sp-1); font-size: 14px; }
.entry-content blockquote {
  border-left: 2px solid var(--sage);
  padding: var(--sp-3) var(--sp-5);
  margin: var(--sp-5) 0;
  background: var(--bg-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 14px;
}
.entry-content img { border-radius: var(--radius-md); margin: var(--sp-5) 0; }
.entry-content a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--text); }

/* ===================================
   BLOG LISTING
   =================================== */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 600px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr 1fr; } }

.post-card { display: flex; flex-direction: column; }
.post-card .card__body { flex: 1; display: flex; flex-direction: column; }
.post-card .card__body .btn { margin-top: auto; align-self: flex-start; }

.post-meta {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 12px; color: var(--text-tertiary);
  margin-bottom: var(--sp-2);
}
.post-meta span { display: flex; align-items: center; gap: 3px; }

/* ===================================
   SINGLE POST
   =================================== */
.single-header {
  padding: calc(var(--header-h) + var(--sp-8)) var(--sp-4) var(--sp-8);
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.single-header .label { margin-bottom: var(--sp-3); }
.single-header h1 { max-width: 720px; margin: 0 auto var(--sp-4); }
.single-header .post-meta { justify-content: center; }

.related-posts { padding: var(--sp-12) 0; }
.related-posts h2 { text-align: center; margin-bottom: var(--sp-6); }

/* ===================================
   CONTACT
   =================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-4);
}
@media (min-width: 769px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: var(--sp-6);
}
.contact-info-card h3 { margin-bottom: var(--sp-4); font-size: 16px; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { margin: 0; font-size: 13px; }
.contact-info-item a { text-decoration: underline; text-underline-offset: 3px; }

/* ===================================
   FOOTER — Dark, compact
   =================================== */
.site-footer {
  background: var(--text);
  color: var(--text-tertiary);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.site-footer h4 {
  font-weight: 500; font-size: 13px; color: #fff;
  margin-bottom: var(--sp-3); letter-spacing: 0;
}
.site-footer p { color: var(--text-tertiary); font-size: 13px; }
.site-footer a { color: var(--text-tertiary); }
.site-footer a:hover { color: #fff; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--sp-1); }
.footer-links a { font-size: 13px; }

.footer-social { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.footer-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
}
.footer-social a:hover { background: rgba(255,255,255,.12); }
.footer-social svg { width: 16px; height: 16px; color: var(--text-tertiary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--sp-5);
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ===================================
   404
   =================================== */
.error-404 {
  min-height: 80vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--sp-8)) var(--sp-4) var(--sp-12);
}
.error-404 h1 { font-size: clamp(3rem, 10vw, 6rem); color: var(--border); line-height: 1; margin-bottom: var(--sp-3); }
.error-404 p { font-size: 15px; margin-bottom: var(--sp-6); }

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }

.stagger-children > * {
  opacity: 0; transform: translateY(12px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 60ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 120ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 180ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }

/* ===================================
   HSCROLL (mobile pricing)
   =================================== */
.hscroll {
  display: flex; gap: var(--sp-3);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--sp-3);
  scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll > * { flex: 0 0 260px; scroll-snap-align: start; }
@media (min-width: 900px) {
  .hscroll { display: grid; grid-template-columns: repeat(3, 1fr); overflow-x: visible; scroll-snap-type: none; }
  .hscroll > * { flex: auto; }
}

/* ===================================
   UTILITIES
   =================================== */
.text-center { text-align: center; }
.bg-alt { background: var(--bg-secondary); }
.mt-4 { margin-top: var(--sp-4); }
.mb-4 { margin-bottom: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-6 { margin-bottom: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-8 { margin-bottom: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-12 { margin-bottom: var(--sp-12); }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 769px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.items-center { align-items: center; }
.hidden-mobile { display: none; }
@media (min-width: 769px) { .hidden-mobile { display: block; } }

/* ── Generated images ── */
.about-img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.studio-banner-img {
  display: block; width: 100%; height: auto; max-height: 520px;
  border-radius: var(--radius-md);
  object-fit: cover; object-position: center;
}

/* WP overrides */
.wp-block-image img { border-radius: var(--radius-md); }
.alignwide { max-width: calc(var(--container-max) + 80px); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px); position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
}

/* ===================================
   CONTACT FORM 7
   =================================== */
.wpcf7-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.wpcf7-form p { margin: 0; }

/* Two-column row: Name + Email */
.cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
@media (max-width: 600px) { .cf7-row { grid-template-columns: 1fr; } }

/* Single full-width field wrapper */
.cf7-field { display: flex; flex-direction: column; }
.cf7-col { display: flex; flex-direction: column; }

/* Labels */
.wpcf7-form label,
.cf7-field label,
.cf7-col label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}

/* Inputs, textarea — full width inside their column */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  display: block; width: 100%; padding: 12px 16px;
  font-family: var(--font), sans-serif; font-size: 0.9375rem; line-height: 1.5;
  color: var(--text); background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none; appearance: none;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139, 158, 139, 0.15);
}

/* Textarea fix — explicit display block + height */
.wpcf7-form textarea,
.wpcf7-form .wpcf7-textarea {
  display: block !important; width: 100% !important;
  min-height: 150px; height: auto; resize: vertical;
}

/* CF7 wraps inputs in spans — make spans block-level */
.wpcf7-form .wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form .wpcf7-form-control-wrap input,
.wpcf7-form .wpcf7-form-control-wrap textarea { width: 100%; }

/* Submit button — full width */
.wpcf7-form input[type="submit"] {
  display: block; width: 100%;
  padding: 14px 32px; font-family: var(--font), sans-serif;
  font-size: 1rem; font-weight: 500; letter-spacing: -0.01em;
  color: #fff; background: var(--sage-dark);
  border: none; border-radius: var(--radius-full); cursor: pointer;
  transition: background 0.2s ease;
}
.wpcf7-form input[type="submit"]:hover { background: var(--sage-darkest); }

/* Validation & feedback */
.wpcf7-form .wpcf7-not-valid-tip { color: #c44; font-size: 0.8125rem; margin-top: 4px; display: block; }
.wpcf7-form .wpcf7-response-output {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 0.875rem; margin-top: var(--sp-2);
}
.wpcf7-form .wpcf7-spinner { display: none; }

/* Contact grid */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 380px 1fr; } }
.contact-info-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-5);
  align-self: start;
}
.contact-info-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.contact-info-item svg { flex-shrink: 0; color: var(--sage); margin-top: 2px; }
.contact-info-item p { margin: 0; font-size: 0.9375rem; line-height: 1.5; }
.contact-info-item strong { font-weight: 600; }
