@import "tailwindcss";

@theme {
  --color-parchment: #f5f0e8;
  --color-gold: #d4a853;
  --color-gold-light: #e8c87a;
  --color-charcoal: #2c2416;
  --color-off-white: #fdfaf6;
  --color-brand-primary: #d4a853;
  --color-brand-bg: #2c2416;

  --font-serif: "Philosopher", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --container: 1200px;
  --gap: 16px;
}

:root {
  --parchment: #f5f0e8;
  --parchment-2: #ede5d5;
  --gold: #d4a853;
  --gold-light: #e8c87a;
  --terracotta: #c4956a;
  --brown: #8b7355;
  --charcoal: #2c2416;
  --charcoal-2: #3d3020;
  --off-white: #fdfaf6;
  --line: rgba(44, 36, 22, 0.12);
  --line-strong: rgba(44, 36, 22, 0.18);
  --whatsapp: #25d366;
  --shadow-card: 0 20px 60px rgba(44, 36, 22, 0.08);
  --shadow-soft: 0 10px 30px rgba(44, 36, 22, 0.08);
  --shadow-nav: 0 8px 24px rgba(0, 0, 0, 0.16);
  --container: 1200px;
  --gap: 16px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --ff-head: "Philosopher", Georgia, serif;
  --ff-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top, rgba(212, 168, 83, 0.14), transparent 40%),
    var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

::selection {
  color: var(--charcoal);
  background: rgba(212, 168, 83, 0.35);
}

:focus-visible {
  outline: 3px solid rgba(212, 168, 83, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--charcoal);
  color: var(--off-white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: transparent;
}

.section-medium {
  background: linear-gradient(180deg, rgba(237, 229, 213, 0.78), rgba(245, 240, 232, 0.72));
}

.section-dark {
  background: var(--charcoal);
}

.section-header {
  margin: 0 auto 56px;
  max-width: 680px;
  text-align: center;
}

.section-header .t-eyebrow {
  margin-bottom: 12px;
}

.section-header .t-h2 {
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-head);
  line-height: 1.1;
}

.t-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
}

.t-display {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.t-h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.t-h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
}

.t-h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
}

.t-quote {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--terracotta);
}

.t-body {
  color: var(--charcoal-2);
}

.section-dark .t-display,
.section-dark .t-h1,
.section-dark .t-h2,
.section-dark .t-h3,
.section-dark .t-body {
  color: var(--off-white);
}

.section-dark .t-eyebrow {
  color: rgba(253, 250, 246, 0.68);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(44, 36, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-nav);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.nav-logo {
  position: relative;
  z-index: 2;
  font-family: var(--ff-head);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.82);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--charcoal) !important;
}

.nav-cta:hover,
.nav-cta.active,
.nav-cta[aria-current="page"] {
  background: var(--gold-light);
}

.nav-hamburger {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-hamburger span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--off-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-hamburger span:nth-child(3) {
  transform: translateY(6px);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 112px 24px 40px;
  background:
    radial-gradient(circle at top, rgba(212, 168, 83, 0.2), transparent 35%),
    rgba(44, 36, 22, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay ul {
  display: grid;
  gap: 24px;
  text-align: center;
}

.nav-overlay a {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--off-white);
}

.nav-overlay a:hover,
.nav-overlay a.active {
  color: var(--gold);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.3);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--off-white);
  border-color: var(--charcoal);
}

.btn-outline-light {
  border-color: rgba(253, 250, 246, 0.26);
  background: transparent;
  color: var(--off-white);
}

.btn-outline-light:hover {
  background: rgba(253, 250, 246, 0.08);
  border-color: rgba(253, 250, 246, 0.48);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.hero,
.hero-page {
  position: relative;
  overflow: clip;
}

.hero::before,
.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 168, 83, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(196, 149, 106, 0.18), transparent 34%);
  pointer-events: none;
}

.hero .container,
.hero-page .container {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 84px 0 64px;
  text-align: center;
}

.hero .t-eyebrow,
.hero-page .t-eyebrow {
  margin-bottom: 14px;
}

.hero .t-quote {
  margin-bottom: 16px;
}

.hero .t-display {
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero .t-body {
  width: min(100%, 720px);
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.hero .btn-group {
  justify-content: center;
}

.hero-page {
  padding: 78px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero-page .t-h1 {
  max-width: 900px;
  margin: 0 auto 16px;
}

.hero-page .t-body {
  width: min(100%, 760px);
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-yoga .hero-page {
  background:
    radial-gradient(circle at left, rgba(212, 168, 83, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.98), rgba(237, 229, 213, 0.7));
}

.page-yoga .hero-page::after,
.page-tabere .hero-page::after {
  content: "";
  position: absolute;
  right: max(24px, 8vw);
  bottom: 12px;
  width: min(220px, 24vw);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  opacity: 0.16;
  pointer-events: none;
  background-position: center;
  background-size: cover;
}

.page-yoga .hero-page::after {
  background-image: url("images/poster-yoga-silhouette.jpg");
}

.page-terapie .hero-page {
  background:
    radial-gradient(circle at top right, rgba(196, 149, 106, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.98), rgba(237, 229, 213, 0.72));
}

.page-tabere .hero-page {
  background:
    radial-gradient(circle at left top, rgba(139, 115, 85, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.98), rgba(237, 229, 213, 0.68));
}

.page-tabere .hero-page::after {
  background-image: url("images/scroll-tibetan.jpg");
}

.page-corporate .hero-page {
  background:
    radial-gradient(circle at right, rgba(44, 36, 22, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.98), rgba(237, 229, 213, 0.76));
}

.page-contact .hero-page {
  background:
    radial-gradient(circle at top, rgba(212, 168, 83, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.98), rgba(237, 229, 213, 0.7));
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: var(--gap);
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-card .t-h3 {
  margin-bottom: 10px;
}

.bento-card .card-text {
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.bento-card .card-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bc-yoga {
  grid-row: span 2;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(44, 36, 22, 0.4), rgba(44, 36, 22, 0.95)),
    url("images/poster-yoga-silhouette.jpg") center/cover;
  color: var(--off-white);
}

.bc-yoga .t-eyebrow,
.bc-yoga .card-link {
  color: var(--gold-light);
}

.bc-yoga .card-text,
.bc-terapie .card-text,
.bc-tabere .card-text {
  color: rgba(253, 250, 246, 0.86);
}

.bc-terapie {
  background:
    linear-gradient(180deg, rgba(61, 48, 32, 0.92), rgba(61, 48, 32, 0.98));
  color: var(--off-white);
}

.bc-terapie .t-eyebrow,
.bc-terapie .card-link {
  color: var(--terracotta);
}

.bc-tabere {
  background:
    linear-gradient(180deg, rgba(139, 115, 85, 0.92), rgba(118, 95, 70, 0.98));
  color: var(--off-white);
}

.bc-tabere .t-eyebrow,
.bc-tabere .card-link {
  color: rgba(253, 250, 246, 0.88);
}

.bc-corporate {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(237, 229, 213, 0.96), rgba(253, 250, 246, 0.96));
  border: 1px solid rgba(44, 36, 22, 0.06);
}

.bc-corporate .card-link {
  color: var(--charcoal);
}

.tara-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.tara-teaser-visual {
  position: relative;
}

.tara-teaser-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.tara-teaser-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.tara-floating-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(253, 250, 246, 0.18);
  border-radius: var(--radius-md);
  background: rgba(44, 36, 22, 0.9);
  box-shadow: var(--shadow-soft);
}

.tara-floating-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tara-floating-note span {
  color: var(--off-white);
  font-size: 0.94rem;
}

.tara-teaser-text .t-eyebrow {
  margin-bottom: 14px;
}

.tara-teaser-text .t-h2 {
  margin-bottom: 18px;
}

.tara-teaser-text .t-body {
  margin-bottom: 26px;
}

.mantra-strip {
  padding: 80px 0;
  background:
    radial-gradient(circle at top, rgba(212, 168, 83, 0.18), transparent 26%),
    var(--charcoal);
  text-align: center;
}

.mantra-strip .t-display {
  color: var(--gold);
  font-style: italic;
}

.bio-grid {
  display: grid;
  gap: 24px;
}

.bio-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(253, 250, 246, 0.62);
  box-shadow: var(--shadow-soft);
}

.bio-block .t-h3 {
  margin-bottom: 14px;
  color: var(--terracotta);
}

.about-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
  margin-bottom: 32px;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-summary {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(44, 36, 22, 0.96), rgba(61, 48, 32, 0.96));
  box-shadow: var(--shadow-card);
}

.about-summary .t-eyebrow {
  color: rgba(253, 250, 246, 0.65);
  margin-bottom: 12px;
}

.about-summary .t-h3 {
  color: var(--off-white);
  margin-bottom: 16px;
}

.about-summary .t-body {
  color: rgba(253, 250, 246, 0.82);
}

.summary-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.summary-list li {
  padding-left: 18px;
  position: relative;
}

.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.diplome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.diplome-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: #fff;
}

.diplome-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.callout-panel {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
  margin: 40px auto;
}

.editorial {
  width: min(100%, 820px);
  margin: 0 auto;
}

.editorial-block {
  padding: 28px 0;
}

.editorial-block .t-h3 {
  margin-bottom: 14px;
  color: var(--gold);
}

.editorial-divider {
  width: 68px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.archive-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(253, 250, 246, 0.78);
  box-shadow: var(--shadow-soft);
}

.archive-card .t-h3 {
  color: var(--charcoal);
}

.archive-card .t-body {
  font-size: 0.98rem;
}

.archive-link {
  margin-top: auto;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.archive-link:hover {
  color: var(--terracotta);
}

.service-detail-hero {
  border-bottom: 1px solid var(--line);
}

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: var(--brown);
}

.detail-breadcrumb a:hover {
  color: var(--charcoal);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 26px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(253, 250, 246, 0.8);
  box-shadow: var(--shadow-soft);
}

.detail-main .t-h2 {
  margin-bottom: 6px;
}

.detail-main .t-body {
  margin: 0;
}

.detail-sidebar {
  position: sticky;
  top: 92px;
}

.detail-sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(253, 250, 246, 0.86);
  box-shadow: var(--shadow-soft);
}

.detail-sidebar-card .t-eyebrow {
  margin-bottom: 8px;
}

.detail-sidebar-card .detail-value {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.detail-sidebar-card .t-body {
  margin-bottom: 16px;
}

.detail-sidebar-card .btn-group {
  flex-direction: column;
}

.cta-section {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(212, 168, 83, 0.14), transparent 30%),
    var(--charcoal);
}

.cta-section .t-h2 {
  margin-bottom: 14px;
}

.cta-section .t-body {
  width: min(100%, 620px);
  margin: 0 auto 30px;
}

.cta-section .btn-group {
  justify-content: center;
}

.contact-form-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(253, 250, 246, 0.78);
  box-shadow: var(--shadow-card);
}

.form-stack {
  display: grid;
  gap: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(44, 36, 22, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212, 168, 83, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.12);
  outline: none;
}

.form-textarea {
  min-height: 146px;
  resize: vertical;
}

.form-footnote,
.form-status {
  text-align: center;
  font-size: 0.92rem;
}

.form-footnote {
  color: var(--brown);
}

.form-status {
  min-height: 1.7em;
  color: var(--charcoal-2);
}

.form-status[data-state="error"] {
  color: #9f4021;
}

.form-status[data-state="success"] {
  color: #1f7a4b;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 48px;
}

.contact-detail-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(253, 250, 246, 0.7);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.contact-detail-card .t-eyebrow {
  margin-bottom: 10px;
}

.detail-value {
  font-family: var(--ff-head);
  font-size: 1.22rem;
}

.detail-value + .detail-value {
  margin-top: 6px;
}

.map-embed {
  overflow: hidden;
  margin-top: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.footer {
  padding: 52px 0 28px;
  background: #221c11;
  color: rgba(253, 250, 246, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-brand p,
.footer-col a {
  color: rgba(253, 250, 246, 0.72);
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--ff-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.55);
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-acid {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition-base);
}

.signature-acid a {
  color: var(--gold-light);
  font-weight: 500;
  text-decoration: none;
}

.signature-acid:hover {
  opacity: 1;
}

/* --- Services Bento internal --- */
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.service-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: rgba(253, 250, 246, 0.86);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.service-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-bento-card:hover::before {
  opacity: 1;
}

.service-bento-card.span-2 {
  grid-column: span 2;
}

.sbc-yoga::before { background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), transparent); }
.sbc-terapie::before { background: linear-gradient(135deg, rgba(196, 149, 106, 0.12), transparent); }
.sbc-tabere::before { background: linear-gradient(135deg, rgba(139, 115, 85, 0.10), transparent); }
.sbc-corporate::before { background: linear-gradient(135deg, rgba(44, 36, 22, 0.08), transparent); }

.bento-icon {
  margin-bottom: 22px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(44, 36, 22, 0.04);
  border: 1px solid var(--line);
  color: var(--gold);
}

.sbc-terapie .bento-icon { color: var(--terracotta); }
.sbc-tabere .bento-icon { color: var(--brown); border-color: rgba(139, 115, 85, 0.2); }
.sbc-corporate .bento-icon { color: var(--charcoal); }

.bento-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-bento-card .t-eyebrow { margin-bottom: 8px; }
.service-bento-card .t-h3 { margin-bottom: 12px; color: var(--charcoal); }
.service-bento-card .t-body { margin-bottom: 24px; font-size: 0.98rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bc-yoga,
  .bc-corporate {
    grid-column: span 2;
    min-height: 280px;
  }

  .tara-teaser,
  .about-lead {
    grid-template-columns: 1fr;
  }

  .diplome-grid,
  .archive-grid,
  .services-bento-grid,
  .contact-details,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .section,
  .cta-section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
  }

  .hero,
  .hero-page {
    padding-top: 64px;
  }

  .bento-grid,
  .diplome-grid,
  .archive-grid,
  .services-bento-grid,
  .contact-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bc-yoga,
  .bc-corporate,
  .service-bento-card.span-2 {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .tara-floating-note {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-yoga .hero-page::after,
  .page-tabere .hero-page::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero .btn-group,
  .cta-section .btn-group,
  .btn-group {
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .bio-block,
  .about-summary,
  .callout-panel,
  .bento-card,
  .archive-card,
  .detail-main,
  .detail-sidebar-card {
    padding: 24px;
  }

  .map-embed iframe {
    height: 340px;
  }
}

/* --- Service Benefits Section --- */
.service-benefits {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.service-benefits .t-h3 {
  margin-bottom: 24px;
  text-align: left;
  color: var(--charcoal);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.8);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(44, 36, 22, 0.06);
  position: relative;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal-2);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* WhatsApp Personalization Modal */
.wa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 36, 22, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.wa-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.wa-modal-card {
  background: rgba(253, 250, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-card);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.wa-modal-overlay.open .wa-modal-card {
  transform: translateY(0);
}

.wa-modal-card h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.wa-modal-card p {
  color: var(--brown);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.wa-input-group {
  margin-bottom: 24px;
  text-align: left;
}

.wa-input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--charcoal);
  margin-left: 4px;
}

.wa-modal-card input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.wa-modal-card input:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.1);
}

.wa-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wa-btn-cancel {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--brown);
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wa-btn-cancel:hover {
  background: rgba(44, 36, 22, 0.05);
  color: var(--charcoal);
}

.wa-btn-send {
  background: var(--charcoal);
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wa-btn-send:hover {
  background: black;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  .wa-modal-card {
    padding: 30px 20px;
  }
}

/* --- GOLDEN FUNNEL ADDITIONAL STYLES --- */

/* 1. Trust Bar / Validation */
.trust-bar {
  padding: 24px 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(253, 250, 246, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

/* 2. PAS Section (Problem-Agitation-Solution) */
.pas-section {
  padding: 100px 0;
  background: radial-gradient(circle at bottom left, rgba(212, 168, 83, 0.05), transparent 40%);
}

.pas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.pas-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.pas-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.6);
}

.pas-number {
  font-family: var(--ff-head);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 10px;
  line-height: 1;
}

.pas-card .t-h3 {
  margin-bottom: 16px;
}

/* 3. Metric Ribbon */
.metric-ribbon {
  padding: 80px 0;
  background: var(--parchment-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.metric-item .metric-value {
  display: block;
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-item .metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brown);
}

/* 4. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "â€œ";
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--ff-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--parchment-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--charcoal);
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .pas-grid, .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pas-grid, .metric-grid, .trust-bar-inner {
    grid-template-columns: 1fr;
  }
  .trust-bar-inner {
    justify-content: center;
    text-align: center;
  }
}

/* FAQ Section */
.faq-section {
  background: var(--neutral-light);
  padding: 5rem 0;
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sage-dark);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--terracotta);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--sage-dark);
  opacity: 0.8;
  line-height: 1.6;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--gold-soft);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-cta.is-fab-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fab-whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  color: white;
  transition: all 0.3s ease;
}

.fab-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  background: #20BA5A;
  color: white;
}

.fab-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .float-cta {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .fab-whatsapp {
    width: 50px;
    height: 50px;
  }
  .fab-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: calc(100% - 2rem);
  max-width: 600px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 1.25rem;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner p {
  font-size: 0.95rem;
  color: var(--sage-dark);
  margin: 0;
  line-height: 1.4;
}

.cookie-banner a {
  color: var(--terracotta);
  text-decoration: underline;
  font-weight: 500;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  min-width: auto;
}

/* Legal Content Page Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 1rem;
    gap: 1rem;
  }
}
