/* =====================================================
   Mettayou by Kim, yoga atelier
   Huisstijl: salie + crème, warm & luchtig
   ===================================================== */

:root {
  --sage:        #A4AE83;
  --sage-light:  #C9D0B0;
  --sage-pale:   #EDEFE3;
  --cream:       #F7F4EC;
  --cream-deep:  #EFEADD;
  --forest:      #2C3327;
  --forest-soft: #46503B;
  --olive:       #5C6647;
  --brass:       #C2A155;
  --brass-deep:  #9C7C36;
  --clay:        #BE8A63;
  --white:       #FFFFFF;

  --text:   #2C3327;
  --muted:  #5E6552;
  --line:   rgba(44, 51, 39, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; color: var(--forest); letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 8vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }
strong { font-weight: 500; color: var(--forest-soft); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--sage-light); }

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section__head { max-width: 640px; margin-bottom: 3.5rem; }
.section__lead { font-size: 1.12rem; margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 400; font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.95em 1.9em; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--brass { background: var(--brass); color: #2A1E07; }
.btn--brass:hover { background: var(--brass-deep); color: var(--cream); box-shadow: 0 12px 28px -12px rgba(156,124,54,.7); }
.btn--ghost { background: transparent; border-color: rgba(44,51,39,.28); color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn--cream { background: var(--cream); color: var(--forest); }
.btn--cream:hover { background: var(--white); box-shadow: 0 12px 28px -14px rgba(0,0,0,.35); }
.btn--outline { background: transparent; border-color: var(--sage); color: var(--forest-soft); }
.btn--outline:hover { background: var(--sage); color: var(--forest); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .95rem; letter-spacing: .02em; color: var(--brass-deep);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: gap .35s var(--ease), border-color .35s var(--ease);
}
.link-arrow span { transition: transform .35s var(--ease); }
.link-arrow:hover { border-color: var(--brass); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.3rem 0;
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease);
}
.nav.scrolled {
  background: rgba(247,244,236,.86);
  backdrop-filter: blur(14px);
  padding: .75rem 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .65rem; color: var(--forest); }
.brand__mark { color: var(--olive); display: flex; }
.brand__name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; letter-spacing: .01em; }
.brand__name span { color: var(--brass-deep); font-style: italic; }

.nav__links { display: flex; gap: 2.1rem; }
.nav__links a {
  font-size: .92rem; letter-spacing: .03em; color: var(--forest-soft);
  position: relative; padding: .2rem 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--brass); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--forest); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: .7em 1.5em; font-size: .85rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: .3s var(--ease); }
.nav__mobile { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 8rem 0 4rem;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 80% at 80% 10%, var(--sage-light) 0%, transparent 55%),
    radial-gradient(100% 90% at 10% 90%, var(--cream-deep) 0%, transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--sage-pale) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__title { margin-bottom: 1.6rem; }
.hero__sub { font-size: 1.25rem; max-width: 30em; color: var(--forest-soft); margin-bottom: 2.4rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* breathing rings */
.breath {
  position: absolute; top: 50%; right: 6%; transform: translateY(-50%);
  width: 460px; height: 460px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.breath__ring {
  position: absolute; border-radius: 50%; border: 1.5px solid var(--olive);
  opacity: .35; animation: breathe 9s ease-in-out infinite;
}
.breath__ring--1 { width: 46%; height: 46%; animation-delay: 0s; border-color: var(--brass); opacity: .45; }
.breath__ring--2 { width: 72%; height: 72%; animation-delay: .4s; }
.breath__ring--3 { width: 100%; height: 100%; animation-delay: .8s; opacity: .22; }
.breath__label {
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
  color: var(--forest-soft); letter-spacing: .15em; opacity: .65;
}
@keyframes breathe {
  0%, 100% { transform: scale(.82); opacity: .18; }
  45% { transform: scale(1.06); opacity: .5; }
}

.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(44,51,39,.3); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px; z-index: 3;
}
.hero__scroll span { width: 3px; height: 8px; background: var(--forest-soft); border-radius: 2px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* lotus draw */
.lotus path { stroke-dasharray: 200; stroke-dashoffset: 200; animation: draw 2.2s var(--ease) forwards; }
.lotus path:nth-child(2) { animation-delay: .12s; }
.lotus path:nth-child(3) { animation-delay: .24s; }
.lotus path:nth-child(4) { animation-delay: .36s; }
.lotus path:nth-child(5) { animation-delay: .48s; }
.lotus path:nth-child(6) { animation-delay: .6s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- discipline strip ---------- */
.strip { background: var(--forest); color: var(--sage-light); padding: 1.1rem 0; overflow: hidden; }
.strip__track {
  display: flex; align-items: center; gap: 1.4rem; white-space: nowrap;
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  width: max-content; animation: marquee 28s linear infinite;
}
.strip__track .dot { color: var(--brass); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- intro ---------- */
.intro { padding: clamp(5rem, 10vw, 8rem) 0; }
.intro__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.intro__media { position: relative; }
.intro__badge {
  position: absolute; bottom: -22px; right: -10px;
  background: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.3rem;
  box-shadow: 0 20px 40px -24px rgba(44,51,39,.5); text-align: center;
}
.intro__badge-num { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--brass-deep); }
.intro__badge-txt { font-size: .8rem; letter-spacing: .08em; color: var(--muted); }
.intro__text h2 { margin-bottom: 1.4rem; }
.intro__text p { margin-bottom: 1.1rem; }
.intro__text .link-arrow { margin-top: .6rem; }

/* ---------- placeholders ---------- */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    radial-gradient(80% 80% at 30% 20%, var(--sage-light) 0%, transparent 60%),
    linear-gradient(150deg, var(--sage) 0%, var(--olive) 100%);
  display: flex; align-items: flex-start; min-height: 320px;
}
.ph::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 75%, rgba(247,244,236,.16) 0 18%, transparent 18.5%),
    radial-gradient(circle at 50% 50%, rgba(247,244,236,.10) 0 30%, transparent 30.5%);
  opacity: .8;
}
.ph__label {
  position: relative; z-index: 1; margin: 1rem; font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(247,244,236,.85);
  border: 1px solid rgba(247,244,236,.4); border-radius: 999px; padding: .35em .9em;
}
.ph--portrait { min-height: 460px; }
.ph--square { min-height: 420px; }

/* ---------- cards / lessen ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(44,51,39,.45); border-color: transparent; }
.card__icon { font-size: 1.7rem; color: var(--brass); display: block; margin-bottom: 1rem; line-height: 1; }
.card h3 { margin-bottom: .7rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.card p { font-size: .98rem; }
.tag { font-family: var(--font-body); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; background: var(--sage-pale); color: var(--olive); padding: .3em .7em; border-radius: 999px; }
.card--accent { background: var(--sage-pale); border-color: transparent; }
.card--cta { background: var(--forest); color: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.card--cta h3 { color: var(--cream); }
.card--cta p { color: var(--sage-light); margin-bottom: 1.1rem; }
.card--cta .link-arrow { color: var(--brass); }

/* ---------- rooster ---------- */
.rooster { background: var(--sage-pale); }
.schedule { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.3rem; }
.day { background: var(--white); border-radius: var(--radius); padding: 1.7rem; }
.day__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); margin-bottom: 1rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); }
.slot {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .3rem 1rem;
  padding: .85rem 0; border-bottom: 1px dashed var(--line);
  transition: padding-left .35s var(--ease);
}
.day .slot:last-child { border-bottom: none; }
.slot:hover { padding-left: .4rem; }
.slot__time { font-size: .82rem; letter-spacing: .04em; color: var(--brass-deep); grid-column: 1; }
.slot__class { font-family: var(--font-display); font-size: 1.25rem; color: var(--forest); grid-column: 1; grid-row: 2; }
.slot__note { font-family: var(--font-body); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--cream-deep); padding: .2em .6em; border-radius: 999px; vertical-align: middle; }
.slot__book { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-size: .85rem; color: var(--olive); display: inline-flex; gap: .35em; align-items: center; opacity: .55; transition: opacity .35s var(--ease), color .35s var(--ease); }
.slot:hover .slot__book { opacity: 1; color: var(--brass-deep); }
.rooster__note { text-align: center; margin-top: 2.5rem; font-size: 1.05rem; }
.rooster__note a { color: var(--brass-deep); border-bottom: 1px solid var(--brass); }

/* ---------- tarieven ---------- */
.prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); gap: 1.2rem; align-items: stretch; }
.price {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.8rem; text-align: center; position: relative;
  display: flex; flex-direction: column; gap: .5rem;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(44,51,39,.4); }
.price h3 { font-size: 1.3rem; }
.price__amount { font-family: var(--font-display); font-size: 3rem; color: var(--brass-deep); line-height: 1; }
.price__amount span { font-size: 1rem; color: var(--muted); }
.price__meta { font-size: .88rem; flex-grow: 1; }
.price .btn { margin-top: .8rem; }
.price--featured { background: var(--forest); border-color: var(--forest); }
.price--featured h3, .price--featured .price__amount { color: var(--cream); }
.price--featured .price__amount span, .price--featured .price__meta { color: var(--sage-light); }
.price__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brass); color: #2A1E07; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: .35em .9em; border-radius: 999px; }

/* ---------- retreat ---------- */
.retreat__panel { position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden; padding: clamp(3rem, 7vw, 6rem); color: var(--cream); }
.retreat__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(90% 120% at 85% 15%, rgba(194,161,85,.55) 0%, transparent 55%),
    linear-gradient(135deg, #6E5836 0%, var(--forest) 70%);
}
.retreat__bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(247,244,236,.18) 0 12%, transparent 12.5%);
}
.retreat__content { position: relative; z-index: 1; max-width: 540px; }
.retreat__content h2 { color: var(--cream); margin-bottom: 1.2rem; }
.retreat__content p { color: rgba(247,244,236,.85); font-size: 1.12rem; margin-bottom: 2rem; }

/* ---------- events ---------- */
.events__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.event { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.event:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(44,51,39,.4); }
.event__media { min-height: 220px; position: relative; display: flex; align-items: flex-end; background: linear-gradient(150deg, var(--olive), var(--forest)); }
.event__media--alt { background: linear-gradient(150deg, var(--clay), #7A4F33); }
.event__body { padding: 1.8rem; }
.event__tag { display: inline-block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-deep); background: var(--sage-pale); padding: .3em .8em; border-radius: 999px; margin-bottom: .9rem; }
.event__body h3 { margin-bottom: .7rem; }
.event__body p { font-size: .98rem; margin-bottom: 1rem; }

/* ---------- over / locatie ---------- */
.over__grid, .locatie__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.over__text p, .locatie__text p { margin-bottom: 1.1rem; }
.over__text h2, .locatie__text h2 { margin-bottom: 1.4rem; }
.locatie { background: var(--sage-pale); }
.locatie__grid { grid-template-columns: .9fr 1.1fr; }
address { font-style: normal; font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); margin-bottom: 1.3rem; line-height: 1.4; }
.locatie__map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 50px -34px rgba(44,51,39,.55); background: linear-gradient(150deg, var(--sage-light), var(--sage)); min-height: 400px; }
.locatie__map::before { content: '\01F4CD  Atelier Jongerius · Ulvenhout'; position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; color: rgba(44,51,39,.6); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.locatie__map iframe { position: relative; z-index: 1; width: 100%; height: 400px; border: 0; display: block; background: transparent; filter: saturate(.85) contrast(.95); }

/* ---------- reviews ---------- */
.reviews { background: var(--forest); color: var(--cream); }
.reviews .section__head { margin-left: auto; margin-right: auto; text-align: center; }
.reviews .eyebrow { color: var(--brass); }
.reviews h2 { color: var(--cream); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.quote { background: rgba(247,244,236,.05); border: 1px solid rgba(247,244,236,.12); border-radius: var(--radius); padding: 2rem; }
.quote p { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--cream); line-height: 1.35; margin-bottom: 1.2rem; }
.quote cite { font-style: normal; font-size: .78rem; letter-spacing: .06em; color: var(--sage-light); }

/* ---------- cta ---------- */
.cta { position: relative; text-align: center; overflow: hidden; background: linear-gradient(160deg, var(--sage-pale), var(--cream-deep)); }
.cta__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 1rem; }
.cta__sub { font-size: 1.15rem; margin-bottom: 2.2rem; }
.cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta__buttons .btn--cream { border: 1px solid var(--sage); }
.breath--small { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 340px; height: 340px; opacity: .5; }

/* ---------- footer ---------- */
.footer { background: var(--forest); color: var(--sage-light); padding: 4rem 0 2rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,244,236,.12); }
.footer__brand .brand__name { color: var(--cream); font-size: 1.6rem; }
.footer__brand p { color: var(--sage-light); font-size: .9rem; margin-top: .4rem; }
.footer__links, .footer__social { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__links a, .footer__social a { font-size: .92rem; color: var(--sage-light); transition: color .3s var(--ease); }
.footer__links a:hover, .footer__social a:hover { color: var(--brass); }
.footer__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; font-size: .78rem; letter-spacing: .04em; color: rgba(214,224,200,.55); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__mobile {
    display: flex; flex-direction: column; gap: 1.4rem; align-items: flex-start;
    background: rgba(247,244,236,.97); backdrop-filter: blur(14px);
    padding: 0 28px; max-height: 0; overflow: hidden;
    transition: max-height .5s var(--ease), padding .5s var(--ease);
  }
  .nav.open .nav__mobile { max-height: 420px; padding: 1.5rem 28px 2rem; box-shadow: 0 12px 24px -16px rgba(44,51,39,.4); }
  .nav__mobile a { font-size: 1.05rem; color: var(--forest-soft); }
  .intro__grid, .over__grid, .locatie__grid { grid-template-columns: 1fr; }
  .over__media { order: -1; }
  .breath { right: -80px; width: 360px; height: 360px; opacity: .55; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .hero { min-height: 92vh; }
  .breath { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .intro__badge { right: 10px; }
}

/* ---------- motion-arm ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
