:root {
  --bg: #f6f2ed;
  --paper: #fffaf5;
  --ink: #2b2623;
  --muted: #746b64;
  --quiet: #a99b91;
  --line: #e4dbd3;
  --soft: #efe8e1;
  --bronze: #6e4b63;
  --espresso: #2b2623;
  --violet: #6e4b63;
  --violet-soft: #eadfe7;
  --taupe: #b7a79a;
  --green: #365a46;
  --green-soft: #e5ece6;
  --max: 1180px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/cormorant-500.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/cormorant-600.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("assets/cormorant-italic-500.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 30;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--espresso);
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 22px max(26px, calc((100vw - var(--max)) / 2));
  background: rgba(246, 242, 237, 0.9);
  border-bottom: 1px solid rgba(228, 219, 211, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 188px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.site-nav a,
.contact-links a,
.journal-feature a {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.contact-links a:hover,
.journal-feature a:hover,
.article-list a:hover {
  color: var(--bronze);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-cta,
.btn.primary {
  background: var(--espresso);
  color: var(--paper);
  border-color: var(--espresso);
}

.header-cta:hover,
.btn.primary:hover {
  background: #493f3a;
}

.btn.secondary {
  color: var(--espresso);
  background: rgba(255, 250, 245, 0.6);
  border-color: var(--line);
}

.btn.secondary:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

.btn.light {
  color: var(--espresso);
  background: var(--paper);
  border-color: var(--paper);
}

.nav-toggle {
  display: none;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 560px);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 62px 0 72px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 820px;
  margin-top: 0;
  font-size: clamp(50px, 5.9vw, 84px);
}

.hero h1,
.service-hero h1 {
  margin-top: 22px;
}

h1 em,
h2 em {
  display: block;
  color: var(--bronze);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.72;
}

.hero-lede p {
  margin: 0 0 14px;
}

.hero-lede p:last-child {
  margin-bottom: 0;
  color: var(--espresso);
}

.trust-line {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  margin: 0;
  align-self: center;
  aspect-ratio: 16 / 10;
  min-height: auto;
  padding: 12px;
  background: linear-gradient(135deg, rgba(110, 75, 99, 0.16), rgba(183, 167, 154, 0.18));
  border: 1px solid rgba(228, 219, 211, 0.92);
  border-radius: 4px;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(0.94) brightness(1.03);
}

.hero-media figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 14px 16px;
  background: rgba(255, 250, 245, 0.88);
  border: 1px solid rgba(228, 219, 211, 0.92);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 13px;
}

.hero-media figcaption img {
  width: 28px;
  height: 28px;
  opacity: 0.72;
}

.authority {
  padding: 94px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.authority-strip span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 16px 12px;
  color: var(--espresso);
  background: rgba(255, 250, 245, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.authority-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 7vw, 104px);
  margin-top: 28px;
}

.authority h2,
.section-heading h2,
.advisor h2,
.testimonials h2,
.journal h2,
.contact h2 {
  font-size: clamp(42px, 5.2vw, 72px);
}

.authority p,
.advisor p,
.journal-intro p,
.contact-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.72;
}

.authority .statement {
  margin-top: 28px;
  color: var(--espresso);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
}

.services,
.audience,
.local-seo,
.advisor,
.testimonials,
.journal,
.faq,
.contact {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.46fr minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  margin-bottom: 48px;
}

.section-heading.compact {
  max-width: 930px;
}

.services-intro {
  max-width: 780px;
  margin: -18px 0 46px auto;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(27px, 2.8vw, 41px);
  line-height: 1.08;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 350px;
  padding: 36px 30px 34px;
  background: rgba(255, 250, 245, 0.55);
  border-right: 1px solid var(--line);
}

.service-card:nth-child(2) {
  background: rgba(234, 223, 231, 0.38);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  background: rgba(229, 236, 230, 0.5);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.service-card span {
  color: var(--bronze);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.service-card h3,
.audience-grid h3,
.journal-feature h3 {
  margin: 72px 0 16px;
  color: var(--espresso);
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.service-card p,
.audience-grid p,
.journal-feature p,
.article-list a,
blockquote cite {
  color: var(--muted);
}

.service-card .fit {
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.service-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--espresso);
  border-bottom: 1px solid var(--bronze);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.audience-grid article {
  min-height: 270px;
  padding: 26px;
  background: var(--bg);
}

.audience-grid h3 {
  margin: 0 0 18px;
  font-size: 19px;
}

.local-seo {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-seo h2 {
  margin-top: 18px;
  font-size: clamp(42px, 5.2vw, 72px);
}

.local-seo p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.72;
}

.advisor {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.advisor-media {
  padding: 12px;
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid var(--line);
}

.advisor-media img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(0.94) brightness(1.03);
}

.advisor-copy h2 {
  margin: 22px 0 30px;
}

.brand-symbol {
  display: inline-grid;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  place-items: center;
  background: rgba(234, 223, 231, 0.62);
  border: 1px solid rgba(110, 75, 99, 0.2);
}

.brand-symbol img {
  width: 42px;
  height: 42px;
  opacity: 0.82;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.credential-row span {
  padding: 9px 12px;
  color: var(--green);
  background: rgba(229, 236, 230, 0.82);
  border: 1px solid rgba(54, 90, 70, 0.13);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quote-grid,
.result-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.result-grid {
  grid-template-columns: repeat(3, 1fr);
}

.result-grid article {
  min-height: 390px;
  padding: 30px;
  background: rgba(255, 250, 245, 0.58);
}

.result-grid blockquote {
  min-height: 0;
  margin: 0 0 26px;
  padding: 0;
  background: transparent;
}

.result-grid blockquote p {
  font-size: clamp(28px, 2.65vw, 38px);
}

.result-grid span {
  display: inline-block;
  margin: 24px 0 8px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.result-grid span:first-child {
  margin-top: 0;
}

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

.result-grid strong {
  display: block;
  margin-top: 26px;
  color: var(--espresso);
  font-size: 13px;
}

blockquote {
  min-height: 280px;
  margin: 0;
  padding: 30px 26px;
  background: rgba(255, 250, 245, 0.58);
}

blockquote p {
  margin: 0;
  color: var(--espresso);
  font-family: var(--display);
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.02;
}

blockquote:not(.featured-quote) p {
  font-size: clamp(24px, 2vw, 31px);
}

blockquote cite {
  display: block;
  margin-top: 26px;
  font-size: 13px;
  font-style: normal;
}

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

.journal-intro {
  max-width: 780px;
}

.journal-intro h2 {
  margin-top: 18px;
}

.journal-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0 34px;
}

.journal-feature article {
  min-height: 245px;
  padding: 28px;
  background: rgba(255, 250, 245, 0.54);
  border: 1px solid var(--line);
}

.journal-feature span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-feature h3 {
  margin: 54px 0 14px;
}

.journal-feature a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--espresso);
  border-bottom: 1px solid var(--bronze);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

summary {
  cursor: pointer;
  color: var(--espresso);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--bronze);
  font-family: var(--font);
  font-size: 26px;
}

details[open] summary::after {
  content: "-";
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 250, 245, 0.48);
  border: 1px solid rgba(228, 219, 211, 0.78);
}

.article-list a {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(228, 219, 211, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.cluster-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cluster-map article {
  min-height: 210px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cluster-map span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cluster-map h3 {
  margin: 28px 0 12px;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.12;
}

.cluster-map p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 30px;
  padding: 82px clamp(24px, 7vw, 92px);
  color: var(--paper);
  background: var(--espresso);
  text-align: center;
}

.final-cta img {
  width: 38px;
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.final-cta h2 {
  max-width: 860px;
  color: var(--paper);
  font-size: clamp(42px, 5.2vw, 76px);
}

.final-cta h2 em {
  color: #d9c8d3;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: 82px 0 92px;
  border-bottom: 1px solid var(--line);
}

.service-hero h1 {
  max-width: 860px;
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.72;
}

.service-aside {
  padding: 28px;
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid var(--line);
}

.service-aside img {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  opacity: 0.78;
}

.service-aside h2 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.service-aside ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  padding: 96px 0;
}

.service-detail h2,
.service-faq h2,
.related-links h2 {
  font-size: clamp(42px, 5.2vw, 72px);
}

.service-detail p,
.service-detail li,
.service-faq p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.service-detail ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.related-links {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

.related-grid a {
  min-height: 140px;
  padding: 24px;
  color: var(--espresso);
  background: rgba(255, 250, 245, 0.58);
  font-weight: 600;
}

.service-faq {
  padding: 90px 0;
}

.contact h2 {
  margin: 22px 0 24px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: var(--espresso);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 253, 255, 0.72);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--bronze);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer img {
  width: 150px;
  height: auto;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--espresso);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero,
  .authority-copy,
  .authority-strip,
  .local-seo,
  .advisor,
  .service-hero,
  .service-detail,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 16 / 10;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-list,
  .audience-grid,
  .quote-grid,
  .result-grid,
  .related-grid,
  .journal-feature,
  .cluster-map {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(3) {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(n + 4) {
    border-top: 0;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card h3 {
    margin-top: 64px;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    padding: 16px;
  }

  .brand img {
    width: 154px;
  }

  .hero {
    padding: 42px 0 58px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .authority h2,
  .local-seo h2,
  .service-detail h2,
  .service-faq h2,
  .related-links h2,
  .section-heading h2,
  .advisor h2,
  .testimonials h2,
  .journal h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-media figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .authority,
  .services,
  .audience,
  .advisor,
  .testimonials,
  .journal,
  .contact {
    padding: 76px 0;
  }

  .article-list {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .final-cta {
    width: 100%;
    padding: 68px 18px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 16px;
  }
}
