:root {
  --ink: #19232a;
  --muted: #5a6670;
  --line: #dfe5e1;
  --paper: #fbfaf6;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --coral: #d85b45;
  --clay: #c9553b;
  --gold: #c69a36;
  --mist: #e8f2ef;
  --shadow: 0 24px 70px rgba(25, 35, 42, 0.12);
}

@font-face {
  font-family: "Tropica Gardens";
  src: url("https://rayoga.com/wp-content/uploads/2025/05/Tropica-Gardens-Sans.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(25, 35, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--teal-dark);
  background: var(--mist);
  border-color: rgba(15, 118, 110, 0.18);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(25, 35, 42, 0.14);
}

.button.accent {
  color: var(--white);
  background: var(--clay);
  border-color: rgba(255, 255, 255, 0.16);
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(12, 22, 26, 0.54), rgba(12, 22, 26, 0.18)),
    linear-gradient(90deg, rgba(57, 34, 25, 0.28), rgba(255, 255, 255, 0.08));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) clamp(20px, 7vw, 96px);
  color: var(--white);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-weight: 820;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe2d5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: "Tropica Gardens", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(4.1rem, 8vw, 8rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-family: "Tropica Gardens", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.45rem, 4.5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
  margin: clamp(24px, 4vw, 40px) 0 0;
}

.hero-facts div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-facts dt {
  font-size: 1.55rem;
  font-weight: 840;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.recognition-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.recognition-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #f6f1e9;
}

.recognition-strip img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
}

.recognition-strip p {
  margin: 0;
}

.recognition-strip strong,
.recognition-strip span {
  display: block;
}

.recognition-strip strong {
  color: var(--teal-dark);
  font-size: 1.04rem;
}

.recognition-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-actions a {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.quick-actions a:last-child {
  border-right: 0;
}

.quick-actions span,
.quick-actions strong {
  display: block;
}

.quick-actions span {
  color: var(--muted);
  font-size: 0.86rem;
}

.quick-actions strong {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 1.06rem;
}

.section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 6vw, 88px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.schedule-section {
  background: var(--white);
}

.schedule-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  cursor: default;
}

.chip.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.class-grid,
.pricing-grid,
.class-types {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.class-card,
.price-card,
.class-types article {
  min-height: 100%;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.class-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-weight: 820;
  font-size: 0.84rem;
}

.class-card p,
.price-card p,
.class-types p,
.proof-copy p,
.proof-copy li,
.contact-section p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.38;
}

.class-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal-dark);
  font-weight: 780;
}

.live-schedule {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 22px;
  padding: 18px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.live-schedule h3,
.live-schedule p {
  color: var(--white);
}

.live-schedule p {
  color: rgba(255, 255, 255, 0.7);
}

.live-schedule iframe {
  width: 100%;
  min-height: 520px;
  background: var(--white);
  border: 0;
  border-radius: 6px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--mist);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 76px;
  padding: 16px 20px 16px 66px;
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  content: counter(steps);
  font-weight: 820;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 5px;
  color: var(--muted);
}

.pricing-section {
  background: var(--paper);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
}

.price-card.featured {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.price-card.featured p,
.price-card.featured .tag {
  color: rgba(255, 255, 255, 0.78);
}

.price-card strong {
  display: block;
  margin: 0;
  font-family: "Tropica Gardens", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.05rem;
  line-height: 1;
}

.price-card .button {
  width: 100%;
  margin-top: 4px;
}

.tag {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.classes-section {
  background: var(--white);
}

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

.class-types article {
  padding: 16px;
}

.class-types h3 {
  margin-bottom: 6px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #f5f7f2;
}

.proof-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-links .facebook {
  background: #1877f2;
}

.social-links .instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 74%, #515bd4 100%);
}

.social-links .x-social {
  background: #111111;
}

.social-links .yelp {
  background: #d32323;
}

.social-links .youtube {
  background: #ff0000;
}

.social-links a:hover {
  transform: translateY(-1px);
}

.map-frame {
  width: 100%;
  min-height: 300px;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  filter: saturate(0.82);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 2px;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.mobile-actions {
  display: none;
}

.workshop-page {
  min-height: calc(100vh - 90px);
  background: var(--cream);
}

.workshop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
  padding: clamp(48px, 8vw, 92px) clamp(20px, 6vw, 72px);
}

.workshop-copy,
.workshop-card,
.workshop-details article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(25, 35, 42, 0.08);
}

.workshop-copy {
  padding: clamp(28px, 5vw, 58px);
}

.workshop-copy h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 6.7rem);
  line-height: 0.95;
}

.workshop-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.workshop-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: var(--white);
  background: var(--teal-dark);
}

.workshop-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.workshop-card span,
.workshop-details span {
  color: var(--mint);
  font-weight: 850;
  text-transform: uppercase;
}

.workshop-card strong {
  font-size: 2.1rem;
  line-height: 1.05;
}

.workshop-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.workshop-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(20px, 6vw, 72px) clamp(48px, 7vw, 84px);
}

.workshop-details article {
  padding: 22px;
}

.workshop-details h2 {
  margin: 8px 0;
  font-size: 1.35rem;
}

.workshop-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

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

  .live-schedule,
  .split,
  .proof-section {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 62px;
  }

  .site-header {
    min-height: 66px;
    padding: 8px 16px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .hero {
    min-height: 540px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(12, 22, 26, 0.92) 0%, rgba(12, 22, 26, 0.62) 72%, rgba(12, 22, 26, 0.24) 100%);
  }

  .hero-media img {
    object-position: 51% center;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 28px 20px 34px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 3.75rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    line-height: 1.03;
  }

  h3 {
    font-size: 1.02rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.36;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    gap: 10px;
    margin-top: 16px;
  }

  .contact-actions {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-facts,
  .class-grid,
  .class-types {
    grid-template-columns: 1fr;
  }

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

  .quick-actions a {
    padding: 14px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .quick-actions span {
    font-size: 0.72rem;
  }

  .quick-actions strong {
    font-size: 0.9rem;
  }

  .recognition-strip {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .recognition-strip > div {
    min-height: auto;
    padding: 14px 20px;
  }

  .recognition-strip > div:nth-child(n+3) {
    display: none;
  }

  .recognition-strip img {
    width: 50px;
    height: 50px;
  }

  .recognition-strip strong {
    font-size: 0.96rem;
  }

  .recognition-strip span {
    font-size: 0.84rem;
  }

  .map-frame {
    min-height: 210px;
  }

  .section {
    padding: 38px 20px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .schedule-toolbar {
    gap: 8px;
    margin-bottom: 14px;
  }

  .chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .class-grid {
    gap: 10px;
  }

  .class-card,
  .price-card,
  .class-types article {
    padding: 12px;
  }

  .class-card:nth-child(n+3) {
    display: none;
  }

  .class-card p,
  .class-types p,
  .proof-copy p,
  .proof-copy li,
  .contact-section p {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .live-schedule {
    display: block;
    padding: 14px;
  }

  .live-schedule iframe {
    display: block;
    min-height: 430px;
  }

  .split,
  .proof-section {
    gap: 18px;
  }

  .steps {
    gap: 8px;
  }

  .steps li {
    min-height: auto;
    padding: 12px 14px 12px 52px;
  }

  .steps li::before {
    top: 12px;
    left: 14px;
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .price-card p {
    display: none;
  }

  .price-card .tag {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .price-card h3 {
    margin-bottom: 6px;
  }

  .price-card strong {
    font-size: 1.55rem;
  }

  .price-card .button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .proof-image img {
    aspect-ratio: 16 / 10;
  }

  .contact-section {
    gap: 14px;
  }

  .workshop-hero,
  .workshop-details {
    grid-template-columns: 1fr;
  }

  .workshop-hero {
    padding: 28px 16px 14px;
  }

  .workshop-details {
    padding: 0 16px 78px;
  }

  .workshop-copy,
  .workshop-card,
  .workshop-details article {
    padding: 18px;
  }

  .workshop-copy h1 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .contact-section h2 {
    font-size: 2.35rem;
  }

  .contact-form {
    padding: 14px;
  }

  .contact-form label {
    gap: 3px;
  }

  .contact-form input {
    min-height: 34px;
  }

  .contact-form textarea {
    min-height: 58px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 28px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -14px 40px rgba(25, 35, 42, 0.12);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 58px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 820;
  }
}
