:root {
  --bg: #f7f4ef;
  --bg-alt: #ebe5db;
  --ink: #353029;
  --muted: #6e655c;
  --accent: #7f9778;
  --accent-deep: #5f7359;
  --line: #e3ddd3;
  --white: #fffdfb;
  --radius: 20px;
  --shadow: 0 20px 50px -20px rgba(70, 50, 35, 0.25);
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.12; color: var(--ink); }

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 28px -12px rgba(127, 151, 120, 0.7);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn--ghost:hover { background: var(--white); border-color: var(--accent); color: var(--accent-deep); }
.btn--small { padding: 11px 22px; font-size: 14px; }
.btn--block { width: 100%; }

.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 14px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); background: rgba(250, 247, 244, 0.82); border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.nav.scrolled { border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav__logo { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 700; letter-spacing: .01em; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { font-size: 15px; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav .btn--small { margin-left: 8px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* Hero */
.hero { padding: 36px 0 64px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.hero__badge { display: inline-block; background: var(--white); border: 1px solid var(--line); color: var(--accent-deep); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 26px; }
.hero__title { font-size: clamp(40px, 6vw, 62px); margin-bottom: 22px; }
.hero__text { font-size: 18px; color: var(--muted); max-width: 480px; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__stats { display: flex; gap: 38px; }
.stat b { display: block; font-family: "Cormorant Garamond", serif; font-size: 32px; font-weight: 700; color: var(--accent-deep); white-space: nowrap; }
.stat span { font-size: 14px; color: var(--muted); }

.hero__photo { position: relative; }
.hero__photo-frame { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.hero__photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo-card { position: absolute; bottom: 26px; left: -26px; background: var(--white); padding: 14px 20px; border-radius: 14px; box-shadow: var(--shadow); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #4caf7d; box-shadow: 0 0 0 4px rgba(76,175,125,.18); }

/* Trust */
.trust { background: var(--ink); color: #f3ece4; padding: 64px 0; }
.trust__inner { text-align: center; }
.trust__lead { font-family: "Cormorant Garamond", serif; font-size: 30px; margin-bottom: 30px; color: #fff; }
.trust__list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; max-width: 760px; margin: 0 auto 30px; text-align: left; }
.trust__list li { position: relative; padding-left: 30px; color: #d6cabd; font-size: 16px; }
.trust__list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.trust__note { font-size: 18px; color: #fff; max-width: 620px; margin: 0 auto; }

/* Sections */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(32px, 4.4vw, 46px); margin-bottom: 16px; }
.section__sub { color: var(--muted); font-size: 17px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card--accent { background: linear-gradient(160deg, #fffdfb, #f6ede3); border-color: #e8d9c8; }
.card__icon { font-family: "Cormorant Garamond", serif; font-size: 30px; color: var(--accent); margin-bottom: 18px; }
.card h3 { font-size: 24px; margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 18px; }
.card__meta { font-size: 13px; color: var(--accent-deep); font-weight: 600; }
.approach { cursor: pointer; position: relative; }
.approach:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.approach__plus { position: absolute; top: 22px; right: 22px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.approach__plus::before, .approach__plus::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--accent); border-radius: 2px; }
.approach__plus::before { width: 12px; height: 2px; }
.approach__plus::after { width: 2px; height: 12px; }
.approach:hover .approach__plus, .approach:focus-visible .approach__plus { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.approach:hover .approach__plus::before, .approach:hover .approach__plus::after,
.approach:focus-visible .approach__plus::before, .approach:focus-visible .approach__plus::after { background: #fff; }

/* Модальное окно подходов */
.modal { position: fixed; inset: 0; z-index: 220; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(35, 28, 22, 0.88); backdrop-filter: blur(4px); }
.modal.open { display: flex; }
.modal__panel { position: relative; background: var(--white); border-radius: var(--radius); max-width: 560px; width: 100%; max-height: 86vh; overflow-y: auto; padding: 40px 38px 36px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.5); }
.modal__close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--muted); font-size: 34px; line-height: 1; cursor: pointer; transition: color .2s; }
.modal__close:hover { color: var(--ink); }
.modal__icon { font-family: "Cormorant Garamond", serif; font-size: 30px; color: var(--accent); }
.modal__title { font-size: 28px; margin: 6px 0 18px; }
.modal__body p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 12px; }
.modal__body p:last-child { margin-bottom: 0; }
.modal__body b { color: var(--ink); font-weight: 600; }

/* Specialization */
.spec { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.spec__item { background: var(--white); border-radius: var(--radius); padding: 32px 26px; border: 1px solid var(--line); }
.spec__item h3 { font-size: 23px; margin-bottom: 14px; }
.spec__item > p { color: var(--muted); margin-bottom: 20px; }
.spec__item ul { list-style: none; display: grid; gap: 10px; }
.spec__item li { position: relative; padding-left: 26px; font-size: 15px; }
.spec__item li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { padding: 30px 24px; border-radius: var(--radius); background: var(--bg-alt); position: relative; }
.step__num { font-family: "Cormorant Garamond", serif; font-size: 44px; font-weight: 700; color: var(--accent); opacity: .5; display: block; margin-bottom: 8px; }
.step h4 { font-size: 22px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Pricing */
.pricing { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; align-items: stretch; max-width: 760px; margin: 0 auto; }
.pricing .price { flex: 1 1 320px; max-width: 360px; }
.price { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 52px 32px 36px; position: relative; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.price::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); opacity: .45; border-radius: var(--radius) var(--radius) 0 0; }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price__label { display: inline-block; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 700; color: var(--accent-deep); margin-bottom: 14px; }
.price h3 { font-size: 25px; margin-bottom: 16px; min-height: 56px; }
.price__value { font-family: "Cormorant Garamond", serif; font-size: 42px; font-weight: 700; color: var(--accent-deep); margin-bottom: 14px; }
.price__value span { font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 400; color: var(--muted); }
.price__desc { color: var(--muted); font-size: 15px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.price ul { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.price li { position: relative; padding-left: 26px; font-size: 15px; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.price .btn { margin-top: auto; }

.price__tag { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.price--featured { background: linear-gradient(165deg, #8aa181, #5f7359); border-color: transparent; box-shadow: var(--shadow); }
.price--featured::before { background: rgba(255, 255, 255, .55); opacity: 1; }
.price--featured .price__tag { background: rgba(255, 255, 255, .9); color: var(--accent-deep); }
.price--featured:hover { transform: translateY(-6px); }
.price--featured h3, .price--featured .price__value { color: #fff; }
.price--featured .price__label { color: rgba(255, 255, 255, .82); }
.price--featured .price__value span { color: rgba(255, 255, 255, .8); }
.price--featured .price__desc { color: rgba(255, 255, 255, .85); border-color: rgba(255, 255, 255, .25); }
.price--featured li { color: #fff; }
.price--featured li::before { color: #fff; }
.price--featured .btn--block { background: #fff; color: var(--accent-deep); box-shadow: 0 12px 28px -14px rgba(0,0,0,.4); }
.price--featured .btn--block:hover { background: #f1ede7; color: var(--accent-deep); }

/* Result */
.result { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.result__item { padding: 30px 28px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.result__item b { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600; display: block; margin-bottom: 8px; }
.result__item p { color: var(--muted); font-size: 15px; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--white); border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--line); }
.review p { font-size: 17px; font-style: italic; color: var(--ink); margin-bottom: 18px; }
.review footer { font-size: 14px; font-weight: 600; color: var(--accent-deep); }

/* Gratitude gallery — горизонтальная лента */
.gratitude__wrap { position: relative; }
.gratitude__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--accent-deep); font-size: 28px; line-height: 1; cursor: pointer; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s, opacity .2s; }
.gratitude__nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.gratitude__nav--prev { left: -10px; }
.gratitude__nav--next { right: -10px; }
.gratitude__nav[disabled] { opacity: 0; pointer-events: none; }
.gratitude { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 18px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }
.gratitude::-webkit-scrollbar { height: 8px; }
.gratitude::-webkit-scrollbar-track { background: transparent; }
.gratitude::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.gratitude::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.gratitude__item { flex: 0 0 auto; width: 220px; height: 300px; scroll-snap-align: start; display: block; border-radius: 16px; overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: 0 12px 30px -22px rgba(70, 50, 35, 0.4); cursor: zoom-in; transition: transform .3s ease, box-shadow .3s ease; }
.gratitude__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gratitude__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gratitude__hint { margin-top: 14px; text-align: center; color: var(--muted); font-size: 13px; letter-spacing: .02em; }
.gratitude__note { margin-top: 18px; text-align: center; color: var(--muted); font-size: 14px; }
.gratitude__note .lock { margin-right: 6px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 32px; background: rgba(35, 28, 22, 0.88); backdrop-filter: blur(4px); }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .2s; }
.lightbox__close:hover { opacity: 1; }

/* Образование */
.edu__group { font-size: 24px; margin: 10px 0 20px; color: var(--ink); position: relative; padding-left: 16px; }
.edu__group::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px; border-radius: 100px; background: var(--accent); }
.edu { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.edu__item { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 14px 34px -24px rgba(70, 50, 35, 0.45); transition: transform .35s ease, box-shadow .35s ease; }
.edu__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.edu__thumb { position: relative; display: block; aspect-ratio: 3 / 4; background: var(--bg-alt); cursor: zoom-in; overflow: hidden; }
.edu__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .55s ease; }
.edu__item:hover .edu__thumb img { transform: scale(1.06); }
.edu__thumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(35, 28, 22, .55), rgba(35, 28, 22, 0) 55%); opacity: 0; transition: opacity .3s ease; }
.edu__thumb::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.8); width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, .94) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%235f7359' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21'/%3E%3C/svg%3E") center / 22px no-repeat; box-shadow: 0 6px 18px -6px rgba(0,0,0,.4); opacity: 0; transition: opacity .3s ease, transform .3s ease; }
.edu__item:hover .edu__thumb::before { opacity: 1; }
.edu__item:hover .edu__thumb::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.edu__item figcaption { padding: 16px 18px 20px; border-top: 1px solid var(--line); min-height: 92px; }
.edu__item figcaption h4 { font-size: 18px; margin-bottom: 6px; line-height: 1.22; }
.edu__item figcaption p { color: var(--muted); font-size: 13px; line-height: 1.45; }

/* About */
.about__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.about__photo { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__content p { color: var(--muted); font-size: 17px; margin-bottom: 16px; text-indent: 1.5em; }
.about__list { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.about__list li { position: relative; padding-left: 28px; font-size: 16px; }
.about__list li::before { content: "✦"; position: absolute; left: 0; color: var(--accent); }

/* Process privacy note */
.process__privacy { margin: 44px auto 0; max-width: 720px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 28px; color: var(--muted); font-size: 15px; }
.process__privacy .lock { margin-right: 6px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 28px; transition: box-shadow .3s; }
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary { list-style: none; cursor: pointer; font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600; color: var(--ink); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: "Manrope", sans-serif; font-size: 26px; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform .25s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); font-size: 16px; padding: 0 0 22px; }

/* CTA */
.cta { padding: 96px 0; background: linear-gradient(160deg, #efe4d8, #e4d4c2); }
.cta__inner { display: grid; grid-template-columns: 1fr; gap: 32px; justify-items: center; max-width: 640px; margin: 0 auto; text-align: center; }
.cta__text h2 { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 18px; }
.cta__text p { color: var(--muted); font-size: 18px; max-width: 560px; margin: 0 auto 4px; text-indent: 1.6em; line-height: 1.7; }
.cta__contacts { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta__contacts a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 17px; color: var(--accent-deep); transition: color .2s ease, transform .2s ease; }
.cta__contacts a svg { flex-shrink: 0; }
.cta__contacts a:hover { color: var(--ink); transform: translateY(-2px); }
.cta__socials { display: flex; flex-wrap: nowrap; justify-content: center; gap: 14px; margin-bottom: 8px; }
.cta__socials a {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 20px; color: #fff; background: var(--accent);
  padding: 16px 28px; border-radius: 999px; box-shadow: var(--shadow); white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.cta__socials a:hover { background: var(--accent-deep); transform: translateY(-2px); }

/* Form */
.form { background: var(--white); padding: 38px 34px; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; gap: 18px; }
.form label { display: grid; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.form__opt { font-weight: 400; color: var(--muted); }
.form input, .form textarea { font-family: inherit; font-size: 15px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg); transition: border-color .2s; resize: vertical; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form__note { font-size: 12px; color: var(--muted); text-align: center; }
.form__success { display: none; background: #e8f5ee; color: #2f7d52; padding: 12px 16px; border-radius: 12px; font-size: 14px; text-align: center; font-weight: 600; }
.form__success.show { display: block; }

/* Footer */
.footer { background: var(--ink); color: #d6cabd; padding: 56px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer__logo { font-family: "Cormorant Garamond", serif; font-size: 26px; font-weight: 700; color: #fff; }
.footer__links { display: flex; gap: 26px; margin: 6px 0; }
.footer__links a { color: #d6cabd; font-size: 15px; }
.footer__links a:hover { color: #fff; }
.footer small { color: #8c8076; font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner, .about__inner, .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { max-width: 420px; margin: 0 auto; }
  .cards, .spec, .steps, .pricing, .result, .reviews { grid-template-columns: 1fr 1fr; }
  .edu { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .price--featured { transform: none; }
  .nav__links { display: none; }
  .nav__links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); }
  .nav__burger { display: flex; }
  .trust__list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .cards, .spec, .steps, .pricing, .result, .reviews { grid-template-columns: 1fr; }
  .edu { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .edu__item figcaption { padding: 12px 13px 15px; min-height: 80px; }
  .edu__item figcaption h4 { font-size: 16px; }
  .gratitude__item { width: 180px; height: 250px; }
  .hero__stats { gap: 24px; }
  .hero__photo-card { left: 0; }
  .cta__socials { gap: 8px; }
  .cta__socials a { flex: 1 1 0; min-width: 0; padding: 14px 8px; font-size: 15px; gap: 6px; }
}
