:root {
  --ink: #242323;
  --paper: #fff;
  --muted: #f2f1ed;
  --green: #3f7652;
  --yellow: #e8c529;
  --violet: #5f2be0;
  --line: rgba(36, 35, 35, .16);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-underline-offset: .18em; }
a:hover { color: var(--violet); }
button, input, textarea { font: inherit; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-header {
  display: flex;
  justify-content: center;
  padding: 24px 20px 18px;
  color: #fff;
  background: var(--ink);
}
.brand {
  color: inherit;
  text-decoration: none;
  text-align: center;
  letter-spacing: .12em;
}
.brand:hover { color: #fff; }
.brand-name { display: block; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; }
.brand-name span { color: var(--yellow); }
.brand-tagline { display: block; margin-top: 2px; color: #ddd; font-size: .72rem; text-transform: uppercase; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  background: rgba(36, 35, 35, .96);
  border-top: 1px solid rgba(255,255,255,.12);
}
.nav-inner {
  width: min(100% - 24px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-inner > a,
.nav-group > a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 8px 12px;
  color: #fff;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-inner a:hover,
.nav-inner a[aria-current="page"] { color: var(--yellow); }
.nav-group { position: relative; display: flex; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  padding: 8px;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: .18s ease;
}
.submenu a { display: block; padding: 8px 10px; color: #fff; text-decoration: none; }
.nav-group:hover .submenu,
.nav-group:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
main { flex: 1; }
.container,
.romlicontainer {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.narrow { max-width: 780px; }
.page-section { padding: clamp(52px, 8vw, 92px) 0; }
.page-section + .page-section { border-top: 1px solid var(--line); }
.page-header {
  padding: clamp(64px, 9vw, 112px) 0;
  color: #fff;
  background: var(--ink);
  text-align: center;
}
.page-header .eyebrow { color: var(--yellow); }
.page-header h1 { max-width: 900px; margin: 8px auto 0; }
h1, h2, h3 {
  margin: 0 0 .6em;
  line-height: 1.12;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
p { margin: 0 0 1.2em; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lead { font-size: clamp(1.12rem, 2.2vw, 1.4rem); line-height: 1.5; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover { color: #fff; background: var(--violet); }
.button-light { color: var(--ink); background: var(--yellow); }
.hero {
  min-height: min(790px, calc(100vh - 146px));
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.12)),
    url("/assets/img/yoga-balance.jpg") center / cover no-repeat;
}
.hero-content { width: min(100% - 40px, var(--max)); margin: 0 auto; padding: clamp(70px, 11vw, 140px) 0; }
.hero h1 { max-width: 780px; font-size: clamp(3rem, 8vw, 6.5rem); }
.hero .lead { max-width: 620px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.feature-grid,
.card-grid,
.media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card,
.card {
  flex: 1 1 260px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--muted);
}
.feature-card:nth-child(2) { background: var(--ink); color: #fff; }
.feature-card:nth-child(3) { background: var(--green); color: #fff; }
.split {
  display: flex;
  align-items: center;
  gap: clamp(32px, 7vw, 84px);
}
.split > * { flex: 1 1 0; min-width: 0; }
.split img { width: 100%; max-height: 680px; object-fit: cover; }
.dark-section { color: #fff; background: var(--ink); }
.tinted-section { background: var(--muted); }
.media-grid figure { flex: 1 1 300px; margin: 0; }
.media-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-grid figcaption { padding: 12px 0; color: #666; }
.service-list { display: flex; flex-direction: column; gap: 18px; }
.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: var(--muted);
  border-left: 5px solid var(--green);
}
.service p { margin: 0; color: #606060; }
.contact-card { display: flex; flex-wrap: wrap; gap: 24px; }
.contact-card > * { flex: 1 1 290px; }
.contact-panel { padding: clamp(28px, 5vw, 52px); background: var(--muted); }
.video-list { display: flex; flex-direction: column; gap: 16px; }
.video-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}
.blog-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.blog-card { flex: 1 1 290px; padding: 28px; background: var(--muted); }
.blog-preview p { margin-bottom: 0; }
.romlicontainer { padding-block: clamp(46px, 7vw, 80px); }
.romlicontainer > :first-child { margin-top: 0; }
.romlicontainer table { display: block; overflow-x: auto; }
.romlicontainer img { border-radius: 2px; }
.site-footer {
  padding: 42px 0 24px;
  color: #fff;
  background: #171717;
}
.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-inner strong { display: block; }
.site-footer a { color: #fff; }
.social-links { display: flex; flex-wrap: wrap; gap: 14px; }
.romlifooter {
  width: min(100% - 40px, var(--max));
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.romlifooter > div { display: flex; align-items: flex-start; gap: 16px; }
.romlifooter p { margin: 0; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { padding-block: 16px 12px; }
  .site-nav { position: static; }
  .nav-inner { width: 100%; justify-content: flex-start; padding: 8px; }
  .nav-inner > a, .nav-group > a { min-height: 42px; padding: 6px 9px; font-size: .7rem; }
  .submenu { display: none; }
  .hero { min-height: 640px; background-position: 58% center; }
  .hero-content { padding-bottom: 64px; }
  .split { flex-direction: column; align-items: stretch; }
  .service { align-items: flex-start; flex-direction: column; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

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