:root {
  --bg: #f8f5ee;
  --surface: #fffdf8;
  --surface-blue: #eef5f4;
  --ink: #1d2838;
  --ink-strong: #071a3d;
  --muted: #4f5b68;
  --line: #ded8cc;
  --blue-gray: #557987;
  --green: #5f8269;
  --green-soft: #e8f0ea;
  --clay: #b87464;
  --sand: #e7d6bd;
  --shadow: 0 18px 44px rgba(29, 40, 56, 0.08);
  --radius: 8px;
  --content: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(85, 121, 135, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 8px 12px;
  color: #fff;
  background: var(--ink-strong);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  padding: 14px max(20px, calc((100vw - var(--content)) / 2));
  background: rgba(248, 245, 238, 0.92);
  border-bottom: 1px solid rgba(222, 216, 204, 0.78);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 245, 238, 0.97);
  box-shadow: 0 8px 28px rgba(29, 40, 56, 0.08);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.2;
}

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

.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 13px;
}

.nav a {
  flex: 0 0 auto;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink-strong);
  border-color: var(--ink-strong);
}

.nav a.is-active,
.nav a[aria-current="page"] {
  color: var(--ink-strong);
  border-color: var(--green);
}

.hero,
.section,
.signal-strip,
.site-footer {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  overflow: visible;
  background: #fffdf8;
  border-bottom: 1px solid rgba(222, 216, 204, 0.8);
}

.hero::before {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.hero-copy-heading {
  padding: 42px 0 34px;
}

.hero-copy-body {
  padding: 34px 0 58px;
}

.hero-heading,
.hero-body {
  min-width: 0;
}

.hero-body {
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-strong);
  line-height: 1.34;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: 50px;
  font-weight: 680;
}

h1 span {
  display: block;
}

.mobile-title-break {
  display: inline;
}

h2 {
  font-size: 36px;
  font-weight: 660;
}

h3 {
  font-size: 21px;
  font-weight: 660;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 760px;
  color: var(--ink-strong);
  font-size: 21px;
  font-weight: 620;
  line-height: 1.75;
}

.hero-lead span {
  display: block;
}

.hero-description {
  max-width: 760px;
  margin-top: 14px;
  color: #253247;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  color: var(--ink-strong);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid var(--ink-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(29, 40, 56, 0.1);
}

.button-primary {
  color: #fff;
  background: var(--ink-strong);
}

.button-primary:hover {
  background: #132b54;
}

.button-secondary {
  background: rgba(255, 253, 248, 0.82);
}

.button-secondary:hover {
  background: #fff;
}

.hero-note {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: clamp(300px, 34vw, 500px);
  margin: 0;
  overflow: hidden;
  background: #fffdf8;
  border-bottom: 1px solid rgba(222, 216, 204, 0.7);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.signal-strip div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 18px 22px;
  background: rgba(255, 253, 248, 0.9);
}

.signal-strip span {
  color: var(--muted);
  font-size: 12px;
}

.signal-strip strong {
  color: var(--ink-strong);
  font-size: 15px;
  line-height: 1.55;
}

.section {
  padding: 80px 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.section-tint {
  position: relative;
}

.section-tint::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: rgba(238, 245, 244, 0.45);
  border-top: 1px solid rgba(222, 216, 204, 0.7);
  border-bottom: 1px solid rgba(222, 216, 204, 0.7);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.page-hero {
  padding-top: 96px;
  padding-bottom: 54px;
}

.section-intro {
  margin-top: 14px;
  color: var(--muted);
}

.text-link {
  color: var(--ink-strong);
  font-weight: 800;
  border-bottom: 1px solid rgba(7, 26, 61, 0.28);
}

.text-link:hover {
  border-color: var(--ink-strong);
}

.about-grid,
.scope-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.scope-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.scope-grid > * {
  height: 100%;
}

.large-text {
  color: var(--ink-strong);
  font-size: 25px;
  font-weight: 620;
  line-height: 1.65;
}

.text-stack {
  display: grid;
  gap: 14px;
  color: #253247;
}

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

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

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

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

.card-grid.single-card {
  grid-template-columns: minmax(0, 760px);
}

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

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

.audience-card,
.action-card,
.value-card,
.scope-card,
.field-card,
.path-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 26px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.path-card {
  min-height: 240px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.path-card:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 121, 135, 0.42);
  box-shadow: 0 22px 46px rgba(29, 40, 56, 0.11);
}

.audience-card {
  min-height: 210px;
}

.audience-card h3 {
  font-size: 19px;
}

.audience-card p,
.action-card p,
.value-card p,
.scope-card p,
.path-card p {
  color: #253247;
}

.action-card {
  min-height: 300px;
}

.action-card h3,
.value-card h3 {
  font-size: 20px;
}

.action-card p + p {
  padding-top: 12px;
  border-top: 1px solid rgba(222, 216, 204, 0.8);
}

.value-card {
  min-height: 190px;
  box-shadow: none;
}

.value-card:nth-child(1) {
  border-top: 3px solid var(--clay);
}

.value-card:nth-child(2) {
  border-top: 3px solid var(--green);
}

.value-card:nth-child(3) {
  border-top: 3px solid var(--blue-gray);
}

.value-card:nth-child(4) {
  border-top: 3px solid var(--sand);
}

.field-card {
  min-height: 370px;
}

.field-card:nth-child(1) {
  border-top: 3px solid var(--clay);
}

.field-card:nth-child(2) {
  border-top: 3px solid var(--green);
}

.field-card:nth-child(3) {
  border-top: 3px solid var(--blue-gray);
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.number {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
}

.status-label {
  padding: 4px 8px;
  color: var(--blue-gray);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  background: rgba(85, 121, 135, 0.09);
  border: 1px solid rgba(85, 121, 135, 0.16);
  border-radius: var(--radius);
}

.field-card p,
.profile-box p,
.contact-form,
.collaboration-box,
.caution-box,
.thought-box,
.foundation-note,
.contact-examples {
  color: #253247;
}

.card-note {
  padding-top: 12px;
  color: var(--muted) !important;
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.foundation-note {
  max-width: 980px;
  margin: -10px 0 24px;
  padding: 18px 20px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(85, 121, 135, 0.18);
  border-left: 3px solid var(--blue-gray);
  border-radius: var(--radius);
}

.reading-stack {
  display: grid;
  gap: 18px;
  max-width: 960px;
}

.reading-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: #253247;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reading-card h2 {
  font-size: 26px;
}

.reading-card p {
  line-height: 1.95;
}

.shared-message {
  border-left: 3px solid var(--green);
}

.contact-cta-section {
  padding-top: 28px;
}

.contact-cta-card {
  gap: 12px;
  border-left: 3px solid var(--blue-gray);
  box-shadow: none;
}

.contact-cta-card h2 {
  font-size: 25px;
}

.contact-cta-card .button {
  margin-top: 4px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-width: 0;
  padding: 16px 16px 16px 40px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 20px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.compact-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-list li {
  min-height: 76px;
  display: flex;
  align-items: center;
  line-height: 1.55;
}

.caution-box {
  max-width: 980px;
  margin-top: 26px;
  padding: 26px;
  background: rgba(231, 214, 189, 0.28);
  border: 1px solid rgba(184, 116, 100, 0.22);
  border-radius: var(--radius);
}

.scope-caution {
  display: grid;
  align-content: start;
  gap: 14px;
  margin-top: 0;
  box-shadow: var(--shadow);
}

.scope-card h3,
.scope-caution h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.thought-box {
  display: grid;
  gap: 14px;
  max-width: 980px;
  padding: 28px 30px;
  background: rgba(255, 253, 248, 0.74);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
}

.collaboration-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  max-width: 1080px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.collaboration-box h2 {
  margin-bottom: 14px;
}

.collaboration-box p + p {
  margin-top: 10px;
}

.collaboration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-list > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  background: var(--blue-gray);
  border-radius: 50%;
}

.flow-list h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.flow-list p {
  color: #253247;
}

.reply-note {
  max-width: 980px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.profile-box {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  max-width: 980px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-name {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.profile-name h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.profile-name p {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  background: var(--green-soft);
  border: 1px solid rgba(95, 130, 105, 0.18);
  border-radius: var(--radius);
}

.muted {
  color: var(--muted) !important;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-examples {
  max-width: 980px;
  margin-bottom: 20px;
  padding: 22px 24px;
  background: rgba(238, 245, 244, 0.42);
  border: 1px solid rgba(85, 121, 135, 0.18);
  border-radius: var(--radius);
}

.contact-examples h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.contact-examples ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-examples li {
  position: relative;
  padding-left: 18px;
  line-height: 1.65;
}

.contact-examples li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-gray);
  border-radius: 50%;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink-strong);
  font-weight: 800;
}

.contact-form em,
.contact-form small {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}

.contact-form em {
  color: var(--clay);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfc8bd;
  border-radius: var(--radius);
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 170px;
  padding: 12px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer a:hover {
  color: var(--ink-strong);
}

.legal {
  max-width: 920px;
}

.legal h1 {
  font-size: 42px;
}

.legal h2 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 22px;
}

.legal p + p {
  margin-top: 12px;
}

.thanks {
  min-height: calc(100vh - 220px);
}

.thanks-box {
  max-width: 760px;
  padding: 32px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thanks-box p {
  margin-top: 14px;
  color: #253247;
}

.thanks-box .button {
  margin-top: 24px;
}

@media (max-width: 1040px) {
  .hero {
    display: block;
    border-bottom: 1px solid rgba(222, 216, 204, 0.8);
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(calc(100% - 40px), var(--content));
  }

  .hero-copy-heading {
    padding: 34px 0 28px;
  }

  .hero-copy-body {
    padding: 30px 0 50px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    height: auto;
  }

  .hero-visual img {
    display: block;
    height: auto;
    aspect-ratio: 1280 / 548;
    object-fit: contain;
  }

  .about-grid,
  .audience-grid,
  .action-grid,
  .card-grid,
  .path-grid,
  .value-grid,
  .compact-list,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .check-list,
  .scope-grid,
  .contact-examples ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-card {
    min-height: auto;
  }

  .collaboration-box {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .collaboration-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 1.75;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    min-height: auto;
    padding: 10px 18px 9px;
  }

  .brand-logo {
    width: 96px;
  }

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

  .nav {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    gap: 4px 14px;
    font-size: 12px;
    line-height: 1.4;
  }

  .nav-wide {
    display: none;
  }

  .nav a {
    padding: 1px 0;
    white-space: normal;
  }

  .section,
  .signal-strip,
  .site-footer {
    width: auto;
    margin-right: 22px;
    margin-left: 22px;
  }

  .hero-copy {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .hero {
    padding-top: 0;
  }

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

  .hero-copy-body {
    padding: 24px 0 42px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.42;
  }

  .mobile-title-break {
    display: block;
  }

  h1,
  h2,
  h3,
  p,
  li {
    line-break: strict;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-lead {
    font-size: 15.5px;
    line-height: 1.85;
  }

  .hero-lead span {
    display: inline;
  }

  .hero-description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.85;
  }

  .section-intro,
  .text-stack,
  .audience-card p,
  .action-card p,
  .path-card p,
  .field-card p,
  .value-card p,
  .flow-list p,
  .contact-examples,
  .contact-form {
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .button {
    min-height: 46px;
    padding: 10px 16px;
  }

  .hero-note {
    font-size: 12px;
  }

  .hero-visual {
    background: linear-gradient(180deg, #fffdf8 0%, #fbf7ee 100%);
  }

  .hero-visual img {
    aspect-ratio: 1280 / 548;
    opacity: 0.96;
    filter: saturate(0.96) brightness(1.02);
  }

  .signal-strip,
  .about-grid,
  .audience-grid,
  .action-grid,
  .card-grid,
  .path-grid,
  .value-grid,
  .check-list,
  .compact-list,
  .scope-grid,
  .flow-list,
  .profile-box,
  .form-grid,
  .contact-examples ul {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 16px;
  }

  .signal-strip div {
    padding: 15px 16px;
  }

  .section {
    padding: 52px 0;
  }

  .page-hero {
    padding-top: 50px;
    padding-bottom: 34px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .about-grid {
    gap: 18px;
  }

  .large-text {
    font-size: 21px;
  }

  .audience-card,
  .action-card,
  .value-card,
  .field-card,
  .path-card,
  .scope-card,
  .flow-list li,
  .profile-box,
  .collaboration-box,
  .thought-box,
  .contact-examples,
  .contact-form,
  .thanks-box {
    padding: 20px;
  }

  .audience-card {
    min-height: auto;
  }

  .compact-list li {
    min-height: auto;
  }

  .action-card,
  .value-card {
    min-height: auto;
  }

  .collaboration-actions,
  .collaboration-actions .button {
    width: 100%;
  }

  .profile-name {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 28px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 27px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
