:root {
  interpolate-size: allow-keywords;
  --bg: #F8F5FF;
  --surface: #FFFFFF;
  --surface-2: #F0EBF7;
  --ink: #2E2244;
  --ink-soft: #6B5B7B;
  --accent: #7E57C2;
  --accent-2: #A5D6A7;
  --line: rgba(46,34,68,0.12);
  --line-strong: rgba(46,34,68,0.25);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', Tahoma, 'Helvetica Neue', Arial, sans-serif;
  --header-h: 72px;
  --container: 1320px;
  --radius: 8px;
  --radius-lg: 16px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; background: var(--surface-2); color: var(--ink-soft); font-size: 0.7rem; text-align: center; }
a { color: var(--accent); text-decoration: none; transition: color 240ms var(--ease-out); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { max-width: 68ch; }

.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 10000;
  padding: 8px 16px; background: var(--ink); color: var(--surface);
  border-radius: var(--radius); font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

section { padding-block: clamp(3rem, 8vh, 6rem); }
.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p { margin: 12px auto 0; color: var(--ink-soft); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 100px; border: none; cursor: pointer;
  background: var(--ink); color: var(--surface);
  position: relative; overflow: hidden;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out), transform 180ms var(--ease), box-shadow 280ms var(--ease);
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface); transform: translateY(-2px);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none; transition: left 500ms var(--ease);
}
.btn-primary:hover::before { left: 120%; }
.btn-primary::after {
  content: '\2192'; font-size: 1.1em; transition: transform 240ms var(--ease); position: relative; z-index: 1;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem;
  padding: 12px 28px; border-radius: 100px; cursor: pointer;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line-strong);
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out), transform 180ms var(--ease), box-shadow 280ms var(--ease);
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink); border-color: var(--accent); transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  height: var(--header-h);
  background: rgba(248,245,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(248,245,255,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  height: 62px;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.header__logo {
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic;
  color: var(--ink); text-decoration: none; letter-spacing: -0.01em;
}
.header__logo span { color: var(--accent); }
.header__logo:hover { color: var(--ink); }

/* ===== NAV DESKTOP ===== */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-family: var(--font-body); font-weight: 400; font-size: 0.875rem;
  color: var(--ink-soft); text-decoration: none; position: relative;
  padding: 4px 0; transition: color 240ms var(--ease-out);
}
.nav-desktop a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px;
  background: var(--accent); border-radius: 1px;
  transform: scaleX(0); transform-origin: left; transition: transform 280ms var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:not(.nav-cta):hover::after, .nav-desktop a:not(.nav-cta).is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--ink); }
.nav-cta {
  padding: 10px 24px !important; border-radius: 100px;
  background: var(--ink); color: var(--surface) !important;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover, .nav-cta:focus-visible { background: var(--accent); color: var(--surface) !important; }
@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* ===== NAV TOGGLE ===== */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; background: rgba(126,87,194,0.06); border: 1.5px solid var(--line); cursor: pointer;
  position: relative; z-index: 1100; padding: 8px;
  border-radius: var(--radius);
  transition: border-color 240ms var(--ease-out), background 240ms var(--ease-out);
}
.nav-toggle:hover { border-color: var(--accent); background: rgba(126,87,194,0.1); }
.nav-toggle span {
  display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms;
  transform-origin: center; flex-shrink: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 1024px) { .nav-toggle { display: flex; } }

/* ===== DRAWER ===== */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) clamp(24px, 5vw, 40px) 32px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 0; }
.drawer nav a {
  font-family: var(--font-body); font-weight: 400; font-size: 1.1rem;
  color: var(--ink); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: color 240ms var(--ease-out), padding-left 240ms var(--ease);
}
.drawer nav a:hover { color: var(--accent); padding-left: 8px; }
.drawer nav a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 24px; display: inline-flex; width: 100%; justify-content: center;
  padding: 14px 28px; border-radius: 100px;
  background: var(--ink); color: var(--surface); font-weight: 500; text-align: center;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.drawer .drawer-cta:hover { background: var(--accent); color: var(--surface); }

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity 240ms, visibility 240ms;
}
.drawer-backdrop.is-visible { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
  min-height: min(calc(100vh - var(--header-h)), 1000px);
  min-height: min(calc(100dvh - var(--header-h)), 1000px);
  padding-block: clamp(3rem, 6vh, 5rem);
}
.hero__text { position: relative; z-index: 2; }
.hero__title { margin-bottom: 20px; }
.hero__title .word {
  display: inline-block; opacity: 0; transform: translateY(24px);
  animation: wordIn 650ms cubic-bezier(.16,1,.3,1) both;
  animation-delay: calc(80ms + var(--i) * 90ms);
}
@keyframes wordIn { to { opacity: 1; transform: none; } }
.hero__title .word:nth-child(n) { animation-fill-mode: both; }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--ink-soft);
  margin-bottom: 28px; max-width: 48ch;
}
.hero__photos {
  display: grid; grid-template-columns: 5fr 4fr; grid-template-rows: auto auto;
  gap: 12px; position: relative;
}
.hero__photo {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; min-height: 160px;
  transition: transform 600ms var(--ease);
}
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo--1 { grid-row: 1 / 3; aspect-ratio: 3/4; }
.hero__photo--2 { margin-top: 32px; aspect-ratio: 4/5; }
.hero__photo--3 { margin-top: -16px; aspect-ratio: 4/5; }

.hero-deco {
  position: absolute; bottom: -8px; left: 10%; width: clamp(200px, 40vw, 420px);
  height: auto; pointer-events: none; z-index: 1;
}
.branch-path {
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: drawBranch 2.2s var(--ease) 1.2s forwards;
}
.leaf {
  opacity: 0; animation: leafGrow 500ms var(--ease) 2.8s forwards;
}
@keyframes drawBranch { to { stroke-dashoffset: 0; } }
@keyframes leafGrow { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-badge {
  font-family: var(--font-body); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.04em; padding: 6px 14px;
  border-radius: 100px; background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* ===== MANIFESTO STRIP ===== */
.manifesto {
  background: var(--ink); color: var(--surface); padding: 20px 0;
  text-align: center; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem); letter-spacing: 0.02em;
}
.manifesto span { color: var(--accent-2); margin: 0 clamp(12px, 3vw, 28px); opacity: 0.5; }

/* ===== PROCESS ===== */
.process-section {
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
}
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 72px 1fr; gap: clamp(16px, 3vw, 28px);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.process-step:last-child { border-bottom: none; }
.process-step__number {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1; color: var(--accent);
  transition: color 280ms var(--ease-out);
}
.process-step__time {
  display: inline-block; font-family: var(--font-body); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: rgba(126,87,194,0.1);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.process-step h3 { margin-bottom: 8px; font-style: normal; font-weight: 400; }
.process-step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--ink); color: var(--surface);
  padding: clamp(2.5rem, 5vw, 4rem) 0; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,87,194,0.2), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat__number {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--accent-2);
  line-height: 1; margin-bottom: 8px;
}
.stat__label {
  font-family: var(--font-body); font-weight: 300; font-size: 0.85rem;
  color: rgba(255,255,255,0.7); letter-spacing: 0.04em;
}

/* ===== TIMELINE ===== */
.timeline-section { background: var(--surface); }
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding: 2rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 1px;
}
.timeline__step {
  display: grid; grid-template-columns: 48px 1fr; gap: 24px;
  padding-bottom: clamp(2rem, 4vw, 3rem); position: relative;
}
.timeline__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--surface); border-radius: 50%;
  position: relative; z-index: 2; flex-shrink: 0;
  clip-path: inset(40%); transform: scale(0.5);
  transition: clip-path 400ms var(--ease), transform 500ms cubic-bezier(.34,1.56,.64,1), box-shadow 300ms var(--ease);
}
.timeline__step.is-in .timeline__icon { clip-path: inset(0); transform: scale(1); }
.timeline__icon svg { width: 22px; height: 22px; }
.timeline__time {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--accent);
  margin-bottom: 6px;
}
.timeline__content h3 { font-style: normal; font-weight: 400; margin-bottom: 6px; }
.timeline__content p { color: var(--ink-soft); font-size: 0.9rem; }

/* ===== GALLERY (STILLER) ===== */
.stiller-section { background: var(--bg); }
.filter-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.filter-tag {
  font-family: var(--font-body); font-weight: 400; font-size: 0.82rem;
  padding: 8px 20px; border-radius: 100px; border: 1.5px solid var(--line-strong);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all 240ms var(--ease-out);
}
.filter-tag:hover { border-color: var(--accent); color: var(--accent); }
.filter-tag.is-active { background: var(--accent); color: var(--surface); border-color: var(--accent); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--surface-2); cursor: pointer;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.gallery-item.is-hidden { display: none; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px -12px rgba(126,87,194,0.25); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; transition: transform 500ms var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px; background: linear-gradient(transparent, rgba(46,34,68,0.85));
  color: var(--surface); opacity: 0; transform: translateY(8px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; transform: none; }
.gallery-item__caption h3 { font-size: 1rem; color: var(--surface); margin-bottom: 6px; }
.gallery-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 500;
  padding: 2px 8px; border-radius: 100px; margin-right: 4px;
  background: rgba(255,255,255,0.2); color: var(--surface);
}
.gallery-item::after {
  content: ''; position: absolute; top: 18%; right: 14%;
  width: 6px; height: 6px; background: var(--surface);
  border-radius: 50%; opacity: 0;
  box-shadow: 0 0 10px 3px rgba(255,255,255,0.5);
  pointer-events: none; transition: opacity 300ms;
}
.gallery-item:hover::after { opacity: 1; animation: sparkle 1.4s ease infinite; }
@keyframes sparkle {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.6); opacity: 0.3; }
}

/* ===== PACKAGES ===== */
.packages-section { background: var(--surface); }
.packages-disclaimer {
  text-align: center; font-size: 0.8rem; color: var(--ink-soft);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.package-card {
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px);
  position: relative; transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(126,87,194,0.15); }
.package-card--featured {
  border-color: var(--accent); background: var(--surface);
  box-shadow: 0 8px 32px -8px rgba(126,87,194,0.12);
}
.package-card--featured::before {
  content: 'En Popüler'; position: absolute; top: -12px; left: 24px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  background: var(--accent); color: var(--surface);
}
.package-card h3 {
  font-style: normal; font-weight: 400; font-size: 1.2rem; margin-bottom: 12px;
}
.package-price {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(2rem, 3.5vw, 2.5rem); color: var(--accent);
  margin-bottom: 20px; line-height: 1;
}
.package-price span { font-size: 0.5em; color: var(--ink-soft); font-style: normal; }
.package-price small {
  display: block; font-family: var(--font-body); font-size: 0.72rem;
  font-style: normal; color: var(--ink-soft); margin-top: 4px;
}
.package-included, .package-excluded { margin-bottom: 16px; }
.package-included li, .package-excluded li {
  font-size: 0.88rem; padding: 5px 0 5px 22px; position: relative; color: var(--ink-soft);
}
.package-included li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent-2); opacity: 0.7;
}
.package-excluded li::before {
  content: '\00D7'; position: absolute; left: 2px; top: 4px;
  font-size: 0.9rem; color: var(--ink-soft); opacity: 0.5;
}
.package-card .btn-ghost { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg); position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(165,214,167,0.15), transparent 70%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.testimonial-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line);
  position: relative;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(126,87,194,0.12); }
.testimonial-card:first-child { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-display); font-size: 4rem;
  color: var(--accent); opacity: 0.2; line-height: 1; display: block; margin-bottom: -16px;
}
.testimonial-text { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
.testimonial-author {
  font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--ink);
}
.testimonial-meta {
  font-size: 0.75rem; color: var(--ink-soft); margin-top: 2px;
}

/* ===== FAQ TOGGLE CARDS ===== */
.sss-section { background: var(--surface); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 240ms var(--ease-out), box-shadow 240ms var(--ease);
}
.faq-card[open] { border-color: var(--accent); box-shadow: 0 4px 16px -4px rgba(126,87,194,0.1); }
.faq-card summary {
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; color: var(--ink);
  transition: color 240ms var(--ease-out);
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::marker { display: none; content: ''; }
.faq-card summary::after {
  content: ''; width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform 300ms var(--ease);
}
.faq-card[open] summary::after { transform: rotate(-135deg); }
.faq-card summary:hover { color: var(--accent); }
.faq-body {
  height: 0; padding: 0 clamp(18px, 3vw, 28px); overflow: hidden;
  transition: height 360ms var(--ease-out), padding-block-end 360ms var(--ease-out);
}
.faq-card[open] .faq-body { height: auto; padding-block-end: 24px; }
.faq-body p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ===== RESERVATION FORM ===== */
.reservation-section {
  background: var(--bg); position: relative;
}
.reservation-form { max-width: 720px; margin: 0 auto; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
  color: var(--ink); letter-spacing: 0.02em;
}
.field input:not([type="checkbox"]):not([type="hidden"]),
.field select, .field textarea {
  font-family: var(--font-body); font-size: 0.92rem; color: var(--ink);
  padding: 12px 16px; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius); background: var(--surface);
  transition: border-color 240ms var(--ease-out), box-shadow 240ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(126,87,194,0.12);
  outline: none;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5B7B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input[type="date"] {
  appearance: none; -webkit-appearance: none;
}
.field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: 0.6; }

.field-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 20px; cursor: pointer;
}
.field-check input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.reservation-form .btn-primary { width: 100%; justify-content: center; }

/* ===== CONTACT PAGE ===== */
.contact-channels {
  display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; align-items: start;
  max-width: 600px;
}
.contact-row {
  display: contents;
  cursor: default;
}
.contact-row .contact-icon {
  width: 22px; height: 22px; color: var(--ink-soft);
  transition: color 240ms var(--ease-out), transform 240ms var(--ease);
}
.contact-row .contact-info {
  font-size: 0.92rem; color: var(--ink);
  transition: transform 240ms var(--ease);
  word-break: break-word; overflow-wrap: anywhere;
}
.contact-row:hover .contact-icon { color: var(--accent); transform: scale(1.08); }
.contact-row:hover .contact-info { transform: translateX(4px); }
.contact-row .contact-info a { color: var(--ink); }
.contact-row .contact-info a:hover { color: var(--accent); }
.contact-label {
  display: block; font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 2px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding-block: clamp(3rem, 6vh, 5rem);
  text-align: center;
}
.about-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.about-story img { border-radius: var(--radius-lg); aspect-ratio: 3/2; object-fit: cover; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 960px; margin: 0 auto;
}
.values-grid > div { text-align: center; padding: 24px; }
.contact-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.values-grid h3 { font-size: 1.05rem; margin-bottom: 8px; font-style: normal; }
.values-grid p { font-size: 0.85rem; color: var(--ink-soft); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 32px);
  text-align: center;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px rgba(126,87,194,0.12); }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-style: normal; margin-bottom: 4px; font-size: 1.1rem; }
.team-role {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--accent); margin-bottom: 14px; display: block;
}
.team-card p { font-size: 0.85rem; color: var(--ink-soft); text-align: left; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding-block: clamp(3rem, 6vh, 5rem); }
.legal-page h1 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.legal-content { max-width: 740px; }
.legal-content h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 12px; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.8rem; margin-bottom: 8px; }
.legal-content p { margin-bottom: 12px; font-size: 0.92rem; color: var(--ink-soft); }
.legal-content ul { margin-bottom: 12px; padding-left: 20px; }
.legal-content ul li {
  font-size: 0.92rem; color: var(--ink-soft); padding: 4px 0; position: relative;
  list-style: disc;
}

/* ===== THANK YOU ===== */
.thankyou {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 0;
}
.thankyou h1 { margin-bottom: 16px; }
.thankyou p { color: var(--ink-soft); margin: 0 auto 28px; }

/* ===== 404 ===== */
.page-404 {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 0;
}
.page-404 h1 { font-size: clamp(4rem, 10vw, 8rem); color: var(--accent); margin-bottom: 8px; }
.page-404 p { color: var(--ink-soft); margin: 0 auto 28px; }

/* ===== SITEMAP PAGE ===== */
.sitemap-list { max-width: 600px; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list li a { font-size: 0.95rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: clamp(3rem, 6vw, 5rem) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand { max-width: 300px; }
.footer-brand .header__logo { display: inline-block; margin-bottom: 14px; color: var(--surface); }
.footer-brand .header__logo span { color: var(--accent-2); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--surface); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6);
  padding: 4px 0; transition: color 240ms var(--ease-out), padding-left 240ms var(--ease);
}
.footer-col a:hover { color: var(--accent-2); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem;
  color: rgba(255,255,255,0.6); margin-bottom: 10px;
  word-break: break-word; overflow-wrap: anywhere;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.4); padding: 0; }
.footer-legal a:hover { color: var(--accent-2); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto; z-index: 9999;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.2);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 {
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  font-size: 0.92rem; margin-bottom: 8px; color: var(--ink);
}
.cookie-banner p { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.5; }
.cookie-banner p a { text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btns button {
  font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
  padding: 10px 20px; border-radius: 100px; cursor: pointer;
  min-height: 44px; border: 1.5px solid var(--line-strong);
  background: transparent; color: var(--ink);
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.cookie-btns button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-btns button[data-consent="reject"] {
  border-color: var(--line); color: var(--ink-soft);
  background: transparent;
}
.cookie-btns button[data-consent="reject"]:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink-soft); }
.cookie-btns .cookie-accept {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}
.cookie-btns .cookie-accept:hover { background: var(--accent); color: var(--surface); border-color: var(--accent); }

/* ===== TABLE SCROLL ===== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0;
  border: 1px solid var(--line); border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { border-collapse: collapse; font-size: 0.88rem; }
th, td { padding: 10px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-weight: 500; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-soft); background: var(--surface-2); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; animation: none; }
@keyframes cssRevealFallback {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
.reveal:not(.is-in) {
  animation: cssRevealFallback 500ms var(--ease) both;
  animation-delay: calc(50ms + var(--i, 0) * 40ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== NICHE ANIMATIONS ===== */
@keyframes clipSnap {
  0% { clip-path: inset(40%); transform: scale(0.5); }
  55% { clip-path: inset(0); transform: scale(1.18); }
  75% { transform: scale(0.96); }
  100% { clip-path: inset(0); transform: scale(1); }
}
.brush-underline { position: relative; display: inline; }
.brush-underline::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 5px; background: var(--accent-2);
  border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform 700ms var(--ease);
}
.reveal.is-in .brush-underline::after { transform: scaleX(1); }

@keyframes strandFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1.5deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}
.strand-float { animation: strandFloat 10s ease-in-out infinite; }

@keyframes pinGlint {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.8; transform: scale(1.3); }
}

@keyframes pearlFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-6px) scale(1.15); opacity: 0.7; }
}
@keyframes softGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126,87,194,0); }
  50% { box-shadow: 0 0 20px 4px rgba(126,87,194,0.12); }
}

/* ===== ENHANCED HOVER & THEME ===== */
.process-step {
  border-radius: var(--radius); padding-left: 12px; padding-right: 12px;
  margin-left: -12px; margin-right: -12px;
  transition: background 320ms var(--ease-out), box-shadow 320ms var(--ease);
}
.process-step:hover { background: rgba(126,87,194,0.04); box-shadow: inset 3px 0 0 var(--accent); }
.process-step:hover .process-step__number { color: var(--ink); }
.timeline__step:hover .timeline__icon { box-shadow: 0 0 0 6px rgba(126,87,194,0.15), 0 0 20px -4px rgba(126,87,194,0.2); }
.hero__photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  opacity: 0; pointer-events: none; border-radius: inherit;
  transition: opacity 500ms var(--ease), transform 800ms var(--ease);
  transform: translateX(-60%);
}
.hero__photo:hover::before { opacity: 1; transform: translateX(60%); }
.trust-badge { transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease); }
.trust-badge:hover { transform: translateY(-2px); box-shadow: 0 4px 12px -4px rgba(126,87,194,0.15); border-color: var(--accent); }
.faq-card:not([open]):hover summary { background-color: rgba(126,87,194,0.03); }
.faq-card:hover { border-color: rgba(126,87,194,0.3); }
.team-card, .package-card, .testimonial-card { transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1); }
.gallery-item__caption h3 { font-style: normal; }
.btn-primary { box-shadow: 0 4px 16px -4px rgba(46,34,68,0.25); }
.btn-primary:hover { box-shadow: 0 8px 24px -6px rgba(126,87,194,0.35); }
.btn-ghost:hover { box-shadow: 0 4px 16px -6px rgba(126,87,194,0.18); }
.package-card--featured { box-shadow: 0 8px 32px -8px rgba(126,87,194,0.18); }
.package-card--featured:hover { box-shadow: 0 16px 48px -12px rgba(126,87,194,0.25); transform: translateY(-6px); }
.manifesto { position: relative; overflow: hidden; }
.manifesto::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: manifestoSheen 8s ease-in-out infinite;
}
@keyframes manifestoSheen { 0%,100% { left: -100%; } 50% { left: 150%; } }
.testimonial-card::after {
  content: ''; position: absolute; top: 12px; right: 16px;
  width: 4px; height: 4px; background: var(--accent-2);
  border-radius: 50%; opacity: 0;
  box-shadow: 0 0 8px 2px rgba(165,214,167,0.4);
  transition: opacity 400ms var(--ease);
}
.testimonial-card:hover::after { opacity: 0.7; animation: pearlGlint 2s ease-in-out infinite; }
@keyframes pearlGlint { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.5); opacity: 0.8; } }
.stat__number { transition: transform 300ms var(--ease); }
.stats-grid > div:hover .stat__number { transform: scale(1.06); }
.contact-row { transition: background 240ms var(--ease-out); }
.drawer nav a { position: relative; }
.drawer nav a::before {
  content: ''; position: absolute; left: -24px; top: 50%; width: 3px; height: 0;
  background: var(--accent); border-radius: 2px; transform: translateY(-50%);
  transition: height 240ms var(--ease);
}
.drawer nav a:hover::before { height: 60%; }

.hero__photo { transition: box-shadow 400ms var(--ease); }
.hero__photo:hover { box-shadow: 0 12px 36px -8px rgba(126,87,194,0.2); }
.package-card--featured .btn-primary { animation: softGlow 3s ease-in-out infinite; }
.timeline__step.is-in .timeline__icon { animation: clipSnap 500ms var(--ease) both; }
.values-grid svg { transition: transform 400ms cubic-bezier(.34,1.56,.64,1); }
.values-grid > div:hover svg { transform: scale(1.15) rotate(-5deg); }
.team-photo { transition: box-shadow 300ms var(--ease), transform 300ms var(--ease); }
.team-card:hover .team-photo { box-shadow: 0 0 0 3px var(--accent), 0 8px 24px -6px rgba(126,87,194,0.2); transform: scale(1.02); }
.gallery-item::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35) 0%, transparent 60%);
  opacity: 0; pointer-events: none; transition: opacity 500ms var(--ease);
}
.gallery-item:hover::before { opacity: 1; }
.faq-card summary { transition: color 240ms var(--ease-out), background-color 300ms var(--ease-out), padding-left 300ms var(--ease); }
.faq-card[open] summary { padding-left: clamp(22px, 3vw, 32px); }
.stat__number { position: relative; }
.stats-grid > div { transition: transform 300ms var(--ease); }
.stats-grid > div:hover { transform: translateY(-4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; gap: 2rem; }
  .hero__photos { max-width: 520px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
  .form-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 60px; }
  section { padding-block: clamp(2.5rem, 6vh, 4rem); }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .process-step { grid-template-columns: 52px 1fr; }
  .process-step__number { font-size: clamp(2rem, 6vw, 2.5rem); }
  .hero__photos { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero__photo--1 { grid-row: auto; }
  .hero__photo--2 { margin-top: 0; }
  .hero__photo--3 { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 430px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 6px; }
  .trust-badge { font-size: 0.65rem; padding: 4px 10px; }
  .cookie-banner {
    bottom: 0; left: 0; right: 0; max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 16px 18px calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-banner h3 { font-size: 0.85rem; margin-bottom: 4px; }
  .cookie-banner p { font-size: 0.75rem; margin-bottom: 10px; }
  .cookie-btns { flex-direction: row; flex-wrap: wrap; }
  .cookie-btns button { flex: 1 1 auto; min-width: 0; text-align: center; padding: 10px 14px; font-size: 0.8rem; }
  .package-card { padding: 20px; }
  .timeline__step { grid-template-columns: 40px 1fr; gap: 16px; }
  .timeline__icon { width: 40px; height: 40px; }
  .timeline__icon svg { width: 18px; height: 18px; }
  .timeline::before { left: 19px; }
}

@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title .word { opacity: 1; transform: none; animation: none; }
  .branch-path { stroke-dashoffset: 0; animation: none; }
  .leaf { opacity: 1; animation: none; }
  .strand-float { animation: none; }
  .timeline__icon { clip-path: inset(0); transform: scale(1); transition: none; }
  .btn-primary::before { display: none; }
  .hero__photo::before { display: none; }
  .manifesto::after { display: none; }
  .testimonial-card::after { display: none; }
  .gallery-item::after, .gallery-item::before { display: none; }
  .trust-badge, .process-step, .team-card, .package-card, .testimonial-card { transition: none !important; }
  .reveal:not(.is-in) { animation: none; opacity: 1; transform: none; }
  .package-card--featured .btn-primary { animation: none; }
  .values-grid svg, .team-photo, .stats-grid > div { transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; animation: none; }
html.no-js .hero__title .word { opacity: 1; transform: none; animation: none; }
html.no-js .timeline__icon { clip-path: inset(0); transform: scale(1); }
html.no-js .gallery-item::before { display: none; }
