/* Keren Meguira , art-thérapeute , calm warm palette */
:root {
  --bordeaux: #7a2f3a;
  --bordeaux-deep: #5c232c;
  --terracotta: #c45c4a;
  --terracotta-soft: #d47868;
  --cream: #faf6f1;
  --cream-dark: #f0e8df;
  --ink: #2a2224;
  --ink-soft: #5a4f52;
  --white: #ffffff;
  --border: rgba(122, 47, 58, 0.12);
  --shadow: 0 8px 28px rgba(42, 34, 36, 0.08);
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --max: 720px;
  --wide: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bordeaux); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bordeaux);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.25;
}
.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.brand-role {
  font-size: 0.82rem;
  color: var(--bordeaux);
  font-weight: 500;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0.2rem;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--bordeaux);
}
.nav a[aria-current="page"] {
  border-bottom: 2px solid var(--terracotta);
}
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: inherit;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--bordeaux);
  color: var(--white);
}

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(196, 92, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(122, 47, 58, 0.1), transparent 50%),
    var(--cream);
  padding: 3rem 1.25rem 2.5rem;
}
.hero-inner, .section-inner, .footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero-wide { max-width: var(--wide); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
h1 {
  font-size: clamp(1.85rem, 5vw, 2.55rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--bordeaux-deep);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.7rem);
  color: var(--bordeaux-deep);
  margin: 0 0 1rem;
  line-height: 1.3;
}
h3 {
  font-size: 1.1rem;
  color: var(--bordeaux);
  margin: 0 0 0.5rem;
}
.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--bordeaux);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bordeaux-deep);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.btn-secondary:hover {
  background: rgba(122, 47, 58, 0.06);
  color: var(--bordeaux-deep);
}
.btn-ig {
  background: linear-gradient(135deg, #c45c4a, #7a2f3a);
  color: var(--white);
}
.btn-ig:hover { color: var(--white); filter: brightness(1.05); }

.section {
  padding: 2.75rem 1.25rem;
}
.section-alt {
  background: var(--cream-dark);
}
.section p { margin: 0 0 1rem; color: var(--ink-soft); }
.section p:last-child { margin-bottom: 0; }

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}
.card p { font-size: 0.98rem; }
.icon-dot {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(196, 92, 74, 0.15);
  color: var(--bordeaux);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.note {
  border-left: 3px solid var(--terracotta);
  padding: 0.85rem 1rem;
  background: rgba(196, 92, 74, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.25rem;
}
.note p { margin: 0; font-size: 0.95rem; }

.diploma {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
}
.diploma-badge {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background: var(--bordeaux);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.15;
}

.ig-hero {
  text-align: center;
  padding-top: 3rem;
}
.ig-handle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bordeaux);
  margin: 0.5rem 0 1.5rem;
}
.ig-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: var(--wide);
  padding: 0 1.25rem 2.75rem;
}
@media (min-width: 640px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
.ig-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.15s, border-color 0.15s;
}
.ig-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 92, 74, 0.35);
  color: inherit;
}
.ig-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.ig-card h3 { color: var(--bordeaux-deep); }
.ig-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.form-wrap {
  max-width: 520px;
  margin: 0 auto;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow);
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.field { margin-bottom: 1.15rem; }
.hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 0.25rem;
}
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
}
.form-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 1rem 0 0;
}
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(122, 47, 58, 0.08);
  border-radius: 10px;
  margin-top: 1rem;
  color: var(--bordeaux-deep);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  background: var(--cream-dark);
  margin-top: 1rem;
}
.footer-inner {
  max-width: var(--wide);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { font-weight: 700; color: var(--bordeaux-deep); }
.footer-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 420px;
}
.draft-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196, 92, 74, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}
.footer-links a { text-decoration: none; color: var(--ink-soft); }
.footer-links a:hover { color: var(--bordeaux); }

@media (max-width: 520px) {
  .header-inner { padding: 0.75rem 1rem; }
  .nav { width: 100%; justify-content: flex-start; }
  .hero { padding: 2.25rem 1rem 2rem; }
  .section { padding: 2.25rem 1rem; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
