:root {
  --bg: #f7f4ef;
  --paper: #fffdf9;
  --paper-2: #f3ece2;
  --ink: #2f2924;
  --muted: #6c645d;
  --primary: #8f7658;
  --primary-2: #715a42;
  --accent: #8ca28f;
  --line: #d8cdbf;
  --shadow-sm: 0 8px 24px rgba(58, 45, 33, 0.08);
  --shadow-md: 0 20px 40px rgba(50, 38, 27, 0.12);
  --shadow-lg: 0 34px 72px rgba(43, 33, 24, 0.16);
  --radius: 20px;
  --container: min(1160px, calc(100% - 2.2rem));
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 0%, rgba(164, 140, 110, 0.16), transparent 34%),
    radial-gradient(circle at 94% 2%, rgba(145, 171, 150, 0.18), transparent 30%),
    linear-gradient(180deg, #fdfbf8 0%, var(--bg) 42%, #f8f4ed 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 5.3rem 0;
  scroll-margin-top: 92px;
}

.section-tight {
  padding: 1.2rem 0 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--primary-2);
}

h1,
h2,
h3 {
  margin: 0 0 0.95rem;
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-family: "DM Serif Display", Georgia, serif;
}

h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.55rem);
}

h2 {
  font-size: clamp(1.9rem, 4.1vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.2rem);
}

.section-title {
  max-width: 16ch;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.6rem 0.8rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 10px 0;
  z-index: 999;
}

.skip-link:focus {
  left: 0;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 95;
  background: rgba(143, 118, 88, 0.14);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #a98b66, var(--primary));
  transition: width 0.12s linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgba(255, 251, 245, 0.8);
  border-bottom: 1px solid rgba(113, 90, 66, 0.1);
  transition: transform 0.34s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.hide {
  transform: translateY(-100%);
}

.site-header.scrolled {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 16px 36px rgba(44, 33, 23, 0.12);
}

.top-note {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-2);
  border-bottom: 1px solid rgba(113, 90, 66, 0.11);
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.35);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #9f8160, #7d6549);
  font-weight: 700;
}

.logo-text {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.5rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.45rem 0.74rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(113, 90, 66, 0.11);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn {
  min-height: 44px;
  padding: 0.72rem 1.18rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, #9a7e5c, var(--primary));
  box-shadow: 0 10px 24px rgba(107, 83, 59, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #8c7151, #7b6348);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(113, 90, 66, 0.24);
}

.btn-outline {
  border-color: rgba(113, 90, 66, 0.35);
  background: transparent;
}

.btn-lg {
  padding-inline: 1.45rem;
}

.btn:focus-visible,
.icon-btn:focus-visible,
.media-button:focus-visible,
.faq-question:focus-visible,
.back-top:focus-visible,
.lightbox-close:focus-visible,
.site-nav a:focus-visible,
.inline-link:focus-visible {
  outline: 3px solid #d5bfa5;
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 4.6rem;
}

.hero-deco {
  position: absolute;
  inset: -220px -120px auto;
  height: 680px;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 20%, rgba(143, 118, 88, 0.28), transparent 55%),
    radial-gradient(circle at 20% 8%, rgba(140, 162, 145, 0.22), transparent 52%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
  align-items: center;
}

.hero-card {
  background: linear-gradient(165deg, rgba(255, 253, 249, 0.9), rgba(242, 234, 223, 0.82));
  border: 1px solid rgba(113, 90, 66, 0.14);
  box-shadow: 0 22px 52px rgba(43, 33, 24, 0.12);
  border-radius: 28px;
  padding: clamp(1.05rem, 2.1vw, 1.55rem);
  max-width: 590px;
  justify-self: start;
}

.hero-card h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.9rem);
  margin-bottom: 0.75rem;
}

.hero-card .lead {
  max-width: 48ch;
  font-size: clamp(0.99rem, 1.5vw, 1.1rem);
}

.hero-cta {
  display: flex;
  gap: 0.72rem;
  flex-wrap: wrap;
  margin: 1.15rem 0 0.95rem;
}

.hero-cta .btn {
  min-width: 170px;
}

.hero-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-list li::before {
  content: "\2713";
  color: var(--accent);
  margin-right: 0.35rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: 14px;
  padding: 0.68rem;
}

.hero-stats strong {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.2rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-media {
  position: relative;
}

.media-button {
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  cursor: zoom-in;
}

.media-button img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  filter: saturate(0.86) contrast(0.97);
}

.floating-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(113, 90, 66, 0.16);
  border-radius: 14px;
  padding: 0.68rem 0.78rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
}

.floating-stars {
  letter-spacing: 0.16em;
  color: #a78159;
  font-size: 0.78rem;
}

.hero-subnote {
  margin: 0.72rem 0 0;
  padding-top: 0.68rem;
  border-top: 1px dashed rgba(113, 90, 66, 0.2);
  font-size: 0.83rem;
  color: var(--muted);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.64rem;
}

.trust article {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(113, 90, 66, 0.14);
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(58, 45, 33, 0.06);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.about,
.studio {
  position: relative;
}

.about-feature {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(113, 90, 66, 0.16);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(158deg, rgba(255, 253, 249, 0.92), rgba(241, 231, 217, 0.86));
}

.about-panel {
  padding: clamp(1.15rem, 2.4vw, 2rem);
  border-right: 1px solid rgba(113, 90, 66, 0.12);
}

.about-kicker {
  color: var(--primary-2);
  font-weight: 500;
}

.about-credentials {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-credentials span {
  border-radius: 999px;
  border: 1px solid rgba(113, 90, 66, 0.22);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.68rem;
  color: var(--primary-2);
}

.about-focus {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.about-focus p {
  margin: 0;
  font-weight: 600;
}

.about-focus ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-focus li {
  border-radius: 999px;
  background: rgba(140, 162, 145, 0.14);
  color: #4f6455;
  border: 1px solid rgba(95, 126, 106, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
}

.about-signature {
  margin-top: 1rem;
  padding: 0.72rem 0.85rem;
  border-left: 3px solid rgba(113, 90, 66, 0.35);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-style: italic;
}

.about-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-photo-wrap {
  position: relative;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.about-photo-badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.9rem;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(113, 90, 66, 0.17);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 0.55rem 0.65rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.classes {
  background: linear-gradient(180deg, rgba(245, 238, 228, 0.78), rgba(247, 244, 239, 0.25));
  position: relative;
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.studio-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(113, 90, 66, 0.16);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.studio-photo:first-child {
  grid-column: span 2;
}

.studio-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.studio-photo:hover img {
  transform: scale(1.02);
}

.studio-highlights {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.studio-highlights span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-2);
  border: 1px solid rgba(113, 90, 66, 0.2);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
}

.classes::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 10%, rgba(140, 162, 145, 0.12), transparent 40%);
}

.classes-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.classes-head .section-title {
  max-width: 20ch;
}

.classes-head .lead {
  max-width: 62ch;
  margin-bottom: 0;
}

.classes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.classes-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-2);
  border: 1px solid rgba(113, 90, 66, 0.2);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.card-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

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

.service-card,
.quote-card {
  background: linear-gradient(180deg, #fffdfa, #f4eee3);
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(50, 38, 27, 0.1);
  padding: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.quote-card:hover,
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(50, 38, 27, 0.14);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  margin-bottom: 0.56rem;
}

.inline-link {
  margin-top: auto;
  color: var(--primary-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.note {
  margin-top: 1rem;
  color: var(--muted);
}

.schedule {
  background: linear-gradient(180deg, rgba(240, 246, 240, 0.64), rgba(247, 245, 241, 0.2));
}

.schedule-head,
.pricing-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.schedule-embed {
  margin-top: 1rem;
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
}

.schedule-embed::before {
  content: "Weekly Schedule Preview";
  position: absolute;
  left: 0.8rem;
  top: 0.7rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(47, 41, 36, 0.78);
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
}

.schedule-embed iframe,
.schedule-embed img {
  width: 100%;
  min-height: 520px;
  display: block;
  background: #f7f3ed;
}

.schedule-embed img {
  object-fit: cover;
  object-position: center;
}

.schedule-mock {
  min-height: 520px;
  padding: 1rem;
  background:
    linear-gradient(180deg, #fffdfa, #f4ece0);
}

.schedule-mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(113, 90, 66, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.7rem;
}

.schedule-mock-head p {
  margin: 0;
  font-weight: 600;
}

.schedule-mock-head span {
  font-size: 0.8rem;
  color: var(--muted);
}

.schedule-mock-table {
  display: grid;
  gap: 0.5rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: 64px 88px 1fr auto;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(113, 90, 66, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.58rem 0.62rem;
}

.schedule-row span {
  font-size: 0.88rem;
}

.schedule-row span:first-child {
  font-weight: 700;
  color: var(--primary-2);
}

.schedule-row a {
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.35rem 0.56rem;
  border: 1px solid rgba(113, 90, 66, 0.24);
  background: rgba(255, 255, 255, 0.86);
}

.schedule-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(113, 90, 66, 0.14);
  background: linear-gradient(180deg, #fffdfa, #f5efe5);
}

.schedule-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.start-here {
  background: linear-gradient(180deg, rgba(248, 243, 235, 0.74), rgba(247, 245, 241, 0.28));
}

.starter-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.starter-group {
  margin: 0;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(113, 90, 66, 0.14);
  background: linear-gradient(180deg, #fffdfa, #f2ebdf);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.45rem;
}

.starter-group legend {
  padding: 0;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.starter-option {
  border: 1px solid rgba(113, 90, 66, 0.22);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: var(--ink);
  padding: 0.5rem 0.7rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.starter-option.active {
  border-color: rgba(143, 118, 88, 0.5);
  background: rgba(143, 118, 88, 0.14);
  color: var(--primary-2);
}

.starter-result {
  margin-top: 1rem;
  border: 1px solid rgba(113, 90, 66, 0.15);
  border-radius: 18px;
  background: linear-gradient(165deg, #fffdf8, #f1e8dc);
  box-shadow: var(--shadow-md);
  padding: 1.1rem 1.2rem;
}

.starter-result h3 {
  margin-bottom: 0.45rem;
}

.starter-result p {
  color: var(--muted);
}

.pricing {
  background: linear-gradient(180deg, rgba(236, 242, 236, 0.52), rgba(247, 245, 241, 0.2));
}

.pricing-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.price-card {
  border: 1px solid rgba(113, 90, 66, 0.15);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdfa, #f4ece0);
  box-shadow: var(--shadow-sm);
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  margin: 0.2rem 0 0.35rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card .plan {
  margin: 0;
  color: var(--primary-2);
  font-weight: 600;
}

.price-card .sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card ul,
.policy-grid ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.32rem;
}

.price-card .btn {
  margin-top: auto;
}

.price-card.featured {
  background: linear-gradient(170deg, #fffefb, #efe5d7);
  border-color: rgba(143, 118, 88, 0.36);
  box-shadow: 0 20px 36px rgba(73, 56, 40, 0.15);
}

.policy-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.policy-grid article {
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  padding: 0.95rem 1rem;
}

.policy-grid article h3 {
  margin-bottom: 0.55rem;
}

.lead-capture {
  background: linear-gradient(180deg, rgba(243, 236, 226, 0.75), rgba(247, 244, 239, 0.28));
}

.lead-box {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: 20px;
  background: linear-gradient(165deg, #fffdf9, #f2eadf);
  box-shadow: var(--shadow-md);
  padding: 1.15rem;
}

.lead-list {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
}

.lead-form {
  border: 1px solid rgba(113, 90, 66, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.lead-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.lead-form input,
.lead-form select {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(113, 90, 66, 0.22);
  padding: 0.6rem 0.68rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.lead-form input:focus-visible,
.lead-form select:focus-visible,
.starter-option:focus-visible,
.event-filter:focus-visible {
  outline: 3px solid #d5bfa5;
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-success {
  margin: 0;
  color: #4f6a57;
  font-size: 0.84rem;
  font-weight: 500;
}

.proof {
  background: linear-gradient(180deg, rgba(236, 242, 236, 0.62), rgba(247, 245, 241, 0.2));
}

.proof-head,
.events-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.google-rating {
  text-align: right;
  border: 1px solid rgba(113, 90, 66, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0.85rem;
}

.google-rating strong {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.google-rating span,
.google-rating p {
  color: var(--muted);
  margin: 0;
  font-size: 0.82rem;
}

.proof-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-extra {
  margin-top: 0.85rem;
}

.review-card {
  border: 1px solid rgba(113, 90, 66, 0.15);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfa, #f4ece0);
  box-shadow: var(--shadow-sm);
  padding: 0.95rem;
}

.review-card img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.55rem;
  border: 2px solid rgba(113, 90, 66, 0.18);
}

.outcome-tags {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.outcome-tags span {
  border-radius: 999px;
  border: 1px solid rgba(113, 90, 66, 0.18);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  padding: 0.27rem 0.54rem;
  color: var(--muted);
}

.events {
  background: linear-gradient(180deg, rgba(244, 239, 231, 0.7), rgba(247, 245, 241, 0.25));
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.event-filter {
  border: 1px solid rgba(113, 90, 66, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  padding: 0.42rem 0.68rem;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.event-filter.active {
  background: rgba(143, 118, 88, 0.14);
  border-color: rgba(143, 118, 88, 0.45);
  color: var(--primary-2);
}

.events-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.event-card {
  border: 1px solid rgba(113, 90, 66, 0.15);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfa, #f4ece0);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(50, 38, 27, 0.14);
}

.event-date {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.25rem 0.54rem;
  border-radius: 999px;
  border: 1px solid rgba(113, 90, 66, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.event-card.hidden {
  display: none;
}

.experience {
  background: linear-gradient(180deg, rgba(236, 242, 236, 0.68), rgba(247, 245, 241, 0.35));
}

.steps {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.step {
  background: linear-gradient(180deg, #fffefa, #f2ece2);
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  background: var(--primary);
  margin-bottom: 0.6rem;
}

.testimonials {
  background: linear-gradient(180deg, rgba(242, 234, 220, 0.72), rgba(247, 243, 238, 0.25));
}

.stars {
  letter-spacing: 0.12em;
  color: #aa855d;
}

.quote-meta {
  color: var(--muted);
}

.narrow {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 0.66rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(113, 90, 66, 0.16);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.55);
}

.faq-question {
  width: 100%;
  border: 0;
  text-align: left;
  padding: 1rem 1.05rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  color: var(--muted);
  margin: 0;
  padding: 0 1.05rem 1rem;
}

.faq-item.open .faq-answer {
  max-height: 130px;
}

.contact {
  background: linear-gradient(180deg, rgba(236, 242, 236, 0.58), rgba(247, 245, 241, 0.2));
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: 20px;
  background: linear-gradient(165deg, #fffdf9, #f2ebdf);
  box-shadow: var(--shadow-md);
  padding: 1.15rem;
}

.contact-info {
  border-right: 1px solid rgba(113, 90, 66, 0.12);
  padding-right: 0.9rem;
}

.contact-points p {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(113, 90, 66, 0.22);
  padding: 0.6rem 0.68rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form .full,
.contact-form .btn,
.contact-form .form-note,
.contact-form .form-success {
  grid-column: 1 / -1;
}

.cta-final {
  padding-top: 4.6rem;
}

.cta-box {
  text-align: center;
  background: linear-gradient(165deg, #fffdf8, #f1e9dd);
  border: 1px solid rgba(113, 90, 66, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.3rem, 3vw, 2.4rem);
}

.cta-box .section-title,
.cta-box h2,
.hero-cta.center {
  margin-inline: auto;
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(113, 90, 66, 0.15);
  padding: 2.5rem 0 6.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.legal {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 1rem 0 0;
  padding: 0 0.4rem;
}

.back-top {
  position: fixed;
  right: 1.05rem;
  bottom: 5.65rem;
  z-index: 65;
  border: 0;
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  padding: 0.45rem 0.78rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, #9a7e5d, #7e6449);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 252, 248, 0.96);
  border-top: 1px solid rgba(113, 90, 66, 0.14);
  backdrop-filter: blur(8px);
}

.icon-btn {
  min-width: 64px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(113, 90, 66, 0.26);
  padding: 0.65rem 0.75rem;
  text-align: center;
  font-weight: 600;
  background: var(--paper);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background: rgba(28, 22, 17, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-body {
  width: min(92vw, 760px);
  background: rgba(255, 252, 248, 0.98);
  border-radius: 16px;
  border: 1px solid rgba(113, 90, 66, 0.18);
  box-shadow: var(--shadow-lg);
  padding: 0.74rem;
}

.lightbox-close {
  border: 0;
  margin: 0 0 0.6rem auto;
  display: inline-flex;
  border-radius: 999px;
  padding: 0.5rem 0.76rem;
  background: var(--paper-2);
  font-weight: 600;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.redirect-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(30, 23, 18, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.redirect-overlay.show {
  opacity: 1;
}

.redirect-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav,
  .top-note {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-content: end;
  }

  .hero-layout,
  .split,
  .split.reverse,
  .contact-wrap,
  .card-grid,
  .lead-box,
  .proof-grid,
  .events-grid,
  .starter-grid,
  .pricing-grid,
  .policy-grid,
  .steps,
  .footer-grid,
  .trust,
  .card-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    max-width: none;
  }

  .classes-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .classes-tags {
    justify-content: flex-start;
  }

  .schedule-head,
  .pricing-head,
  .proof-head,
  .events-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .google-rating {
    text-align: left;
    max-width: 240px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 70px;
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero-layout,
  .split,
  .split.reverse,
  .contact-wrap,
  .card-grid,
  .lead-box,
  .proof-grid,
  .events-grid,
  .starter-grid,
  .pricing-grid,
  .policy-grid,
  .steps,
  .footer-grid,
  .trust,
  .hero-stats,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .contact-info {
    border-right: 0;
    padding-right: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
  }

  .studio-photo:first-child {
    grid-column: span 1;
  }

  .about-feature {
    grid-template-columns: 1fr;
  }

  .about-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(113, 90, 66, 0.12);
  }

  .about-photo-badge {
    left: 0.6rem;
    right: 0.6rem;
    max-width: none;
    bottom: 0.6rem;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .header-actions .btn-soft {
    display: none;
  }

  .site-footer {
    padding-bottom: 7.4rem;
  }

  .mobile-cta {
    display: grid;
  }

  .floating-note {
    right: 0.7rem;
    bottom: 0.7rem;
    max-width: 220px;
  }

  .schedule-embed iframe {
    min-height: 420px;
  }

  .schedule-mock {
    min-height: 420px;
  }

  .schedule-row {
    grid-template-columns: 54px 74px 1fr auto;
  }

  .schedule-fallback {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
