:root {
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: #6b6b6b;
  --line: #e7e7e7;
  --soft: #f6f6f6;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --max: 1200px;
  --pad: clamp(16px, 3.2vw, 36px);
  --h1: clamp(28px, 4.5vw, 54px);
  --h2: clamp(20px, 3vw, 34px);
  --h3: clamp(16px, 2.2vw, 22px);
  --p: clamp(14px, 1.2vw, 16px);
  --ls: 0.08em;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  color: var(--fg);
  background: var(--bg);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
body.drawer-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(231, 231, 231, 0);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}
.topbar.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 231, 231, 0.7);
}
/* Full-width header/footer (content still centered by .container) */
.topbar,
footer {
  width: 100%;
}
/* Header layout: hamburger left, logo centered */
.nav {
  display: grid;
  grid-template-columns: 64px 1fr 64px; /* left button, center brand, right spacer */
  align-items: center;
  height: 112px; /* taller topbar for premium feel */
}
.nav .brand {
  justify-self: center;
}
.nav .burger {
  justify-self: start;
}
.nav .navSpacer {
  width: 44px;
  height: 44px; /* keep logo perfectly centered */
}

/* Make header/footer backgrounds full-bleed while keeping centered content */
.topbar > .container,
footer > .container {
  padding: 0; /* remove container horizontal padding so background spans viewport */
}
.topbar .nav {
  padding: 0 var(--pad);
}
footer .foot {
  padding: 0 var(--pad);
}

/* Let the topbar container stretch full viewport so .nav can span the entire topbar */
.topbar > .container {
  max-width: 100%;
  width: 100%;
}
/* Make footer container match topbar so footer content can span full width */
footer > .container {
  max-width: 100%;
  width: 100%;
}

/* Ensure footer block takes the full width of its container */
.foot {
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.brandtext {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brandtext strong {
  font-size: 28px;
  letter-spacing: var(--ls);
}
.brandtext span {
  font-size: 12px;
  color: var(--muted);
}
.navlinks {
  display: flex;
  gap: 18px;
  align-items: center;
}
.navlinks a {
  font-size: 12px;
  letter-spacing: var(--ls);
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.88);
  position: relative;
  padding: 8px 2px;
  white-space: nowrap;
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.8;
}
.navlinks a:hover::after {
  transform: scaleX(1);
}
.navlinks a.active::after {
  transform: scaleX(1);
} /* 当前页高亮 */

.navcta {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 200px;
  justify-content: flex-end;
}
.btn {
  border: 1px solid var(--fg);
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: var(--ls);
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn:hover {
  background: var(--fg);
  color: var(--bg);
}
.btn.solid {
  background: var(--fg);
  color: var(--bg);
}
.btn.solid:hover {
  filter: brightness(0.92);
}
.icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}

/* Mobile menu */
.burger {
  display: flex;
  width: 64px;
  height: 64px;
  border: 0; /* remove square border */
  border-radius: 0;
  background: transparent; /* remove background */
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  margin-left: 1vw; /* align hamburger 1% from viewport left */
}
.burger span {
  width: 34px;
  height: 2.5px;
  background: var(--fg);
  display: block;
}
/* Flyout Drawer (always available) */
.drawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(86vw, 360px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(231, 231, 231, 0.9);
  transform: translateX(-102%);
  transition: transform 0.22s ease;
  z-index: 61;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: none; /* removed top divider per request */
}

.drawerNav {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}

.drawerNav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6px;
  border-bottom: 1px solid rgba(231, 231, 231, 0.6);
  font-size: 12px;
  letter-spacing: var(--ls);
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.9);
}

.drawerNav a.active {
  font-weight: 600;
}

.drawerActions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(231, 231, 231, 0.7);
}

.drawerClose {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/* open state */
body.drawer-open .drawerOverlay {
  opacity: 1;
  pointer-events: auto;
}
body.drawer-open .drawer {
  transform: translateX(0);
}

/* Hero + sections */
main {
  padding-bottom: 8px;
}

/* Carousel - Full screen width media area */
.carousel {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--soft);
  margin-top: -88px;
}
.carouselSlot {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
}
.carouselSlot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Philosophy Card Section */
.philosophySection {
  padding: 80px 0;
  background: #fff;
}
.philosophyCard {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}
.philosophyCard h2 {
  margin: 0 0 20px 0;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(11, 11, 11, 0.95);
}
.philosophyCard p {
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11, 11, 11, 0.72);
  letter-spacing: 0.01em;
}
.philosophyCard p:last-child {
  margin-bottom: 0;
}

.hero {
  padding: 42px 0 14px;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}
.heroCopy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      800px 300px at 20% 0%,
      rgba(0, 0, 0, 0.05),
      transparent 55%
    ),
    linear-gradient(to bottom, rgba(246, 246, 246, 0.7), transparent 45%);
}
.kicker {
  font-size: 12px;
  letter-spacing: var(--ls);
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(11, 11, 11, 0.55);
  display: inline-block;
}
h1 {
  margin: 14px 0 10px;
  font-size: var(--h1);
  line-height: 1.08;
  font-weight: 650;
}
.lead {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(11, 11, 11, 0.78);
  margin: 0 0 18px;
  max-width: 62ch;
}
.heroActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(231, 231, 231, 0.9);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.metaItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metaItem strong {
  font-size: 12px;
  letter-spacing: var(--ls);
  text-transform: uppercase;
}
.metaItem span {
  font-size: 13px;
  color: var(--muted);
}
.heroMedia {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--soft);
  box-shadow: var(--shadow);
  min-height: 420px;
}
.heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.heroMedia:hover img {
  transform: scale(1.06);
}
.heroTag {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 231, 231, 0.9);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: var(--ls);
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

section {
  padding: 80px 0;
}
section:nth-of-type(2) {
  background: rgba(246, 246, 246, 0.4);
  padding: 80px 0;
}
.sectionHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
  text-align: center;
  border: 0;
  padding: 0;
}
.sectionHead h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sectionHead p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 58ch;
  font-weight: 400;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.2vw, 42px);
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 5vw, 72px);
}

.card {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  transition: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}
.card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.card:nth-child(even) > * {
  direction: ltr;
}
.card:hover {
  transform: none;
  box-shadow: none;
}
.cardMedia {
  display: block;
  aspect-ratio: 1;
  background: var(--soft);
  overflow: hidden;
  border-radius: 2px;
}
.cardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card:hover .cardMedia img {
  transform: none;
}
.cardBody {
  padding: 0;
}
.label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.45);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.label::before {
  display: none;
}
.cardBody h3 {
  margin: 0 0 16px 0;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(11, 11, 11, 0.95);
}
.cardBody p {
  margin: 0;
  font-size: 15px;
  color: rgba(11, 11, 11, 0.68);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.cardFoot {
  display: none;
}
.pill {
  display: none;
}
.link {
  display: none;
}

/* Accordion */
.accordion {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.accItem {
  border-top: 0;
  border-bottom: 1px solid rgba(231, 231, 231, 0.5);
  padding: 28px 0;
}
.accItem:last-child {
  border-bottom: 0;
}
.accBtn {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.accTitle {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.accTitle strong {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(11, 11, 11, 0.9);
}
.accTitle span {
  font-size: 15px;
  color: rgba(11, 11, 11, 0.75);
  font-weight: 400;
}
.chev {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  flex: 0 0 auto;
  opacity: 0.6;
}
.accPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: transparent;
}
.accPanelInner {
  padding: 16px 0 0;
  color: rgba(11, 11, 11, 0.68);
  font-size: 15px;
  line-height: 1.7;
}
.accItem.open .chev {
  transform: rotate(180deg);
}
.accItem.open .accPanel {
  max-height: 320px;
}

/* Contact */
.contactGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: stretch;
}
.map {
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  background: var(--soft);
  min-height: 360px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.1);
}
.contactCard {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.kv {
  display: grid;
  gap: 24px;
  margin-top: 0;
  font-size: 15px;
  color: rgba(11, 11, 11, 0.75);
}
.kv div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 0;
  padding-top: 0;
}
.kv div:first-child {
  border-top: 0;
  padding-top: 0;
}
.kv b {
  font-weight: 600;
  color: rgba(11, 11, 11, 0.92);
}
.kv span {
  color: var(--muted);
  text-align: right;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 15px;
}
.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
}
.footLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footLinks a {
  font-size: 13px;
  letter-spacing: var(--ls);
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.72);
  border-bottom: 1px solid transparent;
  padding-bottom: 6px;
}
.footLinks a:hover {
  border-color: rgba(11, 11, 11, 0.35);
}

/* Footer left alignment to match hamburger inset */
.foot .footBrand {
  margin: 0; /* centered layout */
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 15px;
  justify-content: center;
}

.fadeIn {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fadeIn.in {
  opacity: 1;
  transform: translateY(0);
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

/* Responsive */
@media (max-width: 980px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
  .heroMedia {
    min-height: 360px;
  }
  .meta {
    grid-template-columns: 1fr 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr 1fr;
  }
  .card {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .card:nth-child(even) {
    direction: ltr;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .navlinks {
    display: none;
  }
  .navcta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .drawer {
    display: block;
  }
  .drawer[hidden] {
    display: none;
  }
  section {
    padding: 64px 0;
  }
}
@media (max-width: 560px) {
  .meta {
    grid-template-columns: 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 28px;
  }
  .nav {
    height: 66px;
  }
  section {
    padding: 56px 0;
  }
  .sectionHead {
    margin-bottom: 32px;
  }
  .sectionHead h2 {
    font-size: clamp(24px, 5vw, 32px);
  }
}

/* ===== Minimal Header / Brand ===== */
.topbar {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(231, 231, 231, 0.7);
}

.nav {
  height: 88px; /* 更薄 but taller for premium feel */
  grid-template-columns: 56px 1fr 56px;
}

.brand {
  gap: 0; /* 更克制 */
}

.brand .mark {
  display: none; /* 隐藏 KV 圆标：更像编辑感 */
}

.brandtext strong {
  font-size: 22px;
  letter-spacing: 0.16em; /* 更高级的字距 */
  font-weight: 600;
}

.brandtext span {
  display: none; /* 去掉副标题，更干净 */
}

/* Hamburger 也更轻一些 */
.burger {
  width: 56px;
  height: 56px;
  border: 0; /* remove square border */
  background: transparent;
  border-radius: 0;
  margin-left: 1vw; /* align hamburger 1% from viewport left */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.burger span {
  width: 28px;
  height: 2px;
  opacity: 0.95;
}

/* Drawer 更“书刊风” */
.drawer {
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(231, 231, 231, 0.85);
}

.drawerNav a {
  padding: 14px 6px;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.drawerHeader {
  padding-bottom: 14px;
}

.drawerClose {
  background: transparent;
  border: 0;
  border-radius: 14px;
}

/* ===== Minimal Footer ===== */
footer {
  padding: 22px 0 34px;
}

.footLinks a {
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(11, 11, 11, 0.62);
}

.footLinks a:hover {
  color: rgba(11, 11, 11, 0.85);
}

/* ===== Home (Four Nines inspired) ===== */
body.home-9999 {
  font-family:
    "Avenir Next", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Segoe UI",
    sans-serif;
  letter-spacing: 0.02em;
}

.home-9999 .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}

.home-9999 .topbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(231, 231, 231, 0.7);
  backdrop-filter: blur(10px);
}

.home-9999 .topbar .brand,
.home-9999 .topbar .brandtext strong {
  color: #fff;
}

.home-9999 .topbar .burger span {
  background: #fff;
}

.home-9999 .topbar.scrolled .brand,
.home-9999 .topbar.scrolled .brandtext strong {
  color: var(--fg);
}

.home-9999 .topbar.scrolled .burger span {
  background: var(--fg);
}

.home-9999 .brandtext strong {
  font-size: 20px;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.home-9999 .carousel.homeHero {
  margin-top: 0;
  min-height: 70vh;
  height: 70vh;
  padding: 0;
  background: #ececec;
}

.homeHeroMedia {
  width: 100%;
  height: auto;
}

.homeHeroMedia img {
  width: 100%;
  height: auto;
  object-fit: initial;
  filter: grayscale(100%) contrast(1.06);
  background: #ececec;
}

.homeSection {
  padding: clamp(68px, 12vw, 130px) 0;
  background: #fff;
}

.homeSplit {
  display: grid;
  grid-template-columns: 110px minmax(0, 860px);
  gap: clamp(18px, 4vw, 60px);
}

.homeNumber {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(0, 0, 0, 0.45);
  padding-top: 8px;
}

.homeBlock h2,
.homeCta h2 {
  margin: 0 0 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-size: clamp(28px, 4.1vw, 52px);
  line-height: 1.16;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.homeBlock p {
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.9;
  max-width: 64ch;
}

.homeEyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.56);
}

.homePanel {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0) 36%), #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.homeGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.homeCard {
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.homeCard:nth-child(2n) {
  border-right: 0;
}

.homeCard:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.homeCard h3 {
  margin: 0 0 14px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
}

.homeCard p {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.8;
  max-width: 44ch;
}

.homeLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.84);
}

.homeLink::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(0, 0, 0, 0.65);
}

.homeCta {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: clamp(30px, 6vw, 66px);
}

.homeCtaActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .home-9999 .carousel.homeHero {
    margin-top: 0;
    height: 70vh;
    min-height: 70vh;
  }

  .homeSplit {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .homeNumber {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .homeGrid {
    grid-template-columns: 1fr;
  }

  .homeCard {
    border-right: 0;
  }

  .homeCard:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .homeCard:last-child {
    border-bottom: 0;
  }
}
