:root {
  --ink: #493226;
  --muted: #6f6157;
  --paper: #fffdf8;
  --cream: #fbf2e5;
  --cream-deep: #f3e4cf;
  --surface: #ffffff;
  --leaf: #687c4f;
  --leaf-pale: #eef1df;
  --clay: #c96336;
  --clay-dark: #ac4d27;
  --honey: #ddaa52;
  --line: #eadbc5;
  --shadow: 0 16px 42px rgba(86, 53, 34, 0.09);
  --radius: 28px;
  --container: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 12px max(calc((100vw - 1240px) / 2), 24px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(234, 219, 197, 0.74);
  backdrop-filter: blur(15px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.99);
  box-shadow: 0 10px 30px rgba(73, 50, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}

.brand small {
  margin-top: 5px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 700;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 3px;
}

.navigation a {
  padding: 11px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.navigation a:not(.nav-call):hover,
.navigation a:not(.nav-call):focus-visible {
  color: var(--leaf);
  background: var(--leaf-pale);
  outline: none;
}

.navigation .nav-call {
  margin-left: 9px;
  padding-inline: 20px;
  color: #fff;
  background: var(--clay);
}

.navigation .nav-call:hover,
.navigation .nav-call:focus-visible {
  background: var(--clay-dark);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(350px, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: var(--container);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 82px) 0;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 470px;
  height: 470px;
  top: -96px;
  left: -190px;
  background: radial-gradient(circle, #f9e9d0 0%, rgba(249, 233, 208, 0) 68%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 10ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 4vw, 49px);
  font-weight: 500;
}

h3 {
  font-size: 22px;
}

.signature {
  margin: 10px 0 0;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 37px);
  font-style: italic;
}

.hero-lede {
  max-width: 510px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--clay);
  box-shadow: 0 12px 25px rgba(201, 99, 54, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--clay-dark);
}

.button-secondary {
  color: var(--clay-dark);
  background: var(--surface);
  border-color: #ddb598;
}

.opening-note {
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  padding: 18px;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: -25px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  content: "";
  background: var(--leaf-pale);
}

.hero-visual img {
  width: 100%;
  min-height: 530px;
  max-height: 650px;
  border-radius: 25px;
  object-fit: cover;
  object-position: 72% center;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: var(--container);
  margin: 0 auto 30px;
  padding: 10px 0;
}

.quick-facts article {
  padding: 25px 23px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(73, 50, 38, 0.04);
}

.fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--leaf);
  background: var(--leaf-pale);
  font-size: 13px;
  font-weight: 800;
}

.quick-facts h2 {
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
}

.quick-facts p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.place {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(27px, 5vw, 54px);
  align-items: center;
  padding-top: 52px;
  padding-bottom: 52px;
}

.place-photo {
  padding: 12px;
  border-radius: 31px;
  background: #fff;
  box-shadow: var(--shadow);
}

.place-photo img {
  width: 100%;
  height: clamp(290px, 33vw, 390px);
  border-radius: 21px;
  object-fit: cover;
}

.place-copy {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--cream);
}

.place-copy h2 {
  font-size: clamp(30px, 3.3vw, 42px);
}

.place-copy p:not(.eyebrow) {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(66px, 8vw, 100px) 0;
}

.section-heading {
  max-width: 610px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.centered {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.welcome {
  padding-top: 80px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.welcome-grid article {
  min-height: 182px;
  padding: 31px 30px;
  border-radius: var(--radius);
  background: var(--cream);
}

.welcome-grid article:nth-child(2) {
  background: var(--leaf-pale);
}

.welcome-grid h3 {
  margin-bottom: 14px;
  color: var(--ink);
}

.welcome-grid p {
  margin: 0;
  color: var(--muted);
}

.director {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(430px, 1.22fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.director-aside {
  position: sticky;
  top: 124px;
}

.director-aside h2 {
  margin-bottom: 30px;
}

.credential {
  display: grid;
  gap: 4px;
  margin-bottom: 27px;
  padding: 22px;
  border-left: 4px solid var(--honey);
  border-radius: 0 18px 18px 0;
  background: var(--cream);
}

.credential strong {
  color: var(--ink);
  font-size: 21px;
}

.credential span {
  color: var(--muted);
}

.director-photo {
  width: min(268px, 100%);
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.director-photo img {
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.director-photo figcaption {
  padding: 13px 8px 5px;
  color: var(--leaf);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.director-copy {
  color: var(--muted);
  font-size: 17px;
}

.director-copy p {
  margin: 0 0 21px;
}

.director-copy .lead {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.65;
}

.list-title {
  color: var(--ink);
  font-weight: 700;
}

.experience-list {
  display: grid;
  gap: 13px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.experience-list li {
  padding: 14px 18px 14px 39px;
  border-radius: 15px;
  background: #fbf6ed;
}

.experience-list li::before {
  margin-left: -22px;
  padding-right: 14px;
  color: var(--clay);
  content: "•";
  font-weight: 900;
}

.director-signature {
  margin-top: 34px !important;
  color: var(--leaf) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
}

.approach {
  border-top: 1px solid var(--line);
}

.approach-intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 38px);
  margin: -6px 0 42px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--cream);
}

.approach-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: stretch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.steps article {
  padding: 26px 24px;
  border-radius: 22px;
  background: var(--cream);
}

.steps article:nth-child(2),
.steps article:nth-child(3) {
  background: var(--leaf-pale);
}

.steps span {
  display: block;
  margin-bottom: 13px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.approach-layout > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 28px;
  object-fit: cover;
}

.gallery {
  padding-top: 38px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 17px;
}

.gallery-grid figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 27px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 17px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  font-weight: 650;
}

.tarifs {
  padding-top: 54px;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tarif-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(86, 53, 34, 0.06);
}

.tarif-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.tarif-card strong {
  display: block;
  color: var(--leaf);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 650;
  line-height: 1;
}

.tarif-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.tarif-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.tarif-notes p {
  margin: 0;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  color: var(--muted);
}

.tarif-notes strong {
  color: var(--text);
}

.preinscription {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: var(--container);
  margin: 18px auto 0;
  padding: clamp(34px, 5vw, 50px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 50%, rgba(239, 244, 222, 0.95), transparent 36%),
    var(--cream);
}

.preinscription div {
  max-width: 675px;
}

.preinscription h2 {
  margin-bottom: 13px;
}

.preinscription p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.preinscription .button {
  flex-shrink: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(400px, 1.08fr);
  gap: 72px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 21px 0 31px;
  color: var(--muted);
}

address {
  padding: 24px;
  border-radius: 19px;
  background: var(--cream);
  font-style: normal;
}

address strong {
  display: inline-block;
  margin-bottom: 7px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center;
}

.contact-links a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 116px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.contact-links .contact-card {
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
}

.contact-card svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card svg * {
  fill: none;
  stroke: currentColor;
}

.contact-card span {
  display: flex;
  flex-direction: column;
}

.contact-card.whatsapp {
  color: #24784d;
}

.contact-card.whatsapp small {
  color: var(--muted);
}

.contact-card.phone {
  color: var(--leaf);
}

.contact-card.phone small {
  color: var(--muted);
}

.contact-card.email {
  color: var(--clay-dark);
}

.contact-card.email small {
  color: var(--muted);
}

.contact-card.email strong {
  overflow-wrap: anywhere;
  font-size: 16px;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--clay);
  outline: none;
}

.contact-links span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}

.contact-links strong {
  font-size: 18px;
}

.social {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(250px, 330px);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
  margin-bottom: 36px;
  padding: clamp(34px, 5vw, 55px);
  border-radius: var(--radius);
  background: var(--cream);
}

.social-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 29px;
  color: var(--muted);
}

.social-news {
  max-width: 600px;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid rgba(184, 67, 100, 0.2);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(71, 49, 36, 0.08);
}

.social-news p:first-child {
  margin: 0 0 8px;
  color: #b84364;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-news h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text);
}

.social-news p:not(:first-child) {
  margin: 12px 0 18px;
  color: var(--muted);
}

.social-news a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #b84364;
  font-weight: 800;
  text-decoration: none;
}

.social-news a:hover,
.social-news a:focus-visible {
  color: #8f2c49;
  outline: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: min(250px, 100%);
  padding: 13px 17px 13px 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
}

.social-card svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.social-card svg .filled {
  fill: currentColor;
  stroke: none;
}

.social-card span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.social-card strong {
  font-size: 17px;
}

.social-card small {
  color: var(--muted);
  font-size: 13px;
}

.social-card.instagram {
  color: #b84364;
  transition: border-color 150ms ease, transform 150ms ease;
}

.social-card.instagram:hover,
.social-card.instagram:focus-visible {
  transform: translateY(-2px);
  border-color: #d66c86;
  outline: none;
}

.social-card.facebook {
  color: #3566ab;
  transition: border-color 150ms ease, transform 150ms ease;
}

.social-card.facebook:hover,
.social-card.facebook:focus-visible {
  transform: translateY(-2px);
  border-color: #7392bf;
  outline: none;
}

.instagram-qr {
  display: block;
  padding: 15px;
  border-radius: 25px;
  background: #fff;
  color: var(--leaf);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.instagram-qr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.instagram-qr strong {
  display: block;
  padding: 12px 4px 4px;
  font-size: 15px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--leaf);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .navigation a {
    padding-inline: 9px;
    font-size: 14px;
  }

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

  .hero-visual img {
    min-height: 440px;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 38px, 720px);
  }

  .site-header {
    min-height: 80px;
    padding-inline: 19px;
  }

  .brand img {
    width: 53px;
    height: 53px;
  }

  .brand strong {
    font-size: 21px;
  }

  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }

  .navigation {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 15px 19px 25px;
    background: var(--paper);
    box-shadow: 0 24px 40px rgba(73, 50, 38, 0.11);
  }

  .navigation.is-open {
    display: flex;
  }

  .navigation a {
    padding: 14px 17px;
    font-size: 16px;
  }

  .navigation .nav-call {
    margin: 6px 0 0;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 50px;
  }

  .hero-visual {
    order: -1;
    padding: 12px;
  }

  .hero-visual img {
    min-height: 0;
    height: min(62vw, 430px);
  }

  h1 {
    font-size: clamp(47px, 11vw, 62px);
  }

  .welcome-grid,
  .place,
  .director,
  .approach-intro,
  .approach-layout,
  .gallery-grid,
  .contact,
  .social,
  .tarifs-grid,
  .tarif-notes {
    grid-template-columns: 1fr;
  }

  .instagram-qr {
    width: min(310px, 100%);
    margin: 0 auto;
  }

  .director-aside {
    position: static;
  }

  .approach-layout > img {
    min-height: 0;
    max-height: 480px;
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 0;
    height: min(74vw, 470px);
  }

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

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 30px);
  }

  body {
    font-size: 16px;
  }

  .brand span {
    max-width: 180px;
  }

  .quick-facts,
  .steps,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .quick-facts article {
    padding: 21px;
  }

  .section {
    padding-block: 58px;
  }

  .welcome-grid article {
    min-height: 0;
  }

  .preinscription {
    padding: 29px 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
