/* ═══════════════════════════════════════════════════════════
   EWELINA · MASAŻE LECZNICZE — style
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #12211f;
  --deep: #1d4a46;
  --deep-2: #14312e;
  --forest: #23413d;
  --cream: #f5efe6;
  --cream-2: #efe6d8;
  --gold: #d9b45c;
  --gold-2: #b08d3e;
  --gold-soft: #f0dfb4;
  --white: #fffdf8;
  --muted: #6d7a76;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-lg: 0 30px 60px -20px rgba(18, 33, 31, 0.35);
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

::selection { background: var(--gold); color: var(--ink); }

/* ───────────────────── typography ───────────────────── */

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.grad-text {
  background: linear-gradient(100deg, var(--gold-2) 0%, var(--gold) 40%, #e7c27d 60%, var(--gold-2) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 6s linear infinite;
}

@keyframes gradShift {
  to { background-position: 200% center; }
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-sub { color: var(--muted); font-size: 1.05rem; }

.lead { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.1rem; }

/* ───────────────────── buttons ───────────────────── */

.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s;
  will-change: transform;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink);
  box-shadow: 0 12px 28px -10px rgba(176, 141, 62, 0.55);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(176, 141, 62, 0.7); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }

.btn-small { padding: 0.65rem 1.4rem; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ───────────────────── progress bar & cursor ───────────────────── */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 1000;
  transition: width 0.1s linear;
}

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 180, 92, 0.14) 0%, rgba(217, 180, 92, 0) 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: multiply;
  transition: opacity 0.4s;
  opacity: 0;
}

/* ───────────────────── header / nav ───────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 1.3rem 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  padding: 0.7rem 0;
  background: rgba(18, 33, 31, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.5);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.8rem; }

.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--cream);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  box-shadow: 0 8px 18px -6px rgba(176, 141, 62, 0.6);
}

.brand-text {
  display: flex; flex-direction: column;
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.brand-text em { font-style: normal; font-family: var(--sans); font-weight: 300; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }

.nav-links { display: flex; align-items: center; gap: 1.7rem; }

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-link:hover, .nav-link.is-active { color: var(--gold); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───────────────────── hero ───────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 45%, #0c1f1d 100%);
  color: var(--white);
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(217, 180, 92, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 8% 85%, rgba(217, 180, 92, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-1 { width: 420px; height: 420px; left: -90px; top: -60px; background: radial-gradient(circle, #2f6b64, transparent 65%); }
.orb-2 { width: 360px; height: 360px; right: -60px; top: 30%; background: radial-gradient(circle, rgba(217, 180, 92, 0.35), transparent 65%); animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; left: 22%; bottom: -110px; background: radial-gradient(circle, #3d7a6f, transparent 65%); animation-delay: -8s; }
.orb-4 { width: 220px; height: 220px; right: 30%; bottom: 12%; background: radial-gradient(circle, rgba(217, 180, 92, 0.25), transparent 65%); animation-delay: -11s; }

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-25px, 30px) scale(0.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.hero-sub {
  max-width: 520px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: clamp(1.2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.8rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-num::after { content: "+"; }

.stat-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); margin-top: 0.35rem; }

/* hero entrance (on load) */
[data-hero] {
  opacity: 0;
  transform: translateY(34px);
  animation: heroIn 1s var(--ease) forwards;
}
.hero-copy [data-hero]:nth-child(1) { animation-delay: 0.15s; }
.hero-copy [data-hero]:nth-child(2) { animation-delay: 0.3s; }
.hero-copy [data-hero]:nth-child(3) { animation-delay: 0.45s; }
.hero-copy [data-hero]:nth-child(4) { animation-delay: 0.6s; }
.hero-visual[data-hero] { animation-delay: 0.5s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* lotus visual */
.hero-visual { position: relative; display: grid; place-items: center; }

.lotus-wrap { position: relative; width: min(360px, 70vw); aspect-ratio: 1; display: grid; place-items: center; }

.lotus {
  width: 72%;
  animation: lotusSpin 26s linear infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

@keyframes lotusSpin {
  to { transform: rotate(360deg); }
}

.lotus-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(217, 180, 92, 0.35);
  animation: ringPulse 5s var(--ease) infinite;
}

.ring-2 { inset: 8%; animation-delay: -2.5s; border-color: rgba(217, 180, 92, 0.18); }

@keyframes ringPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 0.4; }
}

.hero-badge {
  position: absolute;
  bottom: 4%;
  right: 4%;
  background: rgba(245, 239, 230, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--white);
  line-height: 1.3;
  animation: floatY 5s ease-in-out infinite;
}

.hero-badge strong { color: var(--gold); }

.badge-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #7bc47f;
  position: relative;
  flex-shrink: 0;
}
.badge-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #7bc47f;
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 3;
}

.mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--gold);
  animation: wheel 1.8s var(--ease) infinite;
}

@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.hint-text { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; }

/* ───────────────────── marquee ───────────────────── */

.marquee {
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  padding: 0.9rem 0;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.marquee-track i { font-style: normal; font-size: 0.8rem; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ───────────────────── reveal on scroll ───────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

[data-reveal="left"] { transform: translateX(-56px); }
[data-reveal="right"] { transform: translateX(56px); }

[data-reveal].in-view { opacity: 1; transform: none; }

/* ───────────────────── about ───────────────────── */

.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-visual { position: relative; }

.photo-card {
  position: relative;
  background: linear-gradient(150deg, var(--cream-2), #e4d7bd);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(29, 74, 70, 0.12);
  overflow: hidden;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 80%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 180, 92, 0.4), transparent 65%);
}

.photo-silhouette svg { width: 100%; height: auto; }

.card-tag {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  background: var(--deep);
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

.float-card {
  position: absolute;
  right: -14px;
  bottom: -34px;
  background: var(--deep);
  color: var(--white);
  border-radius: 18px;
  padding: 1.3rem 1.6rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(217, 180, 92, 0.4);
}

.float-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.float-text { font-size: 0.85rem; line-height: 1.35; color: rgba(255, 255, 255, 0.85); }

.about-copy p { color: var(--muted); margin-bottom: 1rem; max-width: 56ch; }
.about-copy .lead { color: var(--ink); font-size: 1.15rem; }

.check-list { margin: 1.4rem 0 2rem; display: grid; gap: 0.7rem; }

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-weight: 400;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  font-size: 0.7rem;
  border-radius: 50%;
}

.signature-row { display: flex; align-items: center; gap: 1rem; }

.signature { width: 150px; height: auto; }

.signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--deep);
}

/* ───────────────────── services ───────────────────── */

.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(29, 74, 70, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(29, 74, 70, 0.08);
  color: var(--deep);
  margin-bottom: 1.3rem;
  transition: background 0.4s, color 0.4s, transform 0.5s var(--ease);
}

.service-icon svg { width: 30px; height: 30px; }

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  transform: rotate(-6deg) scale(1.06);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.service-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.1rem; }

.service-time {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(176, 141, 62, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

/* ───────────────────── benefits / parallax ───────────────────── */

.benefits {
  background: var(--deep-2);
  color: var(--white);
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: -20% 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 20%, rgba(217, 180, 92, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 90% 85%, rgba(61, 122, 111, 0.5) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 26px);
  will-change: transform;
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.benefits .section-title { color: var(--white); }
.benefits .eyebrow { color: var(--gold); }
.benefits .lead { color: rgba(255, 255, 255, 0.75); }

.benefit-item {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: padding-left 0.5s var(--ease);
}

.benefit-item:hover { padding-left: 0.8rem; }

.benefit-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  min-width: 3ch;
}

.benefit-item h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.25rem; }
.benefit-item p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }

.benefits-quote {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 180, 92, 0.3);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
}

.benefits-quote::before {
  content: "„";
  position: absolute;
  top: -1.2rem; left: 1.4rem;
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}

.benefits-quote blockquote {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.quote-author { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

/* ───────────────────── pricing ───────────────────── */

.pricing { background: var(--cream); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(29, 74, 70, 0.1);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.price-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }

.price-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.2rem; }

.price-desc { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.4rem; }

.price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.price small { font-size: 1.3rem; font-weight: 500; color: var(--gold-2); }

.price-gold { background: linear-gradient(120deg, var(--gold-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.price-note { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }

.price-card-cta {
  background: linear-gradient(160deg, var(--deep), var(--deep-2));
  border-color: transparent;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card-cta h3, .price-card-cta .price { color: var(--white); }
.price-card-cta .price-desc, .price-card-cta .price-note { color: rgba(255, 255, 255, 0.7); }

.pricing-foot { text-align: center; margin-top: 2.4rem; color: var(--muted); }
.pricing-foot a { color: var(--deep); font-weight: 500; border-bottom: 1px solid var(--gold); }

/* ───────────────────── testimonials ───────────────────── */

.testimonials { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  border: 1px solid rgba(29, 74, 70, 0.1);
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.testi-card:hover { transform: translateY(-8px) rotate(-0.6deg); box-shadow: var(--shadow-lg); }

.stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; font-size: 0.95rem; }

.testi-card blockquote {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.4rem;
  line-height: 1.55;
}

.testi-card figcaption { display: flex; flex-direction: column; border-top: 1px solid rgba(29, 74, 70, 0.12); padding-top: 1rem; }

.testi-card figcaption strong { font-family: var(--serif); font-size: 1.1rem; }
.testi-card figcaption span { font-size: 0.8rem; color: var(--muted); }

/* ───────────────────── contact ───────────────────── */

.contact {
  background: linear-gradient(160deg, var(--deep) 0%, var(--deep-2) 100%);
  color: var(--white);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 85% 15%, rgba(217, 180, 92, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.contact .section-title { color: var(--white); }
.contact .lead { color: rgba(255, 255, 255, 0.8); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-row { display: grid; gap: 1.1rem; margin-top: 2rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  transition: background 0.4s, transform 0.4s var(--ease);
}

.contact-item:hover { background: rgba(255, 255, 255, 0.1); transform: translateX(6px); }

.contact-ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  border-radius: 12px;
}

.contact-item small { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-bottom: 0.1rem; }
.contact-item a { font-weight: 400; color: var(--white); transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }
.contact-item p { color: var(--white); font-size: 0.95rem; }

.contact-form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin-bottom: 1.6rem; }

.field { margin-bottom: 1.2rem; }

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 400;
}

.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(29, 74, 70, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field input:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 180, 92, 0.25);
}

.field textarea { resize: vertical; min-height: 110px; }

.form-status { margin-top: 1rem; font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c0392b; }

/* ───────────────────── footer ───────────────────── */

.site-footer {
  background: #0b1a18;
  color: rgba(255, 255, 255, 0.6);
  padding: 1.8rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-love span { color: var(--gold); }

/* ───────────────────── back to top ───────────────────── */

.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  font-size: 1.2rem;
  box-shadow: 0 12px 26px -10px rgba(176, 141, 62, 0.7);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease);
  z-index: 800;
}

.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* ───────────────────── responsive ───────────────────── */

@media (max-width: 1020px) {
  .services-grid, .price-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin-inline: auto; }
  .benefits-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 39, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 1000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.3rem; }
  .nav-toggle { display: flex; }
  .services-grid, .price-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 8rem; }
  .hero-stats { gap: 1.4rem; }
  .stat-num { font-size: 1.9rem; }
  .float-card { right: 8px; bottom: -20px; padding: 1rem; }
  .footer-inner { justify-content: center; text-align: center; }
  .scroll-hint { display: none; }
}

/* ───────────────────── reduced motion ───────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], [data-hero] { opacity: 1; transform: none; }
}
