/* ============ SKIP LINK ============ */
.skip-link { position: absolute; top: -40px; left: 0; padding: 8px; background: #000; color: #fff; z-index: 100; }
.skip-link:focus { top: 0; }

/* ============ RELATED POSTS ============ */
.related-posts { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--grey-200); }
.related-posts__title { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 20px; }
.related-posts__list { display: flex; flex-direction: column; gap: 16px; }
.related-posts__link { display: block; padding: 16px 20px; border: 1px solid var(--grey-200); text-decoration: none; transition: border-color 0.15s; }
.related-posts__link:hover { border-color: var(--black); }
.related-posts__link-title { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.related-posts__link-desc { font-size: 14px; color: var(--grey-500); }

/* ============ DESIGN TOKENS ============ */
:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #E5E5E5;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-500: #737373;
  --grey-600: #525252;
  --grey-700: #404040;
  --grey-800: #262626;
  --grey-900: #171717;
  --font: 'DM Sans', system-ui, sans-serif;
  --max-width: 1080px;
}

/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font); -webkit-font-smoothing: antialiased; background: var(--white); }
::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section { padding: 80px 32px; }
.section--grey { background: var(--grey-50); border-bottom: 1px solid var(--grey-200); }
.section--grey-top { background: var(--grey-50); border-top: 1px solid var(--grey-200); }
.section--dark { background: var(--black); }
.section--dark-alt { background: var(--grey-900); }
.section--center { text-align: center; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav__logo span {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-500);
  letter-spacing: 0.3px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.nav__link--active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.nav__book {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 10px 24px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
  display: inline-block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 32px 32px;
}
.footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer__col { flex: 1 1 160px; }
.footer__col--brand { flex: 1 1 280px; }
.footer__col--contact { flex: 1 1 200px; }
.footer__brand {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.6;
  font-style: italic;
}
.footer__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--grey-400);
}
.footer__link {
  font-size: 14px;
  color: var(--grey-300);
  margin-bottom: 12px;
  display: block;
}
.footer__contact-item {
  font-size: 14px;
  color: var(--grey-300);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contact-item svg {
  color: var(--grey-500);
  flex-shrink: 0;
}
.footer__bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  border-top: 1px solid var(--grey-800);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--grey-600);
}

/* ============ TYPOGRAPHY ============ */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--grey-400);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-title--light { color: var(--white); }
.page-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-title--hero {
  font-size: 52px;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-subtitle {
  font-weight: 400;
  color: var(--grey-500);
}
.section-desc {
  font-size: 17px;
  color: var(--grey-500);
  line-height: 1.7;
  max-width: 560px;
}
.section-desc--wide { max-width: 480px; }
.section-desc--light { color: var(--grey-400); }
.section-desc--center {
  color: var(--grey-400);
  max-width: none;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  text-align: center;
  border: none;
}
.btn--primary {
  background: var(--black);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--black);
  color: var(--black);
}
.btn--outline-light {
  background: transparent;
  border: 1.5px solid var(--black);
  color: var(--white);
}
.btn--full {
  width: 100%;
  display: block;
}

/* ============ GRIDS ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-3--wide { gap: 48px; }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ============ HOME: HERO ============ */
.hero {
  min-height: 520px;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grey-200);
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.hero__text { flex: 1 1 55%; }
.hero__text p {
  font-size: 17px;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero__image {
  flex: 1 1 40%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============ HOME: STATS ============ */
.stats {
  background: var(--black);
  padding: 36px 32px;
}
.stats__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stats__value {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 4px;
}
.stats__label {
  font-size: 12px;
  color: var(--grey-500);
  letter-spacing: 1px;
}

/* ============ HOME: SERVICE CARDS ============ */
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
}
.service-card__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 1.5px;
}
.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.service-card__desc {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.6;
  flex: 1;
}
.service-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-top: 8px;
}

/* ============ HOME: QUOTE ============ */
.quote__text {
  font-size: 32px;
  color: var(--white);
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 24px;
}
.quote__attr {
  font-size: 14px;
  color: var(--grey-500);
  letter-spacing: 1px;
}

/* ============ HOME: WHY ============ */
.why__num {
  font-size: 48px;
  font-weight: 700;
  color: var(--grey-200);
  margin-bottom: 16px;
}
.why__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.why__desc {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.7;
}

/* ============ CTA SECTION ============ */
.cta { max-width: 560px; margin: 0 auto; }
.cta p {
  font-size: 16px;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============ SERVICES: LIST ============ */
.svc-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.svc-item__left { flex: 0 0 280px; }
.svc-item__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.svc-item__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  background: var(--black);
  padding: 4px 10px;
  display: inline-block;
  margin-top: 4px;
}
.svc-item__right { flex: 1; }
.svc-item__desc {
  font-size: 15px;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.svc-item__meta {
  display: flex;
  gap: 24px;
  align-items: center;
}
.svc-item__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.svc-item__sep { color: var(--grey-300); }
.svc-item__duration {
  font-size: 14px;
  color: var(--grey-500);
}
.svc-item__spacer { flex: 1; }
.svc-item__book {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 24px;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--black);
  background: transparent;
  color: var(--black);
  transition: all 0.2s;
  display: inline-block;
}

/* ============ ABOUT ============ */
.about-profile {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.about-profile__photo {
  flex: 0 0 320px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}
.about-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-profile__info { flex: 1; }
.about-profile__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey-400);
  margin-bottom: 8px;
}
.about-profile__name {
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}
.about-profile__bio {
  font-size: 16px;
  color: var(--grey-600);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-card {
  padding: 32px;
  border: 1px solid var(--grey-200);
  background: var(--white);
}
.value-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.value-card__desc {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.7;
}

/* ============ BLOG: LISTING ============ */
.blog-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.blog-card__image {
  flex: 0 0 240px;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body { flex: 1; }
.blog-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  align-items: center;
}
.blog-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--grey-500);
}
.blog-card__dot { color: var(--grey-300); }
.blog-card__date {
  font-size: 12px;
  color: var(--grey-400);
}
.blog-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card__read {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}

/* ============ BLOG: ARTICLE ============ */
.article-container {
  max-width: 720px;
  margin: 0 auto;
}
.article__back {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-500);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}
.article__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  background: var(--black);
  padding: 4px 10px;
}
.article__date,
.article__read-time {
  font-size: 13px;
  color: var(--grey-400);
}
.article__dot { color: var(--grey-300); }
.article__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}
.article__excerpt {
  font-size: 17px;
  color: var(--grey-500);
  line-height: 1.7;
}
.article__featured-image {
  max-width: 720px;
  margin: 0 auto;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
}
.article__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 16px;
}
.article__content p {
  font-size: 16px;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.article__content p a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article__content p a:hover {
  color: var(--grey-600);
}
.article__author {
  margin-top: 56px;
  padding: 32px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  display: flex;
  gap: 24px;
  align-items: center;
}
.article__author-photo {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  overflow: hidden;
  flex-shrink: 0;
}
.article__author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__author-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.article__author-role {
  font-size: 14px;
  color: var(--grey-500);
}
.article__bottom-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article__all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.article__book-link {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  letter-spacing: 0.5px;
  background: var(--black);
  color: var(--white);
  display: inline-block;
}

/* ============ CONTACT ============ */
.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 64px;
}
.contact-info { flex: 0 0 340px; }
.contact-info__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey-400);
  margin-bottom: 24px;
}
.contact-info__item { margin-bottom: 24px; }
.contact-info__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-info__label svg {
  flex-shrink: 0;
}
.contact-info__value {
  font-size: 16px;
  color: var(--black);
}
.contact-hours {
  margin-top: 40px;
  padding: 24px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
}
.contact-hours__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-hours__text {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.8;
}
.contact-form { flex: 1; }
.form-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey-400);
  margin-bottom: 24px;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-row > * { flex: 1; }
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-600);
  display: block;
  margin-bottom: 6px;
}
.form-field {
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  font-family: var(--font);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  width: 100%;
  outline: none;
  resize: vertical;
}
.form-field::placeholder {
  color: var(--grey-400);
  font-weight: 400;
}
.form-field--tall { min-height: 120px; }
.form-field--medium { min-height: 80px; }
.form-note {
  font-size: 12px;
  color: var(--grey-400);
  text-align: center;
  line-height: 1.6;
}

/* ============ BOOKING ============ */
.booking-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 64px;
}
.booking-services { flex: 0 0 380px; }
.booking-form { flex: 1; }
.booking-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.service-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-option {
  padding: 16px 20px;
  border: 1px solid var(--grey-200);
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
}
.service-option--selected {
  border: 2px solid var(--black);
  background: var(--grey-50);
}
.service-option__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-option__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
}
.service-option__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.service-option__duration {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 4px;
}

/* ============ NAV: HAMBURGER ============ */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}
.nav__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {

  /* Nav */
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 20px; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 16px 20px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links--open { display: flex; }
  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-100);
    width: 100%;
  }
  .nav__link--active { border-bottom-color: var(--grey-200); }
  .nav__book {
    margin-top: 8px;
    text-align: center;
    padding: 14px 24px;
    width: 100%;
  }

  /* Layout */
  .section { padding: 48px 20px; }
  .container { padding-left: 20px; padding-right: 20px; }

  /* Typography */
  .page-title { font-size: 30px; }
  .page-title--hero { font-size: 32px; }
  .section-title { font-size: 28px; }
  .quote__text { font-size: 22px; }
  .article__title { font-size: 28px; }
  .svc-item__title { font-size: 22px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__inner {
    flex-direction: column;
    padding: 48px 20px;
    gap: 32px;
  }
  .hero__text { flex: auto; }
  .hero__image {
    flex: auto;
    width: 100%;
    height: 240px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn { width: 100%; text-align: center; }

  /* Stats */
  .stats { padding: 32px 20px; }
  .stats__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stats__value { font-size: 26px; }

  /* Grids */
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-3--wide { gap: 32px; }

  /* Service cards */
  .service-card { padding: 24px 20px; }

  /* Services list */
  .svc-item {
    flex-direction: column;
    gap: 16px;
  }
  .svc-item__left { flex: auto; }
  .svc-item__meta { flex-wrap: wrap; gap: 12px; }
  .svc-item__spacer { display: none; }
  .svc-item__book { width: 100%; text-align: center; margin-top: 8px; }

  /* About */
  .about-profile {
    flex-direction: column;
    gap: 32px;
  }
  .about-profile__photo {
    flex: auto;
    width: 100%;
    height: 280px;
  }

  /* Blog cards */
  .blog-card {
    flex-direction: column;
    gap: 20px;
  }
  .blog-card__image {
    flex: auto;
    width: 100%;
    height: 200px;
  }

  /* Article */
  .article__featured-image { height: 220px; }
  .article__meta { flex-wrap: wrap; gap: 8px; }
  .article__author { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-layout {
    flex-direction: column;
    gap: 48px;
  }
  .contact-info { flex: auto; }

  /* Booking */
  .booking-layout {
    flex-direction: column;
    gap: 48px;
  }
  .booking-services { flex: auto; }

  /* Forms */
  .form-row { flex-direction: column; }

  /* CTA */
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__actions .btn { text-align: center; }

  /* Footer */
  .footer { padding: 48px 20px 24px; }
  .footer__grid { gap: 32px; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
