:root {
  --ink: #1d241f;
  --muted: #6f7a68;
  --brand: #333f2f;
  --brand-2: #4c624f;
  --leaf: #6f8a69;
  --sage: #8a9878;
  --mint: #c2d2b8;
  --cream: #f5f1e6;
  --paper: #fbf8ef;
  --wash: #eef4e8;
  --line: rgba(29, 36, 31, 0.14);
  --shadow: 0 24px 70px rgba(29, 36, 31, 0.14);
  --sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --script: "Caveat", "Segoe Print", "Bradley Hand ITC", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 350;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  right: -34px;
  bottom: -34px;
  z-index: -1;
  width: clamp(210px, 28vw, 390px);
  aspect-ratio: 1;
  background: url("assets/beslenme-docenti-lotus-only.png") center / contain no-repeat;
  opacity: 0.08;
  filter: saturate(0.9);
  animation: lotusDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 239, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(29, 36, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

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

.brand strong {
  display: block;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 0.95;
}

.brand em {
  display: block;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--leaf);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  margin-top: 4px;
  text-transform: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  color: #384136;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--brand-2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.nav-close {
  display: none;
}

.section,
.section-grid,
.proof-strip,
.contact,
footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(240px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding: 28px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-family: var(--script);
  font-size: 1.06rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.45vw, 4.35rem);
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  color: var(--brand-2);
  font-family: var(--script);
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.24;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--script);
  font-size: 1.18rem;
  font-weight: 400;
}

.lead {
  max-width: 680px;
  color: #384136;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 520;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(51, 63, 47, 0.14);
}

.button.primary {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

.button.ghost {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.46);
}

.button.has-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
}

.instagram-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm-.1 2A3.7 3.7 0 0 0 4 7.7v8.6A3.7 3.7 0 0 0 7.7 20h8.6a3.7 3.7 0 0 0 3.7-3.7V7.7A3.7 3.7 0 0 0 16.3 4H7.7Zm9.8 2.5a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

.spotify-icon {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm4.59 14.42a.75.75 0 0 1-1.03.25c-2.82-1.72-6.37-2.1-10.55-1.15a.75.75 0 1 1-.33-1.46c4.57-1.04 8.5-.59 11.66 1.34a.75.75 0 0 1 .25 1.02Zm1.22-2.72a.9.9 0 0 1-1.24.3c-3.23-1.99-8.15-2.57-11.96-1.4a.9.9 0 0 1-.53-1.72c4.34-1.33 9.75-.68 13.43 1.59a.9.9 0 0 1 .3 1.23Zm.11-2.84C14.05 8.56 7.66 8.35 3.96 9.47a1.05 1.05 0 0 1-.61-2.01c4.25-1.29 11.28-1.04 15.64 1.55a1.05 1.05 0 1 1-1.07 1.85Z'/%3E%3C/svg%3E");
}

.hero-visual {
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(100%, 300px);
  height: auto;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.hero-visual::before {
  content: none;
}

.hero-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  border: 8px solid rgba(245, 241, 230, 0.96);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 22px 52px rgba(51, 63, 47, 0.16);
  animation: portraitFloat 7s ease-in-out infinite;
}

.hero-note {
  position: static;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(76, 98, 79, 0.18);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(245, 241, 230, 0.86);
  box-shadow: 0 16px 45px rgba(51, 63, 47, 0.08);
  animation: noteFloat 7s ease-in-out infinite 600ms;
}

.hero-note img {
  width: 48px;
  height: 38px;
  object-fit: contain;
  margin: 0;
  flex: 0 0 auto;
}

.hero-note strong {
  font-family: var(--script);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.25;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 45px rgba(29, 36, 31, 0.08);
}

.proof-strip article,
.proof-strip a {
  padding: 22px;
  background: rgba(245, 241, 230, 0.88);
  transition: transform 200ms ease, background-color 200ms ease;
}

.proof-strip article:hover,
.proof-strip a:hover {
  transform: translateY(-3px);
  background: rgba(238, 244, 232, 0.92);
}

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

.proof-strip strong {
  color: var(--brand);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  font-weight: 600;
  line-height: 1.04;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 96px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(28px, 7vw, 90px);
}

.text-stack {
  color: #394239;
  font-size: 1.12rem;
  line-height: 1.8;
}

.text-stack p {
  border-left: 3px solid var(--sage);
  padding-left: 20px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.lotus-grid,
.expertise-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.lotus-grid article,
.expertise-grid article,
.timeline article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lotus-grid article:hover,
.expertise-grid article:hover,
.timeline article:hover,
.post-grid a:hover,
.feature-post:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 98, 79, 0.28);
  box-shadow: 0 18px 40px rgba(51, 63, 47, 0.1);
}

.lotus-grid article:nth-child(even),
.expertise-grid article:nth-child(even) {
  background: rgba(238, 244, 232, 0.72);
}

.lotus-grid span,
.timeline span,
.post-grid span {
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 520;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lotus-grid p,
.expertise-grid p,
.timeline p {
  color: var(--muted);
  line-height: 1.58;
}

.expertise-grid {
  grid-template-columns: repeat(4, 1fr);
}

.expertise-grid article {
  min-height: 240px;
  border-top: 5px solid var(--brand-2);
}

.podcast-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(76, 98, 79, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 244, 232, 0.86), rgba(245, 241, 230, 0.92));
  box-shadow: 0 18px 44px rgba(51, 63, 47, 0.08);
}

.podcast-card p:last-child {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.program-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.event-calendar-card {
  width: 100%;
  border: 1px solid rgba(76, 98, 79, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(51, 63, 47, 0.08);
}

.event-calendar-card {
  position: relative;
  overflow: hidden;
  align-self: start;
  background: var(--paper);
}

.event-calendar-card > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: saturate(0.96) contrast(0.98);
}

.event-calendar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245, 241, 230, 0.22) 0%, rgba(245, 241, 230, 0.1) 46%, rgba(245, 241, 230, 0) 76%),
    linear-gradient(90deg, rgba(245, 241, 230, 0.08), rgba(245, 241, 230, 0));
}

.event-calendar-overlay {
  position: absolute;
  top: clamp(16px, 4vw, 36px);
  left: 50%;
  z-index: 2;
  width: min(82%, 430px);
  padding: clamp(12px, 2.2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(29, 36, 31, 0.12);
  background: rgba(251, 248, 239, 0.42);
  backdrop-filter: blur(2px);
  transform: translateX(-50%);
  color: var(--ink);
}

.event-calendar-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand);
  text-transform: uppercase;
}

.event-calendar-title span {
  font-size: clamp(1rem, 2.4vw, 1.36rem);
  letter-spacing: 0.12em;
}

.event-calendar-title strong {
  font-size: clamp(1.18rem, 2.8vw, 1.58rem);
  font-weight: 600;
}

.event-calendar-weekdays,
.event-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(4px, 1vw, 8px);
  text-align: center;
}

.event-calendar-weekdays {
  margin-bottom: 8px;
  color: var(--brand-2);
  font-size: clamp(0.72rem, 1.5vw, 0.95rem);
  font-weight: 600;
}

.event-calendar-days span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(24px, 4.3vw, 38px);
  color: #2f352f;
  font-size: clamp(0.9rem, 2vw, 1.18rem);
}

.event-calendar-days .is-event {
  color: var(--brand);
  font-weight: 700;
}

.event-calendar-days .is-event::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 3px solid rgba(194, 210, 184, 0.98);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(51, 63, 47, 0.08);
}

.event-calendar-notes {
  position: absolute;
  left: clamp(16px, 5vw, 44px);
  right: clamp(16px, 5vw, 44px);
  bottom: clamp(24px, 8vw, 88px);
  z-index: 2;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.event-calendar-note {
  width: fit-content;
  max-width: min(78%, 340px);
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(29, 98, 58, 0.96);
  box-shadow: 0 12px 28px rgba(29, 36, 31, 0.16);
  font-family: var(--script);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.08;
}

.event-calendar-note:nth-child(even) {
  justify-self: end;
  background: rgba(51, 63, 47, 0.94);
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.program-list article {
  padding: 20px;
  border: 1px solid rgba(76, 98, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.program-list span {
  display: block;
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 520;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-list strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 560;
}

.program-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.book-callout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(76, 98, 79, 0.16);
  border-radius: 8px;
  background: rgba(238, 244, 232, 0.72);
}

.book-callout > img {
  aspect-ratio: 1;
}

.book-callout {
  color: inherit;
}

.book-callout > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(76, 98, 79, 0.16);
  border-radius: 8px;
}

.book-callout h3 {
  color: var(--brand);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.feature-post {
  position: sticky;
  top: 96px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 241, 230, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-post img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-post span {
  display: block;
  padding: 14px 16px;
  color: var(--brand);
  font-weight: 560;
}

.phone-frame {
  overflow: hidden;
  border: 10px solid var(--brand);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--brand);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: top;
  border-radius: 23px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.post-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.post-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 400ms ease;
}

.post-grid a:hover img {
  transform: scale(1.035);
}

.post-grid div {
  padding: 18px;
}

.post-grid h3 {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1.12;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.timeline article {
  min-height: 190px;
}

.timeline strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 520;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 96px;
  padding: clamp(28px, 6vw, 58px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(51, 63, 47, 0.96), rgba(76, 98, 79, 0.92));
}

.contact h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.contact .eyebrow {
  color: var(--mint);
}

.contact .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.question-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  background: rgba(35, 43, 32, 0.46);
  backdrop-filter: blur(10px);
  transition: opacity 220ms ease;
}

.question-panel.is-open {
  pointer-events: auto;
  opacity: 1;
}

.question-card {
  position: relative;
  width: min(100%, 640px);
  max-height: min(760px, calc(100dvh - 44px));
  overflow: auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(119, 142, 110, 0.26);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(35, 43, 32, 0.22);
  background: var(--paper);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.question-panel.is-open .question-card {
  transform: translateY(0) scale(1);
}

.question-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
}

.question-close::before,
.question-close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.question-close::before {
  transform: rotate(45deg);
}

.question-close::after {
  transform: rotate(-45deg);
}

.question-intro {
  max-width: 520px;
  margin: 16px 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.question-form {
  display: grid;
  gap: 16px;
}

.question-form label {
  display: grid;
  gap: 8px;
  color: var(--brand);
  font-weight: 520;
}

.question-form input,
.question-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.question-form textarea {
  resize: vertical;
  min-height: 160px;
}

.question-form input:focus,
.question-form textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(119, 142, 110, 0.14);
  background: #fff;
}

.question-form small {
  color: var(--muted);
  line-height: 1.5;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 42px 0 56px;
  color: var(--muted);
  text-align: center;
}

footer img {
  width: 220px;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

@keyframes portraitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes lotusDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg) scale(1);
  }
  to {
    transform: translate3d(-10px, -14px, 0) rotate(3deg) scale(1.04);
  }
}

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

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

@media (max-width: 980px) {
  .hero,
  .split,
  .podcast-card,
  .program-layout,
  .content-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 26px;
  }

  .hero-visual,
  .hero-visual > img {
    height: auto;
  }

  .proof-strip,
  .expertise-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .lotus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-post {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
    z-index: 40;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 35;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 96px 24px 36px;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(rgba(251, 248, 239, 0.96), rgba(251, 248, 239, 0.96)),
      url("assets/beslenme-docenti-lotus-only.png") center 78% / 220px auto no-repeat;
    box-shadow: none;
  }

  .nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(76, 98, 79, 0.18);
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.72);
  }

  .nav-close::before,
  .nav-close::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
  }

  .nav-close::before {
    transform: rotate(45deg);
  }

  .nav-close::after {
    transform: rotate(-45deg);
  }

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

  .nav a {
    width: min(100%, 320px);
    min-height: 46px;
    padding: 14px 18px;
    border: 1px solid rgba(76, 98, 79, 0.14);
    border-radius: 999px;
    background: rgba(245, 241, 230, 0.64);
    font-family: var(--serif);
    font-size: 1.2rem;
    text-align: center;
  }

  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    width: 44px;
    height: 40px;
  }

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

  .brand em {
    font-size: 0.9rem;
  }

  .section,
  .section-grid,
  .proof-strip,
  .contact,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    gap: 24px;
    padding: 18px 0 34px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(1.92rem, 8.2vw, 2.48rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.78rem, 8vw, 2.55rem);
    line-height: 1.22;
  }

  h3 {
    font-size: 1.16rem;
  }

  .lead {
    font-size: 1.04rem;
    line-height: 1.66;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-visual,
  .hero-visual > img {
    height: auto;
  }

  .hero-note {
    align-items: center;
    border-radius: 999px;
    flex-direction: row;
    gap: 12px;
    min-height: 48px;
    margin-top: 12px;
    padding: 7px 12px;
    text-align: center;
  }

  .hero-note img {
    width: 42px;
    height: 32px;
  }

  .hero-note strong {
    font-size: 0.88rem;
    text-align: left;
  }

  .proof-strip,
  .lotus-grid,
  .expertise-grid,
  .post-grid,
  .program-list,
  .book-callout,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 220px);
  }

  .proof-strip article,
  .proof-strip a {
    padding: 16px 18px;
  }

  .proof-strip strong {
    font-size: 1.08rem;
  }

  .proof-strip span {
    font-size: 0.94rem;
  }

  .lotus-grid article,
  .expertise-grid article,
  .timeline article {
    min-height: auto;
    padding: 18px;
  }

  .section {
    padding-top: 58px;
  }

  .split {
    gap: 18px;
  }

  .text-stack {
    font-size: 1.06rem;
    line-height: 1.7;
  }

  .text-stack p {
    padding-left: 14px;
  }

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

  .content-layout {
    gap: 18px;
  }

  .podcast-card {
    gap: 18px;
    padding: 22px 18px;
  }

  .program-layout {
    gap: 14px;
  }

  .event-calendar-card {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .event-calendar-overlay {
    top: 14px;
    width: 86%;
  }

  .event-calendar-notes {
    left: 14px;
    right: 14px;
    bottom: 22px;
  }

  .event-calendar-note {
    max-width: 82%;
    padding: 8px 10px;
  }

  .program-list article {
    padding: 16px 18px;
  }

  .program-list span {
    font-size: 0.82rem;
  }

  .program-list strong {
    font-size: 1.2rem;
  }

  .program-list p {
    font-size: 1.03rem;
    line-height: 1.6;
  }

  .book-callout {
    padding: 14px;
  }

  .book-callout > img {
    width: min(100%, 220px);
    justify-self: center;
  }

  .feature-post {
    width: min(100%, 250px);
    margin-inline: auto;
  }

  .phone-frame {
    width: min(100%, 250px);
    margin-inline: auto;
    border-width: 7px;
    border-radius: 26px;
  }

  .phone-frame img {
    border-radius: 18px;
  }

  .post-grid {
    gap: 12px;
  }

  .post-grid a {
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: center;
  }

  .post-grid img {
    width: 104px;
    height: 104px;
    aspect-ratio: auto;
  }

  .post-grid div {
    padding: 14px;
  }

  .post-grid h3 {
    font-size: 1.24rem;
  }

  .post-grid span {
    font-size: 0.82rem;
  }

  .timeline strong {
    margin-top: 10px;
  }

  .contact {
    margin-top: 64px;
    padding: 24px 18px;
  }

  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    font-size: 1.02rem;
  }

  footer {
    flex-direction: column;
    padding: 34px 0 44px;
  }

  footer img {
    width: 170px;
  }

  body::before {
    right: -48px;
    bottom: -28px;
    width: 210px;
    opacity: 0.07;
  }
}
