@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,700;1,9..144,500&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --ink: #1c1712;
  --paper: #f1eadf;
  --white: #faf6ef;
  --muted: #6a635a;
  --line: #d8cebf;
  --wine: #722c2c;
  --wine-soft: #8b3d3d;
  --bronze: #a67c3d;
  --dark: #161310;
  --cream: #e7dccb;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
section[id], #quiz, #top { scroll-margin-top: 88px; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, Arial, sans-serif;
}
input, textarea, select { font-size: 16px; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; }
img { max-width: 100%; height: auto; display: block; }

.topbar {
  height: 82px;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 246, 239, .96);
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font: 700 16px Fraunces, Georgia, serif;
  color: var(--wine);
}
.brand b, .brand small, .footer-brand b, .footer-brand small { display: block; }
.brand b { font: 700 12px Outfit; letter-spacing: .08em; }
.brand small { font-size: 8px; letter-spacing: .12em; color: var(--muted); margin-top: 3px; }
.desktop-nav { display: flex; gap: 22px; font-size: 13px; color: #4d463e; }
.desktop-nav a:hover { color: var(--wine); }
.top-phone { font: 700 13px Outfit; white-space: nowrap; }
.top-cta {
  padding: 11px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.menu-btn { display: none; border: 0; background: none; font-size: 24px; }
.mobile-menu { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 640px;
  background: var(--white);
}
.hero-copy { padding: 92px 6vw 72px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--wine);
  font: 700 11px Outfit;
  letter-spacing: .18em;
  margin-bottom: 22px;
}
.eyebrow span { width: 26px; height: 1px; background: currentColor; display: inline-block; }
.eyebrow.light { color: #e3b6b0; }
.hero h1 {
  font: 700 clamp(56px, 6.5vw, 92px)/.9 Fraunces, Georgia, serif;
  letter-spacing: -.04em;
  margin: 0;
}
.hero h1 i,
.section-top h2 i,
.quote-content h2 i,
.contacts-title h2 i,
.quiz-intro h2 i,
.faq h2 i,
.team h2 i,
.articles h2 i { font-style: italic; color: var(--wine); }
.hero-text {
  font-size: 17px; line-height: 1.65; color: #5c554c;
  max-width: 620px; margin: 28px 0;
}
.hero-actions { display: flex; gap: 26px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 16px 20px;
  border: 1px solid var(--ink);
  font-weight: 700; font-size: 13px; cursor: pointer;
}
.btn.dark { background: var(--ink); color: #fff; }
.btn:hover { transform: translateY(-2px); }
.outline-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.hero-facts { display: flex; gap: 22px; margin-top: 30px; color: var(--muted); font-size: 11px; }
.hero-facts span:before { content: '•'; color: var(--bronze); margin-right: 7px; }

.hero-panel {
  position: relative;
  min-height: 640px;
  background: var(--dark);
  color: #f6efe4;
  overflow: hidden;
  padding: 72px 8% 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-panel:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(166, 124, 61, .22), transparent 32%),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.35));
}
.hero-stamp {
  position: relative;
  width: 92px; height: 92px;
  border: 1px solid rgba(246, 239, 228, .35);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font: 700 12px Fraunces, Georgia, serif;
  letter-spacing: .12em;
  margin-bottom: auto;
}
.hero-file {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 28px 26px;
  max-width: 360px;
  box-shadow: 18px 18px 0 rgba(114, 44, 44, .28);
}
.hero-file small { display: block; font-size: 10px; letter-spacing: .16em; color: var(--wine); }
.hero-file strong {
  display: block;
  font: 700 34px/1 Fraunces, Georgia, serif;
  margin: 10px 0 14px;
}
.hero-file p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.hero-caption { position: relative; margin-top: 28px; }
.hero-caption b, .hero-caption span { display: block; }
.hero-caption b { font: 700 16px Outfit; }
.hero-caption span { font-size: 12px; color: #c9bfb1; margin-top: 4px; }

.services { padding: 110px 6vw 120px; }
.section-top {
  display: grid;
  grid-template-columns: 62% 38%;
  align-items: end;
  margin-bottom: 54px;
}
.section-top h2,
.team h2,
.articles h2,
.faq h2 {
  font: 700 clamp(42px, 5vw, 68px)/.95 Fraunces, Georgia, serif;
  letter-spacing: -.03em;
  margin: 0;
}
.section-top > p { max-width: 420px; color: var(--muted); line-height: 1.65; margin: 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--white);
  padding: 32px 30px 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: #efe6d6; }
.service-main { background: var(--dark); color: #fff; }
.service-main p { color: #cfc6b8; }
.service-main a { color: #fff; }
.service-index { font: 700 11px Outfit; color: var(--bronze); margin-bottom: 18px; letter-spacing: .12em; }
.service-card h3 {
  font: 700 24px/1.15 Fraunces, Georgia, serif;
  margin: 0 0 14px;
  max-width: 480px;
}
.service-card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.service-card a { margin-top: auto; font-size: 12px; font-weight: 700; padding-top: 22px; }
.service-card a span { color: var(--wine); margin-left: 6px; }

.quote-section {
  background: var(--dark);
  color: #fff;
  padding: 110px 6vw;
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 6%;
}
.quote-content h2 {
  font: 700 clamp(44px, 5.4vw, 78px)/.95 Fraunces, Georgia, serif;
  margin: 0;
}
.quote-content > p:last-child {
  font-size: 17px; line-height: 1.7; color: #cfc6b8; max-width: 560px; margin-top: 32px;
}
.quote-side { padding-top: 8px; }
.quote-side span { display: block; color: var(--bronze); font: 700 11px Outfit; letter-spacing: .12em; margin: 0 0 6px; }
.quote-side b { display: block; font: 700 18px Outfit; }
.quote-side p { color: #b7aea2; font-size: 13px; line-height: 1.5; margin: 6px 0 28px; max-width: 280px; }

.team { padding: 72px 6vw 64px; background: var(--white); }
.team .section-top { margin-bottom: 28px; }
.team h2 { font-size: clamp(32px, 3.6vw, 48px); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}
.person-card { background: var(--paper); border: 1px solid var(--line); min-width: 0; }
.person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  background: #ddd4c6;
}
.person-info { padding: 10px 8px 12px; }
.person-info h3 { font: 700 12px/1.25 Outfit; margin: 0 0 4px; }
.person-info p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.3; }

.articles { padding: 110px 6vw 120px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px 24px 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.article-card:hover { border-color: var(--ink); }
.article-tag {
  font: 700 10px Outfit;
  letter-spacing: .14em;
  color: var(--wine);
  margin-bottom: 16px;
}
.article-card h3 { font: 700 22px/1.2 Fraunces, Georgia, serif; margin: 0 0 12px; }
.article-card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.article-more { margin-top: auto; font-size: 12px; font-weight: 700; color: var(--wine); }

.reviews { padding: 110px 6vw; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.review-card { background: var(--white); padding: 26px 28px 30px; }
.review-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.review-top b { font: 700 17px Outfit; }
.review-top span { font: 700 10px Outfit; color: var(--bronze); letter-spacing: .1em; }
.stars { color: var(--bronze); letter-spacing: 2px; margin: 14px 0 12px; }
.review-card p { font-size: 13px; line-height: 1.65; color: var(--muted); margin: 0; }

.contacts {
  padding: 100px 6vw;
  background: var(--cream);
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 6%;
  align-items: center;
}
.contacts-title h2 {
  font: 700 clamp(42px, 5vw, 68px)/.95 Fraunces, Georgia, serif;
  margin: 0;
}
.contacts-title p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 460px; margin-top: 22px; }
.contact-info { border-top: 1px solid #cbbfae; }
.contact-info > div { padding: 20px 0; border-bottom: 1px solid #d2c6b4; }
.contact-info span { display: block; font: 700 10px Outfit; letter-spacing: .14em; color: var(--bronze); margin-bottom: 6px; }
.contact-info strong { display: block; font: 700 22px Outfit; }
.route-link { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font: 700 13px Outfit; color: var(--wine); }

.quiz-section {
  background: var(--wine);
  color: #fff;
  padding: 100px 6vw;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 7%;
}
.quiz-intro h2 {
  font: 700 clamp(44px, 5.4vw, 72px)/.95 Fraunces, Georgia, serif;
  margin: 0;
}
.quiz-intro > p { color: #f1d6d0; font-size: 16px; line-height: 1.65; max-width: 420px; margin: 28px 0; }
.quiz-note { font-size: 13px; color: #f5dfdb; margin: 12px 0; }
.quiz-box { background: var(--white); color: var(--ink); padding: 36px 38px; min-height: 480px; }
.quiz-progress { font: 700 10px Outfit; letter-spacing: .14em; color: #8a8580; display: flex; align-items: center; gap: 16px; }
.quiz-progress > div { height: 3px; background: #e4ddd2; flex: 1; }
.quiz-progress i { display: block; width: 25%; height: 100%; background: var(--wine); transition: .3s; }
.quiz-step { display: none; padding-top: 42px; }
.quiz-step.active { display: block; }
.quiz-step h3 { font: 700 30px Fraunces, Georgia, serif; margin: 0 0 8px; }
.quiz-step > p { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.options button {
  background: #f5f0e6; border: 1px solid #ddd4c6; padding: 16px;
  text-align: left; cursor: pointer; font-weight: 700; min-height: 62px;
}
.options button:hover, .options button.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.quiz-step textarea {
  width: 100%; min-height: 160px; border: 1px solid #d7d0c4;
  padding: 14px; resize: vertical; outline: none; background: #fbf8f2;
}
.quiz-step textarea:focus, .contact-fields input:focus { border-color: var(--wine); }
.contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-fields label { font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.contact-fields label:last-child { grid-column: 1 / -1; }
.contact-fields label span { font-weight: 400; color: #999; }
.contact-fields input {
  width: 100%; border: 0; border-bottom: 1px solid #bdb6ab;
  padding: 12px 0; background: transparent; outline: 0; margin-top: 4px;
}
.consent { display: flex; gap: 8px; align-items: flex-start; font-size: 11px; color: #73716c; margin-top: 20px; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.quiz-back { border: 0; background: none; cursor: pointer; color: #7a7772; font-weight: 700; }
.quiz-next { min-width: 160px; }
.quiz-success { display: none; background: #e9efe6; padding: 16px; margin-top: 18px; }
.quiz-success.show { display: block; }
.quiz-success strong, .quiz-success span { display: block; }
.quiz-success strong { font: 700 16px Outfit; }
.quiz-success span { font-size: 12px; color: #657067; margin-top: 4px; }

.faq {
  padding: 110px 6vw;
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 5%;
}
.faq-head a { display: inline-block; margin-top: 28px; color: var(--wine); font-weight: 700; font-size: 13px; }
.faq-list { border-top: 2px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer;
  font: 700 18px Outfit;
  display: flex; justify-content: space-between; gap: 16px;
  padding: 20px 0;
}
summary::-webkit-details-marker { display: none; }
summary span { color: var(--wine); font-size: 22px; font-weight: 400; }
details p { color: var(--muted); line-height: 1.6; max-width: 640px; margin: 0 0 18px; }

footer { background: var(--ink); color: #fff; padding: 50px 6vw 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 42px; border-bottom: 1px solid #3a342d; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand .brand-mark { border-color: #fff; color: #f0d7a8; }
.footer-brand b { font: 700 12px Outfit; letter-spacing: .08em; }
.footer-brand small { color: #9a9288; font-size: 8px; letter-spacing: .12em; margin-top: 4px; }
.footer-cta { display: flex; align-items: center; gap: 22px; }
.footer-cta span { color: #b7aea2; font-size: 12px; }
.footer-cta > a { padding: 12px 16px; background: #fff; color: var(--ink); font-weight: 700; font-size: 12px; }
.footer-bottom { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 36px; padding-top: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; color: #c9c1b6; font-size: 12px; }
.requisites, .copyright { font-size: 11px; line-height: 1.7; color: #8f877c; }
.copyright { text-align: right; }
.requisites b { color: #d8d0c6; }

.article-page { background: var(--paper); }
.article-hero { padding: 72px 6vw 28px; background: var(--white); border-bottom: 1px solid var(--line); }
.crumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.crumbs a:hover { color: var(--wine); }
.article-hero h1 {
  font: 700 clamp(36px, 5vw, 58px)/1.05 Fraunces, Georgia, serif;
  margin: 0 0 16px;
  max-width: 860px;
}
.article-hero .lead { max-width: 740px; color: #5c554c; font-size: 18px; line-height: 1.6; margin: 0 0 18px; }
.article-meta { display: flex; gap: 18px; color: var(--muted); font-size: 12px; }
.article-layout {
  width: min(calc(100% - 12vw), var(--max));
  margin: 42px auto 90px;
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 36px;
  align-items: start;
}
.article-body { background: var(--white); border: 1px solid var(--line); padding: 38px 40px 44px; }
.article-body h2 { font: 700 30px/1.2 Fraunces, Georgia, serif; margin: 32px 0 12px; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { color: #4a433b; font-size: 16px; line-height: 1.75; margin: 0 0 14px; }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 20px; color: #4a433b; font-size: 16px; line-height: 1.7; }
.article-body li { margin: 0 0 6px; }
.article-note {
  background: #efe6d6;
  border-left: 3px solid var(--wine);
  padding: 16px 18px;
  margin: 28px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a433b;
}
.article-aside { display: grid; gap: 16px; }
.article-side-card { background: var(--white); border: 1px solid var(--line); padding: 22px; }
.article-side-card h3 { font: 700 18px Fraunces, Georgia, serif; margin: 0 0 10px; }
.article-side-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.article-side-card a { display: block; font-size: 14px; line-height: 1.45; margin: 0 0 10px; }
.article-side-card a:hover { color: var(--wine); }
.article-cta-card { background: var(--dark); color: #f6efe4; }
.article-cta-card p { color: #cfc6b8; }
.article-cta-card .btn { background: #fff; color: var(--ink); border-color: #fff; }

@media (max-width: 1100px) {
  .desktop-nav, .top-cta { display: none; }
  .top-phone { font-size: 12px; }
  .menu-btn {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    flex: 0 0 44px;
    cursor: pointer;
  }
  .mobile-menu {
    position: fixed; left: 0; right: 0; top: 82px; z-index: 40;
    display: flex; flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(22, 19, 16, .12);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: .2s;
    max-height: calc(100dvh - 82px);
    overflow: auto;
  }
  .mobile-menu.open { transform: none; opacity: 1; visibility: visible; }
  .mobile-menu a { padding: 16px 24px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero, .quote-section, .contacts, .quiz-section, .faq, .article-layout { grid-template-columns: 1fr; gap: 0; }
  .hero, .hero-panel { min-height: 0; }
  .section-top { display: block; }
  .section-top > p { margin-top: 18px; max-width: 640px; }
  .team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .articles-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
  .quiz-box { margin-top: 28px; }
}

@media (max-width: 767px) {
  section[id], #quiz, #top { scroll-margin-top: 72px; }
  .topbar { height: 64px; padding: 0 16px; gap: 10px; }
  .mobile-menu { top: 64px; max-height: calc(100dvh - 64px); }
  .brand { min-width: 0; gap: 8px; }
  .brand-mark { width: 32px; height: 32px; font-size: 14px; flex: 0 0 32px; }
  .brand span { min-width: 0; }
  .brand b {
    font-size: 11px;
    letter-spacing: .04em;
    line-height: 1.25;
    white-space: normal;
  }
  .top-phone { font-size: 11px; white-space: nowrap; }
  .eyebrow {
    font-size: 9px;
    letter-spacing: .12em;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .hero-copy { padding: 32px 16px 28px; }
  .hero h1 {
    font-size: clamp(32px, 11vw, 40px);
    line-height: 1.05;
    letter-spacing: -.03em;
  }
  .hero-text { font-size: 15px; line-height: 1.55; margin: 18px 0 22px; }
  .quiz-intro h2 br,
  .quote-content h2 br { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .outline-link { align-self: flex-start; }
  .hero-facts { flex-wrap: wrap; gap: 8px 14px; margin-top: 18px; font-size: 11px; }
  .hero-panel { min-height: 0; padding: 28px 16px; }
  .hero-stamp { width: 72px; height: 72px; font-size: 11px; margin-bottom: 24px; }
  .hero-file {
    max-width: none;
    width: 100%;
    padding: 20px 18px;
    box-shadow: 10px 10px 0 rgba(114, 44, 44, .28);
  }
  .hero-file strong { font-size: 26px; }
  .hero-caption { margin-top: 20px; }
  .services, .team, .articles, .reviews, .faq,
  .quote-section, .quiz-section, .contacts { padding: 56px 16px; }
  .article-hero { padding: 40px 16px 24px; }
  .section-top { margin-bottom: 28px; }
  .section-top h2,
  .team h2,
  .articles h2,
  .faq h2,
  .quote-content h2,
  .contacts-title h2,
  .quiz-intro h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }
  .quote-content > p:last-child,
  .contacts-title p,
  .quiz-intro > p { font-size: 15px; margin-top: 16px; max-width: none; }
  .service-grid,
  .articles-grid,
  .reviews-grid,
  .options,
  .contact-fields { grid-template-columns: 1fr; }
  .team { padding: 48px 16px 40px; }
  .team h2 { font-size: clamp(28px, 8vw, 34px); }
  .team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .person-info { padding: 8px 6px 10px; }
  .person-info h3 { font-size: 11px; }
  .person-info p { font-size: 10px; }
  .service-card { min-height: 0; padding: 22px 18px 24px; }
  .service-card h3 { font-size: 22px; }
  .article-card { min-height: 0; padding: 20px 18px; }
  .article-card h3 { font-size: 20px; }
  .quiz-box { padding: 20px 16px; min-height: 0; }
  .quiz-step { padding-top: 24px; }
  .quiz-step h3 { font-size: 24px; line-height: 1.15; }
  .options button { min-height: 52px; width: 100%; }
  .quiz-nav { gap: 12px; flex-wrap: wrap; }
  .quiz-next { min-width: 0; flex: 1; width: auto; }
  .person-card, .service-card, .article-card, .review-card { min-width: 0; }
  .contact-info strong { font-size: 17px; line-height: 1.35; }
  .article-layout { width: calc(100% - 32px); margin: 20px auto 48px; }
  .article-hero h1 { font-size: clamp(28px, 8.5vw, 36px); }
  .article-hero .lead { font-size: 16px; }
  .article-body { padding: 22px 16px 26px; }
  .article-body h2 { font-size: 22px; }
  .article-body p, .article-body li { font-size: 15px; }
  .article-cta-card .btn { width: 100%; }
  footer { padding: 36px 16px 24px; }
  .footer-top, .footer-bottom, .footer-cta { display: block; }
  .footer-cta { margin-top: 22px; }
  .footer-cta > a { display: inline-flex; margin-top: 10px; }
  .footer-links { gap: 10px 14px; margin-bottom: 18px; }
  .copyright { margin-top: 16px; text-align: left; }
  summary { font-size: 16px; padding: 16px 0; }
}
