/* ===========================================================================
   Jeremy Radiesthésie — refined editorial stylesheet
   Palette: cream + sage + warm gold accent
   Type: Cormorant (display serif) + DM Sans (body)
   =========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ink:          #1F2825;
  --ink-soft:     #5C615E;
  --ink-faint:    #9B9C95;
  --line:         #E5E0D2;
  --line-strong:  #C9C2AE;

  --cream:        #FAF7F0;
  --cream-dark:   #F0EBDC;
  --cream-warm:   #EDE5D0;

  --sage:         #0F6E56;
  --sage-dark:    #0A4D3D;
  --sage-soft:    #E1F5EE;

  --gold:         #B8956A;
  --gold-soft:    #F2E9D8;

  --error:        #A32D2D;
  --error-soft:   #FCEBEB;

  --success:      #0F6E56;
  --success-soft: #E1F5EE;

  --font-display: 'Cormorant', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1180px;
  --gutter:    24px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--cream);
  padding: 8px 16px; z-index: 1000;
}
.skip-link:focus { top: 0; }

/* --- Typography --------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin: 0 0 16px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
em { font-style: italic; color: var(--sage); }

p { margin: 0 0 1rem; }
.lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 56ch; }

/* --- Layout helpers ----------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin: 16px auto 0; }

/* --- Testimonials ------------------------------------------------------- */
.testimonials {
  background: var(--cream);
  position: relative;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  position: relative;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(15, 110, 86, 0.22);
}
.testimonial__quote-mark {
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.25;
  font-style: italic;
  pointer-events: none;
}
.testimonial__text {
  margin: 0 0 24px;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.testimonial__text p {
  margin: 0 0 12px;
}
.testimonial__text p:last-child {
  margin-bottom: 0;
}
.testimonial__author {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
  font-size: 13px;
  color: var(--ink-soft);
}
.testimonial__name {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.testimonial__sep { color: var(--ink-faint); }
.testimonial__location { font-style: italic; color: var(--ink-faint); }

@media (max-width: 720px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial { padding: 32px 24px 24px; }
  .testimonial__quote-mark { font-size: 3rem; left: 18px; }
}

/* --- Audio toggle ------------------------------------------------------- */
.audio-toggle {
  position: relative;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  margin-left: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.audio-toggle:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.audio-toggle.is-hidden { display: none; }
.audio-toggle__icon { display: none; }
.audio-toggle.is-playing .audio-toggle__icon--playing,
.audio-toggle.is-paused  .audio-toggle__icon--paused { display: block; }
.audio-toggle.is-playing { color: var(--sage); border-color: var(--sage); }
.audio-toggle__pulse {
  display: none;
  position: absolute;
  top: 4px; right: 4px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.audio-toggle.is-playing .audio-toggle__pulse {
  display: block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}
@media (prefers-reduced-motion: reduce) {
  .audio-toggle__pulse { animation: none; }
}

/* --- Welcome modal ------------------------------------------------------ */
.welcome {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: welcomeFadeIn 0.4s ease;
}
.welcome.is-hidden { display: none; }
.welcome__backdrop {
  position: absolute; inset: 0;
  background: rgba(31, 40, 37, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.welcome__card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.3);
  animation: welcomeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome__mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  margin-bottom: 20px;
}
.welcome__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.welcome__text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 28px;
  line-height: 1.6;
}
.welcome__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.welcome__actions .btn { justify-content: center; width: 100%; }
@keyframes welcomeFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes welcomeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .welcome, .welcome__card { animation: none; }
}

/* --- Cookie banner ------------------------------------------------------ */
#cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 50;
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 13px;
  max-width: 720px; margin-left: auto; margin-right: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: #D6CFB8; }
#cookie-banner button {
  background: var(--sage); color: white; border: none;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
}
#cookie-banner.is-hidden { display: none; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--container); margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--ink);
}
.brand__tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav__list {
  display: flex; gap: 26px;
  list-style: none; margin: 0; padding: 0;
}
.nav__list a {
  font-size: 14px; color: var(--ink-soft);
  text-decoration: none; padding: 6px 0;
  position: relative;
  transition: color 0.15s ease;
}
.nav__list a:hover { color: var(--sage); }
.nav__list a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__list a:hover::after { transform: scaleX(1); }
.lang-switch {
  display: flex; gap: 4px;
  font-size: 12px; color: var(--ink-faint);
  letter-spacing: 0.06em;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.lang-switch a {
  text-decoration: none;
  color: var(--ink-faint);
  text-transform: uppercase;
  padding: 2px 4px;
  transition: color 0.15s ease;
}
.lang-switch a:hover { color: var(--sage); }
.lang-switch a.is-active { color: var(--ink); font-weight: 500; }

.nav-toggle {
  display: none;
  background: none; border: none; padding: 8px;
  color: var(--ink);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn--primary { background: var(--sage); color: white; }
.btn--primary:hover { background: var(--sage-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(31,40,37,0.04); }
.btn--link {
  padding: 6px 0; background: transparent;
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-color: var(--line-strong);
  border-radius: 0;
}
.btn--link:hover { text-decoration-color: var(--sage); color: var(--sage); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, var(--gold-soft) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, var(--sage-soft) 0%, transparent 50%),
    var(--cream);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.hero h1 .em-wrap {
  display: inline-block;
  font-style: italic;
  color: var(--sage);
  position: relative;
}
.hero h1 .em-wrap::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M0 4 Q 50 0 100 4 T 200 4' stroke='%23B8956A' stroke-width='1.5' fill='none' opacity='0.6'/></svg>") center/100% 100% no-repeat;
}
.hero__lead { margin: 28px 0 36px; max-width: 52ch; font-size: 1.05rem; color: var(--ink-soft); }
.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.pendulum {
  width: min(100%, 380px);
  height: auto;
}
.pendulum .ring,
.pendulum .string,
.pendulum .weight,
.pendulum .anchor { transform-origin: 100px 20px; }
.pendulum .pendulum-group { transform-origin: 100px 20px; animation: swing 4.5s ease-in-out infinite; }
@keyframes swing {
  0%, 100% { transform: rotate(-7deg); }
  50%      { transform: rotate(7deg); }
}
@media (prefers-reduced-motion: reduce) {
  .pendulum .pendulum-group { animation: none; }
}

/* --- Approach ----------------------------------------------------------- */
.approach { background: var(--cream-dark); }
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.approach__text h2 { margin-bottom: 20px; }
.approach__points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.approach__points li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.approach__points li:hover {
  border-color: var(--sage);
  transform: translateX(4px);
}
.approach__points .icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-soft);
  color: var(--sage);
  border-radius: var(--radius-sm);
}
.approach__closing {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
}

/* --- Services ----------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all 0.25s ease;
}
.card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15, 110, 86, 0.18);
}
.card--featured {
  border-color: var(--sage);
  border-width: 2px;
  background: var(--cream);
}
.card__tag {
  position: absolute; top: -12px; left: 24px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.card--featured .card__tag {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}
.card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-soft);
  color: var(--sage);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.card__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
}
.card__price {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.card__price-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--sage);
  line-height: 1;
}
.card__price-sub {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 4px;
}
.card__duration {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 12px;
  display: flex; align-items: center; gap: 6px;
}

/* --- Process ------------------------------------------------------------ */
.process {
  background: var(--ink);
  color: var(--cream);
}
.process .eyebrow { color: var(--gold); }
.process h2 { color: var(--cream); }
.process .section-head .lead { color: #C5BEA8; }
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,149,106,0.4), transparent);
}
.step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.step__num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  position: relative; z-index: 1;
}
.step:last-child .step__num {
  background: var(--gold);
  color: var(--ink);
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.step__desc {
  font-size: 13px;
  color: #A8A293;
  line-height: 1.5;
}

/* --- FAQ ---------------------------------------------------------------- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  padding: 24px 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sage); }
.faq summary .toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  color: var(--sage);
}
.faq details[open] summary .toggle {
  background: var(--sage);
  color: white;
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 0 24px;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* --- Contact ------------------------------------------------------------ */
.contact {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 80px);
  align-items: start;
}
.contact__text h2 { margin-bottom: 20px; }
.contact__email {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  padding: 14px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: all 0.2s ease;
}
.contact__email:hover {
  border-color: var(--sage);
  color: var(--sage);
}
.contact__email .icon { color: var(--sage); }
.contact__note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  background: rgba(184,149,106,0.06);
}

/* --- Form --------------------------------------------------------------- */
.form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form__row { margin-bottom: 20px; }
.form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.form input[type="text"],
.form input[type="email"],
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-soft);
}
.form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231F2825' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form .field-error input,
.form .field-error select,
.form .field-error textarea { border-color: var(--error); }
.form__consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.form__consent input { margin-top: 3px; flex-shrink: 0; }
.form__consent.field-error { color: var(--error); }
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.form__submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage); color: white;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}
.form__submit:hover { background: var(--sage-dark); }
.form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form__alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}
.form__alert--success {
  background: var(--success-soft);
  color: var(--sage-dark);
  border: 1px solid var(--sage);
}
.form__alert--error,
.form__alert--invalid {
  background: var(--error-soft);
  color: var(--error);
  border: 1px solid var(--error);
}

/* --- Disclaimer banner -------------------------------------------------- */
.disclaimer {
  background: var(--ink);
  color: #C5BEA8;
  padding: 20px 0;
  font-size: 13px;
  text-align: center;
}
.disclaimer .container { max-width: 760px; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--cream-dark);
  padding: 48px 0 32px;
  font-size: 13px;
  color: var(--ink-soft);
}
.site-footer__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
}
.site-footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--sage); text-decoration: underline; }
.site-footer .lang-switch {
  border-left: none;
  padding-left: 0;
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__inner,
  .approach__grid,
  .contact__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 320px; margin: 0 auto; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .process__grid::before { display: none; }
}
@media (max-width: 720px) {
  .nav__list, .lang-switch { display: none; }
  .nav.is-open .nav__list,
  .nav.is-open .lang-switch {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 24px var(--gutter);
    gap: 16px;
  }
  .nav.is-open .lang-switch {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    flex-direction: row;
  }
  .nav-toggle { display: block; }
  .form__row--split { grid-template-columns: 1fr; }
  .form { padding: 24px 20px; }
  .site-footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .approach__points li:hover { transform: none; }
}

/* --- Scroll reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
