/* ============================================================
   HEARTISTONE — Concept C: Warm Elegance
   Design System: Cream, Terracotta, Espresso
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --cream: #fdf6ef;
  --cream-deep: #f7ece0;
  --sand: #e8d5b7;
  --sand-light: #f0e4d0;
  --terracotta: #c44b2b;
  --terracotta-light: #e86b4a;
  --terracotta-bg: rgba(196,75,43,0.08);
  --espresso: #1a0f07;
  --espresso-light: #3d2b1f;
  --brown-muted: #8a6e5a;
  --brown-light: #b8a090;
  --white: #ffffff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-chinese: 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;

  --container-max: 1200px;
  --container-wide: 1400px;
  --nav-height: 72px;
  --radius: 12px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 239, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--sand);
  box-shadow: 0 1px 20px rgba(26, 15, 7, 0.06);
}

.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo svg {
  width: 28px;
  height: 28px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--espresso-light);
  transition: color var(--transition);
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--terracotta);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
}

.nav__cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav__cta:hover {
  background: var(--terracotta-light) !important;
  transform: translateY(-1px);
}

.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 16px 24px 32px;
  border-bottom: 1px solid var(--sand);
}

.nav__mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  border-bottom: 1px solid var(--sand-light);
}

.nav__mobile-menu a:last-child {
  border-bottom: none;
}

.nav__mobile-cta {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white) !important;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  font-weight: 600;
}

.nav__mobile-menu.active {
  display: flex;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 75, 43, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--sand);
}
.btn--outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253, 246, 239, 0.3);
}
.btn--outline-light:hover {
  border-color: var(--cream);
  background: rgba(253, 246, 239, 0.1);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
  padding: 100px 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--cream-deep { background: var(--cream-deep); }
.section--terracotta-bg { background: var(--terracotta-bg); }
.section--espresso {
  background: var(--espresso);
  color: var(--cream);
}

.section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 8px;
}

.section__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--brown-muted);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--brown-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header .section__desc {
  margin: 0 auto;
}

/* ============================================================
   HERO — Homepage
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(253, 246, 239, 0.96) 0%,
    rgba(253, 246, 239, 0.88) 35%,
    rgba(253, 246, 239, 0.55) 60%,
    rgba(253, 246, 239, 0.15) 80%,
    transparent 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 24px 60px 64px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 12px;
}

.hero__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--brown-muted);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--espresso-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.hero__subtitle-cn {
  font-size: 0.9375rem;
  color: var(--brown-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  .hero__content {
    padding: 40px 24px;
    max-width: 100%;
  }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(253, 246, 239, 0.92) 0%,
      rgba(253, 246, 239, 0.85) 60%,
      rgba(253, 246, 239, 0.5) 100%
    );
  }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 2px;
}

.stat-item__label-cn {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ============================================================
   FLAGSHIP HIGHLIGHT
   ============================================================ */
.flagship {
  background: var(--cream-deep);
  padding: 100px 0;
}

.flagship__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.flagship__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-bg);
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.flagship__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 8px;
}

.flagship__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brown-muted);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.flagship__desc {
  font-size: 1rem;
  color: var(--espresso-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.flagship__desc-cn {
  font-size: 0.9375rem;
  color: var(--brown-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.flagship__link {
  font-weight: 600;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.flagship__link:hover { gap: 12px; }

.flagship__image {
  border-radius: var(--radius);
  overflow: hidden;
}

.flagship__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.flagship__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .flagship__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .flagship__image { order: -1; }
}

/* ============================================================
   COURSE CARDS (Homepage Grid)
   ============================================================ */
.courses-section {
  background: var(--white);
  padding: 100px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26, 15, 7, 0.1);
}

.course-card__image {
  position: relative;
  overflow: hidden;
}

.course-card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.course-card:hover .course-card__image img {
  transform: scale(1.05);
}

.course-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  padding: 5px 12px;
  border-radius: 6px;
}

.course-card__body {
  padding: 24px;
}

.course-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: 4px;
}

.course-card__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--brown-muted);
  margin-bottom: 12px;
}

.course-card__desc {
  font-size: 0.875rem;
  color: var(--brown-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.course-card__link:hover { gap: 10px; }

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHAT SETS US APART (Features Grid)
   ============================================================ */
.features-section {
  background: var(--cream-deep);
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 4px 0;
}

.feature-card__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 4px;
  line-height: 1.3;
}

.feature-card__title-cn {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section {
  background: var(--white);
  padding: 80px 0;
}

.clients-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.client-pill {
  display: inline-flex;
  padding: 10px 20px;
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--espresso-light);
  background: var(--white);
  transition: all var(--transition);
}

.client-pill:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--terracotta-bg);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--terracotta-bg);
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--sand);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: -8px;
  opacity: 0.6;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--espresso-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-card__text-cn {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--espresso);
  margin-bottom: 2px;
}

.testimonial-card__author span {
  font-size: 0.8125rem;
  color: var(--brown-muted);
}

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

/* ============================================================
   CTA SECTION (Dark / Espresso)
   ============================================================ */
.cta-section {
  background: var(--espresso);
  padding: 80px 0;
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 8px;
}

.cta-section__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brown-light);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.cta-section__desc {
  font-size: 1.0625rem;
  color: var(--brown-light);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-section .hero__actions {
  justify-content: center;
  margin-bottom: 28px;
}

.cta-section__contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-section__contact a {
  color: var(--sand);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.cta-section__contact a:hover {
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(232, 213, 183, 0.12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo-text {
  color: var(--cream);
}

.footer__brand .nav__logo {
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--brown-light);
  line-height: 1.6;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 16px;
  color: var(--cream);
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--brown-light);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__links li:not(:has(a)) {
  font-size: 0.875rem;
  color: var(--brown-light);
}

.footer__bottom {
  border-top: 1px solid rgba(232, 213, 183, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--brown-light);
}

.footer__bottom a {
  font-size: 0.8125rem;
  color: var(--brown-light);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--cream);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--cream);
  padding: calc(var(--nav-height) + 64px) 0 64px;
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: block;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: var(--espresso);
  line-height: 1.05;
  margin-bottom: 8px;
}

.page-hero__title em {
  font-style: italic;
  color: var(--terracotta);
}

.page-hero__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--brown-muted);
  margin-bottom: 20px;
}

.page-hero__desc {
  font-size: 1.0625rem;
  color: var(--brown-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero__index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}

.page-hero__index-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero__index-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--terracotta);
  font-size: 0.8125rem;
}

.page-hero__index-name {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  font-weight: 500;
}

/* ============================================================
   COURSE SPREAD (Full editorial for courses.html + coaching.html)
   ============================================================ */
.course-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.course-spread--reverse {
  direction: rtl;
}
.course-spread--reverse > * {
  direction: ltr;
}

.course-spread__image {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.course-spread__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.course-spread__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-bg);
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.course-spread__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.5rem;
  color: var(--terracotta);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}

.course-spread__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 6px;
}

.course-spread__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown-muted);
  margin-bottom: 20px;
}

.course-spread__desc {
  font-size: 0.9375rem;
  color: var(--espresso-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.course-spread__sublabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 32px 0 12px;
}

.course-spread__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  margin: 24px 0;
}

.course-spread__meta-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 4px;
}

.course-spread__meta-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--espresso);
}

.course-spread__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-spread__highlights li {
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-light);
  font-size: 0.9375rem;
  color: var(--espresso-light);
  line-height: 1.6;
}

.course-spread__hl-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--terracotta);
  margin-right: 8px;
  font-size: 0.8125rem;
}

.course-spread__hl-cn {
  display: block;
  font-size: 0.8125rem;
  color: var(--brown-muted);
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
}

.course-spread__audience {
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-spread__audience li {
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-light);
  font-size: 0.9375rem;
  color: var(--espresso-light);
}

.course-spread__audience-cn {
  display: block;
  font-size: 0.8125rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
}

.course-spread__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.course-spread__method-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  background: var(--terracotta-bg);
  padding: 5px 12px;
  border-radius: 6px;
}

.course-spread__delivery {
  font-size: 0.875rem;
  color: var(--brown-muted);
  padding: 20px;
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  margin: 24px 0;
  line-height: 1.65;
}

.course-spread__delivery-cn {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8125rem;
}

.course-spread__credential {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--brown-light);
  font-style: italic;
}

@media (max-width: 768px) {
  .course-spread {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .course-spread--reverse {
    direction: ltr;
  }
  .course-spread__image {
    position: static;
  }
}

/* ============================================================
   BESPOKE PROGRAMS
   ============================================================ */
.bespoke-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.bespoke-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 8px;
}

.bespoke-section__title em {
  font-style: italic;
  color: var(--sand);
}

.bespoke-section__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brown-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.bespoke-section__desc {
  font-size: 1rem;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Section alternation for courses page */
.section--alt-cream { background: var(--cream); }
.section--alt-white { background: var(--white); }

/* ============================================================
   PROFILE EDITORIAL (About Page)
   ============================================================ */
.profile-editorial {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.profile-editorial__portrait {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.profile-editorial__portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.profile-editorial__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  margin-bottom: 4px;
}

.profile-editorial__role {
  font-size: 0.9375rem;
  color: var(--brown-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.profile-editorial__bio p {
  font-size: 0.9375rem;
  color: var(--espresso-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.profile-editorial__bio-cn {
  font-size: 0.875rem !important;
  color: var(--brown-muted) !important;
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 768px) {
  .profile-editorial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .profile-editorial__portrait {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ============================================================
   CREDENTIALS GRID (About Page)
   ============================================================ */
.credentials-section {
  background: var(--cream-deep);
  padding: 100px 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.credential-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  transition: transform var(--transition), box-shadow var(--transition);
}

.credential-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 15, 7, 0.08);
}

.credential-card__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}

.credential-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
  margin-bottom: 2px;
}

.credential-card__cn {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 6px;
}

.credential-card p:last-child {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  line-height: 1.6;
}

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

/* ============================================================
   BUSINESS EXPERIENCE (About Page)
   ============================================================ */
.biz-experience {
  display: grid;
  gap: 40px;
}

.biz-block {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--sand);
}

.biz-block__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--espresso);
  margin-bottom: 4px;
}

.biz-block__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--brown-muted);
  margin-bottom: 20px;
}

.biz-block__list {
  display: grid;
  gap: 16px;
}

.biz-block__list li {
  padding-left: 16px;
  border-left: 2px solid var(--terracotta);
}

.biz-block__en {
  display: block;
  font-size: 0.9375rem;
  color: var(--espresso-light);
  line-height: 1.6;
  margin-bottom: 4px;
}

.biz-block__cn {
  display: block;
  font-size: 0.8125rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
}

/* ============================================================
   GBA COVERAGE STRIP (About Page)
   ============================================================ */
.gba-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.gba-strip__city {
  text-align: center;
}

.gba-strip__en {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--espresso);
}

.gba-strip__cn {
  display: block;
  font-size: 0.875rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
}

.gba-strip__divider {
  width: 1px;
  height: 40px;
  background: var(--sand);
}

/* ============================================================
   METHODOLOGY TAGS (About Page)
   ============================================================ */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.method-tag {
  padding: 14px 24px;
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--white);
  text-align: center;
  transition: all var(--transition);
}

.method-tag:hover {
  border-color: var(--terracotta);
  background: var(--terracotta-bg);
}

.method-tag h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--espresso);
  margin-bottom: 2px;
}

.method-tag p {
  font-size: 0.75rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
}

/* ============================================================
   CONTACT FORM (Contact Page)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--espresso);
  margin-bottom: 4px;
}

.contact-form__title-cn {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--espresso);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 75, 43, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--brown-light);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238a6e5a'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field {
  margin-bottom: 20px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.contact-submit:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 75, 43, 0.25);
}

/* Contact Info Cards */
.contact-info {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  padding: 24px;
  background: var(--cream-deep);
  border-radius: var(--radius);
  border: 1px solid var(--sand-light);
}

.contact-info-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--espresso);
  margin-bottom: 2px;
}

.contact-info-card__title-cn {
  font-size: 0.75rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 8px;
}

.contact-info-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.contact-info-card__note {
  font-size: 0.8125rem;
  color: var(--brown-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ (Contact Page)
   ============================================================ */
.faq-section {
  background: var(--cream-deep);
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-item__question h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
}

.faq-item__toggle {
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform var(--transition);
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-item__toggle {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--brown-muted);
  line-height: 1.7;
}

/* ============================================================
   PHILOSOPHY SECTION (About Page)
   ============================================================ */
.philosophy-section {
  padding: 100px 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.philosophy-grid__image {
  border-radius: var(--radius);
  overflow: hidden;
}

.philosophy-grid__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.philosophy-grid__content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--espresso);
  margin-bottom: 4px;
}

.philosophy-grid__content .cn-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown-muted);
  margin-bottom: 20px;
}

.philosophy-grid__content p {
  font-size: 0.9375rem;
  color: var(--espresso-light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.philosophy-grid__content .text-cn {
  font-size: 0.875rem;
  color: var(--brown-muted);
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }

/* Espresso-bg overrides for section titles */
.section--espresso .section__title { color: var(--cream); }
.section--espresso .section__title-cn { color: var(--brown-light); }
.section--espresso .section__eyebrow { color: var(--sand); }
.section--espresso .section__desc { color: var(--brown-light); }

/* Terracotta tinted overrides */
.section--terracotta-bg .section__eyebrow { color: var(--terracotta); }

/* Client marquee (kept from old JS-driven version) */
.clients-marquee {
  overflow: hidden;
  margin-bottom: 12px;
}
.clients-marquee__track {
  display: flex;
  gap: 12px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.clients-marquee--reverse .clients-marquee__track {
  animation-direction: reverse;
}

.client-logo span {
  display: inline-flex;
  padding: 10px 20px;
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--espresso-light);
  background: var(--white);
  white-space: nowrap;
  transition: all var(--transition);
}

.client-logo span:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--brown-muted);
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.6;
}


/* Smooth scroll offset for anchor navigation */
[id^="course-"] {
  scroll-margin-top: 80px;
}

/* Course index anchor links */
a.page-hero__index-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}
a.page-hero__index-item:hover {
  color: var(--terracotta);
}
a.page-hero__index-item:hover .page-hero__index-num {
  color: var(--terracotta);
}


/* ============================================================
   CHINESE TYPOGRAPHY — Noto Serif SC
   Applied to all Chinese text elements for consistency
   ============================================================ */

/* Universal Chinese text selector — covers all CN classes */
[class*="-cn"],
[class*="__cn"],
[lang="zh"],
[lang="zh-CN"] {
  font-family: var(--font-chinese);
}

/* Specific Chinese elements */
.section__title-cn,
.hero__subtitle-cn,
.hero-chinese,
.page-hero__title-cn,
.page-hero__subtitle-cn,
.course-spread__title-cn,
.course-spread__desc-cn,
.course-spread__hl-cn,
.course-spread__audience-cn li span,
.course-spread__delivery-cn,
.course-spread__gba-cn,
.feature-card__title-cn,
.feature-card__desc-cn,
.stat__label-cn,
.stat__desc-cn,
.testimonial-card__text-cn,
.testimonial-card__author-cn,
.credential-card__title-cn,
.credential-card__desc-cn,
.biz-card__cn,
.biz-list-cn,
.philosophy-block__cn,
.coaching-spread__desc-cn,
.coaching-spread__hl-cn,
.section__subtitle-cn,
.faq-item__answer p em,
.cta__title-cn,
.cta__desc-cn,
.footer__tagline-cn {
  font-family: var(--font-chinese);
  font-weight: 400;
}

/* Chinese headings — slightly heavier */
.section__title-cn,
.page-hero__title-cn,
.course-spread__title-cn,
.hero-chinese {
  font-weight: 500;
  line-height: 1.4;
}

/* Chinese body text — optimal line height for CJK */
.course-spread__hl-cn,
.course-spread__audience-cn li span,
.course-spread__delivery-cn,
.feature-card__desc-cn,
.testimonial-card__text-cn,
.faq-item__answer p {
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* Inline Chinese after English — consistent display */
br + span[class*="-cn"],
br + em {
  font-family: var(--font-chinese);
  display: block;
  margin-top: 0.25rem;
}



/* ─── Additional Chinese-specific classes (site-wide) ─── */
.bespoke-section__title-cn,
.biz-block__cn,
.biz-block__title-cn,
.cn-subtitle,
.contact-form__title-cn,
.contact-info-card__title-cn,
.course-card__title-cn,
.course-spread__audience-cn,
.course-spread__credential,
.course-spread__delivery-cn,
.course-spread__hl-cn,
.course-spread__sublabel,
.course-spread__title-cn,
.credential-card__cn,
.cta-section__title-cn,
.feature-card__title-cn,
.flagship__desc-cn,
.flagship__title-cn,
.gba-strip__cn,
.hero__subtitle-cn,
.hero__title-cn,
.page-hero__title-cn,
.profile-editorial__bio-cn,
.section__title-cn,
.stat-item__label-cn,
.testimonial-card__text-cn,
.text-cn {
  font-family: var(--font-chinese);
  letter-spacing: 0.02em;
}

/* Chinese headings — slightly heavier weight */
.section__title-cn,
.page-hero__title-cn,
.flagship__title-cn,
.course-spread__title-cn,
.bespoke-section__title-cn,
.cta-section__title-cn,
.hero__title-cn {
  font-weight: 500;
  line-height: 1.45;
}

/* Chinese body & description text — generous line height */
.course-spread__hl-cn,
.course-spread__delivery-cn,
.course-spread__audience-cn,
.profile-editorial__bio-cn,
.testimonial-card__text-cn,
.feature-card__title-cn,
.flagship__desc-cn,
.biz-block__cn,
.text-cn {
  line-height: 1.9;
}

/* Bilingual sublabels */
.course-spread__sublabel,
.section__eyebrow,
.page-hero__eyebrow {
  font-family: var(--font-chinese);
}

/* Italic Chinese — use regular weight (Noto Serif SC italic renders cleanly) */
.course-spread__title-cn em,
.section__title-cn em,
.hero__title-cn em {
  font-style: normal;
  font-weight: 300;
}

/* ============================================================
   BRAND STORY SECTION — Warm Artistic Dark
   ============================================================ */
.brand-story {
  background: linear-gradient(
    135deg,
    #2a1508 0%,
    #1f0e06 40%,
    #2d1a0a 70%,
    #1a0d05 100%
  );
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

/* Subtle warm texture overlay */
.brand-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(196,75,43,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(232,213,183,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative top line */
.brand-story::after {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(196,75,43,0.5) 20%,
    rgba(232,213,183,0.3) 50%,
    rgba(196,75,43,0.5) 80%,
    transparent
  );
}

.brand-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-story__name {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232, 213, 183, 0.1);
}

.brand-story__letter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.8vw, 2.2rem);
  font-weight: 300;
  color: rgba(240, 228, 210, 0.55);
  letter-spacing: 0.01em;
}

.brand-story__letter-group em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #e8c9a0 0%, #c44b2b 60%, #e8541e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-story__plus {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(232, 213, 183, 0.25);
  font-style: normal;
  -webkit-text-fill-color: rgba(232, 213, 183, 0.25);
}

.brand-story__divider {
  color: rgba(196,75,43,0.35);
  font-size: 1.5rem;
  font-weight: 100;
}

.brand-story__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

@media (max-width: 768px) {
  .brand-story__columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.brand-story__col {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(196,75,43,0.3);
}

.brand-story__col-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.85rem + 0.6vw, 1.3rem);
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(135deg, #e8c9a0 0%, #d4956a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.brand-story__col-title-cn {
  font-family: var(--font-chinese);
  font-size: 0.8rem;
  color: rgba(196,75,43,0.60);
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.brand-story__col-desc {
  font-size: 0.9rem;
  color: rgba(240, 228, 210, 0.85);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.brand-story__col-desc strong {
  color: rgba(240, 228, 210, 0.92);
  font-weight: 600;
}

.brand-story__col-desc em {
  font-style: italic;
  color: #d4956a;
  -webkit-text-fill-color: #d4956a;
}

.brand-story__col-desc-cn {
  font-family: var(--font-chinese);
  font-size: 0.825rem;
  color: rgba(232, 213, 183, 0.55);
  line-height: 2;
  letter-spacing: 0.03em;
}

.brand-story__col-desc-cn strong {
  color: rgba(232, 213, 183, 0.78);
}

.brand-story__col-desc-cn em {
  font-style: normal;
  color: rgba(196,75,43,0.7);
  -webkit-text-fill-color: rgba(196,75,43,0.7);
}


/* Brand mini on about page */
.brand-mini {
  background: var(--cream-deep);
  border-left: 3px solid var(--terracotta);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  border-radius: 0 8px 8px 0;
}

.brand-mini__text {
  font-size: 0.9375rem;
  color: var(--espresso-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.brand-mini__text strong {
  color: var(--terracotta);
}

.brand-mini__text em {
  font-style: italic;
  color: var(--brown-muted);
}

.brand-mini__text-cn {
  font-family: var(--font-chinese);
  font-size: 0.875rem;
  color: var(--brown-muted);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.brand-mini__text-cn strong {
  color: var(--terracotta);
}

.brand-mini__text-cn em {
  font-style: normal;
  color: var(--terracotta);
}

/* Footer tagline CN */
.footer__tagline-cn {
  font-family: var(--font-chinese);
  font-size: 0.8rem;
  color: rgba(253, 246, 239, 0.4);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* ─── 一鑰 Chinese name in nav logo ─── */
.nav__logo-chinese {
  font-family: var(--font-chinese);
  font-size: 0.8em;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  margin-left: 0.1em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav__logo:hover .nav__logo-chinese {
  opacity: 1;
}

/* Footer 一鑰 */
.footer__tagline-yiyao {
  font-family: var(--font-chinese);
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ─── Brand story 3-column layout ─── */
.brand-story__columns--three {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 960px) {
  .brand-story__columns--three {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .brand-story__columns--three {
    grid-template-columns: 1fr;
  }
}

/* ─── 一鑰 in brand story name row ─── */
.brand-story__chinese-name {
  font-family: var(--font-chinese);
  font-size: 0.8em;
  font-weight: 600;
  background: linear-gradient(135deg, #e8c9a0 0%, #c44b2b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  margin-left: 0.4em;
  display: inline-block;
}

/* ─── Contact Form Success Message ─── */
.form-success {
  background: #f0f7f0;
  border: 1.5px solid #6aaa6a;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.form-success__icon {
  font-size: 2.5rem;
  color: #4a9a4a;
  margin-bottom: 0.75rem;
}
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.form-success__text {
  font-size: 0.95rem;
  color: var(--brown-muted);
  line-height: 1.7;
}
.form-success__cn {
  font-family: var(--font-chinese);
  font-size: 0.875rem;
  color: var(--brown-light);
}
