/* ==========================================================================
   SeoulShare landing page
   Recreated pixel-faithfully from design_handoff_seoulshare_landing
   (frame 1d = desktop / 1240px canvas, frame 1e = mobile / 375px canvas).
   Breakpoint: 767px and below = mobile layout (frame 1e).
   ========================================================================== */

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/ibm-plex-mono-500.woff2") format("woff2");
}

:root {
  /* Color tokens */
  --bg: #fbf6ed;
  --footer-bg: #f2e9d8;
  --ink: #33291d;
  --body: #7c6f5e;
  --secondary: #6f6250;
  --muted: #a3906f;
  --muted-2: #a08e75;
  --tagline: #8a7a63;
  --clay: #b0512e;
  --clay-hover: #96421f;
  --clay-deep: #9a4a28;
  --stars: #c97b3f;
  --hairline: #e8ddc8;
  --hairline-inner: #e2d5bc;
  --btn-text: #fdf7ec;
  --email-underline: #d6c3a4;
  --review-quote: #574a39;

  /* Type */
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  /* Layout */
  --gutter: 56px;
}

@media (max-width: 767.98px) {
  :root {
    --gutter: 20px;
  }
}

/* ---- Reset ------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

main,
section,
a,
button {
  scroll-margin-top: 12px;
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

/* <main> carries tabindex="-1" as the skip-link target; suppress the focus
   ring that would otherwise wrap the entire page content. */
main:focus {
  outline: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--btn-text);
  padding: 10px 16px;
  z-index: 100;
  font-family: var(--font-mono);
  font-size: 12px;
}

.skip-link:focus {
  left: var(--gutter);
  top: 8px;
}

.mono {
  font-family: var(--font-mono);
}

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.nav__brand {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.nav__dot {
  color: var(--clay);
}

.nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.nav__link {
  transition: color 150ms ease;
}

.nav__link:hover {
  color: var(--ink);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px 2px;
}

.nav__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 767.98px) {
  .nav {
    padding: 16px 20px;
  }

  .nav__brand {
    font-size: 17px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 0 solid var(--hairline);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    /* visibility:hidden takes the closed drawer's links out of the tab
       order and accessibility tree (max-height:0 alone leaves them
       focusable); the 200ms delay keeps them visible during the close
       animation. */
    visibility: hidden;
    transition: max-height 200ms ease, padding 200ms ease, visibility 0s 200ms;
    font-size: 12px;
  }

  .nav__links.is-open {
    max-height: 320px;
    padding: 8px 20px 20px;
    border-bottom-width: 1px;
    visibility: visible;
    /* No visibility delay when opening — links must be usable immediately. */
    transition: max-height 200ms ease, padding 200ms ease, visibility 0s;
  }

  .nav__link {
    padding: 12px 0;
    border-top: 1px solid var(--hairline-inner);
  }

  .nav__link:first-child {
    border-top: 0;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 100px var(--gutter) 60px;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 28px;
}

.hero__title {
  font-size: 62px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 760px;
}

.hero__title-mobile {
  display: none;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  max-width: 560px;
  margin-top: 24px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.btn {
  display: inline-block;
  background: var(--clay);
  color: var(--btn-text);
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 150ms ease;
}

.btn:hover {
  background: var(--clay-hover);
}

.email-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--secondary);
  border-bottom: 1px solid var(--email-underline);
  padding-bottom: 2px;
  transition: color 150ms ease, border-color 150ms ease;
}

.email-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.hero__note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
  max-width: 560px;
}

@media (max-width: 767.98px) {
  .hero {
    padding: 52px 20px 36px;
  }

  .hero__eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }

  .hero__title {
    font-size: 39px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    white-space: nowrap;
    max-width: none;
  }

  .hero__title-desktop {
    display: none;
  }

  .hero__title-mobile {
    display: inline;
  }

  .hero__sub {
    font-size: 15.5px;
    margin-top: 16px;
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 26px;
  }

  .hero__actions .btn {
    text-align: center;
    padding: 15px 0;
  }

  .hero__actions .email-link {
    text-align: center;
    border-bottom: 0;
    font-size: 11.5px;
  }

  .hero__actions .email-link span {
    border-bottom: 1px solid var(--email-underline);
    padding-bottom: 2px;
  }

  .hero__note {
    font-size: 12.5px;
    margin-top: 18px;
    text-align: center;
    max-width: none;
  }
}

/* ==========================================================================
   Hero image band (art-directed: different photo mobile vs desktop)
   ========================================================================== */

.hero-image {
  margin: 0 var(--gutter);
}

.hero-image__frame {
  display: block;
  height: 400px;
  overflow: hidden;
}

.hero-image__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

@media (max-width: 767.98px) {
  .hero-image {
    margin: 0 20px;
  }

  /* The design's 200px-tall band is specified at a 375px canvas (335px
     content width). Fixing the frame to that aspect ratio instead of a
     fixed height keeps the zoom crop's composition identical across the
     whole mobile range — at wider widths a fixed 200px squashes the frame
     and the scale(1.58) zoom pushes faces out of view. */
  .hero-image__frame {
    height: auto;
    aspect-ratio: 335 / 200;
  }

  .hero-image__img {
    object-position: center 70%;
    transform: scale(1.58);
    transform-origin: center 70%;
  }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 28px var(--gutter) 0;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust__dot {
  width: 5px;
  height: 5px;
  background: var(--clay);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .trust {
    flex-direction: column;
    gap: 10px;
    margin: 22px 20px 0;
    padding: 16px 0;
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }

  .trust__dot {
    width: 4px;
    height: 4px;
  }

  .trust__item {
    gap: 8px;
  }
}

/* ==========================================================================
   Why us
   ========================================================================== */

.why {
  padding: 96px var(--gutter) 40px;
}

.why__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 16px;
}

.why__title {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.why__row {
  border-top: 1px solid var(--hairline-inner);
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px 340px 1fr;
  gap: 24px;
}

/* The head wrapper exists for the mobile number+title row; on desktop its
   children join the 3-column grid directly. */
.why__row-head {
  display: contents;
}

.why__row:last-child {
  border-bottom: 1px solid var(--hairline-inner);
}

.why__number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--clay);
  padding-top: 4px;
}

.why__row-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.why__row-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  max-width: 560px;
}

@media (max-width: 767.98px) {
  .why {
    padding: 56px 20px 8px;
  }

  .why__eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .why__title {
    font-size: 27px;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
  }

  .why__row {
    display: block;
    padding: 20px 0;
  }

  .why__row-head {
    display: flex;
    gap: 14px;
    align-items: baseline;
  }

  .why__number {
    font-size: 11px;
    padding-top: 0;
  }

  .why__row-title {
    font-size: 17.5px;
    letter-spacing: -0.01em;
  }

  .why__row-body {
    font-size: 14px;
    margin-top: 10px;
    max-width: none;
  }
}

/* ==========================================================================
   Founder
   ========================================================================== */

.founder {
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 56px;
  align-items: start;
}

.founder__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.founder__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  transform: scale(1.65);
  transform-origin: 54% 59%;
}

.founder__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 16px;
}

.founder__title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.founder__p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
  margin-top: 22px;
  max-width: 560px;
}

.founder__p + .founder__p {
  margin-top: 14px;
}

.founder__quote {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--clay-deep);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-inner);
  max-width: 520px;
}

.founder__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-top: 32px;
}

.founder__fact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 5px;
}

.founder__fact-value {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .founder {
    padding: 48px 20px;
    display: block;
  }

  .founder__body {
    margin-top: 26px;
  }

  .founder__eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .founder__title {
    font-size: 24px;
    letter-spacing: -0.02em;
  }

  .founder__p {
    font-size: 14px;
    margin-top: 16px;
    max-width: none;
  }

  .founder__p + .founder__p {
    margin-top: 12px;
  }

  .founder__quote {
    font-size: 17px;
    line-height: 1.55;
    margin-top: 20px;
    padding-top: 18px;
    max-width: none;
  }

  .founder__facts {
    gap: 16px 18px;
    margin-top: 24px;
  }

  .founder__fact-label {
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .founder__fact-value {
    font-size: 13px;
  }
}

/* ==========================================================================
   Sample itineraries (Tours)
   ========================================================================== */

.tours {
  padding: 16px var(--gutter) 40px;
}

.tours__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.tours__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 16px;
}

.tours__title {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.tours__sub {
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.65;
  color: var(--tagline);
  margin-top: 14px;
  max-width: 640px;
}

.tours__note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

.tours__list {
  margin-top: 24px;
}

.tour {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--hairline);
  padding: 48px 0;
}

.tour:last-child {
  border-bottom: 1px solid var(--hairline);
}

/* <picture> is the actual grid item; size the crop on it so every chapter's
   photo is identical (440px column, 4:5) regardless of source dimensions. */
.tour picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.tour__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour__region {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--clay);
}

.tour__name {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-top: 10px;
}

.tour__tagline {
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.6;
  color: var(--tagline);
  margin-top: 10px;
  max-width: 560px;
}

.tour__tracks {
  margin-top: 26px;
}

.tour__track {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 20px;
  border-top: 1px solid var(--hairline-inner);
  padding: 17px 0;
}

.tour__track-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--clay);
  padding-top: 3px;
}

.tour__track-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--body);
}

.tour__closing {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--clay-deep);
  border-top: 1px solid var(--hairline-inner);
  padding-top: 17px;
}

@media (max-width: 767.98px) {
  .tours {
    padding: 8px 20px 24px;
  }

  .tours__eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .tours__head {
    display: block;
    margin-bottom: 0;
  }

  .tours__title {
    font-size: 27px;
    letter-spacing: -0.025em;
  }

  .tours__sub {
    font-size: 14px;
    margin-top: 10px;
    max-width: none;
  }

  .tours__note {
    display: none;
  }

  .tours__list {
    margin-top: 0;
  }

  .tour {
    display: block;
    border-top: 1px solid var(--hairline);
    margin-top: 16px;
    padding: 24px 0 0;
  }

  .tours__list .tour:first-child {
    margin-top: 24px;
  }

  .tour:last-child {
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 24px;
  }

  .tour picture {
    aspect-ratio: 16 / 10;
  }

  .tour__image {
    object-position: var(--mobile-op, center);
  }

  .tour__region {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    margin-top: 20px;
  }

  .tour__name {
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-top: 8px;
    line-height: 1.25;
  }

  .tour__tagline {
    font-size: 14px;
    margin-top: 8px;
    max-width: none;
  }

  .tour__tracks {
    margin-top: 16px;
  }

  .tour__track {
    display: block;
    padding: 14px 0;
  }

  .tour__track-label {
    font-size: 9.5px;
    padding-top: 0;
  }

  .tour__track-body {
    font-size: 13.5px;
    margin-top: 7px;
  }

  .tour__closing {
    font-size: 13px;
    padding-top: 14px;
  }
}

/* ==========================================================================
   Process
   ========================================================================== */

.process {
  padding: 64px var(--gutter) 40px;
}

.process__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 44px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process__step {
  border-top: 2px solid var(--clay);
  padding-top: 18px;
}

.process__number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
}

.process__step-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process__step-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
}

@media (max-width: 767.98px) {
  .process {
    padding: 32px 20px 24px;
  }

  .process__title {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }

  .process__grid {
    display: block;
    margin-top: 20px;
  }

  .process__step {
    padding: 14px 0 18px;
  }

  .process__number {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .process__step-title {
    font-size: 15.5px;
    margin-bottom: 6px;
  }

  .process__step-body {
    font-size: 13.5px;
  }
}

/* ==========================================================================
   Reviews (hidden until SHOW_REVIEWS is enabled — see scripts/data.py)
   ========================================================================== */

.reviews {
  padding: 64px var(--gutter) 80px;
}

.reviews__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews__card {
  border-top: 1px solid var(--hairline-inner);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews__stars {
  color: var(--stars);
  font-size: 12px;
  letter-spacing: 3px;
}

.reviews__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--review-quote);
}

.reviews__name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
}

.reviews__detail {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 767.98px) {
  .reviews {
    padding: 40px 20px 48px;
  }

  .reviews__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  border-top: 1px solid var(--hairline);
  padding: 104px var(--gutter);
  text-align: center;
}

.contact__title {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.contact__sub {
  font-size: 16px;
  color: var(--body);
  margin-top: 16px;
}

.contact__email-wrap {
  margin-top: 32px;
}

.contact__email {
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--clay-deep);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 3px;
  transition: color 150ms ease, border-color 150ms ease;
}

.contact__email:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.contact__btn-wrap {
  margin-top: 32px;
}

.contact .btn {
  padding: 15px 32px;
}

.contact__note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-2);
  margin-top: 28px;
}

@media (max-width: 767.98px) {
  .contact {
    padding: 64px 20px;
  }

  .contact__title {
    font-size: 30px;
    letter-spacing: -0.025em;
  }

  .contact__sub {
    font-size: 14px;
    margin-top: 12px;
  }

  .contact__email-wrap {
    margin-top: 22px;
  }

  .contact__email {
    font-size: 17px;
    padding-bottom: 2px;
  }

  .contact__btn-wrap {
    margin-top: 24px;
  }

  .contact .btn {
    display: block;
    padding: 15px 0;
  }

  .contact__note {
    font-size: 12.5px;
    margin-top: 20px;
  }
}

/* ==========================================================================
   Tablet range (768–1099px) — between the two design canvases.
   The 1d frame fixes image/title columns at 440px/340px for a 1240px
   canvas; at narrower desktop widths those fixed columns squeeze the text
   into a sliver. Scale them with the viewport here; exact design values
   apply again from 1100px up.
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1099px) {
  :root {
    --gutter: min(56px, 4.5vw);
  }

  .why__row {
    grid-template-columns: 64px minmax(0, 30vw) 1fr;
  }

  .founder,
  .tour {
    grid-template-columns: min(40vw, 440px) 1fr;
    gap: 40px;
  }

  .tours__head {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Track label above its paragraph (as on mobile) — a 168px label column
     inside the narrowed text column leaves the copy only a few words wide. */
  .tour__track {
    display: block;
  }

  .tour__track-body {
    margin-top: 7px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--hairline);
  padding: 40px var(--gutter) 36px;
}

.footer__brand {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer__legal {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--secondary);
}

@media (max-width: 767.98px) {
  .footer {
    padding: 32px 20px 28px;
  }

  .footer__brand {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer__legal {
    font-size: 11.5px;
  }
}
