/* =========================================================
   Lotus Hot Yoga, shared stylesheet
   No web fonts, no images: system font stacks + inline SVG
   only, so first paint never waits on a network request.
   ========================================================= */

:root {
  --forest: #1f3d2b;
  --forest-deep: #14281c;
  --forest-light: #3b6b4a;
  --sage: #93a98a;
  --sage-pale: #e4e9de;
  --terracotta: #c1633d;
  --terracotta-dark: #a24f2f;
  --sand: #f6f1e7;
  --sand-deep: #efe6d4;
  --cream: #fffdf8;
  --ink: #1a1f19;
  --ink-soft: #40453d;
  --line: #ded4bf;
  --white: #fdf9f0;

  /* Committed to one calm, light theme -- no auto dark-mode switch.
     Every pairing below is checked for WCAG AA contrast (4.5:1+
     for body text, 3:1+ for large text/UI). */
  --bg: var(--sand);
  --surface: var(--cream);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --border: var(--line);
  --brand: var(--forest);
  --brand-deep: var(--forest-deep);
  --accent: var(--terracotta);
  --accent-deep: var(--terracotta-dark);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, "Noto Serif", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -25px rgba(20, 40, 28, 0.2);
  --shadow-sm: 0 8px 20px -12px rgba(20, 40, 28, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

h3 {
  font-size: 1.3rem;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--text-soft);
}

ul,
ol {
  color: var(--text-soft);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--brand);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-deep);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--brand);
}

.btn-ghost:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-light {
  background: rgba(253, 249, 240, 0.14);
  color: var(--white);
  border-color: rgba(253, 249, 240, 0.55);
}

.btn-light:hover {
  background: var(--white);
  color: var(--brand-deep);
}

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

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-deep);
  flex-shrink: 0;
}

.brand-logo {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.footer-brand .brand-logo {
  height: 46px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--brand-deep);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  background: var(--sage-pale);
  color: var(--brand-deep);
}

.main-nav a[aria-current="page"] {
  background: var(--brand);
  color: var(--white);
}

.main-nav .btn-primary {
  margin-left: 6px;
  color: var(--white);
}

.main-nav .btn-primary:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    box-shadow: var(--shadow-sm);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 12px 10px;
    border-radius: 8px;
  }
  .main-nav .btn-primary {
    margin: 10px 0 0;
    text-align: center;
    justify-content: center;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f2ede0 0%, #eef1e6 55%, #e8eee2 100%);
  color: var(--text);
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 10%, rgba(193, 99, 61, 0.14), transparent 50%),
    radial-gradient(circle at 8% 92%, rgba(59, 107, 74, 0.12), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.hero-eyebrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--brand-deep);
}

.hero .lede {
  color: var(--text-soft);
  max-width: 48ch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin: 0 auto;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, #fbf7ec 0%, #eef1e5 65%, transparent 78%);
  box-shadow: 0 30px 60px -25px rgba(31, 61, 43, 0.28);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1.5px solid rgba(193, 99, 61, 0.4);
}

.hero-flower {
  position: relative;
  z-index: 1;
  width: 62%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(31, 61, 43, 0.18));
}

.page-hero {
  background: linear-gradient(155deg, #f2ede0 0%, #eef1e6 100%);
  color: var(--text);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 0%, rgba(193, 99, 61, 0.14), transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--text-soft);
  max-width: 60ch;
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
  font-weight: 600;
}

/* ---------- Sections ---------- */

section {
  padding: 76px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin: 0 0 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.card h3 {
  margin-bottom: 8px;
  color: var(--brand-deep);
}

.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tag-hot {
  background: #f3e0d3;
  color: var(--accent-deep);
}

.tag-cool {
  background: var(--sage-pale);
  color: var(--forest-light);
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-circle svg {
  width: 26px;
  height: 26px;
}

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

.cta-band {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(193, 99, 61, 0.08), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(59, 107, 74, 0.08), transparent 50%);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--brand-deep);
}

.cta-band p {
  color: var(--text-soft);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* ---------- Tables (pricing) ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-deep);
  padding: 18px 22px 4px;
  font-weight: 600;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  font-size: 0.96rem;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--accent-deep);
  white-space: nowrap;
}

.price-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  display: block;
  margin-top: 2px;
}

/* ---------- Schedule table ---------- */

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.schedule-table th,
.schedule-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 0.86rem;
  vertical-align: top;
}

.schedule-table thead th {
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  position: sticky;
  top: 0;
}

.schedule-table td:first-child {
  font-weight: 700;
  color: var(--brand-deep);
  white-space: nowrap;
  background: var(--sand);
}

.slot {
  display: block;
  margin-bottom: 6px;
}

.slot small {
  display: block;
  color: var(--text-soft);
  font-weight: 400;
}

/* ---------- Etiquette / accordion ---------- */

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

.faq-item summary {
  cursor: pointer;
  padding: 18px 4px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 4px 18px;
  margin: 0;
}

/* ---------- Team ---------- */

.team-card {
  text-align: center;
  padding: 22px 16px;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-light), var(--brand-deep));
}

.avatar-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--surface);
}

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

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--text-soft);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.gallery-tile {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

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

.gallery-tile:hover img {
  transform: scale(1.06);
}

/* ---------- Feature photo (real studio photography) ---------- */

.feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

/* ---------- Blog ---------- */

.post-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.post-card .post-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.post-card .post-body {
  padding: 24px 28px 28px;
}

.post-card .post-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
  display: block;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--brand-deep);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-list svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-list h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.info-list p {
  margin: 0;
  font-size: 0.92rem;
}

.form-note {
  font-size: 0.82rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--sage-pale);
  color: var(--forest-light);
  margin-top: 10px;
}

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

.site-footer {
  background: var(--sand-deep);
  color: var(--text-soft);
  border-top: 1px solid var(--border);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--brand-deep);
  text-decoration: none;
}

.site-footer p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-col h3 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--accent-deep);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer-bottom a {
  color: var(--text-soft);
  text-decoration: underline;
}

/* ---------- misc ---------- */

.divider-wave {
  display: block;
  width: 100%;
  height: 60px;
  color: var(--sand);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--sand-deep);
  color: var(--brand-deep);
  line-height: 1;
}

.badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.badge-sage {
  background: var(--sage-pale);
  border-color: transparent;
  color: var(--forest-light);
}

.badge-terracotta {
  background: #f3e0d3;
  border-color: transparent;
  color: var(--accent-deep);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

@media (max-width: 700px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-row .stat {
  text-align: center;
}

.stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  display: block;
}

.stat .label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
