*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sand: #F5EFE4;
  --sand-dark: #E8DCC8;
  --earth: #8B6F47;
  --earth-deep: #5C4428;
  --sage: #7A8C6E;
  --ink: #2A2118;
  --cream: #FDFAF5;
  --muted: #9B8E7D;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(139,111,71,0.06) 0%, transparent 60%),
                    radial-gradient(ellipse 60% 80% at 85% 80%, rgba(122,140,110,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
header { padding: 2.5rem 0 0; }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--earth-deep);
  text-transform: uppercase;
  text-decoration: none;
}
.hero {
  padding: 5rem 0 3.5rem;
  display: grid;
  gap: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 0.5px;
  background: var(--muted);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--earth-deep);
  max-width: 560px;
}
.hero h1 em { font-style: italic; color: var(--earth); }
.hero h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
}
.hero-disciplines {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--earth);
  text-transform: uppercase;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.btn-primary {
  display: inline-block;
  background: var(--earth-deep);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--earth); transform: translateY(-1px); }
.link-insta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.link-insta:hover { color: var(--earth); }
.insta-icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.divider { height: 0.5px; background: var(--sand-dark); }

/* ── About ── */
.about {
  padding: 3.5rem 0;
}
.about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--earth-deep);
  margin-bottom: 2rem;
}
.about p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 0.9rem;
  max-width: 480px;
}

/* ── Services ── */
.services { padding: 3.5rem 0; }
.services h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--earth-deep);
  margin-bottom: 2rem;
}
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--sand-dark);
  border: 0.5px solid var(--sand-dark);
}
.card {
  background: var(--cream);
  padding: 1.8rem 1.5rem;
  transition: background 0.2s;
}
.card:hover { background: var(--sand); }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--earth-deep);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.card p { font-size: 0.82rem; line-height: 1.7; color: var(--muted); font-weight: 300; }
.card-new {
  grid-column: span 2;
  background: var(--sand);
  border-top: 2px solid var(--earth);
}
.card-new h3 { font-size: 1.3rem; }

/* ── Testimonials ── */
.testimonials { padding: 3.5rem 0; }
.testimonials-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.testimonials-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--earth-deep);
}
.slide-counter { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted); }
.slider-wrap { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.slide { min-width: 100%; }
blockquote { border-left: 1.5px solid var(--earth); padding-left: 1.5rem; }
blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--earth-deep);
  margin-bottom: 0.8rem;
}
blockquote cite {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand-dark);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.dot.active { background: var(--earth); transform: scale(1.3); }
.dot:hover { background: var(--earth); }

/* ── Formations ── */
.formations { padding: 3.5rem 0; }
.formations > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--earth-deep);
  margin-bottom: 2rem;
}
.formation-year-block {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 2.5rem;
  border-top: 0.5px solid var(--sand-dark);
  padding: 1.4rem 0;
  align-items: start;
}
.formation-year-block:last-child { border-bottom: 0.5px solid var(--sand-dark); }
.formation-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--earth);
  padding-top: 1px;
}
.formation-items { display: grid; gap: 1rem; }
.formation-item-name {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  margin-bottom: 2px;
}
.formation-item-org {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Footer ── */
footer {
  padding: 2.5rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }

/* ── Responsive ── */
@media (max-width: 520px) {
  .about { grid-template-columns: 1fr; gap: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .card-new { grid-column: span 1; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .formation-year-block { grid-template-columns: 60px 1fr; gap: 0 1.5rem; }
}
