/*
  Moon&Sun — Premium Landing Theme
  Author: PixelShark.eu
  Modified: Natural Scroll & Compact Layout
*/

/* -------- Palette -------- */
:root{
  --black:#000000;
  --ink:#eef2f8;
  --ink-dim:#c8d0df;

  --accent-a:#de9920;
  --accent-b:#fcb833;

  --header-blue:#062331;

  --glass: rgba(255,255,255,0.05);
  --stroke: rgba(255,255,255,0.08);
  --shadow: 0 22px 70px rgba(0,0,0,.6);
  --radius: 24px;
  --speed: 320ms;

  --headerH: 64px;
  --footerH: 64px;
}

/* ----- Base / Layout ----- */
*{ box-sizing: border-box; }

html,body{
  margin:0;
  padding:0;
}

/* Scrollbar na oknie */
html{
  background:#000;
  overflow-x:hidden;
  scrollbar-gutter: stable both-edges;
  scrollbar-color: #b8872c transparent;
  scrollbar-width: thin;
}

/* Body configuration - NATURAL SCROLL (No Snap) */
body{
  min-height:100dvh; 
  display:block; 
  background: var(--black);
  color: var(--ink);
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  letter-spacing:.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-y:auto;
  overflow-x:hidden;
  /* Removed scroll-snap-type here for natural flow */
}

/* === GLOBAL RESET DLA LINKÓW === */
p{color:var(--ink-dim)}
a{color:var(--ink); text-decoration:none !important;} 
strong{color:#fff}
h1,h2,h3{font-family:"Cinzel",serif}

.tiny{font-size:.9rem; color:var(--ink-dim)}
.only-desktop{display:inline-flex}
@media (max-width: 1200px){ .only-desktop{display:none !important} }

/* Custom scrollbar */
::-webkit-scrollbar{width:12px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg,var(--accent-b),var(--accent-a));
  border-radius:12px;
  border: 2px solid rgba(0,0,0,.25);
}
::-webkit-scrollbar-thumb:hover{filter:brightness(1.06)}

.container{width:min(1800px, 95vw); margin-inline:auto}
.site-header, main, footer{position: relative; z-index:1}

/* ----- Header ----- */
.site-header{
  position:fixed; 
  top:0; left:0; right:0;
  z-index:100;
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
  background: rgba(0,0,0,0.6);
  height: var(--headerH);
}
.nav-inner{display:flex; align-items:center; gap:1rem; height:100%} 
.brand{display:flex; align-items:center; gap:.8rem}
.brand-text{
  font-family:"Cinzel",serif; font-weight:700;
  font-size: clamp(1.2rem, 1.1vw + 0.9rem, 1.9rem);
  letter-spacing:1.4px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.brand-text .moon{ background-image: linear-gradient(90deg, #de9920, #fcb833); }
.brand-text .amp{ background-image: linear-gradient(90deg, #f4c56a, #ffe2a6); }
.brand-text .sun{ background-image: linear-gradient(90deg, #ffc86a, #ffe39a); }
.brand-text .moon, .brand-text .amp, .brand-text .sun{
  background-clip:text; -webkit-background-clip:text; color:transparent;
}

/* Desktop nav */
.main-nav{margin-left:auto; display:flex; gap:1.2rem; align-items:center}
.main-nav a{
  opacity:.95; position:relative; padding:.2rem .3rem; font-weight:600; -webkit-font-smoothing: antialiased;
}
.main-nav a::after{
  content:""; position:absolute; inset:auto 0 -7px; height:2px;
  background:linear-gradient(90deg, transparent, var(--accent-b), transparent);
  transform:scaleX(0); transform-origin:center; transition:transform var(--speed)
}
.main-nav a:hover::after{transform:scaleX(1)}
.nav-sep{width:1px; height:18px; display:inline-block; margin:0 .4rem; background: linear-gradient(180deg, transparent, var(--accent-b), transparent); opacity:.8;}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:1rem 1.3rem; border-radius:999px; border:0; outline:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 10px 30px rgba(0,0,0,.25);
  background:rgba(255,255,255,.03); color:#1d1303;
  transition: transform var(--speed), box-shadow var(--speed), background var(--speed), filter var(--speed);
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background: linear-gradient(180deg, var(--accent-b), var(--accent-a)); color:#1d1303; font-weight:800}
.btn-primary.glow{box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 0 0 0 rgba(252,184,51,.4), var(--shadow)}
.btn-primary.glow:hover{box-shadow: inset 0 0 36px 8px rgba(252,184,51,.22), var(--shadow)}
.btn-outline{background: transparent; color:#ffe7b3; font-weight:800; box-shadow: inset 0 0 0 1px rgba(252,184,51,.58), 0 10px 30px rgba(0,0,0,.25)}

/* Hamburger */
.hamburger{display:none; background:transparent; border:0; padding:.4rem .5rem; margin-left:auto}
.hamburger span{display:block; width:26px; height:2px; background:#f0e7d0; margin:5px 0; transition: transform .28s ease, opacity .28s ease;}
@media (max-width: 900px){ .main-nav{display:none} .hamburger{display:block} }
.hamburger.open span:nth-child(1){transform: translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform: translateY(-7px) rotate(-45deg)}

/* Mobile overlay */
[hidden]{display:none !important;}
.mobile-overlay{
  position: fixed; left:0; right:0; top:var(--headerH); bottom:0; z-index:999;
  display:grid; place-items:flex-start; justify-content:center;
  background: radial-gradient(120% 100% at 50% 0%, rgba(0,0,0,.92), rgba(0,0,0,.94));
  backdrop-filter: blur(4px);
  overflow:auto; overscroll-behavior: contain; scrollbar-width: none;
}
.mobile-overlay::-webkit-scrollbar{display:none}
.overlay-inner{
  width:min(560px, 86vw); padding: 1.2rem 1.6rem; margin: 2vh auto;
  border:1px solid rgba(252,184,51,.22); border-radius:20px; background: rgba(10,10,10,.6); box-shadow: var(--shadow);
  text-align:center; animation: overlayIn .6s ease both;
}
@keyframes overlayIn{from{opacity:0; transform: translateY(12px)} to{opacity:1; transform:none}}
.overlay-link{display:block; padding:1rem .6rem; font-weight:800; letter-spacing:.3px;}
.overlay-user .user-ico{
  display:inline-block; width:16px; height:16px; margin-right:.5rem;
  background: linear-gradient(180deg, var(--accent-a), var(--accent-b));
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0 2c-4.2 0-7.5 2.7-7.5 6v.5h15V20c0-3.3-3.3-6-7.5-6Z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 12a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0 2c-4.2 0-7.5 2.7-7.5 6v.5h15V20c0-3.3-3.3-6-7.5-6Z"/></svg>') center/contain no-repeat;
}

/* ----- Hero (Updated for Natural Scroll) ----- */
.hero{
  display:grid; 
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 3vw, 60px);
  /* Changed from fixed height to min-height */
  min-height: 90dvh;
  height: auto;
  padding-top: calc(var(--headerH) + 40px);
  padding-bottom: 40px; 
  align-items:center;
  align-content: center;
  /* Removed scroll-snap-align */
}

.hero-copy{max-width: 980px}
.hero-title{margin:0 0 .6rem}
.hero-title .main{
  display:inline-block;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-size: clamp(2.6rem, 2.3vw + 1.6rem, 4.6rem); line-height:1.06; font-weight:700;
}
.hero-title .main .letter{
  display:inline; opacity:0; transform: translateY(6px); filter:blur(3px);
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-title .main .letter.on{opacity:1; transform:none; filter:blur(0); transition:opacity .8s ease, transform .8s ease, filter .8s ease}

.hero-title .sub{
  display:block; width: var(--titleW, auto); text-align:left;
  font: 700 clamp(1.05rem,1vw + .55rem,1.45rem) "Manrope",sans-serif;
  letter-spacing:.3px; margin-top:.25rem; color:#f4e9c7; opacity:.96;
}
.lead{
  font-size: clamp(.95rem, .5vw + .8rem, 1.1rem); line-height: 1.5; text-align: justify; hyphens: auto; color:#f1f4fb;
  margin-top:.6rem; max-width:56ch;
}
.hero-copy .hero-bullets{display:flex; flex-wrap:wrap; gap:1rem; margin:1rem 0 0; padding:0; list-style:none; opacity:.95}
.hero-copy .cta{display:flex; flex-wrap:wrap; gap:.9rem; align-items:center; margin-top:1.2rem}

/* Video + belt */
.video-wrap{width:100%}
.hidden-before-seq{opacity:0; transform: translateY(10px); visibility:hidden}
.reveal-step{opacity:1 !important; transform:none !important; visibility:visible !important; transition: opacity 1.2s ease, transform 1.2s ease;}

.video-frame{
  position:relative; width:100%; aspect-ratio: 16 / 10;
  border-radius: clamp(16px, 1.2vw, 24px) clamp(16px, 1.2vw, 24px) 0 0;
  overflow:hidden; box-shadow: 0 55px 120px rgba(0,0,0,.65);
  opacity:0; transform: translateY(8px); transition: opacity 1.4s ease, transform 1.4s ease;
}
.video-wrap.show .video-frame{opacity:1; transform:none}
.video-frame video{width:100%; height:100%; object-fit:cover; display:block; filter:none}
.video-vignette{position:absolute; inset:-8%; pointer-events:none; background: radial-gradient(120% 120% at 50% 50%, rgba(0,0,0,0) 60%, rgba(0,0,0,.62) 96%)}

.video-belt{
  margin:0; padding:0;
  background: linear-gradient(180deg, rgba(10,10,10,.9), rgba(6,6,6,.98));
  border: 1px solid rgba(252,184,51,.22); border-top-width: 1px;
  border-radius: 0 0 clamp(16px, 1.2vw, 24px) clamp(16px, 1.2vw, 24px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.video-belt blockquote{
  text-align:center; padding:.7rem 1.2rem; color:#f9f2dc; font-weight:700;
  margin:0; letter-spacing:.2px;
}

/* Mobile tweaks hero */
@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .hero-media{order:-1}
  .hero-copy{padding-inline: max(18px, 5vw)}
  .hero { min-height: auto; padding-top: 100px; }
}

/* ----- Footer ----- */
.site-footer{
  padding: 1rem 0;
  margin-top: auto;
  width: 100%;
  background: #050505;
  /* Removed scroll-snap-align */
  z-index: 2;
}
.foot{display:grid; grid-template-columns: 1fr auto 1fr; align-items:center; gap:1rem; padding:1rem}
.foot a{color:#f7f1da}
.foot-mid{display:flex; align-items:center; gap:.7rem; justify-content:center}
.foot-right{text-align:right}
.heart{background: linear-gradient(180deg, var(--accent-b), #b97f39); -webkit-background-clip:text; background-clip:text; color:transparent}
@media (max-width:700px){ .foot{grid-template-columns:1fr; text-align:center} .foot-right{text-align:center} }

/* ----- Stars (whole page) ----- */
#stars{position:fixed; inset:0; z-index:0; pointer-events:none}

/* ----- Intro ----- */
.intro-wait .intro-item{opacity:0; transform: translateY(14px)}
.intro-play .intro-item{animation: fadeRise 1.1s ease forwards}
.intro-play .nav-inner{animation-delay: .1s}
@keyframes fadeRise{to{opacity:1; transform:none}}

/* Cursor */
#cursor{position:fixed; inset:auto auto 0 0; width:22px; height:22px; border-radius:50%; transform: translate(-50%, -50%); pointer-events:none; z-index:6; box-shadow: 0 0 22px rgba(252,184,51,.16); border:1px solid rgba(252,184,51,.55); mix-blend-mode:screen; opacity:.85}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .reveal-step, .hidden-before-seq, .btn, .overlay-inner, .intro-item{animation:none; transition:none}
}

/* --- MOBILE FIX dla layoutu / CTA --- */
@media (max-width: 980px){
  main.page{
    padding-top: calc(var(--headerH) + 8px);
    padding-bottom: calc(var(--footerH) + 20px + env(safe-area-inset-bottom));
    min-height: auto;
  }
  .hero-copy .cta{ margin-bottom: 12px; }
}

/* === SUBHEADER === */
.subheader{
  min-height: 25vh; 
  display:flex; flex-direction:column; justify-content:center;
  padding-top: var(--headerH);
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(252,184,51,.10), transparent 60%),
    radial-gradient(1200px 400px at 90% -10%, rgba(222,153,32,.08), transparent 60%),
    #0a0a0a;
  border-bottom: 1px solid var(--stroke);
  text-align:center;
}
.subheader__inner{ text-align:center; padding: 0 20px; }

/* breadcrumbs */
.breadcrumbs{ margin: 4px 0 8px; }
.crumbs{ list-style:none; display:flex; justify-content:center; flex-wrap:wrap; gap:8px; padding:0; margin:0; }
.crumb + .crumb::before{ content:"/"; opacity:.45; margin:0 6px 0 2px; font-size:12px; }
.page-title{
  font-family:"Cinzel", serif; font-weight:700; letter-spacing:.02em;
  font-size: clamp(28px, 5vw, 48px); line-height:1.1; margin:.35em auto .25em;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-title::after{
  content:""; display:block; width:72px; height:2px; margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent-b), transparent); opacity:.75;
}
.page-lead{ max-width:760px; margin: 10px auto 0; opacity:.9; color:var(--ink-dim); }

/* --- MENU (Odzyskiwanie styli) --- */
.menu, .menu ul { list-style:none; margin:0; padding:0; }

.site-header .main-nav .menu{ display:flex; align-items:center; gap:1.2rem; }
.site-header .main-nav .menu a{ opacity:.95; position:relative; padding:.2rem .3rem; font-weight:600; -webkit-font-smoothing:antialiased; }
.site-header .main-nav .menu a::after{
  content:""; position:absolute; inset:auto 0 -7px; height:2px;
  background:linear-gradient(90deg, transparent, var(--accent-b), transparent);
  transform:scaleX(0); transform-origin:center; transition:transform var(--speed);
}
.site-header .main-nav .menu a:hover::after{ transform:scaleX(1); }

.site-footer .menu--footer{ display:flex; gap:.7rem; align-items:center; justify-content:center; }
.site-footer .menu--footer a{ color:#f7f1da; }

@media (max-width:980px){ .subheader__inner{ padding-inline: max(18px, 5vw); } }

/* === Alignment fixes === */
body.page-template-page-tarot .hero-copy,
body.page-template-page-astrology .hero-copy{ text-align: right; margin-left: auto; }
body.page-template-page-tarot .hero-title .sub,
body.page-template-page-astrology .hero-title .sub{ display:block; text-align:right; margin-left:auto; width:auto; max-width:none; white-space:nowrap; }
body.page-template-page-tarot .lead,
body.page-template-page-astrology .lead{ text-align:right; margin-left:auto; }
body.page-template-page-tarot .hero-bullets,
body.page-template-page-astrology .hero-bullets{ justify-content: flex-end; }
body.page-template-page-tarot .cta,
body.page-template-page-astrology .cta{ justify-content: flex-end; }

@media (max-width: 980px){
  body.page-template-page-tarot .hero-copy,
  body.page-template-page-astrology .hero-copy{ text-align: left; margin-left: 0; }
  body.page-template-page-tarot .hero-title .sub,
  body.page-template-page-astrology .hero-title .sub,
  body.page-template-page-tarot .lead,
  body.page-template-page-astrology .lead{ text-align:left; margin-left:0; white-space:normal; }
  body.page-template-page-tarot .hero-bullets,
  body.page-template-page-astrology .hero-bullets,
  body.page-template-page-tarot .cta,
  body.page-template-page-astrology .cta{ justify-content: flex-start; }
}

h1{ font-size: clamp(28px, 5vw, 48px); line-height:1.1; }
h2{ font-size: clamp(22px, 3.8vw, 28px); }
h3{ font-size: clamp(18px, 3.2vw, 22px); }
section h1{ font-size: clamp(28px, 5vw, 48px); line-height:1.1; }

/* === SECTIONS LAYOUT (Compact & Natural) === */
main.page{
  display:block;
  width:100%;
}

/* Sekcje – Zmienione na compact */
.section-pad {
  /* Removed min-height 100dvh */
  min-height: auto; 
  height: auto;
  /* Reduced padding for closer look */
  padding-top: 50px;
  padding-bottom: 50px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  /* Removed scroll-snap */
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.5em;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead { max-width: 600px; margin: 0 auto 2.5rem; color: var(--ink-dim); font-size: 1.1rem; }
.section-lead.center { text-align: center; }

/* --- ABOUT SECTION --- */
.about-grid {
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 80px);
  align-items:center;
}
.about-subtitle {
  font-family: "Manrope", sans-serif; font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: #f4e9c7; margin-bottom: 1.5rem; font-weight: 600; opacity: 0.9;
}
.text-block p { margin-bottom: 1.2rem; line-height: 1.7; font-size: 1.05rem; color: var(--ink-dim); }

/* ZDJĘCIE */
.about-visual .visual-frame {
  position: relative;
  width: 100%;
  max-height: 45vh;
  aspect-ratio: 4 / 3; 
  border: 1px solid rgba(252, 184, 51, 0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 0 auto;
}
.img-placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(252,184,51,0.1), transparent 70%);
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; }

/* --- SERVICES SECTION --- */
.services-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:24px;
}
.glass-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(252, 184, 51, 0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.card-title {
  font-family: "Cinzel", serif; font-size: 1.4rem; color: #ffe39a;
  margin-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0.6rem;
}
.card-desc { font-size: 0.95rem; margin-bottom: 1.2rem; color: var(--ink); }
.card-questions { list-style: none; padding: 0; margin: 0; }
.card-questions li {
  position: relative; padding-left: 1.2rem; margin-bottom: 0.5rem; font-size: 0.9rem;
  color: var(--ink-dim); font-style: italic;
}
.card-questions li::before { content: "•"; position: absolute; left: 0; color: var(--accent-b); }

/* --- WHY SECTION --- */
.why-wrapper {
  max-width: 900px; margin: 0 auto; padding: 3rem 2rem; text-align: center;
  background: linear-gradient(180deg, rgba(20,20,20,0.8), rgba(10,10,10,0.95));
}
.glow-border { box-shadow: inset 0 0 0 1px rgba(252, 184, 51, 0.15), var(--shadow); }
.why-content p { margin-bottom: 1.2rem; font-size: 1.1rem; line-height: 1.8; color: var(--ink-dim); }
.why-cta { margin-top: 2rem; }

/* =========================================
   >>> SUBPAGES STYLES (Tarot, Numerology, Astrology)
   ========================================= */

.tarot-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items:start;
}
.tarot-layouts strong { color: var(--accent-b); }

.meeting-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
}
.meeting-col {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--accent-a);
  padding: 2rem;
}
.meeting-icon { font-size: 2rem; margin-bottom: 1rem; }

/* --- FAQ Accordion (Modified) --- */
.faq-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 100px; 
  align-items:start;
}

.faq-item {
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 10px;
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.2rem 40px 1.2rem 0; 
  text-align: left;
  color: #f4e9c7;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display:flex;
  justify-content: space-between;
  align-items:center;
  transition: color 0.3s ease;
}
.faq-btn:hover, .faq-btn.active { color: var(--accent-b); }
.faq-btn .icon { font-size: 1.5rem; transition: transform 0.3s ease; }
.faq-btn.active .icon { transform: rotate(45deg); }

/* FIX: Added max-height explicitly for JS toggle */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 40px;
}
.faq-content p { padding-bottom: 1.5rem; margin: 0; }

/* =========================================
   >>> ANIMACJE NA SCROLL (SCROLL REVEAL)
   ========================================= */
.fade-wait {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.fade-wait.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade-wait { opacity: 1; transform: none; transition: none; } }

/* --- RESPONSIVE TWEAKS --- */
@media (max-width: 980px) {

  body{
    /* Mobile scroll settings */
    scroll-snap-type:none;
    scroll-padding-top:0;
  }

  .section-pad, .hero { 
    min-height:auto; 
    height:auto;
    padding-top: 60px; 
    padding-bottom: 40px; 
  }
  
  .hero{grid-template-columns:1fr}
  .hero-media{order:-1}
  .hero-copy{padding-inline: max(18px, 5vw)}
  
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order:-1; margin-bottom: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-wrapper { padding: 2rem 1rem; }

  .tarot-grid, .meeting-grid { grid-template-columns: 1fr; gap: 30px; }
  .meeting-col { padding: 1.5rem; }
  
  .faq-wrapper { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  .faq-btn { padding-right: 0; }
  .faq-content { padding-right: 0; }
  
  .foot{grid-template-columns:1fr; text-align:center} 
  .foot-right{text-align:center}
  
  main.page { padding-top: 0; }
}

/* =========================================
   >>> FAQ STATIC (BOXES 7-16)
   ========================================= */
.faq-static-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .faq-static-grid {
      grid-template-columns: 1fr 1fr; 
  }
}
.faq-static-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.faq-static-box:hover {
  background: rgba(255, 255, 255, 0.06);
}
.faq-static-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--accent-b);
  display: block;
}
.faq-static-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  color: var(--ink-dim);
}