/* =========================================================================
   ANTHASMA — Layout & components
   ========================================================================= */

/* ============================================================== HEADER === */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex; align-items: center;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), height .4s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid rgba(251,247,239,.12);
  background: #50603F;
}
.site-header.scrolled {
  background: rgba(80, 96, 63, .92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(251,247,239,.14);
  box-shadow: 0 6px 26px rgba(40,41,31,.18);
  height: 96px;
}
.site-header.scrolled .logo-mark { width: 80px; height: 80px; }
.site-header .btn-primary { background: var(--ivory); color: var(--sage-deep); box-shadow: 0 6px 18px rgba(40,41,31,.18); }
.site-header .btn-primary:hover { background: #fff; color: #45533A; box-shadow: 0 12px 28px rgba(40,41,31,.24); }
.header-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Logo */
.logo { display: flex; align-items: center; gap: .7rem; }
.logo-mark {
  width: 138px; height: 138px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transition: width .4s var(--ease), height .4s var(--ease);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: .04em; color: var(--ivory); }
.logo-tag  { font-size: .64rem; letter-spacing: .32em; text-transform: uppercase; color: var(--clay-soft); font-weight: 600; }

/* Nav */
.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
  font-family: var(--font-display);
  font-size: .92rem; font-weight: 500; color: rgba(244,238,226,.82);
  position: relative; padding: .3rem 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--clay-soft); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--ivory); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(251,247,239,.24); border-radius: 100px;
  padding: 3px; background: rgba(251,247,239,.08);
  font-family: var(--font-display);
}
.lang-toggle button {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: .34rem .68rem; border-radius: 100px; color: rgba(244,238,226,.7);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang-toggle button.active { background: var(--ivory); color: var(--sage-deep); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 1.8px; background: var(--ivory); transition: transform .35s var(--ease), opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  padding: calc(var(--header-h) + 2rem) var(--pad-x) 3rem;
  display: flex; flex-direction: column; gap: .4rem;
  transform: translateX(100%); transition: transform .5s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav a { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--ink); padding: .7rem 0; border-bottom: 1px solid var(--line-soft); }
.mobile-nav .btn { margin-top: 1.6rem; }

/* ================================================================ HERO === */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem)); padding-bottom: var(--section-y); overflow: hidden; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-copy { max-width: 600px; position: relative; }
.hero-copy > :not(.hero-watermark) { position: relative; z-index: 1; }
.hero-watermark {
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: .14;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero h1 { margin-top: 1.6rem; }
.hero .lead { margin-top: 1.8rem; max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }
.hero-meta { display: flex; gap: 2.4rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero-meta .stat { display: flex; flex-direction: column; gap: .15rem; }
.hero-meta .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: var(--sage-deep); letter-spacing: -.02em; }
.hero-meta .label { font-size: .82rem; color: var(--ink-faint); line-height: 1.4; }

.hero-visual { position: relative; }
.hero-visual image-slot { width: 100%; height: clamp(420px, 52vw, 620px); border-radius: 220px 220px var(--radius-lg) var(--radius-lg); }
.hero-photo {
  width: 100%; height: clamp(420px, 52vw, 620px);
  object-fit: cover; object-position: center 30%;
  border-radius: 220px 220px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.hero-badge {
  position: absolute; left: -28px; bottom: 44px;
  background: var(--ivory); border-radius: var(--radius-md);
  padding: 1rem 1.3rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .8rem; max-width: 250px;
}
.hero-badge .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--clay-tint); display: grid; place-items: center; flex-shrink: 0; color: var(--clay); }
.hero-badge .dot svg { width: 20px; height: 20px; }
.hero-badge p { font-size: .82rem; line-height: 1.4; color: var(--ink-soft); }
.hero-badge strong { color: var(--ink); font-weight: 700; display: block; font-family: var(--font-display); }

.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; pointer-events: none; }
.blob-1 { width: 480px; height: 480px; background: var(--sage-tint); top: -120px; right: -120px; }
.blob-2 { width: 360px; height: 360px; background: var(--clay-tint); bottom: -100px; left: -140px; }

/* ============================================================ MARQUEE === */
.trust { border-block: 1px solid var(--line-soft); }
.trust .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-block: 1.8rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.trust-item svg { width: 19px; height: 19px; color: var(--sage); }

/* ============================================================== ABOUT === */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about-visual { position: relative; }
.about-visual image-slot { width: 100%; height: clamp(440px, 50vw, 600px); border-radius: var(--radius-lg); }
.about-visual .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--clay-soft); border-radius: var(--radius-lg); z-index: -1; }
.section-head { max-width: 640px; }
.section-head h2 { margin-top: 1.1rem; }
.section-head p { margin-top: 1.3rem; }
.signature { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 1.5rem; color: var(--sage-deep); margin-top: 1.8rem; }

.value-list { display: grid; gap: 1.1rem; margin-top: 2rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-item .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; }
.value-item .ico svg { width: 20px; height: 20px; }
.value-item h4 { font-size: 1.08rem; font-weight: 600; font-family: var(--font-display); letter-spacing: -.01em; }
.value-item p { font-size: .95rem; color: var(--ink-soft); margin-top: .2rem; line-height: 1.55; }

/* ============================================================ VISION === */
.vision { position: relative; overflow: hidden; }
.vision-head { text-align: center; max-width: 720px; margin: 0 auto; }
.vision-head h2 { margin-top: 1.1rem; }
.vision-head p { margin-top: 1.3rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3.6rem; }
.pillar {
  background: var(--ivory); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); padding: 2.3rem 2rem;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar .num { font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .1em; color: var(--clay); }
.pillar h3 { font-size: 1.4rem; font-weight: 500; margin-top: 1.1rem; }
.pillar p { font-size: .96rem; color: var(--ink-soft); margin-top: .7rem; line-height: 1.6; }

/* ===================================================== ACCOMPAGNEMENTS === */
.serv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.2rem; }
.serv-card {
  background: var(--ivory); border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); padding: 2.3rem; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  display: flex; flex-direction: column;
}
.serv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.serv-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--clay-tint); color: var(--clay); display: grid; place-items: center; }
.serv-icon svg { width: 26px; height: 26px; }
.serv-card h3 { font-size: 1.45rem; font-weight: 500; margin-top: 1.4rem; }
.serv-card p { font-size: .98rem; color: var(--ink-soft); margin-top: .7rem; line-height: 1.6; flex: 1; }
.serv-meta { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft); }
.serv-meta .price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.serv-meta .dur { font-size: .85rem; color: var(--ink-faint); }
.serv-meta .link-arrow { margin-left: auto; }

/* =============================================================== RECIPES == */
.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.2rem; }
.recipe-card { border-radius: var(--radius-md); overflow: hidden; background: var(--ivory); border: 1px solid var(--line-soft); transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; flex-direction: column; }
.recipe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.recipe-card image-slot { width: 100%; height: 230px; border-radius: 0; box-shadow: none; }
.recipe-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.tag { align-self: flex-start; font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-deep); background: var(--sage-tint); padding: .3rem .7rem; border-radius: 100px; }
.recipe-body h3 { font-size: 1.25rem; font-weight: 500; margin-top: .9rem; }
.recipe-body p { font-size: .92rem; color: var(--ink-soft); margin-top: .5rem; flex: 1; }
.recipe-foot { display: flex; align-items: center; gap: 1rem; margin-top: 1.1rem; font-size: .82rem; color: var(--ink-faint); }
.recipe-foot span { display: inline-flex; align-items: center; gap: .4rem; }
.recipe-foot svg { width: 15px; height: 15px; }

/* ============================================================== BURNOUT == */
.burnout { background: #2C2D26; color: var(--paper); position: relative; overflow: hidden; }
.burnout .blob-1 { background: rgba(140,154,123,.4); opacity: .35; }
.burnout-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.burnout .eyebrow { color: var(--clay-soft); }
.burnout .eyebrow::before { background: var(--clay-soft); }
.burnout h2 { color: var(--paper); margin-top: 1.1rem; }
.burnout .lead { color: rgba(244,238,226,.78); margin-top: 1.3rem; }
.signs { display: grid; gap: .9rem; margin-top: 2.2rem; }
.sign { display: flex; gap: .8rem; align-items: center; font-size: 1rem; color: rgba(244,238,226,.9); }
.sign svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; }
.burnout-visual image-slot { width: 100%; height: clamp(360px, 44vw, 500px); border-radius: var(--radius-lg); }

/* =========================================================== TESTIMONIALS = */
.testi-head { text-align: center; max-width: 640px; margin: 0 auto; }
.testi-head h2 { margin-top: 1.1rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.4rem; }
.testi-card { background: var(--ivory); border: 1px solid var(--line-soft); border-radius: var(--radius-md); padding: 2.1rem; display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; color: var(--clay); margin-bottom: 1.1rem; }
.stars svg { width: 17px; height: 17px; }
.testi-card blockquote { font-size: 1.05rem; line-height: 1.6; color: var(--ink); font-weight: 400; flex: 1; }
.testi-author { display: flex; align-items: center; gap: .8rem; margin-top: 1.6rem; }
.testi-author image-slot { width: 46px; height: 46px; border-radius: 50%; box-shadow: none; flex-shrink: 0; }
.testi-author .who { line-height: 1.3; }
.testi-author .name { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.testi-author .role { font-size: .8rem; color: var(--ink-faint); }

/* ============================================================= CTA BAND === */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(135deg, var(--sage-deep), #4C5A40);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 7vw, 5.5rem);
  text-align: center; position: relative; overflow: hidden;
  color: var(--paper);
}
.cta-inner h2 { color: var(--ivory); max-width: 16em; margin: 0 auto; }
.cta-inner p { color: rgba(244,238,226,.8); margin: 1.2rem auto 0; max-width: 34em; }
.cta-inner .hero-cta { justify-content: center; margin-top: 2.4rem; }
.cta-inner .blob { background: rgba(215,180,155,.4); opacity: .4; }

/* ================================================================ FOOTER = */
.site-footer { background: #28291F; color: rgba(244,238,226,.72); padding-top: clamp(4rem, 8vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(244,238,226,.12); }
.footer-brand .logo-name { color: var(--paper); }
.footer-brand p { margin-top: 1.2rem; font-size: .92rem; line-height: 1.6; max-width: 30em; }
.footer-col h5 { font-family: var(--font-display); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-soft); font-weight: 600; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: grid; gap: .7rem; }
.footer-col a { font-size: .92rem; color: rgba(244,238,226,.72); transition: color .3s; }
.footer-col a:hover { color: var(--paper); }
.footer-news p { font-size: .9rem; margin-bottom: 1rem; }
.news-form { display: flex; gap: .5rem; }
.news-form input { flex: 1; background: rgba(244,238,226,.07); border: 1px solid rgba(244,238,226,.16); border-radius: 100px; padding: .7rem 1.1rem; color: var(--paper); font-family: var(--font-body); font-size: .9rem; }
.news-form input::placeholder { color: rgba(244,238,226,.45); }
.news-form button { background: var(--clay); color: var(--ivory); border-radius: 100px; width: 44px; height: 44px; display: grid; place-items: center; flex-shrink: 0; transition: background .3s, transform .3s; }
.news-form button:hover { background: #A87053; transform: translateY(-1px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: .82rem; color: rgba(244,238,226,.5); }
.footer-bottom .links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--paper); }
.socials { display: flex; gap: .7rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(244,238,226,.16); display: grid; place-items: center; transition: background .3s, border-color .3s; }
.socials a:hover { background: rgba(244,238,226,.1); border-color: transparent; }
.socials svg { width: 17px; height: 17px; }

/* ============================================================ RESPONSIVE = */
@media (max-width: 1000px) {
  .nav, .header-actions .btn { display: none; }
  .burger { display: flex; }
  .hero-grid, .about-grid, .burnout-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--header-h) + 1.5rem); }
  .hero-copy { max-width: none; }
  .hero-meta { margin-top: 2.2rem; }
  .about-visual, .burnout-visual { order: -1; }
  .pillars, .recipe-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .serv-grid, .pillars, .recipe-grid, .testi-grid, .footer-top { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.4rem; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -28px; }
  .lang-toggle { display: none; }
  .mobile-nav .lang-toggle { display: inline-flex; align-self: flex-start; margin-top: 1.4rem; }
}
