:root {
  --teal: #009f98;
  --teal-dark: #007c78;
  --aqua: #e7f7f6;
  --aqua-2: #f3fbfa;
  --coral: #ee765e;
  --ink: #1f2a33;
  --muted: #66737d;
  --line: #d8e8e7;
  --white: #ffffff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-logo {
  width: 132px;
  height: auto;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.global-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.global-nav a {
  min-width: 108px;
  padding: 11px 15px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: 2px solid var(--teal);
  border-radius: 6px;
  background: var(--white);
}

.global-nav a:first-child {
  color: var(--white);
  background: var(--teal);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 8px 14px;
  color: var(--teal-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  background: var(--aqua);
  border: 2px solid var(--teal);
  border-radius: 6px;
}

.language-toggle span {
  color: var(--white);
  padding: 2px 8px;
  background: var(--teal);
  border-radius: 4px;
}

html[lang="zh-CN"] .language-toggle strong {
  color: var(--white);
  padding: 2px 8px;
  background: var(--teal);
  border-radius: 4px;
}

html[lang="zh-CN"] .language-toggle span {
  color: var(--teal-dark);
  padding: 0;
  background: transparent;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
  min-width: 0;
}

.header-action {
  display: grid;
  gap: 1px;
  min-width: 112px;
  padding: 8px 12px;
  color: var(--teal-dark);
  text-align: center;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 6px;
}

.header-action.tel {
  min-width: 166px;
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.header-action.contact {
  color: var(--white);
  background: var(--teal);
}

.header-action span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.header-action strong {
  font-size: 15px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.header-action.tel strong {
  font-size: 19px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--aqua-2);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 46%, rgba(231, 247, 246, 0.12) 100%),
    url("./assets/hero-office.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 94px;
  content: "";
  background: linear-gradient(0deg, var(--white), rgba(255, 255, 255, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px) 300px;
  gap: 56px;
  align-items: end;
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 90px 24px 74px;
}

.hero-copy {
  padding: 48px 48px 48px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--teal-dark);
  font-size: clamp(40px, 4.6vw, 66px);
}

.hero h1 .line {
  display: block;
}

@media (min-width: 860px) {
  .hero h1 .line {
    white-space: nowrap;
  }
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #33434d;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 800;
  border: 2px solid transparent;
  border-radius: 6px;
  text-align: center;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--teal);
}

.hero-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(31, 42, 51, 0.08);
}

.hero-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel li {
  padding: 10px 12px;
  color: var(--teal-dark);
  font-weight: 800;
  text-align: center;
  background: var(--aqua);
  border-radius: 6px;
}

.section {
  padding: 88px 0;
}

.section-inner {
  max-width: var(--max);
  padding: 0 24px;
  margin: 0 auto;
  min-width: 0;
}

.split,
.fee-layout,
.office-layout,
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.intro {
  padding-top: 74px;
}

.section h2,
.contact-section h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 248px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pale {
  background: linear-gradient(90deg, var(--aqua) 0 34%, var(--aqua-2) 34% 100%);
}

.fee-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fee-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.fee-table div:last-child {
  border-bottom: 0;
}

.fee-table strong {
  color: var(--teal-dark);
}

.office-box {
  padding: 36px;
  background: var(--aqua-2);
  border-left: 6px solid var(--teal);
}

.office-box dl {
  margin: 28px 0 0;
}

.office-box div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.office-box dt {
  color: var(--teal-dark);
  font-weight: 800;
}

.office-box dd {
  margin: 0;
}

.message {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.representative-photo {
  width: 160px;
  height: 160px;
  margin: 0 0 22px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.message h3 {
  margin: 0 0 18px;
  font-size: 30px;
}

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

.article-list {
  display: grid;
  gap: 12px;
}

.article-list a {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-list time {
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 800;
}

.breadcrumb {
  padding: 14px 0;
  color: var(--muted);
  font-size: 13px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb .section-inner {
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: var(--teal-dark);
  font-weight: 800;
}

.article-hero {
  padding: 84px 0 72px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-2));
}

.article-hero h1 {
  margin: 0;
  color: var(--teal-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.25;
}

.article-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.articles-page {
  background: var(--white);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.article-card {
  display: block;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
}

.article-card time {
  color: var(--teal-dark);
  font-weight: 800;
}

.article-card-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(150px, 22vw, 220px);
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.article-category {
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.45;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card .zh {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.article-card-actions,
.article-language-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-card-actions {
  margin-top: 18px;
}

.article-card-actions a,
.article-language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  background: var(--aqua-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.article-add-note {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--aqua-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-add-note p {
  margin: 0;
}

.article-add-note p + p {
  margin-top: 4px;
  color: var(--muted);
}

.article-detail {
  padding: 72px 0 96px;
  background: var(--white);
}

.article-detail-inner {
  max-width: 900px;
}

.article-detail h1 {
  margin: 0;
  color: var(--teal-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.28;
}

.article-lead {
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 18px;
}

.article-detail time {
  color: var(--teal-dark);
  font-weight: 800;
}

.article-language-switch {
  margin-top: 22px;
}

.article-language-switch a.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.article-visual {
  margin: 30px 0 0;
}

.article-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-lang-block {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.related-articles {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(16, 128, 128, 0.22);
}

.related-articles h2 {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 22px;
}

.related-article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.related-article-list a {
  display: block;
  min-height: 100%;
  padding: 16px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.65;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(16, 128, 128, 0.24);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 71, 86, 0.08);
}

.related-article-list a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.article-lang-block h2 {
  margin: 0 0 24px;
  color: var(--teal-dark);
  font-size: 30px;
}

.article-lang-block h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.45;
}

.article-lang-block h4 {
  margin: 22px 0 10px;
  color: var(--teal-dark);
  font-size: 19px;
}

.article-lang-block p,
.article-lang-block li {
  color: #33434d;
}

.article-lang-block blockquote {
  margin: 20px 0;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--aqua-2);
  border-left: 5px solid var(--teal);
}

.article-lang-block ul {
  padding-left: 1.4em;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
}

.article-table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
}

.article-table-wrap--fit table {
  min-width: 0;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--line);
}

.article-table-wrap th {
  color: var(--teal-dark);
  background: var(--aqua-2);
}

.article-table-wrap--fit th:first-child,
.article-table-wrap--fit td:first-child {
  width: 28%;
  min-width: 6em;
}

.draft-review {
  position: sticky;
  top: 96px;
  z-index: 10;
  max-width: 900px;
  margin: 24px auto 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--coral);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(31, 42, 51, 0.12);
}

.draft-review p {
  margin: 0;
}

.draft-review label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  font-weight: 800;
  cursor: pointer;
}

.draft-review input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.draft-review.is-approved {
  border-color: var(--teal);
}

.draft-review.is-approved .draft-review-note {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-section {
  padding: 96px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.contact-section .section-kicker {
  color: #d6fffb;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.contact-methods span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.contact-methods strong {
  font-size: 20px;
  line-height: 1.25;
}

.contact-inner-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.wechat-qr {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.wechat-qr img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.wechat-qr p {
  margin: 0;
}

.wechat-qr span {
  display: block;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.wechat-qr strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.wp-form-placeholder {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.wp-form-label {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.wp-form-placeholder h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.45;
}

.wp-form-placeholder p:last-child {
  margin: 0;
  color: var(--muted);
}

.wp-form-placeholder .button {
  margin-top: 22px;
}

.contact-form-link {
  width: 100%;
  margin-top: 24px;
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 38px rgba(0, 62, 60, 0.22);
}

.site-footer {
  padding: 28px 0;
  background: #18242b;
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand lang contact";
    gap: 10px;
    padding: 12px 18px;
  }

  .brand {
    grid-area: brand;
  }

  .language-toggle {
    grid-area: lang;
    justify-self: end;
  }

  .header-actions {
    grid-area: contact;
    justify-self: end;
    max-width: 100%;
  }

  .brand-logo {
    width: 104px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero-inner,
  .split,
  .fee-layout,
  .office-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 420px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .article-card-image {
    height: clamp(150px, 48vw, 240px);
  }

  .related-article-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand lang"
      "contact contact";
    gap: 7px 8px;
    padding: 7px 10px 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 74px;
  }

  .brand strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .brand span {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .language-toggle {
    min-height: 34px;
    gap: 4px;
    padding: 5px 7px;
    font-size: 11px;
    border-width: 1px;
  }

  .language-toggle span,
  html[lang="zh-CN"] .language-toggle strong {
    padding: 1px 5px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .header-action {
    min-width: 0;
    min-height: 34px;
    padding: 5px 7px;
    align-content: center;
    border-width: 1px;
  }

  .header-action.tel {
    min-width: 0;
  }

  .header-action span {
    font-size: 10px;
    line-height: 1.2;
  }

  .header-action strong,
  .header-action.tel strong {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.83) 64%, rgba(231, 247, 246, 0.42) 100%),
      url("./assets/hero-office.png") center / cover no-repeat;
  }

  .hero-inner {
    min-height: 0;
    gap: 24px;
    padding: 38px 18px 48px;
  }

  .hero-copy {
    padding: 18px 0 0;
  }

  .hero h1 {
    font-size: clamp(31px, 10vw, 40px);
    line-height: 1.28;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    padding: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .article-hero {
    padding: 54px 0 46px;
  }

  .section-inner {
    padding: 0 18px;
  }

  .split,
  .fee-layout,
  .office-layout,
  .contact-inner {
    gap: 28px;
  }

  .section h2,
  .contact-section h2 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .service-card,
  .office-box,
  .message,
  .contact-form,
  .wp-form-placeholder {
    padding: 20px;
  }

  .representative-photo {
    width: 132px;
    height: 132px;
  }

  .contact-methods {
    margin-top: 22px;
  }

  .contact-methods a,
  .contact-methods div {
    padding: 14px 16px;
  }

  .contact-methods strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .wechat-qr {
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .wechat-qr img {
    width: 96px;
    height: 96px;
  }

  .wechat-qr strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .service-grid,
  .article-list a,
  .fee-table div,
  .office-box div {
    grid-template-columns: 1fr;
  }

  .section-heading.row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pale {
    background: var(--aqua-2);
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 64px;
  }

  .brand strong {
    font-size: 12px;
  }

  .language-toggle {
    padding: 4px 6px;
  }

  .header-action {
    padding: 4px 6px;
  }
}
