:root {
  --terracotta: #BF7657;
  --terracotta-deep: #9c5c40;
  --rose: #EBC5B5;
  --cream: #F5E8D2;
  --sage: #7F9A91;
  --brown: #2D1D18;
  --white: #fffdf9;
  --rose-light: rgba(235,197,181,.34);
  --text: #3a2b24;
  --text-soft: #6b584e;
  --text-muted: #a08d80;
  --border: rgba(45,29,24,.13);
  --shadow: 0 20px 60px rgba(45,29,24,.10);
  --shadow-strong: 0 28px 90px rgba(45,29,24,.22);
  --container: 1280px;
  --font-title: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
p { margin: 0; line-height: 1.85; }
h1,h2,h3,h4 { font-family: var(--font-title); font-weight: 500; line-height: 1.14; color: var(--brown); }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 32px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px; border: none; cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}
.btn--primary { background: var(--terracotta); color: var(--white); }
.btn--primary:hover { background: var(--terracotta-deep); transform: translateY(-1px); box-shadow: 0 14px 36px rgba(191,118,87,.32); }
.btn--ghost { background: transparent; color: var(--terracotta); border: 1.3px solid var(--terracotta); }
.btn--ghost:hover { background: var(--terracotta); color: var(--white); }
.btn--light { background: var(--white); color: var(--terracotta-deep); }
.btn--light:hover { background: var(--rose); }

.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .7rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px;
}
.kicker::before { content: ''; width: 34px; height: 1px; background: currentColor; opacity: .7; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,232,210,.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(45,29,24,.08); }
.header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 104px; gap: 24px; }
.brand { flex-shrink: 0; display: flex; align-items: center; justify-self: start; grid-column: 1; }
.brand img { height: 84px; width: auto; }
.nav--left, .nav--right { display: flex; align-items: center; gap: 8px; }
.nav--left { justify-self: center; grid-column: 2; }
.nav--right { grid-column: 3; justify-self: end; gap: 10px; }
.nav--left a {
  font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px;
  color: var(--brown); opacity: .8; transition: opacity .2s, color .2s;
}
.nav--left a:hover { opacity: 1; color: var(--terracotta); }
.phone-link {
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  color: var(--brown); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 999px;
  transition: all .2s;
}
.phone-link:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.burger span { display: block; height: 1.5px; background: var(--brown); transition: all .28s; transform-origin: center; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--cream); border-top: 1px solid var(--border);
  overflow: hidden; max-height: 0; transition: max-height .4s ease;
}
.mobile-menu.is-open { max-height: 460px; }
.mobile-menu a {
  padding: 16px 24px; font-size: .85rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-menu a:hover { background: var(--rose-light); color: var(--terracotta-deep); }

/* ============ HERO ============ */
#hero { padding: 150px 0 100px; background: var(--cream); position: relative; overflow: hidden; }
.hero__deco-flower {
  position: absolute; top: 20px; right: 40px; width: 160px; opacity: .9; color: var(--terracotta); pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__silhouette {
  position: absolute; left: -8%; bottom: -4%; width: 42%; color: var(--terracotta); opacity: .55; z-index: 0; pointer-events: none;
}
.hero__arch {
  width: min(100%, 460px); aspect-ratio: 3/3.6; border-radius: 50% 50% 0 0 / 40% 40% 0 0; overflow: hidden;
  position: relative; z-index: 1; box-shadow: var(--shadow-strong); border: 1px solid rgba(191,118,87,.2);
}
.hero__arch img { width: 100%; height: 100%; object-fit: cover; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-title); font-weight: 500;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  line-height: 1.1; color: var(--sage); margin-bottom: 10px; letter-spacing: .01em;
}
.hero__subtitle {
  font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
  max-width: 420px;
}
.hero__sub { font-size: .96rem; line-height: 1.95; color: var(--text-soft); font-weight: 300; margin-bottom: 38px; max-width: 480px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ MANIFESTO ============ */
.manifesto { padding: 110px 0; background: var(--rose-light); position: relative; overflow: hidden; }
.manifesto__deco-flower {
  position: absolute; bottom: -30px; left: -20px; width: 150px; opacity: .5; color: var(--terracotta); pointer-events: none; transform: scaleX(-1);
}
.manifesto__head { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto 48px; }
.manifesto__hook {
  font-family: var(--font-title); font-style: italic; font-weight: 500;
  font-size: clamp(2rem,3.6vw,3rem); line-height: 1.3; color: var(--terracotta-deep);
}
.manifesto__panel {
  position: relative; z-index: 1; background: var(--white); border-radius: 40px;
  padding: 64px 72px; box-shadow: var(--shadow); max-width: 980px; margin: 0 auto;
}
.manifesto__text {
  font-size: .95rem; line-height: 1.95; color: var(--text-soft); font-weight: 300; white-space: pre-line;
  columns: 2; column-gap: 48px;
}
.manifesto__callout {
  font-family: var(--font-title); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem,1.8vw,1.5rem); line-height: 1.5; color: var(--brown);
  border-left: 3px solid var(--terracotta); padding-left: 24px; margin: 40px 0 32px;
}
.manifesto__signature { font-family: var(--font-title); font-style: italic; font-size: 1.15rem; color: var(--terracotta-deep); text-align: right; }

/* ============ SERVICES ============ */
#soins { padding: 120px 0; }
.services__head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.services__title { font-size: clamp(2.1rem,3.6vw,3.2rem); margin-bottom: 18px; }
.services__sub { color: var(--text-soft); line-height: 1.9; font-weight: 300; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card { text-align: center; display: flex; flex-direction: column; height: 100%; }
.service-card__media {
  width: 100%; aspect-ratio: 1/1; overflow: hidden; margin-bottom: 26px; position: relative;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0; flex-shrink: 0; background: var(--rose-light);
}
.service-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__body { display: flex; flex-direction: column; flex: 1; padding: 0 8px; }
.service-card__name { font-size: 1.28rem; margin-bottom: 12px; }
.service-card__desc { font-size: .86rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.service-card__more {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta-deep);
  border-bottom: 1.3px solid var(--terracotta); padding-bottom: 3px; transition: opacity .2s;
  align-self: center; margin-top: auto;
}
.service-card__more:hover { opacity: .6; }

/* ============ LOCAL SEO BAND ============ */
.local-seo-band { padding: 80px 0; background: var(--sage); }
.local-seo__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
.local-seo__title { font-size: clamp(1.7rem,2.6vw,2.3rem); color: var(--white); margin-bottom: 14px; }
.local-seo__text { color: rgba(255,253,249,.85); font-size: .92rem; line-height: 1.95; font-weight: 300; }
.local-seo__list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.local-seo__item { background: rgba(255,253,249,.1); border: 1px solid rgba(255,253,249,.22); border-radius: 20px; padding: 20px 22px; }
.local-seo__item strong { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); margin-bottom: 6px; }
.local-seo__item span, .local-seo__item span a { font-size: .86rem; color: rgba(255,253,249,.92); line-height: 1.7; }

/* ============ ABOUT ============ */
#apropos { padding: 130px 0; position: relative; overflow: hidden; }
.about__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.about__visual { position: relative; display: flex; justify-content: center; }
.about__arch { width: min(100%, 400px); aspect-ratio: 3/3.7; border-radius: 50% 50% 0 0 / 40% 40% 0 0; overflow: hidden; border: 1px solid rgba(191,118,87,.22); box-shadow: var(--shadow-strong); }
.about__arch img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about__title { font-size: clamp(2.1rem, 3.4vw, 3.2rem); margin-bottom: 22px; }
.about__hook { font-family: var(--font-title); font-style: italic; font-size: 1.15rem; font-weight: 500; color: var(--terracotta-deep); margin-bottom: 24px; line-height: 1.5; }
.about__text { font-size: .93rem; line-height: 2; color: var(--text-soft); font-weight: 300; white-space: pre-line; }
.about__text strong { color: var(--brown); font-weight: 600; }
.about__signature { margin-top: 18px; font-family: var(--font-title); font-style: italic; font-size: 1.3rem; color: var(--terracotta-deep); }
.about__actions { margin-top: 32px; }

/* ============ FAQ ============ */
#faq { padding: 110px 0; background: var(--rose-light); }
.faq__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq__head { position: sticky; top: 110px; }
.faq__title { font-size: clamp(2.1rem,3.2vw,3rem); margin-bottom: 20px; }
.faq__sub { font-size: .92rem; color: var(--text-soft); line-height: 1.9; font-weight: 300; }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; gap: 20px; font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  color: var(--text); text-align: left; transition: color .2s;
}
.faq-q:hover { color: var(--terracotta-deep); }
.faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1.3px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all .25s; }
.faq-icon::before { content: '+'; font-size: 1.2rem; line-height: 1; color: var(--terracotta-deep); transition: transform .25s; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--terracotta); border-color: var(--terracotta); }
.faq-q[aria-expanded="true"] .faq-icon::before { content: '\2212'; color: var(--white); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .35s ease; }
.faq-a.is-open { max-height: 340px; padding-bottom: 24px; }
.faq-a p { font-size: .88rem; line-height: 1.95; color: var(--text-soft); font-weight: 300; }
.faq-a p strong { color: var(--terracotta-deep); font-weight: 600; }

/* ============ LOCATION ============ */
.meet-location { padding: 120px 0; background: var(--cream); }
.meet-location__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.meet-location__title { font-size: clamp(2rem,3.2vw,2.9rem); margin-bottom: 16px; }
.meet-location__desc { color: var(--text-soft); font-size: .94rem; line-height: 1.95; font-weight: 300; white-space: pre-line; }
.meet-location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.meet-location__photo { border-radius: 50% 50% 0 0 / 34% 34% 0 0; aspect-ratio: 4/4.6; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.meet-location__photo img { width: 100%; height: 100%; object-fit: cover; }
.meet-location__info { background: var(--white); border-radius: 32px; padding: 44px 38px; box-shadow: var(--shadow); }
.meet-location__info li { list-style: none; margin-bottom: 22px; }
.meet-location__info li:last-child { margin-bottom: 0; }
.meet-location__info li strong { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; font-weight: 600; }
.meet-location__info li span, .meet-location__info li a { font-size: .92rem; color: var(--text); line-height: 1.75; }
.meet-location__note { margin-top: 18px; font-size: .82rem; color: var(--text-muted); font-style: italic; }

/* ============ CONTACT ============ */
#contact { padding: 110px 0; background: var(--brown); position: relative; overflow: hidden; }
.contact__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.2fr; gap: 90px; align-items: start; }
.contact__copy { color: var(--cream); }
.contact__copy .kicker { color: var(--rose); }
.contact__title { font-size: clamp(2.1rem,3.4vw,3.2rem); color: var(--cream); margin-bottom: 22px; }
.contact__desc { font-size: .92rem; line-height: 1.95; color: rgba(245,232,210,.8); font-weight: 300; margin-bottom: 36px; }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__info-row { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(235,197,181,.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--rose); }
.contact__info-label { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; }
.contact__info-val { font-size: .9rem; color: rgba(245,232,210,.9); font-weight: 300; line-height: 1.7; }
.contact__info-val a { color: inherit; }
.contact__info-val a:hover { color: var(--rose); }

.contact__form { background: rgba(245,232,210,.06); border: 1px solid rgba(235,197,181,.22); border-radius: 32px; padding: 50px; backdrop-filter: blur(6px); }
.form__title { font-family: var(--font-title); font-size: 1.7rem; color: var(--cream); margin-bottom: 32px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form__group.full { grid-column: 1 / -1; }
.form__group label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,232,210,.8); }
.field { width: 100%; background: rgba(245,232,210,.08); border: 1px solid rgba(235,197,181,.26); border-radius: 14px; padding: 14px 18px; font-family: var(--font-body); font-size: .9rem; font-weight: 300; color: var(--cream); outline: none; transition: border-color .2s, background .2s; }
.field::placeholder { color: rgba(245,232,210,.45); }
.field:focus { border-color: var(--rose); background: rgba(245,232,210,.12); }
textarea.field { resize: vertical; min-height: 120px; }
.form__submit { width: 100%; margin-top: 8px; height: 56px; background: var(--rose); color: var(--brown); border: none; border-radius: 999px; font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: all .25s; }
.form__submit:hover { background: var(--cream); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,0,0,.15); }
.form__note { font-size: .7rem; color: rgba(245,232,210,.42); text-align: center; margin-top: 12px; font-weight: 300; }

/* ============ SOCIAL ============ */
#reseaux { padding: 100px 0; background: var(--cream); text-align: center; }
.social__title { font-size: clamp(1.9rem,3.2vw,2.9rem); margin-bottom: 8px; }
.social__handle { font-size: .9rem; font-weight: 600; letter-spacing: .06em; color: var(--terracotta-deep); margin-bottom: 8px; }
.social__handle a:hover { color: var(--terracotta); }
.social__note { max-width: 500px; margin: 0 auto 34px; color: var(--text-muted); font-size: .84rem; font-weight: 300; }
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1180px; margin: 0 auto 40px; }
.insta-grid a { display: block; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.insta-grid img { width: 100%; height: 100%; object-fit: contain; background: #fff; transition: transform .3s ease; }
.insta-grid a:hover img { transform: scale(1.04); }

/* ============ FOOTER ============ */
.footer { background: var(--brown); color: rgba(245,232,210,.75); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(235,197,181,.16); }
.footer__brand img { height: 60px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: .85rem; line-height: 1.9; font-weight: 300; }
.footer__col-title { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; }
.footer__col p, .footer__col a { font-size: .85rem; line-height: 2; font-weight: 300; display: block; color: rgba(245,232,210,.68); transition: color .2s; }
.footer__col a:hover { color: var(--rose); }
.footer__bottom { padding: 22px 0; font-size: .78rem; display: flex; justify-content: space-between; align-items: center; color: rgba(245,232,210,.42); flex-wrap: wrap; gap: 10px; }
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { color: var(--rose); }

/* ============ MODAL ============ */
.service-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(45,29,24,.55);
  backdrop-filter: blur(10px);
}
.service-modal.is-open { display: flex; }
.service-modal__panel {
  width: min(100%, 760px); max-height: min(86vh, 820px); overflow-y: auto;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 36px; box-shadow: var(--shadow-strong);
  position: relative; padding: 50px;
  animation: modalIn .22s ease both;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.service-modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff; color: var(--brown);
  cursor: pointer; font-size: 1.4rem; line-height: 1; display: grid; place-items: center;
  transition: all .2s;
}
.service-modal__close:hover { background: var(--terracotta); color: var(--white); }
.service-modal__kicker { color: var(--terracotta); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.service-modal__title { font-size: clamp(1.9rem,3.4vw,2.7rem); margin-bottom: 20px; padding-right: 40px; }
.service-modal__lead { color: var(--text-soft); font-size: .96rem; line-height: 1.95; margin-bottom: 20px; font-weight: 300; }
.service-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.service-modal__box { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 22px; }
.service-modal__box.full { grid-column: 1 / -1; }
.service-modal__box strong { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta-deep); margin-bottom: 8px; font-weight: 600; }
.service-modal__box span, .service-modal__box p { color: var(--text-soft); font-size: .88rem; line-height: 1.8; font-weight: 300; }
.service-modal__list { padding-left: 18px; color: var(--text-soft); line-height: 1.9; margin-bottom: 28px; font-weight: 300; }
.service-modal__list li { margin-bottom: 8px; }
.service-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav--left { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .nav--right .btn { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero__sub, .hero__subtitle { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__silhouette { display: none; }
  .manifesto__panel { padding: 44px; }
  .manifesto__text { columns: 1; }
  .manifesto__callout { text-align: left; }
  .services__grid { grid-template-columns: 1fr 1fr; max-width: 620px; margin-inline: auto; }
  .local-seo__grid { grid-template-columns: 1fr; gap: 34px; }
  .about__inner { grid-template-columns: 1fr; text-align: center; }
  .about__text { text-align: left; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .meet-location__grid { grid-template-columns: 1fr; }
  .meet-location__photo { max-width: 360px; margin: 0 auto; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .container, .hero__inner { width: min(100% - 32px, var(--container)); }
  .phone-link { display: none; }
  .services__grid { grid-template-columns: 1fr; max-width: 340px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 22px; }
  .manifesto__panel { padding: 30px 24px; border-radius: 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__title { font-size: 2.2rem; }
  .hero__deco-flower { width: 90px; top: 8px; right: 10px; }
  .btn { min-height: 48px; padding: 0 24px; font-size: .7rem; }
  .service-modal__panel { padding: 34px 22px 28px; border-radius: 26px; }
  .service-modal__grid { grid-template-columns: 1fr; }
  .service-modal__title { padding-right: 32px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
