.lang {
  font-size: inherit;
  line-height: inherit;
}

select option[data-text-zh],
input[data-placeholder-zh],
textarea[data-placeholder-zh] {
  font-size: inherit;
}
.model-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 45, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 231, 0.78));
  box-shadow: 0 32px 90px rgba(12, 26, 30, 0.16);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.model-media {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid rgba(31, 42, 45, 0.06);
  grid-column: 1;
  grid-row: 1;
}

.model-body {
  grid-column: 2;
  grid-row: 1;
}

.model-card.reverse .model-media {
  grid-column: 2;
  grid-row: 1;
}

.model-card.reverse .model-body {
  grid-column: 1;
  grid-row: 1;
}

.model-card.reverse .model-nav.prev {
  left: 1.2rem;
  right: auto;
}

.model-card.reverse .model-nav.next {
  right: 1.2rem;
  left: auto;
}
.model-showcase {
  display: grid;
  gap: 2.5rem;
}


.model-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 45, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 32px 90px rgba(12, 26, 30, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.model-card.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.model-card.reverse .model-media {
  display: block;
}

.model-card.reverse .model-body {
  order: 1;
}

.model-media {
  position: relative;
  overflow: hidden;
}

.model-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.model-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.model-stage img.active {
  opacity: 1;
  transform: scale(1);
}

.model-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.model-nav:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.08);
}

.model-nav.prev {
  left: 1.5rem;
}

.model-nav.next {
  right: 1.5rem;
}


.model-body {
  padding: 2.6rem 2.8rem;
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.model-body h3 {
  margin: 0.4rem 0 0.8rem;
  font-size: 2rem;
}

.model-body p {
  color: var(--ink-muted);
  margin: 0.2rem 0;
}

.model-body .price {
  margin-top: 1.3rem;
}


.model-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 1.2rem 0 1.6rem;
}

.model-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(31, 42, 45, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.model-dots button.active {
  background: var(--jade-soft);
  transform: scale(1.2);
}

.model-dots button:hover {
  background: rgba(58, 188, 161, 0.7);
}

@media (max-width: 1024px) {
  .model-card {
    grid-template-columns: 1fr;
  }

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

  .model-card.reverse .model-nav.prev {
    left: 1.25rem;
    right: auto;
  }

  .model-card.reverse .model-nav.next {
    right: 1.25rem;
    left: auto;
  }

  .model-stage {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .model-body {
    padding: 2.3rem 2.2rem 2.5rem;
  }

  .model-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .model-stage {
    aspect-ratio: 4 / 3;
  }

  .model-nav.prev {
    left: 1rem;
  }

  .model-nav.next {
    right: 1rem;
  }
}
/* Color System */
:root {
  --pearl-base: #ffffff;
  --pearl-soft: #f7f8f9;
  --pearl-warm: #f4efe7;
  --jade-soft: #1f8f78;
  --jade-bright: #3abca1;
  --gold-soft: #d6a84e;
  --gold-bright: #f3d48c;
  --ink: #1f2a2d;
  --ink-muted: #606c71;
  --max-width: 1200px;
  font-size: 17px;
}

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

html {
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(33, 39, 41, 0.06);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-name {
  display: block;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.35px;
  color: var(--ink);
}

.brand-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.lang-switch .lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.lang-switch .lang-btn:focus {
  outline: none;
}

.primary-nav {
  display: flex;
  gap: 1.25rem;
}

.primary-nav a {
  font-weight: 500;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--jade-soft);
  background: rgba(58, 188, 161, 0.12);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-controls {
  display: flex;
  gap: 0.4rem;
}

.lang-btn {
  border: 1px solid rgba(31, 42, 45, 0.12);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  transition: box-shadow 0.2s ease;
}

.lang-btn.active {
  background: var(--jade-soft);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(31, 159, 130, 0.32);
}

.lang-toggle {
  display: none;
}

main {
  overflow: hidden;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-note {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--jade-soft);
}

.section-heading h2 {
  font-size: 2.35rem;
  margin: 0 0 0.85rem;
  letter-spacing: 0.5px;
}

.section-heading p {
  margin: 0.4rem auto 0;
  max-width: 640px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}


.hero {
  position: relative;
  margin: 0;
  padding: 0 1.5rem;
  margin-bottom: clamp(3.2rem, 6vw, 4.8rem);
  background: #fff;
}

.hero-static {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.05fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(3.4rem, 5.6vw, 4.5rem) 0 clamp(2.8rem, 5.4vw, 4rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-right: clamp(0.8rem, 2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner {
  max-width: 580px;
  color: var(--ink);
  display: grid;
  gap: 1.2rem;
}

.hero-inner h1 {
  font-size: clamp(2.35rem, 3.4vw, 3.2rem);
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 660;
  line-height: 1.06;
}

.hero-inner .lead {
  font-size: 1rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.hero-highlights {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: #f2f3f4;
  color: var(--ink);
  font-weight: 500;
  box-shadow: none;
}

.hero-highlights li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jade-soft);
  box-shadow: 0 0 6px rgba(31, 143, 120, 0.35);
}

.hero-stats {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.hero-stats .stat {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f2f3f4;
  border: 1px solid rgba(31, 42, 45, 0.08);
  color: var(--ink);
  display: grid;
  gap: 0.24rem;
  box-shadow: none;
}

.hero-stats strong {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.hero-stats .suffix {
  font-size: 1rem;
  letter-spacing: 0;
  margin-left: 0.2rem;
}

.hero-stats span {
  font-size: 0.95rem;
}


.hero-visual-static {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroSlide {
  0%,
  18% {
    transform: translateX(0);
  }
  20%,
  38% {
    transform: translateX(-100%);
  }
  40%,
  58% {
    transform: translateX(-200%);
  }
  60%,
  78% {
    transform: translateX(-300%);
  }
  80%,
  98% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-400%);
  }
}

.btn {
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, rgba(243, 212, 140, 1), rgba(214, 168, 78, 0.95));
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(214, 168, 78, 0.35);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 42, 45, 0.12);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 58px rgba(31, 42, 45, 0.16);
  transform: perspective(1200px) rotateY(-4deg);
  transition: transform 0.6s ease;
}

.hero-visual:hover {
  transform: perspective(1200px) rotateY(0deg);
}

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid.trio {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.grid.trio > * {
  flex: 1 1 0;
}

.feature,
.contact-panel,
.card-link {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 42, 45, 0.06);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 18px 45px rgba(31, 42, 45, 0.12);
  position: relative;
  overflow: hidden;
}

.feature::after,
.card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at top right, rgba(214, 168, 78, 0.22), transparent 60%);
  transition: opacity 0.3s ease;
}

.feature:hover,
.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(31, 42, 45, 0.16);
}

.feature:hover::after,
.card-link:hover::after {
  opacity: 1;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.timeline li {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 42, 45, 0.06);
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 14px 30px rgba(31, 42, 45, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.timeline strong {
  font-weight: 600;
  color: var(--jade-soft);
  margin-right: 0.35rem;
}

.table-wrapper {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(31, 42, 45, 0.12);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.96);
}

.table th,
.table td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 42, 45, 0.08);
  vertical-align: top;
}

.table th {
  background: rgba(247, 235, 207, 0.6);
  font-weight: 600;
}

.table tbody td:nth-child(2) {
  color: var(--jade-soft);
  font-weight: 600;
}

.table tbody td:nth-child(3) {
  color: var(--ink-muted);
}

.quote-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(31, 42, 45, 0.06);
  box-shadow: 0 24px 50px rgba(31, 42, 45, 0.14);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  gap: 1.2rem;
}

.quote-card form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-weight: 600;
}

input,
textarea,
select {
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 42, 45, 0.1);
  background: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(39, 177, 154, 0.3);
}

@media (max-width: 768px) {
  .nav-bar {
    flex-wrap: wrap;
  }

  .primary-nav {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .lang-switch {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .contact-grid,
  .brand-story .split {
    grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-panel-merged {
  display: grid;
  gap: 1.8rem;
  text-align: center;
  justify-items: center;
}

.contact-panel-merged .contact-info {
  max-width: 320px;
}

.contact-panel-merged .wechat-qr {
  margin-left: auto;
  margin-right: auto;
}

.wechat-qr {
  width: 140px;
  border-radius: 18px;
  background: rgba(244, 239, 231, 0.4);
  padding: 0.8rem;
  margin-top: 1.2rem;
  box-shadow: 0 18px 32px rgba(31, 42, 45, 0.1);
}

.wechat-qr img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

footer {
  background: #f2f2f0;
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  white-space: nowrap;
}

.footer-inner > div {
  flex: 1 1 220px;
}

.footer-brand strong,
.footer-brand p {
  margin: 0;
}

@media (max-width: 1024px) {
  .nav-bar {
    padding: 1rem 1.25rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .brand-text {
    max-width: 200px;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    order: 2;
    margin-left: auto;
  }

  .lang-toggle {
    display: none;
  }

  .hero-static {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    padding-right: 0;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual-carousel {
    max-width: min(720px, 100%);
    margin: 0 auto;
  }

  .section {
    padding: 3.6rem 1.25rem;
  }

  .grid.trio {
    flex-direction: column;
    gap: 1.25rem;
  }

  .model-showcase {
    gap: 2rem;
  }

  .model-card {
    border-radius: 24px;
  }

  .model-body {
    padding: 2.2rem;
  }

  .table-wrapper {
    margin: 0 1rem;
  }

  .footer-inner {
    justify-content: center;
    gap: 1.6rem;
  }
}

@media (max-width: 600px) {
  :root {
    font-size: 16px;
  }

  .nav-bar {
    padding: 0.85rem 1rem;
    gap: 0.6rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-logo {
    height: 48px;
  }

  .hero-visual-carousel {
    min-height: 300px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .carousel-stage {
    min-height: 300px;
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1;
  }

  .carousel-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .carousel-stage img.active {
    opacity: 1;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-highlights li {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-stats .stat {
    padding: 0.8rem 1rem;
  }

  /* 修复卡片文字裁切问题 */
  article.feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
    padding: 0.5rem 0;
  }

  article.feature h3,
  article.feature p {
    margin: 0;
  }

  article.feature h3 {
    margin-bottom: 0.25rem;
  }

  /* 优化旗舰车型系列移动端显示 */
  .model-showcase {
    gap: 1.5rem;
  }

  .model-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
  }

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

  .model-media {
    order: 1;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block !important;
    width: 100%;
    height: 100%;
    grid-column: unset !important;
    grid-row: unset !important;
  }

  .model-gallery-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .model-gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
  }

  .model-gallery-main img.active {
    opacity: 1;
    z-index: 2;
  }

  .model-body {
    order: 2;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
  }

  .model-stage {
    aspect-ratio: 16/9;
    min-height: 300px;
  }

  .model-stage img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .model-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .model-body p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  .model-gallery-tabs {
    display: none;
  }

  .primary-nav {
    font-size: 0.78rem;
    gap: 0.65rem;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .primary-nav a {
    padding: 0.3rem 0.2rem;
    letter-spacing: 0.5px;
  }

  .primary-nav .lang {
    line-height: 1.1;
    white-space: nowrap;
  }

  body[data-lang="zh"] .primary-nav .lang.lang-en,
  body[data-lang="en"] .primary-nav .lang.lang-zh {
    display: none;
  }

  .lang-switch {
    order: 0;
    margin-left: auto;
  }

  .lang-controls {
    display: none;
  }

  .lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 42, 45, 0.2);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
  }

  .lang-toggle.active {
    background: var(--jade-soft);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(31, 159, 130, 0.32);
  }

  .hero-inner h1 {
    font-size: 1.9rem;
    margin-top: 0.4rem;
    line-height: 1.25;
    display: grid;
    gap: 0.3rem;
  }

  .hero-visual-carousel {
    min-height: 400px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-highlights li {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-stats .stat {
    padding: 1rem 1.2rem;
  }

  .section-note {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .model-gallery-main {
    min-height: 260px;
  }

  .model-body {
    padding: 1.8rem 1.6rem;
  }

  .quote-card {
    padding: 2rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Utility text styles */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
}

.hero-visual img {
  object-fit: cover;
  height: 100%;
}

.section.tiles .tile-grid,
.quick-links {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-story .split,
.gallery-intro,
.cta-banner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.brand-story ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.brand-story li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.6rem;
  background: linear-gradient(135deg, rgba(214, 168, 78, 0.9), rgba(39, 177, 154, 0.8));
  box-shadow: 0 0 8px rgba(214, 168, 78, 0.35);
}

.article-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.article {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(31, 42, 45, 0.06);
  padding: 2.25rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 18px 45px rgba(31, 42, 45, 0.12);
}

.article a {
  color: var(--jade-soft);
  font-weight: 600;
}

.cta-banner {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 3rem;
  border-radius: 28px;
  background: radial-gradient(circle at 20% 20%, rgba(216, 178, 113, 0.25), transparent 55%), rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(216, 178, 113, 0.32);
  box-shadow: 0 24px 60px rgba(31, 42, 45, 0.16);
}

.cta-banner h2 {
  margin: 0 0 1rem;
  font-size: 2.1rem;
}

.contact-method-group {
  margin: 1.5rem 0 0.5rem;
}

.contact-method-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.contact-option {
  border: 1px solid rgba(31, 42, 45, 0.1);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.contact-option input {
  accent-color: var(--jade-soft);
}

.method-field {
  display: none;
}

.method-field.active {
  display: grid;
  gap: 0.6rem;
}

.policy-section {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(31, 42, 45, 0.06);
  box-shadow: 0 18px 45px rgba(31, 42, 45, 0.12);
}

.policy-section h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.policy-section ul {
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.lang {
  display: none;
}

body[data-lang="zh"] .lang.lang-zh,
body[data-lang="en"] .lang.lang-en {
  display: inline;
}

.lang {
  font-size: inherit;
  line-height: inherit;
}

/* Article detail layout */
.article-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2.5rem;
  text-align: center;
}

.article-header h1 {
  font-size: 2.45rem;
  margin-bottom: 0.75rem;
}

.article-meta {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.article-content {
  max-width: 860px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem 4rem;
  display: grid;
  gap: 2rem;
}

.article-content h2 {
  font-size: 1.6rem;
  margin: 0;
}

.article-content p,
.article-content ul {
  color: var(--ink-muted);
  margin: 0;
}

.article-content ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--jade-soft);
}


.hero-visual-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6f7;
  min-height: clamp(360px, 42vw, 520px);
  box-shadow: 0 20px 45px rgba(15, 32, 30, 0.18);
}

.carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-stage img.active {
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.95);
}

.carousel-nav.prev {
  left: 1.2rem;
}

.carousel-nav.next {
  right: 1.2rem;
}

.carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--jade-soft);
}

.model-gallery-main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 35vw, 420px);
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(247, 248, 249, 0.9), rgba(234, 236, 238, 0.8));
}

.model-gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.model-gallery-main img.active {
  opacity: 1;
}

.model-gallery-tabs {
  display: grid;
  grid-auto-flow: column;
  gap: 0.75rem;
  margin-top: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.model-gallery-tabs button {
  border: none;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(31, 143, 120, 0.08);
  color: var(--ink-muted);
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.model-gallery-tabs button.active {
  background: rgba(31, 143, 120, 0.18);
  color: var(--jade-soft);
}

.model-gallery-tabs button:hover {
  background: rgba(31, 143, 120, 0.22);
}

.models-intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2.5rem;
  text-align: center;
  display: grid;
  gap: 1.1rem;
}

.models-intro h1 {
  margin: 0;
  font-size: 2.6rem;
}

.models-intro p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--ink-muted);
  font-size: 1.12rem;
}

.models-intro .lang-zh {
  white-space: nowrap;
}

.models-intro .lang-en {
  font-size: 1.08rem;
}

.model-display {
  padding: 0 1.5rem clamp(3.6rem, 6vw, 4.6rem);
}

.model-display-inner {
  max-width: min(1050px, calc(100% - 2.6rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  align-items: stretch;
  gap: clamp(1.55rem, 3.3vw, 2.4rem);
  border-radius: 26px;
  border: 1px solid rgba(31, 42, 45, 0.06);
  padding: clamp(1.8rem, 3.3vw, 2.4rem);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 231, 0.78));
  box-shadow: 0 26px 58px rgba(12, 26, 30, 0.13);
}

.model-display-inner.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
}

.model-display-mainwrap {
  display: grid;
  gap: 1.2rem;
}

.model-display-main {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 26px 58px rgba(10, 18, 24, 0.16);
  min-height: clamp(308px, 35vw, 460px);
}

.model-display-body {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.model-display-tag {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.model-display-body h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
}

.model-display-desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.model-display-spec {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.model-display-price {
  font-size: 1rem;
}

.model-display-side {
  display: grid;
  gap: 0.82rem;
  align-content: stretch;
}

.model-display-side img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 19px 36px rgba(10, 18, 24, 0.15);
  min-height: clamp(154px, 16.5vw, 198px);
}

.model-display-inner.reverse .model-display-mainwrap {
  order: 2;
}

.model-display-inner.reverse .model-display-side {
  order: 1;
}

@media (max-width: 1024px) {
  .model-display-inner,
  .model-display-inner.reverse {
    grid-template-columns: 1fr;
  }

  .model-display-side {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .model-display-main {
    min-height: auto;
  }
}

.brand-banner {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  min-height: clamp(360px, 58vw, 600px);
}

.brand-banner img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  max-width: none;
  min-height: clamp(420px, 52vw, 600px);
}

.brand-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0)),
    linear-gradient(130deg, rgba(210, 162, 85, 0.5), rgba(31, 42, 54, 0.4));
  mix-blend-mode: multiply;
}

.brand-banner-caption {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: clamp(3.2rem, 8vw, 6rem) clamp(2.4rem, 5vw, 4rem) clamp(1.8rem, 5vw, 3.2rem);
  color: #fff;
  transform: translateY(-6%);
}

.brand-banner-caption h1 {
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
  padding-bottom: 0.4rem;
}

.brand-banner-caption h2 {
  margin: 0;
  font-size: clamp(0.92rem, 2.1vw, 1.1rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  max-width: min(720px, 92%);
  white-space: nowrap;
}

.brand-banner .btn.primary {
  margin-top: 1rem;
  padding: 0.78rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2b665, #cda652);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 20px 46px rgba(143, 102, 40, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-banner .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(143, 102, 40, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.brand-pillars {
  padding: clamp(3.4rem, 6vw, 5rem) 1.5rem;
  background: linear-gradient(160deg, rgba(236, 220, 195, 0.5), rgba(255, 255, 255, 0.9));
  position: relative;
}

.brand-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.7), rgba(244, 239, 231, 0));
  pointer-events: none;
}

.brand-pillars-inner {
  position: relative;
  max-width: min(1080px, 94%);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 2.8rem);
}

.brand-pillars-head {
  text-align: center;
  display: grid;
  gap: 0.6rem;
}

.brand-pillars-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--ink);
  letter-spacing: 0.01em;
}

.brand-pillars-head p {
  margin: 0;
  color: rgba(31, 42, 45, 0.65);
  font-size: 1rem;
}

.brand-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
}

.pillar-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  display: grid;
  gap: 1rem;
  align-items: start;
  justify-items: center;
  text-align: center;
  box-shadow: 0 26px 60px rgba(16, 32, 40, 0.12);
  border: 1px solid rgba(227, 187, 101, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(16, 32, 40, 0.18);
}

.pillar-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(243, 212, 140, 0.95), rgba(205, 166, 82, 0.92));
  color: #fff;
  box-shadow: 0 18px 36px rgba(205, 166, 82, 0.38);
}

.pillar-icon svg {
  width: 32px;
  height: 32px;
}

.pillar-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.pillar-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .brand-pillars {
    padding: clamp(2.8rem, 10vw, 4rem) 1.2rem;
  }

  .pillar-card {
    padding: 1.6rem 1.4rem;
  }
}

.brand-overview {
  position: relative;
  padding-top: clamp(4.5rem, 7vw, 6rem);
}

.brand-legacy {
  padding: clamp(4.5rem, 7vw, 6.5rem) 1.5rem;
  background: radial-gradient(circle at top, rgba(244, 239, 231, 0.85), rgba(247, 248, 249, 0.95)));
}

.brand-legacy-inner {
  max-width: min(960px, 92%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: clamp(2.6rem, 4vw, 3.4rem);
  box-shadow: 0 32px 90px rgba(16, 32, 40, 0.14);
  display: grid;
  gap: 2.4rem;
}

.brand-legacy-inner header {
  display: grid;
  gap: 0.6rem;
}

.brand-legacy-inner .eyebrow {
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  color: var(--jade-soft);
  text-transform: uppercase;
}

.brand-legacy-inner h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.5;
  color: var(--ink);
}

.brand-legacy-inner h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  color: var(--ink);
}

.brand-legacy-inner p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.brand-legacy-inner section {
  display: grid;
  gap: 0.8rem;
}

.brand-legacy-inner .brand-commitments ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--ink);
}

.brand-legacy-inner .brand-commitments li {
  background: rgba(244, 239, 231, 0.7);
  border-radius: 18px;
  padding: 0.85rem 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .brand-banner img {
    width: 160%;
  }

  .brand-banner-caption h2 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .brand-banner {
    min-height: clamp(280px, 72vw, 420px);
  }

  .brand-banner img {
    width: 190%;
  }

  .brand-banner-caption {
    padding: clamp(2.4rem, 10vw, 4rem) clamp(1.5rem, 6vw, 3rem) clamp(1.6rem, 8vw, 3rem);
    transform: translateY(-4%);
  }

  .brand-banner-caption h2 {
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  }
}

.brand-philosophy {
  padding: clamp(5rem, 7vw, 6.8rem) 1.5rem;
  background: linear-gradient(180deg, rgba(247, 236, 219, 0.45), rgba(255, 255, 255, 0.98));
}

.philosophy-container {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2.6rem, 4vw, 3.4rem);
}

.philosophy-head {
  text-align: center;
  display: grid;
  gap: 0.8rem;
}

.philosophy-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.8vw, 3.1rem);
  color: var(--ink);
  font-weight: 760;
  letter-spacing: 0.06em;
}

.philosophy-head h2 span {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: 0.18em;
  color: rgba(31, 42, 45, 0.62);
}

.philosophy-head p {
  margin: 0;
  color: rgba(31, 42, 45, 0.72);
  font-size: 1.08rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2.4rem, 3.8vw, 2.8rem);
}

.philosophy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 42, 45, 0.08);
  border-radius: 22px;
  padding: clamp(2rem, 3.2vw, 2.6rem);
  box-shadow: 0 26px 68px rgba(16, 32, 40, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.philosophy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 80% 20%, rgba(214, 168, 78, 0.25), transparent 60%);
  transition: opacity 0.35s ease;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 84px rgba(16, 32, 40, 0.2);
}

.philosophy-card:hover::after {
  opacity: 1;
}

.philosophy-card header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 0.85rem;
}

.philosophy-card header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(31, 143, 120, 0.55), rgba(214, 168, 78, 0.4));
}

.philosophy-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  font-size: 1.8rem;
  background: rgba(31, 143, 120, 0.14);
  color: var(--jade-soft);
  flex-shrink: 0;
}

.philosophy-card h3 {
  margin: 0;
  font-size: 1.38rem;
  font-weight: 720;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.philosophy-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.philosophy-card strong {
  font-weight: 700;
  color: var(--ink);
}

.philosophy-card.highlight {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(247, 237, 217, 0.92));
  border: 1px solid rgba(214, 168, 78, 0.28);
  box-shadow: 0 32px 94px rgba(214, 168, 78, 0.25);
}

.philosophy-card.highlight::after {
  background: radial-gradient(circle at 50% 0%, rgba(230, 195, 109, 0.32), transparent 70%);
}

.philosophy-slogan {
  display: grid;
  place-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: 0.6rem 0 0.2rem;
  position: relative;
  z-index: 1;
}

.philosophy-slogan span:first-child {
  font-weight: 780;
  font-size: clamp(1.78rem, 2.8vw, 2.1rem);
  letter-spacing: 0.035em;
  background: linear-gradient(135deg, #eecb78, #1f8f78);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.slogan-divider {
  width: 64px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(234, 196, 117, 0.85), rgba(31, 143, 120, 0.7));
}

.philosophy-card p a {
  color: var(--jade-soft);
}

.philosophy-cta {
  margin: 0;
  text-align: center;
  font-size: 1.04rem;
}

.philosophy-cta a {
  color: var(--jade-soft);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.philosophy-cta a:hover {
  color: var(--jade-bright);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .philosophy-container {
    gap: 2rem;
  }

  .philosophy-head h2 {
    font-size: clamp(2.05rem, 6vw, 2.5rem);
  }

  .philosophy-head p {
    font-size: 0.95rem;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .philosophy-card {
    padding: 1.8rem;
  }

  .philosophy-card header::before {
    height: 80%;
  }
}

