/* ═══════════════════════════════════════════════════════
   MASAZ LECZNICZY — Warm Earth Sanctuary
   Typography: Cormorant Garamond × Outfit
   Palette: cream / olive / terracotta
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #faf8f5;
  --cream-warm: #f3ede6;
  --olive: #2d4a3e;
  --olive-light: #4a7264;
  --olive-pale: #e8ede6;
  --terracotta: #b8836a;
  --terracotta-hover: #a6725b;
  --terracotta-light: #f5ebe4;
  --charcoal: #2a2a2a;
  --text: #3d3d3d;
  --text-light: #7a746d;
  --border: #e4dfd8;
  --card-bg: #ffffff;
  --max-w: 1060px;
  --header-h: 72px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --shadow-soft: 0 2px 20px rgba(45, 74, 62, 0.06);
  --shadow-card: 0 4px 24px rgba(45, 74, 62, 0.08);
  --radius: 10px;
  --radius-lg: 16px;
}

/* ── Base ─────────────────────────────────────── */

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--terracotta); }

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

/* ── Typography ──────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

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

.section-sub {
  color: var(--text-light);
  max-width: 540px;
  font-size: 16px;
  line-height: 1.75;
}

/* Decorative leaf divider */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  padding: 6px 0;
  color: var(--border);
}
.leaf-divider::before,
.leaf-divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--border);
}
.leaf-divider svg {
  width: 18px;
  height: 18px;
  fill: var(--terracotta);
  opacity: 0.5;
}

/* ── Buttons ─────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.btn-terra {
  background: var(--terracotta);
  color: #fff;
}
.btn-terra:hover {
  background: var(--terracotta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 131, 106, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--olive);
  border: 1.5px solid var(--olive);
}
.btn-outline:hover {
  background: var(--olive);
  color: #fff;
  transform: translateY(-2px);
}

.btn-olive {
  background: var(--olive);
  color: #fff;
}
.btn-olive:hover {
  background: var(--olive-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 74, 62, 0.25);
}

/* ── Header ──────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 1px 16px rgba(45, 74, 62, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-group img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--terracotta);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-cta {
  font-size: 13px;
  padding: 10px 22px;
}

/* Hamburger */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; }
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────── */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-warm) 50%, var(--terracotta-light) 100%);
}

/* Warm radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 131, 106, 0.1) 0%, rgba(184, 131, 106, 0.03) 40%, transparent 70%);
  pointer-events: none;
}

/* Secondary glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 74, 62, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-portrait {
  position: relative;
}

.hero-portrait .portrait-frame {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.7);
  box-shadow: 0 12px 40px rgba(45, 74, 62, 0.12);
  margin: 0 auto;
}

.hero-portrait .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small decorative ring */
.hero-portrait::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  opacity: 0.25;
}

.hero-portrait::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--olive-pale);
  opacity: 0.5;
  z-index: -1;
}

/* ── Info Bar ────────────────────────────────── */

.info-bar {
  background: var(--olive);
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
}

.info-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 400;
}

.info-bar-inner a {
  color: rgba(255,255,255,0.9);
}

.info-bar-inner a:hover {
  color: #fff;
}

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

.info-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--terracotta);
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ── About Section ───────────────────────────── */

.about-section {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 15.5px;
}

.credentials-list {
  list-style: none;
  margin-top: 24px;
}

.credentials-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.credentials-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 8px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── Services Section ────────────────────────── */

.services-section {
  padding: 90px 0;
  background: var(--cream-warm);
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-section .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s, box-shadow 0.35s;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border);
}

.service-card .service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--terracotta);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── Services Page (uslugi.html) ─────────────── */

.page-intro {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: linear-gradient(165deg, var(--cream) 0%, var(--cream-warm) 100%);
  text-align: center;
}

.page-intro .section-sub {
  margin: 0 auto;
}

.services-full {
  padding: 70px 0;
}

.service-list {
  max-width: 760px;
  margin: 0 auto;
}

.service-list-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}

.service-list-item:first-child {
  border-top: 1px solid var(--border);
}

.service-list-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--terracotta);
  opacity: 0.5;
  line-height: 1.3;
  text-align: right;
}

.service-list-item h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.service-list-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* Info boxes on services page */
.info-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 30px;
}

.info-box h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.info-box h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--olive);
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box ul li {
  padding: 6px 0;
  font-size: 14.5px;
  padding-left: 18px;
  position: relative;
}

.info-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.6;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.indication-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--cream);
  border-left: 3px solid var(--olive);
}

.indication-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  margin-top: 0;
  color: var(--charcoal);
}

.indication-card p {
  font-size: 13.5px;
  color: var(--text-light);
}

/* Contraindications */
.contra-section {
  padding: 60px 0;
  background: var(--cream-warm);
}

.contra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}

.contra-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border-top: 3px solid var(--terracotta);
}

.contra-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--terracotta);
}

.contra-card ul {
  list-style: none;
  padding: 0;
}

.contra-card ul li {
  font-size: 13.5px;
  padding: 4px 0;
  color: var(--text-light);
}

/* ── Pricing Section ─────────────────────────── */

.pricing-section {
  padding: 90px 0;
}

.pricing-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-section .section-sub {
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border-color: var(--terracotta);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Popularne';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-duration {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--olive);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  padding: 20px 28px;
  background: var(--olive-pale);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note strong {
  color: var(--olive);
}

/* ── CTA Band ────────────────────────────────── */

.cta-band {
  background: var(--olive);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-band .btn-terra {
  font-size: 15px;
  padding: 16px 36px;
}

/* ── Contact Section ─────────────────────────── */

.contact-section {
  padding: 70px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
}

.contact-sidebar {}

.contact-block {
  margin-bottom: 28px;
}

.contact-block .cb-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.contact-block .cb-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

.contact-block .cb-value a {
  color: var(--olive);
  font-weight: 500;
}

.contact-note {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  border-left: 3px solid var(--terracotta);
}

/* Contact form */
.contact-form {}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.5;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
}

.form-status.success {
  display: block;
  background: var(--olive-pale);
  color: var(--olive);
}

.form-status.error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
}

.form-status.cooldown {
  display: block;
  background: var(--terracotta-light);
  color: var(--terracotta-hover);
}

/* ── Session Info ────────────────────────────── */

.session-section {
  padding: 60px 0;
  background: var(--cream-warm);
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 40px auto 0;
}

.session-card {
  padding: 28px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.session-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--olive);
}

.session-card p,
.session-card ul {
  font-size: 14px;
  color: var(--text-light);
}

.session-card ul {
  list-style: none;
  padding: 0;
}

.session-card ul li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.session-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.5;
}

/* ── Goals section ───────────────────────────── */

.goals-section {
  padding: 70px 0;
}

.goals-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 36px auto 0;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-size: 14.5px;
}

.goal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────── */

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 50px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: start;
}

.footer-brand .footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 13.5px;
  margin-bottom: 4px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Scroll Reveal ───────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ── Responsive ──────────────────────────────── */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-portrait { order: -1; }
  .hero-portrait .portrait-frame { width: 200px; height: 200px; }
  .hero-buttons { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .info-grid { grid-template-columns: 1fr; }
  .contra-grid { grid-template-columns: 1fr; }
  .session-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 0;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99;
  }

  .main-nav a {
    font-size: 16px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a::after { display: none; }

  .header-cta {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .nav-toggle-label {
    display: block;
    z-index: 101;
    position: relative;
  }

  .nav-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: calc(var(--header-h) + 50px) 0 70px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-item { padding: 18px 10px; }
  .stat-number { font-size: 1.6rem; }

  .info-bar-inner {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .service-list-item {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-portrait .portrait-frame { width: 170px; height: 170px; }
  .hero-portrait::before { display: none; }
  .stats-row { grid-template-columns: 1fr; }
}
