:root {
  --navy: #202652;
  --navy-2: #111936;
  --gold: #8b6f47;
  --gold-dark: #6b5638;
  --paper: #f8fafc;
  --cream: #f5f0e6;
  --white: #ffffff;
  --ink: #202434;
  --text: #354052;
  --muted: #667085;
  --line: #e2e8f0;
  --blue: #2563eb;
  --shadow: 0 20px 45px rgba(20, 30, 60, 0.12);
  --content-width: 1160px;
  --section-gap: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.7;
}

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

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

button,
input {
  font: inherit;
}

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

.container {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  max-width: min(1580px, calc(100% - 28px));
  min-height: 82px;
  margin: 0 auto;
}

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

.brand-logo {
  width: 178px;
  max-height: 68px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.74vw, 12px);
  color: #2c3b45;
  font-size: clamp(0.74rem, 0.76vw, 0.86rem);
  font-weight: 700;
}

.nav-links > a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-links > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links > a:hover::after,
.nav-link:hover::after,
.nav-item:focus-within .nav-link::after,
.active-link::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 150px;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid rgba(223, 230, 234, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-menu.wide {
  min-width: 218px;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #f7f9fb;
  color: var(--blue);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-assess,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 4px;
  color: var(--white);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-assess:hover,
.nav-cta:hover {
  color: var(--white);
  background: var(--gold-dark);
}

.nav-social,
.footer-social-item {
  position: relative;
  display: inline-flex;
}

.nav-social-button,
.footer-social-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-social-button img,
.footer-social-button > img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.nav-qr-popover,
.footer-qr-popover {
  position: absolute;
  left: 50%;
  z-index: 65;
  width: 190px;
  padding: 12px;
  border: 1px solid rgba(223, 230, 234, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  color: var(--ink);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-qr-popover {
  top: calc(100% + 12px);
  transform: translate(-50%, 8px);
}

.nav-qr-popover::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.nav-qr-popover strong,
.footer-qr-popover strong {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.84rem;
}

.nav-qr-popover img,
.footer-qr-popover img {
  width: 100%;
  border-radius: 6px;
}

.has-qr:hover .nav-qr-popover,
.has-qr:focus-within .nav-qr-popover,
.footer-social-item:hover .footer-qr-popover,
.footer-social-item:focus-within .footer-qr-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 8px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 700;
}

.hero-section {
  width: min(1160px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 52px 34px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(32, 38, 82, 0.12);
  color: var(--white);
}

.hero-section .container {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 38px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.05rem, 3.4vw, 3.3rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.primary-btn {
  background: var(--gold);
  color: var(--white);
}

.primary-btn:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.secondary-btn:hover {
  background: var(--white);
  color: var(--navy);
}

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

.hero-panel > div {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel .brand-card {
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--white);
}

.brand-card img {
  width: 240px;
  max-width: 100%;
  margin-bottom: 18px;
}

.hero-panel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 4px 0;
  color: var(--white);
  font-size: clamp(1.16rem, 1.5vw, 1.58rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.hero-panel .brand-card strong {
  color: var(--navy);
  font-size: clamp(1.18rem, 1.7vw, 1.72rem);
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.hero-panel .brand-card p {
  color: var(--gold);
  font-weight: 900;
}

h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.28;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.16rem;
}

.section-band {
  width: min(1160px, calc(100% - 40px));
  margin: var(--section-gap) auto 0;
  padding: 44px 0;
  border-radius: 8px;
  overflow: hidden;
}

.alt-paper {
  background: var(--paper);
}

.alt-cream {
  background: var(--cream);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.intro-section p:last-child,
.section-heading p {
  margin: 0;
  color: var(--muted);
}

.intro-section .section-kicker,
.section-heading .section-kicker,
.mission-copy .section-kicker {
  margin-bottom: 12px;
  color: var(--gold);
}

.hero-copy .eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.philosophy-copy {
  align-self: center;
}

.philosophy-copy h2 {
  margin-bottom: 22px;
}

.philosophy-copy p:not(.section-kicker) {
  max-width: 430px;
  line-height: 1.82;
}

.meaning-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

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

.meaning-grid article,
.service-grid a,
.mission-card,
.philosophy-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.meaning-grid article {
  display: grid;
  justify-items: center;
  min-height: 268px;
  padding: 34px 24px;
  text-align: center;
}

.meaning-grid span {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
}

.meaning-grid p,
.service-grid p,
.mission-layout p {
  margin: 12px 0 0;
  color: var(--muted);
}

.philosophy-layout,
.mission-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 42px;
  align-items: center;
}

.mission-copy {
  align-self: center;
}

.philosophy-list {
  display: grid;
  gap: 16px;
}

.philosophy-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 118px;
  padding: 22px;
}

.philosophy-list span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-weight: 900;
}

.philosophy-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.choose-banner {
  width: 100%;
  margin: 0 auto 34px;
  padding: 28px 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.choose-banner h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.choose-banner p {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
}

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

.service-grid a {
  display: grid;
  align-content: start;
  min-height: 226px;
  padding: 22px 22px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-grid strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mission-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(139, 111, 71, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 111, 71, 0.14), rgba(255, 255, 255, 0) 38%),
    var(--white);
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--gold);
}

.mission-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-card h3 {
  max-width: 620px;
  font-size: clamp(1.24rem, 2vw, 1.58rem);
}

.mission-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mission-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.mission-card li span {
  display: inline-grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.mission-card li strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.mission-card li small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.closing-section,
.cta-section {
  margin-top: var(--section-gap);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.closing-section {
  padding: 32px 24px;
}

.closing-section h2,
.cta-section h2 {
  color: var(--white);
}

.closing-section p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.closing-section .section-kicker {
  margin-bottom: 18px;
  color: var(--white);
}

.closing-section strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.16rem;
}

.cta-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px 24px;
}

.cta-section h2 {
  margin: 0;
  text-align: center;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  margin-top: var(--section-gap);
  padding: 58px 20px 25px;
  background: #111a2c;
  color: #c4d4f1;
  font-size: 0.96rem;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.15fr 1.1fr 1.2fr;
  gap: clamp(30px, 4vw, 58px);
}

.footer strong {
  display: block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 1.2rem;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
  background: #fff;
}

.footer p {
  margin: 0 0 22px;
  color: #c4d4f1;
  line-height: 1.65;
}

.footer a {
  color: #c4d4f1;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

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

.quick-links-grid a {
  display: block;
  margin-bottom: 11px;
}

.social-connect {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.footer-social-item {
  position: relative;
  display: inline-flex;
}

.footer-social-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.footer-social-button > img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.footer-qr-popover {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  width: 168px;
  padding: 10px;
  color: #172026;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(223, 230, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.footer-qr-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
}

.footer-qr-popover strong {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.8rem;
}

.footer-qr-popover img {
  width: 100%;
  border-radius: 6px;
}

.footer-social-item:hover .footer-qr-popover,
.footer-social-item:focus-within .footer-qr-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.footer-contact p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact span {
  color: #3b82f6;
  font-size: 0.82rem;
  line-height: 2;
}

.newsletter-form {
  display: grid;
  gap: 16px;
}

.newsletter p {
  margin-bottom: 28px;
}

.newsletter-form input {
  width: 100%;
  min-height: 42px;
  padding: 9px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.newsletter-form input::placeholder {
  color: #c4d4f1;
}

.newsletter-form button {
  min-height: 44px;
  color: #fff;
  background: #3b82f6;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.footer .privacy-note {
  margin: 7px 0 0;
  font-size: 0.88rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(196, 212, 241, 0.62);
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.back-top {
  font-weight: 800;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: var(--navy);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: #fff;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav.is-open .nav-links {
    position: static;
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding: 8px 2px 2px;
  }

  .nav.is-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 2px 4px;
  }

  .nav.is-open .nav-links a {
    width: auto;
    padding: 12px;
    border-top: 1px solid #dfe6ea;
  }

  .nav.is-open .nav-item {
    border-top: 1px solid #dfe6ea;
  }

  .nav.is-open .nav-link {
    display: flex;
    padding: 12px;
  }

  .nav.is-open .nav-link::after,
  .nav.is-open .nav-links > a::after {
    display: none;
  }

  .nav.is-open .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav.is-open .dropdown-menu::before {
    display: none;
  }

  .nav.is-open .dropdown-menu a {
    padding: 8px 12px;
    border-top: 0;
    color: var(--muted);
    font-size: 0.84rem;
  }

  .hero-grid,
  .intro-section,
  .philosophy-layout,
  .mission-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .container,
  .footer-inner {
    width: min(100% - 28px, var(--content-width));
  }

  .footer-inner {
    width: 100%;
  }

  .brand-logo {
    width: 168px;
  }

  .hero-section {
    width: min(100% - 28px, 1160px);
    padding: 30px 18px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy p {
    margin-top: 16px;
  }

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

  .hero-panel,
  .meaning-grid,
  .service-grid,
  .mission-card ul,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-panel .brand-card {
    grid-column: auto;
  }

  .hero-panel > div {
    padding: 18px;
  }

  .section-band {
    width: min(100% - 28px, 1160px);
    padding: 32px 0;
  }

  .meaning-grid article,
  .service-grid a,
  .mission-card {
    padding: 24px 18px;
  }

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

  .philosophy-copy {
    align-self: start;
  }

  .mission-copy {
    align-self: start;
  }

  .philosophy-copy h2 {
    margin-bottom: 16px;
  }

  .philosophy-list span {
    width: 44px;
    height: 44px;
  }

  .cta-section {
    display: grid;
  }
}
