:root {
  color-scheme: dark;
  --bg-image: url("img/backend.jpg");
  --base: #0e0b08;
  --ink: #f2e9dc;
  --ink-soft: #c9bfb3;
  --accent: #d5b27c;
  --panel: rgba(18, 15, 12, 0.72);
  --panel-strong: rgba(24, 19, 15, 0.82);
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --c-bg: var(--base);
  --c-accent: var(--accent);
  --c-text: var(--ink);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--base);
  color: var(--ink);
  font-family: "Satoshi", "Space Grotesk", "Avenir Next", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.05);
  transform: translateZ(0);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.92) 0%, rgba(10, 8, 7, 0.75) 40%, rgba(8, 7, 6, 0.92) 100%),
    radial-gradient(90% 80% at 20% 10%, rgba(90, 70, 45, 0.25), transparent 60%);
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.page {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(80px, 12vh, 150px) 0;
  scroll-margin-top: 90px;
}

.section-calm {
  padding: clamp(100px, 14vh, 180px) 0;
}

.section-strong {
  padding: clamp(90px, 13vh, 160px) 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 7, 6, 0.75);
  border-bottom: 1px solid rgba(213, 178, 124, 0.12);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(-100%);
  animation: navSlideDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

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

.nav.is-scrolled {
  background: rgba(8, 7, 6, 0.92);
  border-bottom-color: rgba(213, 178, 124, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.nav.is-scrolled .nav-inner {
  padding: 16px 0;
}

.nav.is-scrolled .logo-img {
  height: 42px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 40px;
  transition: padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo::after {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at center, rgba(213, 178, 124, 0.08), transparent 65%);
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
  pointer-events: none;
}

.logo:hover::after {
  opacity: 1;
  transform: scale(1);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 16px rgba(213, 178, 124, 0.45));
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 8px rgba(213, 178, 124, 0.25));
}

.logo-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--ink-soft);
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.logo:hover .logo-text {
  color: var(--accent);
  opacity: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-toggle:hover {
  transform: scale(1.1);
}

.nav-toggle-bar {
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.04em;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(213, 178, 124, 0.08);
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: -1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.nav-link.is-active {
  color: var(--accent);
}

.nav-link.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link-cta {
  background: linear-gradient(135deg, rgba(213, 178, 124, 0.18) 0%, rgba(213, 178, 124, 0.1) 100%);
  border: 1px solid rgba(213, 178, 124, 0.35);
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(213, 178, 124, 0.15);
  margin-left: 10px;
}

.nav-link-cta::before {
  background: linear-gradient(135deg, rgba(213, 178, 124, 0.28) 0%, rgba(213, 178, 124, 0.18) 100%);
}

.nav-link-cta:hover {
  border-color: rgba(213, 178, 124, 0.55);
  box-shadow: 0 6px 28px rgba(213, 178, 124, 0.25);
  transform: translateY(-3px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(24px, 6vw, 70px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

.hero-simple {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
}

.hero-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(2.4rem, 6.6vw, 5.4rem);
  line-height: 1.05;
}

.hero-script {
  justify-self: end;
  align-self: center;
  padding-right: clamp(8px, 2vw, 24px);
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  color: var(--accent);
  text-align: right;
  width: min(52vw, 520px);
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.05;
}

.hero-copy .lead {
  margin: 0 0 18px;
  color: var(--ink-soft);
  max-width: 38ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

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

.hero-metrics {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1c140c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border-color: var(--stroke);
}

.btn.ghost:hover {
  border-color: var(--accent);
}

.section-head {
  max-width: 62ch;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-head .lead {
  margin: 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 6vw, 60px);
}

.section-intention {
  padding-top: clamp(90px, 14vh, 170px);
}

.intention-grid {
  align-items: start;
  grid-template-columns: 1.2fr 1fr;
}

.intention-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.intention-body {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  max-width: 62ch;
}

.intention-body:last-of-type {
  margin-bottom: 0;
}

.intention-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow);
  min-height: clamp(320px, 48vw, 520px);
}

.intention-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-emotion {
  background: #f4eddb;
  color: #2a1a10;
}

.section-emotion .wrap {
  padding-top: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(20px, 3vw, 50px);
}

.section-emotion .reveal {
  color: inherit;
}

.emotion-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
}

.emotion-left h2 {
  margin: 0 0 28px;
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 1.05;
}

.emotion-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(42, 26, 16, 0.2);
  box-shadow: 0 18px 40px rgba(20, 12, 7, 0.18);
}

.emotion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotion-right {
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  line-height: 1.7;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  text-align: left;
}

.emotion-right p {
  margin: 0 0 22px;
}

.emotion-right p:last-child {
  margin-bottom: 0;
}

.section-objectifs {
  padding-top: clamp(90px, 12vh, 160px);
}

.objectifs-wrap {
  display: grid;
  gap: clamp(24px, 6vw, 60px);
}

.objectifs-title h2 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 0.06em;
}

.objectifs-line {
  height: 4px;
  width: min(520px, 80%);
  background: var(--ink);
}

.objectifs-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
}

.objectifs-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.objectifs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.objectifs-list ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 18px;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.6;
}

.objectifs-list li::marker {
  color: var(--ink);
}

.section-activites {
  background: #f4eddb;
  color: #2a1a10;
}

.section-activites .wrap {
  padding-top: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(20px, 3vw, 50px);
}

.section-activites .reveal {
  color: inherit;
}

.activites-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
}

.activites-block {
  display: grid;
  gap: clamp(20px, 4vw, 40px);
}

.activites-block + .activites-block {
  margin-top: clamp(40px, 7vw, 90px);
}

.activites-title h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  letter-spacing: 0.04em;
}

.activites-line {
  height: 4px;
  width: min(520px, 80%);
  background: currentColor;
  opacity: 0.9;
}

.activites-subtitle {
  margin: 26px 0 16px;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.activites-subtitle.is-italic {
  font-style: italic;
}

.activites-list {
  margin: 0 0 16px;
  padding-left: 22px;
  display: grid;
  gap: 16px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.activites-list.is-italic {
  font-style: italic;
}

.activites-note {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 46ch;
}

.activites-note.is-italic {
  font-style: italic;
  max-width: 58ch;
}

.activites-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(42, 26, 16, 0.2);
  box-shadow: 0 18px 40px rgba(20, 12, 7, 0.18);
  aspect-ratio: 4 / 5;
  min-height: clamp(280px, 34vw, 520px);
}

.activites-media.is-wide {
  aspect-ratio: 4 / 3;
  min-height: clamp(260px, 32vw, 480px);
}

.activites-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-mecenat {
  padding-top: clamp(90px, 12vh, 160px);
}

.mecenat-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
}

.mecenat-text {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.6;
  max-width: 36ch;
}

.mecenat-text p {
  margin: 0;
}

.mecenat-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  min-height: clamp(260px, 32vw, 500px);
}

.mecenat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-contribution {
  padding-top: clamp(90px, 12vh, 160px);
}

.contribution-wrap {
  display: grid;
  gap: clamp(28px, 6vw, 70px);
}

.contribution-title {
  margin: 0;
  text-align: center;
  font-style: italic;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.2;
}

.contribution-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
}

.contribution-copy {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.7;
  max-width: 46ch;
}

.contribution-lead {
  margin: 0 0 18px;
}

.contribution-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 16px;
}

.contribution-media {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  min-height: clamp(300px, 36vw, 560px);
}

.contribution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-block p {
  margin: 0 0 12px;
}

.note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.contact-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-label {
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.contact-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent);
}

.contact-text {
  color: var(--ink);
}

.contact-ui {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.contact-ui .support-form {
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.contact-ui .ui-badge {
  z-index: 0;
}

.section-don {
  position: relative;
  padding: clamp(140px, 24vh, 300px) 0;
  overflow: hidden;
}

.section-don::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 50% 20%, rgba(213, 178, 124, 0.35), transparent 65%),
    radial-gradient(60% 60% at 80% 70%, rgba(255, 200, 100, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(6, 5, 4, 0.98) 0%, rgba(10, 8, 6, 0.96) 50%, rgba(6, 5, 4, 0.98) 100%);
  z-index: 0;
}

.section-don::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, rgba(213, 178, 124, 0.03) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(213, 178, 124, 0.03) 0 1px, transparent 1px 40px);
  opacity: 0.4;
  z-index: 0;
}

.don-curtain {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(213, 178, 124, 0.08), transparent 70%);
  opacity: 0;
  animation: donCurtainReveal 2s ease-out forwards;
  animation-delay: 0.3s;
  z-index: 0;
  pointer-events: none;
}

@keyframes donCurtainReveal {
  to { opacity: 1; }
}

.don-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(50px, 8vw, 90px);
}

.don-epicenter {
  text-align: center;
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  max-width: 1000px;
  margin: 0 auto;
}

.don-hero {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.don-whisper {
  margin: 0;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.9;
}

.don-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: grid;
  gap: clamp(8px, 1.5vw, 16px);
}

.don-title-line {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #f5e6d3 50%, #d5b27c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(213, 178, 124, 0.3);
}

.don-why {
  margin: 0 auto;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  line-height: 1.65;
  color: var(--ink);
  max-width: 48ch;
  font-weight: 400;
}

.don-cta-hero {
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-top: clamp(10px, 2vw, 20px);
}

.don-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 26px) clamp(40px, 6vw, 70px);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4c97e 0%, #e8a65d 100%);
  color: #1a0f08;
  border: 2px solid rgba(255, 235, 200, 0.6);
  box-shadow:
    0 0 0 0 rgba(213, 178, 124, 0),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(213, 178, 124, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  animation: donButtonBreathing 3s ease-in-out infinite;
}

@keyframes donButtonBreathing {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(213, 178, 124, 0),
      0 20px 50px rgba(0, 0, 0, 0.5),
      0 0 60px rgba(213, 178, 124, 0.4),
      inset 0 2px 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.03);
    box-shadow:
      0 0 0 8px rgba(213, 178, 124, 0.15),
      0 24px 60px rgba(0, 0, 0, 0.55),
      0 0 80px rgba(213, 178, 124, 0.6),
      inset 0 2px 0 rgba(255, 255, 255, 0.6);
  }
}

.don-btn-primary::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 235, 200, 0.8) 20deg,
    transparent 40deg,
    transparent 140deg,
    rgba(255, 235, 200, 0.8) 160deg,
    transparent 180deg,
    transparent 200deg,
    rgba(255, 235, 200, 0.8) 220deg,
    transparent 240deg,
    transparent 340deg,
    rgba(255, 235, 200, 0.8) 360deg
  );
  animation: donButtonRotateRays 4s linear infinite;
  opacity: 0.5;
  z-index: -1;
}

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

.don-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  opacity: 0;
  animation: donButtonShimmer 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes donButtonShimmer {
  0%, 100% {
    background-position: -100% 0;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  20%, 80% {
    background-position: 200% 0;
    opacity: 0;
  }
}

.don-btn-glow {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 235, 200, 0.8), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -2;
  animation: donGlowPulse 2.5s ease-in-out infinite;
  filter: blur(8px);
}

@keyframes donGlowPulse {
  0%, 100% { 
    opacity: 0.4; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.8; 
    transform: scale(1.15);
  }
}

.don-btn-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.don-btn-primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 0 0 12px rgba(213, 178, 124, 0.25),
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 0 100px rgba(213, 178, 124, 0.8),
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    0 0 0 2px rgba(255, 235, 200, 0.8);
  animation: none;
  background: linear-gradient(135deg, #f8d291 0%, #ebb46f 100%);
}

.don-btn-primary:hover::before {
  opacity: 1;
  animation-duration: 2s;
}

.don-btn-primary:hover::after {
  animation-duration: 1.5s;
}

.don-btn-primary:hover .don-btn-text {
  transform: scale(1.02);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.don-btn-primary:active {
  transform: translateY(-2px) scale(1);
}

.don-btn-primary.is-attention {
  animation: donMagnetPulse 2.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}

@keyframes donMagnetPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 0 rgba(213, 178, 124, 0),
      0 20px 50px rgba(0, 0, 0, 0.5),
      0 0 60px rgba(213, 178, 124, 0.4);
  }
  15% {
    transform: translateY(-3px) scale(1.02) rotate(-1deg);
  }
  30% {
    transform: translateY(-6px) scale(1.08) rotate(1deg);
    box-shadow:
      0 0 0 16px rgba(213, 178, 124, 0.3),
      0 40px 90px rgba(0, 0, 0, 0.7),
      0 0 120px rgba(213, 178, 124, 0.9);
  }
  45% {
    transform: translateY(-4px) scale(1.05) rotate(-0.5deg);
  }
  60% {
    transform: translateY(-7px) scale(1.1) rotate(0.5deg);
    box-shadow:
      0 0 0 20px rgba(213, 178, 124, 0.35),
      0 45px 100px rgba(0, 0, 0, 0.75),
      0 0 140px rgba(213, 178, 124, 1),
      0 0 0 3px rgba(255, 235, 200, 0.9);
  }
  75% {
    transform: translateY(-3px) scale(1.03);
  }
}

.don-cta-note {
  margin: 0;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.don-cta-note::before,
.don-cta-note::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--stroke);
}

.don-impact-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(20px, 3vw, 30px);
}

.don-impact-item {
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(213, 178, 124, 0.25);
  background: rgba(18, 15, 12, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  display: grid;
  gap: 14px;
}

.don-impact-item:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 178, 124, 0.5);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(213, 178, 124, 0.2);
  background: rgba(22, 18, 14, 0.75);
}

.don-impact-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  color: var(--accent);
  opacity: 0.9;
}

.don-impact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.don-impact-item h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
}

.don-impact-item p {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

.don-fiscal-zone {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 60px) clamp(28px, 4vw, 50px);
  border-radius: 28px;
  border: 1px solid rgba(213, 178, 124, 0.3);
  background: linear-gradient(135deg, rgba(246, 240, 228, 0.98), rgba(250, 245, 235, 0.98));
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.6);
  color: #2a1a10;
  position: relative;
  overflow: hidden;
}

.don-fiscal-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c97e, #e8a65d, #d99a5b, #e8a65d, #f4c97e);
  background-size: 200% 100%;
  animation: donFiscalShimmer 3s linear infinite;
}

@keyframes donFiscalShimmer {
  to { background-position: 200% 0; }
}

.don-fiscal-header {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.don-fiscal-header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a0f08;
}

.don-fiscal-header p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(42, 26, 16, 0.7);
}

.don-fiscal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3.5vw, 36px);
}

.don-fiscal-box {
  position: relative;
  padding: clamp(28px, 4vw, 38px) clamp(24px, 3.5vw, 34px);
  border-radius: 22px;
  border: 2px solid rgba(42, 26, 16, 0.15);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(20, 12, 7, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.don-fiscal-box:has(.countup.is-counting) {
  border-color: rgba(232, 166, 93, 0.4);
  box-shadow: 0 20px 50px rgba(20, 12, 7, 0.25), 0 0 30px rgba(232, 166, 93, 0.15);
  transform: translateY(-2px);
}

.don-fiscal-box:has(.countup.count-complete) {
  animation: fiscalBoxPulse 0.6s ease-out;
}

@keyframes fiscalBoxPulse {
  0%, 100% {
    box-shadow: 0 16px 40px rgba(20, 12, 7, 0.15);
  }
  50% {
    box-shadow: 0 24px 60px rgba(20, 12, 7, 0.3), 0 0 40px rgba(244, 179, 106, 0.25);
  }
}

.don-fiscal-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #f4c97e, #e8a65d, #d86a5e);
  opacity: 0.8;
}

.don-fiscal-box:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 178, 124, 0.4);
  box-shadow: 0 24px 60px rgba(20, 12, 7, 0.25);
}

.don-fiscal-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(213, 178, 124, 0.2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(42, 26, 16, 0.8);
  margin-bottom: 16px;
}

.don-fiscal-percent {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: #d86a5e;
  margin: 8px 0;
  font-variant-numeric: tabular-nums;
  position: relative;
}

.don-fiscal-percent .countup {
  display: inline-block;
  transition: all 0.3s ease;
  transform-origin: center;
}

.don-fiscal-percent .countup.is-counting {
  animation: countupReveal 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #e8a65d;
  text-shadow: 0 0 30px rgba(232, 166, 93, 0.6);
}

.don-fiscal-percent .countup.count-complete {
  animation: countupBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes countupReveal {
  0% {
    transform: scale(0.5) rotate(-5deg);
    opacity: 0;
    filter: blur(10px);
  }
  10% {
    opacity: 0.6;
  }
  40% {
    transform: scale(1.2) rotate(2deg);
    filter: blur(0px);
  }
  60% {
    transform: scale(0.95) rotate(-1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes countupBounce {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2) rotate(3deg);
    color: #f4b36a;
    text-shadow: 0 0 40px rgba(244, 179, 106, 0.8), 0 0 60px rgba(232, 166, 93, 0.4);
  }
  50% {
    transform: scale(1.15) rotate(-2deg);
  }
  70% {
    transform: scale(1.08) rotate(1deg);
    color: #e89e5f;
  }
}

.don-fiscal-subtitle {
  margin: 0 0 20px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(42, 26, 16, 0.75);
  font-weight: 500;
}

.don-fiscal-demo {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(213, 178, 124, 0.08);
  border: 1px dashed rgba(42, 26, 16, 0.2);
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.don-calculator {
  padding: 20px;
  border-radius: 16px;
  background: rgba(213, 178, 124, 0.08);
  border: 1px solid rgba(42, 26, 16, 0.15);
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.don-calc-label {
  font-size: 0.85rem;
  color: rgba(42, 26, 16, 0.7);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.don-calc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.don-calc-input {
  width: 100%;
  padding: 14px 40px 14px 16px;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #2a1a10;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(42, 26, 16, 0.15);
  border-radius: 12px;
  font-family: inherit;
  transition: all 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.don-calc-input:hover {
  border-color: rgba(213, 178, 124, 0.4);
}

.don-calc-input:focus {
  outline: none;
  border-color: #e8a65d;
  box-shadow: 0 0 0 3px rgba(232, 166, 93, 0.2);
  background: #ffffff;
}

.don-calc-currency {
  position: absolute;
  right: 16px;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: rgba(42, 26, 16, 0.5);
  pointer-events: none;
}

.don-calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(15, 122, 82, 0.08);
  border: 2px solid rgba(15, 122, 82, 0.25);
}

.don-calc-output {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #0f7a52;
  font-variant-numeric: tabular-nums;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.don-calc-output.is-updating {
  transform: scale(1.05);
  color: #0d6644;
}

.don-fiscal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.don-fiscal-highlight {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(15, 122, 82, 0.08);
  border: 1px solid rgba(15, 122, 82, 0.2);
}

.don-fiscal-label-small {
  font-size: 0.85rem;
  color: rgba(42, 26, 16, 0.7);
  font-weight: 500;
}

.don-fiscal-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a1a10;
  font-variant-numeric: tabular-nums;
}

.don-fiscal-value-large {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0f7a52;
  font-variant-numeric: tabular-nums;
}

.don-fiscal-arrow {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(42, 26, 16, 0.4);
}

.don-fiscal-info {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(42, 26, 16, 0.65);
  line-height: 1.5;
}

.don-fiscal-footer {
  margin-top: clamp(32px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(42, 26, 16, 0.15);
  text-align: center;
  display: grid;
  gap: 14px;
}

.don-fiscal-footer p {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: #1a0f08;
}

.don-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(42, 26, 16, 0.8);
  border-radius: 999px;
  border: 1px solid rgba(42, 26, 16, 0.2);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.don-link-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(42, 26, 16, 0.3);
  color: #1a0f08;
}

.don-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 16px;
  background: rgba(18, 15, 12, 0.4);
  border: 1px solid rgba(213, 178, 124, 0.2);
}

.don-trust-bar .don-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: var(--ink-soft);
  font-weight: 500;
}

.don-trust-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  opacity: 0.85;
}

.countup {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .don-impact-visual {
    grid-template-columns: 1fr;
  }

  .don-fiscal-grid {
    grid-template-columns: 1fr;
  }

  .don-trust-bar {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .don-btn-primary {
    width: 100%;
  }

  .don-cta-note {
    flex-direction: column;
  }

  .don-cta-note::before,
  .don-cta-note::after {
    display: none;
  }
}

.hero-ui {
  position: relative;
  min-height: 420px;
}

.ui-float {
  position: absolute;
  left: var(--x, 0);
  top: var(--y, 0);
  width: var(--w, 200px);
  padding: 10px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.ui-float img {
  border-radius: 12px;
}

.ui-float figcaption {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.ui-badge {
  position: absolute;
  left: var(--x, 0);
  top: var(--y, 0);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.ui-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ui-stack {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ui-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  --hY: 0px;
  --hScale: 0;
}

.ui-card:hover,
.ui-card:focus-within {
  --hY: -6px;
  --hScale: 0.02;
  border-color: rgba(213, 178, 124, 0.6);
  background: rgba(28, 22, 16, 0.82);
  box-shadow: var(--shadow);
}

.ui-card-body h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.ui-card-body p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.ui-card-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.ui-card-link:hover,
.ui-card-link:focus-visible {
  color: var(--accent);
}

.ui-thumb {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

.ui-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 28px;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 140px;
  gap: 18px;
  margin-top: 26px;
}

.ui-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  grid-row: span var(--span, 2);
  height: 100%;
}

.ui-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ui-panel figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.ui-mini {
  width: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.ui-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.support-accents {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.support-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
}

.support-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.support-form input,
.support-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--ink);
  font-size: 0.95rem;
  font-family: inherit;
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(213, 178, 124, 0.25);
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.footer {
  padding: 32px 0 60px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 134, 89, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--c-accent);
  border-color: rgba(184, 134, 89, 0.7);
}

.legal-page {
  padding: clamp(120px, 15vw, 170px) 0 clamp(80px, 12vw, 120px);
}

.legal-content {
  max-width: 900px;
}

.legal-header {
  margin-bottom: clamp(32px, 6vw, 48px);
}

.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(184, 134, 89, 0.7);
  margin-bottom: 12px;
}

.legal-intro {
  color: rgba(228, 218, 208, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 12px;
}

.legal-section {
  margin-bottom: clamp(24px, 4vw, 36px);
  padding-bottom: clamp(16px, 3vw, 24px);
  border-bottom: 1px solid rgba(139, 97, 58, 0.18);
}

.legal-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  margin-bottom: 12px;
  color: var(--c-accent);
}

.legal-section p,
.legal-section li {
  color: rgba(228, 218, 208, 0.72);
  line-height: 1.7;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

@media (max-width: 700px) {
  .footer-simple {
    align-items: flex-start;
  }

}

.reveal {
  opacity: 0;
  --rY: 28px;
  --scale: 0.98;
  transform: translate3d(0, calc(var(--rY, 0px) + var(--pY, 0px) + var(--fY, 0px) + var(--hY, 0px)), 0)
    scale(calc(var(--scale, 1) + var(--hScale, 0)));
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 0s;
  will-change: transform, opacity;
}

.reveal.is-inview {
  opacity: 1;
  --rY: 0px;
  --scale: 1;
  transition-delay: var(--reveal-delay, 0s);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: rgba(8, 7, 6, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--stroke);
  }
  
  .nav-menu.is-open {
    transform: translateX(0);
  }
  
  .nav-link {
    padding: 16px 20px;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  
  .nav-link:hover {
    transform: translateX(-4px);
  }
  
  .nav-indicator {
    display: none;
  }
  
  .hero-grid,
  .split,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-simple {
    text-align: center;
    gap: 12px;
  }

  .hero-script {
    position: static;
    transform: none;
    width: auto;
    text-align: center;
  }

  .hero-ui {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-ui .ui-float,
  .hero-ui .ui-badge {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .ui-badge {
    width: 84px;
    height: 84px;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

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

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

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

  .contact-ui {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .contact-ui .ui-badge {
    position: relative;
    left: auto;
    top: auto;
  }

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

  .don-fiscal {
    margin-top: 24px;
  }

  .don-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-grid {
    grid-auto-rows: 120px;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(1120px, 92vw);
  }

  .section {
    padding: clamp(56px, 10vh, 96px) 0;
    scroll-margin-top: 80px;
  }

  .section-calm,
  .section-strong {
    padding: clamp(64px, 11vh, 110px) 0;
  }

  .hero-title {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    letter-spacing: 0.08em;
  }

  .hero-script {
    font-size: 0.95rem;
  }

  .section-head h2 {
    font-size: clamp(1.4rem, 6.5vw, 2rem);
  }

  .cards-grid {
    gap: 16px;
  }

  .ui-card {
    padding: 14px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-sidebar {
    padding: 24px;
  }

  .contact-sidebar-title {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }

  .form-submit {
    padding: 18px 28px;
    font-size: 1rem;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    gap: 10px;
  }

  .don-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .ui-mini {
    width: 110px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .parallax-ui {
    --pY: 0px;
  }
}

/* ========================================================================
   CONTACT FORM SECTION - Premium Professional Form with PDF Upload
   ======================================================================== */

.section-contact-form {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(
    180deg,
    var(--c-bg) 0%,
    rgba(20, 16, 13, 1) 50%,
    var(--c-bg) 100%
  );
  overflow: hidden;
}

.section-contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(139, 97, 58, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 134, 89, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section-contact-form .wrap {
  max-width: 1400px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr clamp(320px, 28vw, 420px);
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
}

.contact-form-main {
  position: relative;
}

.contact-form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(32px, 5vw, 48px);
  animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-logo img {
  height: clamp(60px, 8vw, 90px);
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(184, 134, 89, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-logo img:hover {
  filter: drop-shadow(0 6px 20px rgba(184, 134, 89, 0.5));
  transform: scale(1.05);
}

.contact-form-container {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(23, 20, 17, 0.95) 0%,
    rgba(30, 26, 22, 0.92) 100%
  );
  border-radius: 24px;
  padding: clamp(48px, 8vw, 72px) clamp(32px, 6vw, 64px);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(0, 0, 0, 0.4),
    0 24px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(184, 134, 89, 0.1);
  border: 1px solid rgba(139, 97, 58, 0.15);
  backdrop-filter: blur(20px);
  animation: containerSlideUp 0.8s ease-out 0.2s both;
}

@keyframes containerSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-container::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 89, 0.3) 0%,
    rgba(139, 97, 58, 0.15) 50%,
    rgba(184, 134, 89, 0.25) 100%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
}

.contact-form-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.contact-form-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--c-accent);
  margin: 0 0 clamp(16px, 3vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(
    135deg,
    var(--c-accent) 0%,
    rgba(184, 134, 89, 0.9) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form-intro {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: rgba(228, 218, 208, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Sidebar */
.contact-sidebar {
  position: sticky;
  top: 120px;
  background: linear-gradient(
    135deg,
    rgba(23, 20, 17, 0.9) 0%,
    rgba(30, 26, 22, 0.85) 100%
  );
  border-radius: 24px;
  padding: clamp(36px, 4.5vw, 52px);
  border: 1px solid rgba(139, 97, 58, 0.2);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(184, 134, 89, 0.1);
  backdrop-filter: blur(16px);
  animation: sidebarSlideIn 0.8s ease-out 0.4s both;
}

@keyframes sidebarSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-sidebar-content {
  position: relative;
}

.contact-sidebar-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-accent);
  margin: 0 0 clamp(28px, 3.6vw, 36px);
  letter-spacing: -0.01em;
  background: linear-gradient(
    135deg,
    var(--c-accent) 0%,
    rgba(184, 134, 89, 0.8) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-sidebar-section {
  margin-bottom: clamp(32px, 4.5vw, 44px);
  padding-bottom: clamp(28px, 3.6vw, 36px);
  border-bottom: 1px solid rgba(139, 97, 58, 0.15);
}

.contact-sidebar-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-sidebar-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(228, 218, 208, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}

.contact-sidebar-text {
  margin: 18px 0 0;
  color: rgba(228, 218, 208, 0.7);
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-sidebar-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(184, 134, 89, 0.08);
  border: 1px solid rgba(139, 97, 58, 0.2);
  border-radius: 14px;
  color: var(--c-accent);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-sidebar-phone span {
  flex: 1;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-sidebar-phone + .contact-sidebar-phone {
  margin-top: 12px;
}

.contact-sidebar-phone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 89, 0.15) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-sidebar-phone:hover {
  background: rgba(184, 134, 89, 0.12);
  border-color: rgba(139, 97, 58, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 89, 0.2);
}

.contact-sidebar-phone:hover::before {
  opacity: 1;
}

.contact-sidebar-icon {
  width: 26px;
  height: 26px;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-sidebar-phone:hover .contact-sidebar-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(184, 134, 89, 0.08);
  border: 1px solid rgba(139, 97, 58, 0.2);
  border-radius: 50%;
  color: var(--c-accent);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(184, 134, 89, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-social-link:hover {
  background: rgba(184, 134, 89, 0.15);
  border-color: var(--c-accent);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(184, 134, 89, 0.3);
}

.contact-social-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.contact-social-link svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact-social-link:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.contact-sidebar-decoration {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle at center,
    rgba(184, 134, 89, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: decorationFloat 6s ease-in-out infinite;
}

@keyframes decorationFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-10px, -10px) scale(1.1);
    opacity: 0.8;
  }
}

/* Form Elements */
.contact-form {
  position: relative;
}

.form-section {
  position: relative;
  margin-bottom: clamp(48px, 7vw, 64px);
  padding: clamp(32px, 5vw, 48px);
  background: linear-gradient(
    135deg,
    rgba(23, 20, 17, 0.4) 0%,
    rgba(30, 26, 22, 0.3) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(139, 97, 58, 0.15);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(184, 134, 89, 0.05);
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--c-accent) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.form-section.is-visible,
.form-section.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.form-section.is-visible::before,
.form-section.is-inview::before {
  opacity: 0.4;
}

.form-section:hover {
  border-color: rgba(139, 97, 58, 0.25);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(184, 134, 89, 0.08);
}

.form-section:focus-within {
  border-color: rgba(184, 134, 89, 0.45);
  box-shadow: 
    0 10px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(184, 134, 89, 0.12);
}

.form-section.is-primary {
  border-color: rgba(184, 134, 89, 0.35);
  background: linear-gradient(
    135deg,
    rgba(23, 20, 17, 0.6) 0%,
    rgba(30, 26, 22, 0.45) 100%
  );
  box-shadow: 
    0 10px 26px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(184, 134, 89, 0.12);
}

.form-section.is-primary .form-section-number {
  border-color: var(--c-accent);
  box-shadow: 
    0 0 0 6px rgba(184, 134, 89, 0.08),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 32px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(139, 97, 58, 0.15);
}

.form-section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 89, 0.15) 0%,
    rgba(139, 97, 58, 0.1) 100%
  );
  border: 2px solid rgba(184, 134, 89, 0.3);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 0 0 rgba(184, 134, 89, 0),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.form-section-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--c-accent) 180deg,
    transparent 360deg
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 3s linear infinite;
  animation-play-state: paused;
}

.form-section.is-visible .form-section-number::before,
.form-section.is-inview .form-section-number::before {
  animation-play-state: running;
}

.form-section:hover .form-section-number {
  border-color: var(--c-accent);
  box-shadow: 
    0 0 0 4px rgba(184, 134, 89, 0.1),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.form-section:hover .form-section-number::before {
  opacity: 1;
}

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

.form-section:last-of-type {
  margin-bottom: 0;
}

.form-section-title {
  flex: 1;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--c-accent);
  margin: 0;
  letter-spacing: 0.01em;
  opacity: 0.95;
  background: linear-gradient(
    135deg,
    var(--c-accent) 0%,
    rgba(184, 134, 89, 0.85) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-optional {
  font-weight: 400;
  font-size: 0.9em;
  color: rgba(228, 218, 208, 0.55);
}

.form-intro {
  margin: -6px 0 clamp(18px, 3vw, 24px);
  color: rgba(228, 218, 208, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-choice-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.form-choice {
  display: block;
  position: relative;
}

.form-choice-input {
  position: absolute;
  opacity: 0;
}

.form-choice-content {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(139, 97, 58, 0.25);
  background: linear-gradient(
    135deg,
    rgba(8, 7, 6, 0.65) 0%,
    rgba(23, 20, 17, 0.45) 100%
  );
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.form-choice-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(184, 134, 89, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.form-choice-content > span {
  position: relative;
  z-index: 1;
}

.form-choice-content:hover {
  border-color: rgba(184, 134, 89, 0.45);
  transform: translateY(-2px);
}

.form-choice-input:focus-visible + .form-choice-content {
  outline: 2px solid var(--c-accent);
  outline-offset: 4px;
}

.form-choice-input:checked + .form-choice-content {
  border-color: var(--c-accent);
  background: linear-gradient(
    135deg,
    rgba(23, 20, 17, 0.85) 0%,
    rgba(30, 26, 22, 0.65) 100%
  );
  box-shadow: 
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 0 4px rgba(184, 134, 89, 0.1);
  transform: translateY(-2px);
}

.form-choice-input:checked + .form-choice-content::after,
.form-choice-content:hover::after {
  opacity: 1;
}

.form-choice-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-accent);
}

.form-choice-text {
  font-size: 0.88rem;
  color: rgba(228, 218, 208, 0.7);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(20px, 3vw, 28px);
}

.form-field {
  position: relative;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.form-field::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 3px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--c-accent) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field:focus-within::before {
  height: 100%;
  opacity: 1;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-accent);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 12px;
}

.form-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.form-field:focus-within .form-label {
  color: rgba(184, 134, 89, 1);
  transform: translateX(4px);
}

.form-field:focus-within .form-label::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.5);
}

.required {
  color: rgba(184, 134, 89, 0.7);
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--c-text);
  background: rgba(8, 7, 6, 0.6);
  border: 1.5px solid rgba(139, 97, 58, 0.2);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  backdrop-filter: blur(8px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(228, 218, 208, 0.35);
  transition: all 0.3s ease;
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
  color: rgba(228, 218, 208, 0.5);
  transform: translateX(4px);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(139, 97, 58, 0.35);
  background: rgba(8, 7, 6, 0.75);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-accent);
  background: rgba(8, 7, 6, 0.85);
  box-shadow: 
    0 0 0 4px rgba(184, 134, 89, 0.1),
    0 4px 12px rgba(184, 134, 89, 0.15),
    0 8px 32px rgba(184, 134, 89, 0.1);
  transform: translateY(-1px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  animation: inputGlow 0.6s ease-out;
}

@keyframes inputGlow {
  0% {
    box-shadow: 
      0 0 0 0 rgba(184, 134, 89, 0.4),
      0 4px 12px rgba(184, 134, 89, 0.15),
      0 8px 32px rgba(184, 134, 89, 0.1);
  }
  50% {
    box-shadow: 
      0 0 0 12px rgba(184, 134, 89, 0),
      0 4px 12px rgba(184, 134, 89, 0.15),
      0 8px 32px rgba(184, 134, 89, 0.1);
  }
  100% {
    box-shadow: 
      0 0 0 4px rgba(184, 134, 89, 0.1),
      0 4px 12px rgba(184, 134, 89, 0.15),
      0 8px 32px rgba(184, 134, 89, 0.1);
  }
}

.form-input:not(:placeholder-shown),
.form-textarea:not(:placeholder-shown) {
  background: rgba(8, 7, 6, 0.75);
  border-color: rgba(139, 97, 58, 0.3);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B88659' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
}

.form-select[required]:valid {
  border-color: rgba(184, 134, 89, 0.6);
  background: rgba(8, 7, 6, 0.8);
  box-shadow: 0 0 0 3px rgba(184, 134, 89, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-field.is-immersive .form-textarea {
  min-height: 200px;
  background: linear-gradient(
    135deg,
    rgba(8, 7, 6, 0.75) 0%,
    rgba(23, 20, 17, 0.6) 100%
  );
  border-color: rgba(184, 134, 89, 0.35);
  box-shadow: 
    inset 0 1px 0 rgba(184, 134, 89, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.2);
}

/* File Upload Styling */
.form-file-wrapper {
  position: relative;
}

.form-file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.form-file-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(
    135deg,
    rgba(8, 7, 6, 0.5) 0%,
    rgba(23, 20, 17, 0.4) 100%
  );
  border: 2px dashed rgba(139, 97, 58, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.form-file-label::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(184, 134, 89, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-file-label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(184, 134, 89, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.6s ease-out;
  pointer-events: none;
}

.form-file-label:hover {
  border-color: rgba(139, 97, 58, 0.6);
  background: linear-gradient(
    135deg,
    rgba(8, 7, 6, 0.7) 0%,
    rgba(23, 20, 17, 0.6) 100%
  );
  transform: translateY(-3px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(184, 134, 89, 0.1);
}

.form-file-label:hover::before {
  opacity: 1;
  transform: scale(1);
}

.form-file-label:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.form-file-input:focus + .form-file-label {
  border-color: var(--c-accent);
  box-shadow: 
    0 0 0 4px rgba(184, 134, 89, 0.1),
    0 4px 12px rgba(184, 134, 89, 0.15);
}

.form-file-icon {
  width: 28px;
  height: 28px;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(184, 134, 89, 0));
}

.form-file-label:hover .form-file-icon {
  transform: translateY(-6px) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(184, 134, 89, 0.4));
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(-6px) scale(1.1);
  }
  50% {
    transform: translateY(-10px) scale(1.15);
  }
}

.form-file-text {
  font-size: 0.95rem;
  color: rgba(228, 218, 208, 0.7);
  flex: 1;
  transition: color 0.3s ease;
}

.form-file-label:hover .form-file-text {
  color: var(--c-accent);
}

.form-file-name {
  font-size: 0.9rem;
  color: var(--c-accent);
  font-weight: 500;
  display: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-file-input:valid + .form-file-label .form-file-text {
  display: none;
}

.form-file-input:valid + .form-file-label .form-file-name {
  display: block;
}

.form-file-input[data-has-file="false"] + .form-file-label .form-file-text {
  display: block;
}

.form-file-input[data-has-file="false"] + .form-file-label .form-file-name {
  display: none;
}

.form-file-input[data-has-file="true"] + .form-file-label .form-file-text {
  display: none;
}

.form-file-input[data-has-file="true"] + .form-file-label .form-file-name {
  display: block;
}

.form-file-input[data-has-file="true"] + .form-file-label {
  border-color: var(--c-accent);
  background: linear-gradient(
    135deg,
    rgba(8, 7, 6, 0.75) 0%,
    rgba(23, 20, 17, 0.65) 100%
  );
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(184, 134, 89, 0.15);
}

.form-help {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(228, 218, 208, 0.5);
  margin-top: 10px;
  line-height: 1.5;
}

.form-section-consent {
  border-color: rgba(139, 97, 58, 0.22);
}

.consent-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(8, 7, 6, 0.55) 0%,
    rgba(23, 20, 17, 0.45) 100%
  );
  border: 1px solid rgba(139, 97, 58, 0.18);
  color: rgba(228, 218, 208, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.consent-icon {
  width: 22px;
  height: 22px;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-field-consent {
  margin-bottom: 16px;
}

.form-check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  color: rgba(228, 218, 208, 0.75);
  line-height: 1.6;
}

.form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-check-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(139, 97, 58, 0.5);
  background: rgba(8, 7, 6, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
  margin-top: 3px;
}

.form-check-box::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg) scale(0);
  transition: transform 0.2s ease;
}

.form-check-input:checked + .form-check-box {
  border-color: var(--c-accent);
  background: rgba(184, 134, 89, 0.18);
  box-shadow: 0 0 0 3px rgba(184, 134, 89, 0.12);
}

.form-check-input:checked + .form-check-box::after {
  transform: rotate(-45deg) scale(1);
}

.form-check-input:focus-visible + .form-check-box {
  box-shadow: 0 0 0 3px rgba(184, 134, 89, 0.25);
}

.form-check-text {
  flex: 1;
}

.consent-hints {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  color: rgba(228, 218, 208, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

.consent-hints li {
  position: relative;
  padding-left: 18px;
}

.consent-hints li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184, 134, 89, 0.6);
}

/* Error States */
.form-error {
  display: block;
  font-size: 0.85rem;
  color: rgba(220, 100, 80, 0.9);
  margin-top: 8px;
  min-height: 20px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.form-error-global {
  margin-top: 12px;
  min-height: 0;
}

.form-error-global.is-visible {
  opacity: 1;
  transform: none;
}

.form-recap {
  margin: 24px 0 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(139, 97, 58, 0.2);
  background: rgba(8, 7, 6, 0.5);
  text-align: left;
}

.form-recap-title {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--c-accent);
}

.form-recap-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.form-recap-item {
  display: grid;
  gap: 4px;
}

.form-recap-item dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(228, 218, 208, 0.5);
}

.form-recap-item dd {
  margin: 0;
  color: rgba(228, 218, 208, 0.85);
  line-height: 1.5;
  word-break: break-word;
}

.form-field.has-error .form-input,
.form-field.has-error .form-select,
.form-field.has-error .form-textarea,
.form-field.has-error .form-file-label {
  border-color: rgba(220, 100, 80, 0.6);
  background: rgba(220, 100, 80, 0.05);
}

.form-field.has-error .form-error {
  opacity: 1;
  transform: translateY(0);
}

.form-field.has-error .form-label {
  color: rgba(220, 100, 80, 0.9);
}

/* Submit Button */
.form-actions {
  margin: clamp(40px, 6vw, 56px) 0 clamp(24px, 4vw, 32px);
  position: relative;
}

.form-actions::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(184, 134, 89, 0.4) 50%,
    transparent 100%
  );
}

.form-submit {
  position: relative;
  width: 100%;
  padding: 20px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--c-bg);
  background: linear-gradient(
    135deg,
    var(--c-accent) 0%,
    rgba(139, 97, 58, 1) 100%
  );
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(184, 134, 89, 0.4),
    0 8px 24px rgba(184, 134, 89, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  letter-spacing: 0.03em;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 8px 20px rgba(184, 134, 89, 0.5),
    0 16px 40px rgba(184, 134, 89, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  letter-spacing: 0.05em;
}

.form-submit:hover::before {
  opacity: 1;
  animation: shimmerButton 2s linear infinite;
}

.form-submit:hover::after {
  width: 400px;
  height: 400px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shimmerButton {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

.form-submit:active {
  transform: translateY(-1px);
}

.form-submit:focus-visible {
  outline: none;
  box-shadow: 
    0 0 0 4px rgba(184, 134, 89, 0.3),
    0 4px 12px rgba(184, 134, 89, 0.4),
    0 12px 32px rgba(184, 134, 89, 0.3);
}

.form-submit.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.form-submit.is-loading .form-submit-text {
  opacity: 0;
}

.form-submit-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid rgba(8, 7, 6, 0.3);
  border-top-color: var(--c-bg);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: formSpinner 0.8s linear infinite;
}

.form-submit.is-loading .form-submit-loader {
  opacity: 1;
}

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

/* Form Footer */
.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 24px);
  justify-content: center;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(139, 97, 58, 0.15);
}

.form-reassurance {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(228, 218, 208, 0.65);
  margin: 0;
}

.form-icon {
  width: 18px;
  height: 18px;
  color: var(--c-accent);
  flex-shrink: 0;
  opacity: 0.8;
}

/* Success Message */
.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(23, 20, 17, 0.98) 0%,
    rgba(30, 26, 22, 0.95) 100%
  );
  border-radius: 24px;
  padding: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.form-success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  color: var(--c-accent);
  margin-bottom: 24px;
  animation: formSuccessScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes formSuccessScale {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-accent);
  margin: 0 0 16px;
}

.form-success-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(228, 218, 208, 0.8);
  margin: 0 0 32px;
  max-width: 400px;
}

.form-success-btn {
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--c-bg);
  background: linear-gradient(135deg, var(--c-accent) 0%, rgba(139, 97, 58, 1) 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(184, 134, 89, 0.3);
}

.form-success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 134, 89, 0.4);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Adjustments */
@media (max-width: 900px) {
  .section-contact-form {
    padding: clamp(60px, 10vw, 100px) 0;
  }
  
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }
  
  .contact-sidebar {
    position: relative;
    top: 0;
    order: -1;
  }
  
  .contact-form-container {
    padding: clamp(36px, 7vw, 56px) clamp(24px, 5vw, 40px);
    border-radius: 20px;
  }
  
  .form-section {
    padding: clamp(24px, 4vw, 32px);
  }
  
  .form-section-number {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-social-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-form-container {
    padding: 32px 20px;
    border-radius: 16px;
  }
  
  .contact-form-header {
    margin-bottom: 32px;
  }
  
  .form-section {
    padding: 20px;
    margin-bottom: 32px;
  }
  
  .form-section-header {
    gap: 12px;
  }
  
  .form-section-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .form-field {
    margin-bottom: 20px;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .form-choice-content {
    padding: 16px;
  }
  
  .form-file-label {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .form-submit {
    padding: 18px 32px;
    font-size: 1rem;
  }
  
  .form-success {
    padding: 32px 24px;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .contact-form-container,
  .contact-form-logo,
  .contact-sidebar,
  .contact-sidebar-decoration,
  .form-submit,
  .form-file-label,
  .form-choice-content,
  .form-input,
  .form-select,
  .form-textarea,
  .form-section,
  .form-section-number,
  .form-file-icon {
    transition: none;
    animation: none;
  }
  
  .form-success-icon {
    animation: none;
  }
  
  .form-section {
    opacity: 1;
    transform: none;
  }
  
  .form-section-number::before {
    animation: none;
  }

  .contact-form-container::before,
  .form-file-label::before,
  .form-file-label::after,
  .form-choice-content::after,
  .contact-sidebar-decoration {
    animation: none;
    transition: none;
  }

  .form-choice-content:hover,
  .form-submit:hover,
  .contact-sidebar-phone:hover,
  .contact-social-link:hover,
  .contact-form-logo img:hover {
    transform: none;
  }
}
