:root {
  --bg: #0D0D0D;
  --surface: #1C1C1C;
  --surface-2: #2A2A2A;
  --ink: #F2F2F2;
  --ink-soft: #9E9E9E;
  --accent: #E8B960;
  --accent-2: #A78BFA;
  --line: rgba(242,242,242,0.12);
  --line-strong: rgba(242,242,242,0.24);
  --header-h: 72px;
  --container: 1400px;
  --radius: 8px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'DM Serif Display', serif;
  interpolate-size: allow-keywords;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; }
body {
  max-width: 1920px;
  margin-inline: auto;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 200ms; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ===== FOCUS ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
h4 { font-size: clamp(0.95rem, 1.5vw, 1.15rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.display-serif {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--ink) 40%, var(--accent) 50%, var(--ink) 60%);
  background-size: 300% auto;
  background-position: 100% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shimmer-text.is-in {
  animation: shimmerSweep 1.8s cubic-bezier(.4,0,.2,1) 0.4s 1 forwards;
}
@keyframes shimmerSweep {
  0% { background-position: 100% center; }
  100% { background-position: -100% center; }
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}
.site-header.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
}
.site-header.scrolled .header__inner { height: 60px; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 240ms ease;
}

/* ===== LOGO ===== */
.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  z-index: 1;
  flex-shrink: 0;
}
.logo span { font-weight: 300; color: var(--accent); }

/* ===== NAV DESKTOP ===== */
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 36px);
  }
}
.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 200ms;
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 200ms, color 200ms, transform 200ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ===== NAV TOGGLE ===== */
.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -9px); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, 0); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 9px); }
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translate(-50%, 0) scale(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); background: var(--accent); }

/* ===== 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);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer nav {
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 32px) 32px 32px;
}
.drawer nav a {
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
  transition: color 200ms, transform 200ms;
}
.drawer nav a:hover,
.drawer nav a:focus-visible {
  color: var(--accent);
  transform: translateX(4px);
}
.drawer nav a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  transition: background 200ms, color 200ms;
}
.drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1C1C1C 0%, #0D0D0D 40%, #1a1520 100%);
  animation: heroMaskOpen 1s cubic-bezier(.2,.7,.2,1) 0.05s both;
}
@keyframes heroMaskOpen {
  0% { opacity: .85; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}
.hero-bg img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0.78) 0%,
    rgba(13,13,13,0.55) 40%,
    rgba(13,13,13,0.62) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(232,185,96,0.5);
}
.hero-particles::before {
  top: 18%;
  left: 22%;
  box-shadow:
    80px 120px 0 rgba(232,185,96,0.25),
    200px 60px 0 rgba(167,139,250,0.2),
    320px 180px 0 rgba(232,185,96,0.3),
    460px 90px 0 rgba(167,139,250,0.15),
    140px 250px 0 rgba(232,185,96,0.2),
    540px 200px 0 rgba(167,139,250,0.25);
  animation: particleFloat 10s ease-in-out infinite;
}
.hero-particles::after {
  bottom: 25%;
  right: 15%;
  box-shadow:
    -60px -80px 0 rgba(232,185,96,0.2),
    -180px -40px 0 rgba(167,139,250,0.3),
    -300px -120px 0 rgba(232,185,96,0.15),
    -100px -200px 0 rgba(167,139,250,0.2),
    -420px -60px 0 rgba(232,185,96,0.25);
  animation: particleFloat 13s ease-in-out infinite reverse;
}
@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(12px, -18px); }
  50% { transform: translate(-8px, -30px); }
  75% { transform: translate(16px, -14px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: heroContentIn 0.5s cubic-bezier(.2,.7,.2,1) 0.02s both,
             heroTextFallback 0s 1.2s both;
}
@keyframes heroContentIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: none; }
}

.hero-clock-wrap {
  margin: 0 auto 28px;
  width: clamp(90px, 16vw, 140px);
  height: clamp(90px, 16vw, 140px);
  filter: drop-shadow(0 0 20px rgba(232,185,96,0.12));
  animation: clockGlow 6s ease-in-out infinite;
}
@keyframes clockGlow {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(232,185,96,0.1)); }
  50% { filter: drop-shadow(0 0 28px rgba(232,185,96,0.2)); }
}
.hero-clock { width: 100%; height: 100%; }
.hero-clock .clock-face { fill: none; stroke: var(--accent); opacity: 0.4; }
.hero-clock .clock-face-inner { fill: none; stroke: var(--accent); opacity: 0.15; }
.hero-clock .clock-marker { stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.hero-clock .clock-marker-sm { fill: var(--ink-soft); }
.hero-clock .clock-center { fill: var(--accent); filter: drop-shadow(0 0 6px rgba(232,185,96,0.4)); }
.hero-clock .minute-hand { stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; }
.hero-clock .hour-hand { stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; }
.hero-clock .second-hand-group {
  transform-origin: 60px 60px;
  animation: clockSweep 12s linear infinite;
}
@keyframes clockSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: letterReveal 0.7s cubic-bezier(.2,.7,.2,1) forwards,
             heroTextFallback 0s 1.2s both;
  animation-delay: calc(0.08s + var(--i) * 60ms), 1.2s;
}
@keyframes heroTextFallback {
  to { opacity: 1; transform: none; }
}
@keyframes letterReveal {
  to { opacity: 1; transform: none; }
}
.hero-title { font-size: clamp(2.8rem, 8vw, 6.5rem); margin-bottom: 16px; text-transform: uppercase; line-height: 1.05; }
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.6;
}

.trust-strip {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== SECTIONS COMMON ===== */
main section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.section {
  padding: clamp(64px, 10vh, 120px) 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 72px);
}

.gradient-line {
  width: clamp(120px, 20vw, 240px);
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0.7;
}

/* ===== STATS BAND ===== */
.stats-band {
  padding: clamp(40px, 6vh, 72px) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== TIMELINE ===== */
.timeline-section { overflow: visible; }
.timeline-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 48px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface);
  margin: 0 calc(clamp(16px, 4vw, 32px) * -1);
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}
.timeline-wrap::-webkit-scrollbar { height: 6px; }
.timeline-wrap::-webkit-scrollbar-track { background: var(--surface); }
.timeline-wrap::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.timeline-track {
  display: flex;
  gap: 0;
  position: relative;
  padding: 0 clamp(16px, 4vw, 80px);
  min-width: max-content;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: clamp(16px, 4vw, 80px);
  right: clamp(16px, 4vw, 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 0;
}
.timeline-card {
  flex: 0 0 clamp(200px, 26vw, 280px);
  scroll-snap-align: center;
  padding: 0 clamp(10px, 1.5vw, 20px);
  text-align: center;
  position: relative;
}
.timeline-dot {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
}
.timeline-card.is-in .timeline-dot::after {
  animation: dotPulse 1.2s ease-out;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,185,96,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(232,185,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,185,96,0); }
}

.timeline-clock {
  width: 64px;
  height: 64px;
}
.timeline-clock .tl-face { fill: var(--surface); stroke: var(--accent); stroke-width: 1.5; }
.timeline-clock .tl-marker { fill: var(--ink-soft); }
.timeline-clock .tl-center { fill: var(--accent); }
.timeline-clock .tl-minute { stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; }
.timeline-clock .hour-hand-group {
  transform-origin: 24px 24px;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.timeline-card.is-in .hour-hand-group {
  transform: rotate(var(--hour-deg));
}
.tl-hour { stroke: var(--accent); stroke-width: 2; stroke-linecap: round; }

.timeline-time {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.timeline-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.timeline-card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 40%, rgba(232,185,96,0.12) 50%, transparent 60%);
  background-size: 250% 250%;
  background-position: 0% 0%;
  opacity: 0;
  transition: opacity 500ms, background-position 700ms;
  pointer-events: none;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(232,185,96,0.15);
}
.team-card:hover::after {
  opacity: 1;
  background-position: 100% 100%;
}
.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--surface-2);
  overflow: hidden;
  border: 2px solid var(--line-strong);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}
.package-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 300ms;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(232,185,96,0.12);
  border-color: var(--accent);
}
.package-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(232,185,96,0.04) 100%);
}
.package-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 4px 14px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius) var(--radius);
}
.package-card h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.package-price {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.price-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.price-currency {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 300;
}
.package-included h4,
.package-excluded h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.package-included ul,
.package-excluded ul { margin-bottom: 20px; }
.package-included li,
.package-excluded li {
  font-size: 0.88rem;
  padding: 5px 0 5px 20px;
  position: relative;
  color: var(--ink);
}
.package-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}
.package-excluded li { color: var(--ink-soft); }
.package-excluded li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--ink-soft);
}
.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 32px;
  font-style: italic;
}
.availability-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(232,185,96,0.08);
  border: 1px solid rgba(232,185,96,0.2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--accent);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.availability-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== CANCELLATION ===== */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cancel-tier {
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}
.cancel-tier strong {
  display: block;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ===== PROCESS ===== */
.process-timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-bottom: clamp(36px, 5vh, 56px);
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}
.process-dot svg { width: 24px; height: 24px; color: var(--accent); }
.process-content h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}
.process-timing {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.process-content p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== GALLERY ===== */
.gallery-grid {
  columns: 2;
  column-gap: clamp(12px, 2vw, 20px);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(12px, 2vw, 20px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  min-height: 180px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 12px;
  background: linear-gradient(transparent, rgba(13,13,13,0.7));
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0;
  transition: opacity 400ms;
  z-index: 2;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 3vw, 36px);
}
.testimonial:first-child { grid-column: 1 / -1; }
.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  border-left: 3px solid var(--accent);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--ink);
}
.testimonial-quote::before { content: '\201C'; color: var(--accent); font-size: 1.5em; }
.testimonial-author {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: clamp(48px, 8vh, 96px) 0;
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto;
}
.manifesto cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  list-style: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 24px;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ===== RESERVATION ===== */
.reservation-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.reservation-info h2 {
  margin-bottom: 16px;
}
.reservation-info p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.wait-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(167,139,250,0.1);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--accent-2);
}

/* ===== NEWS ===== */
.news-list {
  max-width: 640px;
  margin: 0 auto;
}
.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  font-size: 0.78rem;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.news-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vh, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(36px, 5vh, 56px);
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 200ms, transform 200ms;
}
.footer-col a:hover {
  color: var(--accent);
  transform: translateX(3px);
}
.footer-contacts {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-contacts a {
  display: inline;
  padding: 0;
}
.footer-contacts p { margin-bottom: 6px; }
.footer-contacts a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
@media (max-width: 639px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 16px 20px calc(env(safe-area-inset-bottom, 8px) + 16px);
    max-width: 100%;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  }
}
.cookie-banner h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner p a:hover { color: var(--ink); }
.cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-btn {
  flex: 1;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.cookie-btn[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}
.cookie-btn[data-consent="reject"] {
  border-color: var(--ink-soft);
  color: var(--ink);
  font-weight: 400;
}
.cookie-btn:hover {
  background: var(--surface-2);
  color: var(--ink);
}
.cookie-btn[data-consent="accept"]:hover {
  background: #d4a54e;
  color: var(--bg);
}
.cookie-btn[data-consent="reject"]:hover {
  background: rgba(242,242,242,0.1);
  border-color: var(--ink);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 200ms, box-shadow 200ms;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(232,185,96,0.3);
}
.btn-primary::after {
  content: '\2192';
  transition: transform 200ms;
}
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms, transform 200ms;
  width: 100%;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ===== FORMS ===== */
.form-grid {
  display: grid;
  gap: 16px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,185,96,0.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; }
.field 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);
}
.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field-check label {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  line-height: 1.4;
}
.field-check label a { color: var(--accent); text-decoration: underline; }

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ===== 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%;
  border-collapse: collapse;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
.table-scroll th,
.table-scroll td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.table-scroll td { color: var(--ink-soft); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.2,.7,.2,1), transform 650ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms);
  animation: autoRevealFallback 0s both;
  animation-delay: 1.2s;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  animation: none;
}
@keyframes autoRevealFallback {
  to { opacity: 1; transform: none; }
}

/* ===== NICHE ANIMATIONS ===== */
@keyframes brushStroke {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.brush-line {
  width: clamp(80px, 15vw, 200px);
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transform-origin: left center;
}
.brush-line.is-in {
  animation: brushStroke 800ms cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes goldenGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(232,185,96,0.1); }
  50% { box-shadow: 0 0 40px rgba(232,185,96,0.2); }
}
.golden-glow { animation: goldenGlow 8s ease-in-out infinite; }

/* ===== CONTACT CHANNELS ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.channels-list { display: flex; flex-direction: column; gap: 0; }
.channel {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.channel:last-child { border-bottom: none; }
.channel:hover { transform: translateX(4px); }
.channel:hover .channel-icon { color: var(--accent); transform: scale(1.08); }
.channel-icon {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
  padding-top: 2px;
  flex-shrink: 0;
}
.channel-icon svg { width: 100%; height: 100%; }
.channel-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.channel-value {
  font-size: 0.92rem;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.channel-value a { transition: color 200ms; }
.channel-value a:hover { color: var(--accent); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  font-size: 0.88rem;
}
.hours-day { color: var(--ink); font-weight: 400; }
.hours-time { color: var(--ink-soft); }

/* ===== INNER PAGE BANNER ===== */
.page-banner {
  padding: clamp(48px, 8vh, 80px) 0;
  background: var(--surface);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-banner .eyebrow { margin-bottom: 12px; }
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.page-banner p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===== INNER PAGE CONTENT ===== */
.page-content {
  padding: clamp(48px, 8vh, 80px) 0;
}
.page-content .container { max-width: 800px; }
.page-content h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.page-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.page-content h3 {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.page-content p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.page-content ul, .page-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.page-content li {
  margin-bottom: 6px;
  color: var(--ink-soft);
  line-height: 1.6;
  list-style: disc;
}
.page-content ol li { list-style: decimal; }
.page-content a { color: var(--accent); text-decoration: underline; }

/* ===== THANK YOU ===== */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 15vh, 160px) 0;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--accent);
}
.thankyou-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.thankyou-section p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ===== 404 ===== */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 15vh, 160px) 0;
}
.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  opacity: 0.2;
}

/* ===== SITEMAP PAGE ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 4vw, 40px);
}
.sitemap-group h3 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--accent);
}
.sitemap-group li {
  list-style: none;
  padding: 6px 0;
}
.sitemap-group a {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.sitemap-group a:hover { color: var(--accent); }

/* ===== BEAUTY THEME MICRO-EFFECTS ===== */
.team-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 20px 48px -12px rgba(232,185,96,0.18),
    0 0 28px rgba(232,185,96,0.08),
    inset 0 -1px 0 rgba(232,185,96,0.15);
}
.team-card:hover .team-photo {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(232,185,96,0.2);
}
.team-photo {
  transition: border-color 400ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms;
}
.package-card:hover {
  box-shadow:
    0 24px 56px -16px rgba(232,185,96,0.16),
    0 0 0 1px rgba(232,185,96,0.25),
    0 0 32px -8px rgba(232,185,96,0.08);
}
.package-card.featured {
  box-shadow: 0 0 0 1px rgba(232,185,96,0.3), 0 0 40px -16px rgba(232,185,96,0.1);
}
.package-card.featured:hover {
  box-shadow:
    0 28px 60px -16px rgba(232,185,96,0.22),
    0 0 0 1px rgba(232,185,96,0.4),
    0 0 48px -12px rgba(232,185,96,0.12);
}
.testimonial:hover {
  box-shadow: -3px 6px 24px -6px rgba(232,185,96,0.15);
  border-left-color: var(--accent-2);
}
.testimonial {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms, border-color 400ms;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 80%, rgba(232,185,96,0.1) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover {
  box-shadow: 0 12px 36px -8px rgba(232,185,96,0.15);
}
.gallery-item {
  transition: box-shadow 500ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 600ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn-primary:hover::before {
  background-position: -100% 0;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 8px 28px -6px rgba(232,185,96,0.45), 0 0 0 3px rgba(232,185,96,0.1);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  box-shadow: 0 6px 20px -4px rgba(232,185,96,0.14);
}
.process-step.is-in .process-dot {
  animation: warmPulse 1.6s cubic-bezier(.2,.7,.2,1);
}
@keyframes warmPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,185,96,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(232,185,96,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,185,96,0); }
}
.process-dot {
  transition: box-shadow 300ms cubic-bezier(.2,.7,.2,1), border-color 300ms;
}
.process-step:hover .process-dot {
  border-color: var(--accent-2);
  box-shadow: 0 0 18px rgba(232,185,96,0.18);
}
.process-step:hover .process-dot svg { color: var(--accent-2); }
.process-dot svg { transition: color 300ms; }
.timeline-card {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.timeline-card:hover {
  transform: translateY(-5px);
}
.timeline-card:hover .timeline-dot {
  filter: drop-shadow(0 0 8px rgba(232,185,96,0.3));
}
.timeline-dot { transition: filter 400ms; }
.faq-item summary {
  transition: color 200ms, padding-left 300ms cubic-bezier(.2,.7,.2,1);
}
.faq-item summary:hover {
  padding-left: 6px;
  color: var(--accent);
}
.faq-item summary:hover::after {
  transform: scale(1.15);
}
.nav-toggle {
  border-radius: 6px;
  transition: background 200ms;
}
.nav-toggle:hover {
  background: rgba(242,242,242,0.08);
}
.nav-toggle:active {
  transform: scale(0.94);
}

.manifesto blockquote {
  transition: text-shadow 600ms cubic-bezier(.2,.7,.2,1);
}
.manifesto:hover blockquote {
  text-shadow: 0 0 40px rgba(232,185,96,0.12);
}
.stats-band .stat:hover .stat-number {
  text-shadow: 0 0 20px rgba(232,185,96,0.3);
}
.stat-number { transition: text-shadow 300ms; }

@media (prefers-reduced-motion: reduce) {
  .process-step.is-in .process-dot { animation: none !important; }
  .btn-primary::before { transition: none !important; background-position: -100% 0 !important; }
}

/* ===== BEAUTY WARM RADIANCE ===== */
.hero-content .btn-primary {
  box-shadow: 0 4px 20px -4px rgba(232,185,96,0.35);
}
.hero-content .btn-primary:hover {
  box-shadow: 0 8px 32px -4px rgba(232,185,96,0.55), 0 0 0 3px rgba(232,185,96,0.12);
}

@keyframes softPulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,185,96,0.2); }
  50% { box-shadow: 0 0 24px 4px rgba(232,185,96,0.12); }
}
.package-card.featured {
  animation: softPulseGold 5s ease-in-out infinite;
}

.eyebrow {
  transition: letter-spacing 400ms cubic-bezier(.2,.7,.2,1);
}
.section-header:hover .eyebrow {
  letter-spacing: 0.26em;
}

.gradient-line {
  transition: opacity 600ms;
}
.gradient-line:hover {
  opacity: 1;
}

.news-item {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), background 280ms;
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.news-item:hover {
  transform: translateX(4px);
  background: rgba(232,185,96,0.04);
}

.channel {
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.channel:hover {
  background: rgba(232,185,96,0.04);
}

/* ===== FOOTER COOKIE CLEARANCE ===== */
.site-footer { padding-bottom: 24px; }
@media (max-width: 639px) {
  
}

/* ===== DRAWER POLISH ===== */
.drawer nav a {
  position: relative;
}
.drawer nav a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: height 280ms cubic-bezier(.2,.7,.2,1), top 280ms cubic-bezier(.2,.7,.2,1);
}
.drawer nav a:hover::before,
.drawer nav a:focus-visible::before {
  height: 20px;
  top: calc(50% - 10px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .reservation-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cancel-tiers { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .process-timeline::before { left: 20px; }
  .process-step { grid-template-columns: 40px 1fr; gap: 14px; }
  .process-dot { width: 40px; height: 40px; }
  .process-dot svg { width: 18px; height: 18px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 640px) {
  .trust-strip { flex-direction: column; align-items: center; gap: 10px; }
  .timeline-card { flex: 0 0 240px; }
  .timeline-wrap { padding-right: clamp(48px, 8vw, 64px); }
  .hero { min-height: 90vh; }
  .section { padding: clamp(48px, 8vh, 80px) 0; }
  .news-item { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 430px) {
  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: 0.9rem; }
  .btn-primary { padding: 12px 24px; font-size: 0.85rem; }
  .package-card { padding: 20px; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { min-height: 44px; }
}

@media (max-width: 390px) {
  body { font-size: 0.92rem; }
  h2 { font-size: 1.4rem; }
  .stat-number { font-size: 1.8rem; }
  .team-photo { width: 80px; height: 80px; }
}

@media (max-width: 360px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .hero-clock-wrap { width: 80px; height: 80px; }
  .timeline-card { flex: 0 0 210px; }
  .timeline-card p { max-width: 180px; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  main { padding-top: 0 !important; }
  .hero { min-height: auto; padding: 24pt 0; }
  .hero-bg, .hero-particles { display: none; }
  .hero-content { opacity: 1 !important; animation: none !important; }
  .hero-title span { opacity: 1 !important; animation: none !important; transform: none !important; }
  .section { padding: 24pt 0; }
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 9pt; color: #666; }
  .btn-primary::after, .btn-ghost::after { display: none; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .hero-bg { animation: none !important; opacity: 1 !important; }
  .hero-content { opacity: 1 !important; animation: none !important; transform: none !important; }
  .hero-title span { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-clock .second-hand-group { animation: none !important; }
  .timeline-card.is-in .hour-hand-group { transition: none; }
  .shimmer-text { animation: none !important; -webkit-text-fill-color: var(--ink); }
  .hero-particles::before, .hero-particles::after { animation: none !important; }
  .brush-line { animation: none !important; transform: scaleX(1); }
  .golden-glow { animation: none !important; }
  .dotPulse { animation: none !important; }
  .hero-clock-wrap { animation: none !important; filter: none !important; }
  .package-card.featured { animation: none !important; }
}

/* ===== NO-JS ===== */
html.no-js .reveal { opacity: 1; transform: none; animation: none; }
html.no-js .hero-bg { animation: none; opacity: 1; }
html.no-js .hero-content { opacity: 1; animation: none; transform: none; }
html.no-js .hero-title span { opacity: 1; transform: none; animation: none; }
html.no-js .shimmer-text { -webkit-text-fill-color: var(--ink); }

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--accent);z-index:9998;transition:width 80ms linear;pointer-events:none}
