:root {
  --forest: #24382c;
  --forest-deep: #17241c;
  --sage: #6d8a72;
  --sage-soft: #8aa58e;
  --leaf: #3e5a45;
  --cream: #f6f1e8;
  --sand: #e7dccb;
  --linen: #fbf8f3;
  --ink: #161d18;
  --muted: #5c665f;
  --white: #fffcf8;
  --gold: #c4a574;
  --navy: #1e2c3a;
  --shadow: 0 18px 50px rgba(23, 36, 28, 0.1);
  --shadow-soft: 0 10px 30px rgba(23, 36, 28, 0.07);
  --radius: 22px;
  --radius-sm: 14px;
  --header-offset: 6.75rem;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--linen);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 0.6rem;
}

.notice-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 2.4rem;
  padding: 0.4rem 1rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  width: 100%;
}

.notice-bar a {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--forest-deep);
  text-decoration: none;
  font-weight: 650;
  padding: 0.18rem 0.72rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.notice-bar a:hover {
  background: #d4b98a;
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 2.4rem;
  z-index: 40;
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(36, 56, 44, 0.08);
  transition: box-shadow 0.3s var(--ease);
  isolation: isolate;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
}

.logo-sub {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0.55rem;
  width: 1.5rem;
  height: 2px;
  background: var(--forest);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span {
  top: 50%;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--leaf) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 560;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--leaf);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 252, 248, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 252, 248, 0.1);
}

.btn-ghost {
  background: var(--white);
  color: var(--forest);
  border-color: rgba(36, 56, 44, 0.12);
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
  transform: scale(1.06);
  animation: kenburns 28s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 28, 0.18) 0%, rgba(23, 36, 28, 0.55) 52%, rgba(18, 28, 22, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 28, 22, 0.45), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 7rem 1.25rem 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0.7rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.12rem;
  color: rgba(255, 252, 248, 0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 1.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.12);
  border: 1px solid rgba(255, 252, 248, 0.16);
  font-size: 0.86rem;
}

.chip.is-closed {
  color: #f3d0c6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: 5.5rem 1.25rem;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.6rem;
}

.section-header h2,
.cta-band h2,
.contact-card h2 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--forest);
}

.lede {
  margin: 0;
  color: var(--muted);
}

.about h2,
.experience h2 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--forest);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about {
  background: var(--cream);
}

.about p + p {
  margin-top: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.1rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
}

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

.media-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 28%;
  transition: transform 0.8s var(--ease);
}

.media-card:hover img {
  transform: scale(1.04);
}

.why-grid,
.service-grid,
.specialty-grid,
.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(36, 56, 44, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 550;
  color: var(--forest);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.icon-dot {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #edf2eb;
  color: var(--leaf);
}

.services {
  background: linear-gradient(180deg, var(--linen), #eef3ec);
}

.gallery {
  padding-top: 0;
}

.gallery-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-frame img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: 60% 28%;
}

.gallery figcaption {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reviews {
  background: var(--forest-deep);
  color: var(--cream);
}

.reviews .section-header h2,
.reviews .lede,
.reviews .card h3 {
  color: var(--cream);
}

.reviews .lede,
.reviews .card p {
  color: rgba(246, 241, 232, 0.78);
}

.reviews .card {
  background: rgba(255, 252, 248, 0.05);
  border-color: rgba(255, 252, 248, 0.08);
}

.review-score {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--cream) !important;
}

.experience-list {
  display: grid;
  gap: 1.2rem;
}

.experience article {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(36, 56, 44, 0.1);
}

.experience article h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 550;
  color: var(--forest);
}

.experience article p {
  margin: 0;
  color: var(--muted);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--forest);
  font-weight: 560;
}

.faq-item button::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--sage);
}

.faq-item[open] button::after {
  content: "–";
}

.faq-item .answer {
  display: none;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

.faq-item[open] .answer {
  display: block;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-card,
.map-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: 1.6rem;
}

.contact-list {
  list-style: none;
  margin: 1.2rem 0 1.4rem;
  padding: 0;
}

.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(36, 56, 44, 0.08);
}

.contact-list a {
  color: var(--leaf);
}

.hours {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.4rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--leaf);
}

.status.is-closed {
  color: #8a4b3b;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  border-radius: var(--radius);
}

.cta-band {
  margin: 0 1.25rem 4rem;
  padding: 3.4rem 1.5rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(23, 36, 28, 0.78), rgba(30, 44, 58, 0.72)),
    url("../images/lakshyoga-yoga-practice-pasir-ris.jpg") center/cover;
  color: var(--cream);
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: var(--cream);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
}

.cta-band .btn-primary:hover {
  background: #d4b98a;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 2rem 1.25rem 6.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.breadcrumbs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--sage);
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(36, 56, 44, 0.08);
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 2.8rem;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--forest);
  color: var(--cream);
}

.mobile-cta a:nth-child(2) {
  background: #128c4a;
}

.mobile-cta a:nth-child(3) {
  background: var(--white);
  color: var(--forest);
  border: 1px solid rgba(36, 56, 44, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: fade-up 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

@keyframes fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes kenburns {
  to {
    transform: scale(1.14) translate3d(1.5%, -1.5%, 0);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1.1rem 1.1rem;
    background: var(--linen);
    border-bottom: 1px solid rgba(36, 56, 44, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.3rem;
  }

  .split,
  .why-grid,
  .service-grid,
  .specialty-grid,
  .local-grid,
  .contact-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .mobile-cta {
    display: grid;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-media img,
  .card,
  .btn,
  .media-card img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
