:root {
    --about-gold: #C9A86C;
    --about-gold-hover: #B8954F;
    --about-dark: #1A1814;
    --about-black: #050505;
    --about-white: #FFFFFF;
    --about-bg: #FFFFFF;
    --about-soft: #FAF8F4;
    --about-text: #1C1C1C;
    --about-mid: #555555;
    --about-light: #888888;
    --about-border: #E8E8E8;
    --about-red: #B5322A;
    --about-shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --about-shadow-md: 0 6px 28px rgba(0,0,0,0.13);
  }
.serif,
  .about-page h1,
  .about-page h2,
  .about-page h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
  }
.about-page {
    background: var(--about-bg);
    color: var(--about-text);
    font-family: 'Raleway', sans-serif;
  }
.about-page a {
    color: inherit;
  }
.about-text-link {
    color: var(--about-gold) !important;
    font-weight: 600;
    border-bottom: 1px solid rgba(201,168,108,0.4);
    transition: color 0.2s, border-color 0.2s;
  }
.about-text-link:hover {
    color: var(--about-gold-hover) !important;
    border-color: var(--about-gold-hover);
  }
.about-hero {
    position: relative;
    overflow: hidden;
    /* Aligné sur le hero de spa-menu (landing-flashsale) : px fixes, pas de svh */
    min-height: 500px;
    display: flex;
    align-items: center;
    /* padding-top : dégage le header fixe pour que le badge ne passe pas dessous */
    padding: 130px 0 46px;
    margin-top: 0;
    background: #000;
    text-align: center;
    color: var(--about-white);
  }
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.64), rgba(0,0,0,0.78)),
      url("/img/bg/bg-about.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.78) sepia(0.18) saturate(0.88);
    transform: scale(1.02);
  }
.about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(201,168,108,0.25);
  }
.about-hero .container {
    position: relative;
    z-index: 2;
  }
.about-badge {
    display: inline-flex;
    align-items: center;
    background: var(--about-red);
    color: #fff;
    padding: 7px 20px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 4px 18px rgba(181,50,42,0.35);
  }
.about-hero-title {
    max-width: 900px;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.08;
  }
.about-hero-title em {
    color: var(--about-gold);
    font-style: italic;
  }
.about-hero-sub {
    max-width: 700px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,0.84);
    font-size: 16px;
    line-height: 1.75;
  }
.about-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
.about-actions--left {
    justify-content: flex-start;
    margin-top: 24px;
  }
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    min-height: 52px;
    box-sizing: border-box;
    border: 1px solid var(--about-gold);
    color: var(--about-gold);
    background: transparent;
    padding: 0 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 2px;
    box-shadow: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
.about-btn.primary {
    background: var(--about-gold) !important;
    border-color: var(--about-gold) !important;
    color: var(--about-black) !important;
    box-shadow: none;
  }
.about-btn:hover {
    background: var(--about-gold-hover) !important;
    border-color: var(--about-gold-hover) !important;
    color: #fff !important;
    
  }
.about-header {
    padding: 56px 0 24px;
    border-bottom: 1px solid var(--about-border);
    background: #fff;
  }
.about-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
  }
.about-eyebrow {
    font-size: 11px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--about-gold);
    font-weight: 600;
    margin-bottom: 7px;
  }
.about-title {
    margin: 0;
    font-size: 34px;
    font-weight: 400;
    color: var(--about-text);
    line-height: 1.14;
  }
.about-title em,
  .about-section-title em {
    color: var(--about-gold);
    font-style: italic;
  }
.about-header-copy {
    max-width: 450px;
    margin: 0;
    color: var(--about-mid);
    font-size: 14px;
    line-height: 1.8;
  }
.about-section {
    padding: 66px 0;
    background: #fff;
  }
.about-section.soft {
    background: var(--about-soft);
  }
.about-section.dark {
    background: var(--about-dark);
    color: #fff;
  }
.about-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
.about-section-title {
    margin: 0;
    max-width: 660px;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.14;
  }
.about-section.dark .about-section-title {
    color: #fff;
  }
.about-section-copy {
    max-width: 480px;
    color: var(--about-mid);
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
  }
.about-section.dark .about-section-copy {
    color: rgba(255,255,255,0.68);
  }
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
.about-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
  }
.about-card:hover {
    box-shadow: var(--about-shadow-md);
    transform: translateY(-5px);
  }
.about-card-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #1A1410;
  }
.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.76) sepia(0.16) saturate(0.9);
    transition: transform 0.55s ease, opacity 0.4s;
  }
.about-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,0.5), rgba(0,0,0,0.12) 54%, rgba(0,0,0,0.4)),
      linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.34));
    pointer-events: none;
  }
.about-card:hover .about-card-image img {
    transform: scale(1.04);
    opacity: 0.88;
  }
.about-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
.about-emblem {
    display: none;
  }
.about-emblem-inner {
    display: none;
  }
.about-overlay-name {
    display: none;
  }
.about-overlay-title {
    color: #FFF4DF;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.12;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0,0,0,0.72);
  }
.about-overlay-tagline {
    margin-top: 8px;
    color: rgba(255,244,223,0.72);
    font-size: 10px;
    text-transform: uppercase;
  }
.about-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px 20px !important;
  }
.about-card-body h3 {
    margin: 0 0 9px;
    color: #222;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
  }
.about-card-body p {
    margin: 0 0 18px;
    color: var(--about-mid);
    font-size: 14px;
    line-height: 1.75;
    min-height: calc(1.75em * 5);
  }
.about-link-row {
    display: flex;
    gap: 10px;
    margin-top: auto;
  }
.about-link {
    border: 1.5px solid var(--about-gold);
    color: var(--about-gold-hover) !important;
    background: rgba(201,168,108,0.04);
    padding: 10px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    flex: 1;
  }
.about-link:hover {
    background: var(--about-gold) !important;
    color: var(--about-black) !important;
    
  }
.about-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: stretch;
  }
.about-feature-media {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 18px;
    align-content: stretch;
    height: 100%;
  }
.about-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    box-shadow: var(--about-shadow-sm);
    filter: sepia(0.06) saturate(0.95);
  }
.about-feature-media img:first-child {
    object-position: 50% center;
  }
.about-feature-media img:nth-child(2) {
    height: calc(100% - 120px);
    min-height: 430px;
    margin: 60px 0;
  }
.about-feature-copy {
    background: #fff;
    border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow-sm);
    padding: 36px 34px;
  }
.about-feature-copy .about-section-title {
    font-size: 40px;
    line-height: 1.08;
  }
.about-feature-copy p {
    margin: 0;
    color: var(--about-mid);
    font-size: 15px;
    line-height: 1.85;
  }
.about-benefits {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
  }
.about-benefits li {
    background: #FFF3EE;
    border-left: 3px solid var(--about-gold);
    color: var(--about-mid);
    padding: 11px 14px;
    font-size: 14px;
    line-height: 1.6;
  }
.about-story {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    background: #fff;
    border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow-md);
  }
.about-story-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: 82% center;
    filter: brightness(0.92) sepia(0.08);
  }
.about-story-copy {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.about-story-copy p {
    margin: 18px 0 0;
    color: var(--about-mid);
    font-size: 15px;
    line-height: 1.85;
  }
.about-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }
.about-review {
    background: var(--about-soft);
    padding: 18px;
    color: var(--about-mid);
    font-size: 13px;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 170px;
  }
.about-review-quote {
    display: block;
    min-height: 86px;
  }
.about-review strong {
    display: block;
    color: var(--about-text);
    margin-top: 14px;
    font-size: 12px;
  }
.about-location-grid,
  .about-faq-grid,
  .about-reading-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
.about-location,
  .about-faq-item,
  .about-reading-item {
    background: #fff;
    border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow-sm);
    padding: 24px;
  }
.about-location h3,
  .about-faq-item h3,
  .about-reading-item h3 {
    margin: 0 0 9px;
    color: var(--about-text);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.22;
  }
.about-location p,
  .about-faq-item p,
  .about-reading-item p {
    margin: 0;
    color: var(--about-mid);
    font-size: 14px;
    line-height: 1.7;
  }
.about-location a,
  .about-reading-item a {
    display: inline-block;
    margin-top: 16px;
    color: var(--about-gold);
    font-size: 14px;
    font-weight: 600;
  }
.about-reading-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
.about-reading-item {
    background: var(--about-soft);
  }
.about-final {
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 96px 0;
  }
.about-final::before {
	    content: "";
	    position: absolute;
	    inset: 0;
	    background:
	      linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.46), rgba(0,0,0,0.74)),
	      linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.50)),
	      url("/img/about/about-final-luxury-spa-bg.jpg");
	    background-size: cover;
	    background-position: center 54%;
	    filter: brightness(0.95) sepia(0.08);
	  }
.about-final .container {
    position: relative;
    z-index: 2;
  }
.about-final h2 {
    max-width: 760px;
    margin: 0 auto 14px;
    color: #fff;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
  }
.about-final p {
    max-width: 960px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
    white-space: nowrap;
  }
@media (max-width: 1099px) {
    .about-final p {
      white-space: normal;
    }
  }
@media (max-width: 991px) {
    .about-hero {
      min-height: 540px;
      padding: 104px 0 40px;
      margin-top: 0;
    }

    .about-hero-title {
      font-size: 42px;
    }

    .about-section-head,
    .about-header-inner {
      display: block;
    }

  .about-header {
      padding-top: 42px;
    }

    .about-header-copy {
      margin-top: 14px;
    }

    .about-grid,
    .about-feature,
    .about-story,
    .about-location-grid,
    .about-faq-grid,
    .about-reading-grid {
      grid-template-columns: 1fr;
    }

    .about-review-grid {
      grid-template-columns: 1fr;
    }

    .about-feature-copy,
    .about-story-copy {
      padding: 34px 24px;
    }
  }
@media (max-width: 640px) {
    .about-hero-title {
      font-size: 34px;
    }

    .about-hero-sub {
      font-size: 14px;
    }

    

    

    

    .about-title,
    .about-section-title,
    .about-final h2 {
      font-size: 30px;
    }

    .about-feature-copy .about-section-title {
      font-size: 30px;
      line-height: 1.12;
    }

    .about-feature-media {
      grid-template-columns: 1fr;
    }

    .about-feature-media img,
    .about-feature-media img:nth-child(2) {
      height: 260px;
      min-height: 260px;
      margin-top: 0;
      margin-bottom: 0;
    }

    .about-story-image img {
      height: 330px;
      min-height: 330px;
      object-position: 76% center;
    }

    .about-card-image {
      height: 220px;
    }

    .about-card-body p {
      min-height: 0;
    }

    .about-feature-copy .about-actions {
      justify-content: center !important;
    }
  }


.about-ticker {
  overflow: hidden;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--about-dark);
  border-top: 1px solid rgba(201, 168, 108, 0.12);
}
.about-ticker-track {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  white-space: nowrap;
  animation: about-scroll-ticker 58s linear infinite;
  will-change: transform;
}
.about-ticker-group {
  display: flex;
  flex: none;
  width: max-content;
  align-items: center;
}
.about-ticker-sequence {
  display: flex;
  flex: none;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
  box-sizing: border-box;
}
.about-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.about-ticker-sep {
  color: var(--about-gold);
  font-size: 8px;
  font-weight: 400;
}

@keyframes about-scroll-ticker {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
  }

/* V2 compatibility */
.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}
.about-page{padding-top:0}
.about-hero{margin-top:0}


/* ── Hero : paliers petits écrans, alignés sur spa-menu ── */
@media (max-width: 480px) {
  .about-hero { min-height: 470px; padding: 88px 0 34px; }
}
@media (max-width: 480px) and (max-height: 720px) {
  .about-hero { min-height: 450px; }
}
@media (max-width: 380px) and (max-height: 680px) {
  .about-hero { min-height: 430px; }
}

/* ══════════════════════════════════════════════════════════════
   ÉCOSYSTÈME DU GROUPE — /test/about/
   Bande sombre + cartes claires (les logos sont optimisés clair)
   ══════════════════════════════════════════════════════════════ */
.about-eco {
  background: var(--about-dark);
  color: #fff;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}
/* voile doré discret en haut */
.about-eco::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,108,0.55), transparent);
}

/* ── Intro ── */
.about-eco-head {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
.about-eco-head .about-eyebrow {
  color: var(--about-gold);
}
.about-eco .about-section-title {
  color: #fff;
  margin: 0 auto 20px;
  max-width: 720px;
}
.about-eco .about-section-title em {
  color: var(--about-gold);
  font-style: italic;
}
.about-eco-lead {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.85;
}
.about-eco-lead strong {
  color: #fff;
  font-weight: 600;
}

/* ── Stats ── */
.about-eco-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 56px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.about-eco-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about-eco-stat strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: var(--about-gold);
}
.about-eco-stat span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Pilier ── */
.about-eco-pillar {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
  padding: 46px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.about-eco-pillar-head {
  position: sticky;
  top: 130px;
  align-self: start;
}
.about-eco-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: rgba(201,168,108,0.5);
  margin-bottom: 10px;
}
.about-eco-pillar-head h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}
.about-eco-pillar-head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
}

/* ── Grille de cartes ── */
.about-eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(252px, 1fr));
  gap: 16px;
}
.about-eco-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 22px 22px 24px;
  color: var(--about-text);
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}
a.about-eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}

/* boîte logo : hauteur fixe pour aligner toutes les cartes */
.about-eco-logo {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--about-border);
}
/* tous les fichiers partagent un canevas 480x132 :
   une largeur fixe suffit pour un rendu strictement identique */
.about-eco-logo img {
  width: 168px;
  height: auto;
  max-width: none;   /* neutralise le img{max-width:100%} global */
  flex: none;        /* sinon le conteneur flex comprime l'image */
  display: block;
}
/* repli typographique quand aucun logo n'existe */
.about-eco-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
  color: var(--about-text);
  letter-spacing: .01em;
}

.about-eco-body h4 {
  margin: 0 0 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--about-text);
}
.about-eco-role {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--about-gold-hover);
  font-weight: 600;
}
.about-eco-gain {
  margin: 0;
  padding-left: 13px;
  border-left: 2px solid rgba(201,168,108,0.4);
  font-size: 13px;
  line-height: 1.68;
  color: var(--about-mid);
}
.about-eco-go {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 15px;
  color: var(--about-gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
a.about-eco-card:hover .about-eco-go {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-eco { padding: 72px 0 80px; }
  .about-eco-pillar {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 0;
  }
  .about-eco-pillar-head { position: static; }
  .about-eco-head { margin-bottom: 44px; }
  .about-eco-stats { gap: 14px 34px; }
  .about-eco-stat strong { font-size: 32px; }
}
@media (max-width: 640px) {
  .about-eco-grid { grid-template-columns: 1fr; }
  .about-eco-stats {
    justify-content: space-between;
    gap: 12px;
  }
  .about-eco-stat { flex: 1 1 auto; }
  .about-eco-stat strong { font-size: 28px; }
  .about-eco-stat span { font-size: 10px; letter-spacing: .1em; }
}


@media (prefers-reduced-motion: reduce) {
  .about-ticker-track {
    animation: none;
    transform: none;
  }
}

/* ── The Art of Thai Massage book ── */
.about-book-section {
  overflow: hidden;
  padding: 92px 0;
  background: var(--about-soft);
  border-top: 1px solid var(--about-border);
  border-bottom: 1px solid var(--about-border);
}
.about-book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
}
.about-book-visual {
  margin: 0;
  min-width: 0;
}
.about-book-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .14));
}
.about-book-copy {
  max-width: 620px;
}
.about-book-eyebrow {
  margin: 0 0 12px;
  color: var(--about-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-book-title {
  margin: 0 0 22px;
  color: var(--about-text);
  font-size: clamp(40px, 3.55vw, 52px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.02;
  white-space: nowrap;
}
.about-book-title em {
  color: var(--about-gold);
  font-style: italic;
}
.about-book-copy > p:not(.about-book-eyebrow) {
  margin: 0 0 12px;
  color: var(--about-mid);
  font-size: 14px;
  line-height: 1.75;
}
.about-book-copy > p strong {
  color: var(--about-text);
  font-weight: 600;
}
.about-book-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--about-border);
  background: var(--about-white);
  box-shadow: var(--about-shadow-sm);
}
.about-book-fact {
  min-height: 108px;
  padding: 19px 17px;
}
.about-book-fact + .about-book-fact {
  border-left: 1px solid var(--about-border);
}
.about-book-fact strong,
.about-book-fact span {
  display: block;
}
.about-book-fact strong {
  margin-bottom: 8px;
  color: var(--about-gold-hover);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}
.about-book-fact span {
  color: var(--about-mid);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.55;
  text-transform: uppercase;
}
.about-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.about-book-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 26px;
  border: 1px solid var(--about-gold);
  border-radius: 2px;
  color: var(--about-gold-hover) !important;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.about-book-btn.primary {
  border-color: var(--about-gold);
  color: var(--about-black) !important;
  background: var(--about-gold);
}
.about-book-btn:hover {
  border-color: var(--about-gold-hover);
  color: #fff !important;
  background: var(--about-gold-hover);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .about-book-section { padding: 72px 0; }
  .about-book-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-book-visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }
  .about-book-copy {
    max-width: 720px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .about-book-section { padding: 56px 0 60px; }
  .about-book-grid { gap: 30px; }
  .about-book-title {
    margin-bottom: 18px;
    font-size: clamp(27px, 7.5vw, 34px);
  }
  .about-book-copy > p:not(.about-book-eyebrow) { font-size: 13px; }
  .about-book-facts {
    grid-template-columns: 1fr;
    box-shadow: none;
  }
  .about-book-fact {
    min-height: 0;
    padding: 16px;
  }
  .about-book-fact + .about-book-fact {
    border-top: 1px solid var(--about-border);
    border-left: 0;
  }
  .about-book-actions { display: grid; }
  .about-book-btn { width: 100%; }
}

/* ── World Massage Championship ── */
.about-champion-section {
  overflow: hidden;
  padding: 92px 0;
  background: var(--about-dark);
  color: var(--about-white);
}
.about-champion-grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}
.about-champion-visual {
  position: relative;
  margin: 0;
  min-width: 0;
}
.about-champion-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(201, 168, 108, .42);
}
.about-champion-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(540px, 51vw, 680px);
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.84) contrast(1.03);
}
.about-champion-visual figcaption {
  position: absolute;
  z-index: 2;
  right: -1px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  min-width: 174px;
  padding: 15px 18px 14px;
  background: var(--about-gold);
  color: var(--about-black);
}
.about-champion-visual figcaption span {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-champion-visual figcaption strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}
.about-champion-copy {
  max-width: 690px;
}
.about-champion-eyebrow {
  margin: 0 0 12px;
  color: var(--about-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-champion-title {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--about-white);
  font-size: clamp(44px, 4.7vw, 68px);
  font-weight: 400;
  line-height: .98;
}
.about-champion-title em {
  color: var(--about-gold);
  font-style: italic;
}
.about-champion-copy > p:not(.about-champion-eyebrow):not(.about-champion-signature) {
  margin: 0 0 13px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.78;
}
.about-champion-copy > p strong {
  color: var(--about-white);
  font-weight: 600;
}
.about-champion-signature {
  margin: 22px 0 0;
  padding: 2px 0 2px 18px;
  border-left: 2px solid var(--about-gold);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  line-height: 1.72;
}
.about-champion-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 26px;
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.about-champion-fact {
  padding: 20px 16px 19px 0;
}
.about-champion-fact + .about-champion-fact {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.13);
}
.about-champion-fact strong,
.about-champion-fact span {
  display: block;
}
.about-champion-fact strong {
  margin-bottom: 6px;
  color: var(--about-gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.about-champion-fact span {
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}
.about-champion-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 27px;
  border: 1px solid var(--about-gold);
  border-radius: 2px;
  background: var(--about-gold);
  color: var(--about-black) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.about-champion-cta:hover {
  border-color: var(--about-gold-hover);
  background: var(--about-gold-hover);
  color: var(--about-white) !important;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .about-champion-section { padding: 76px 0; }
  .about-champion-grid {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 42px;
  }
  .about-champion-visual img { height: 570px; }
}
@media (max-width: 767px) {
  .about-champion-section { padding: 64px 0; }
  .about-champion-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .about-champion-visual {
    width: calc(100% - 18px);
    max-width: 540px;
  }
  .about-champion-visual img {
    height: min(130vw, 610px);
    min-height: 460px;
  }
}
@media (max-width: 520px) {
  .about-champion-title { font-size: 42px; }
  .about-champion-copy > p:not(.about-champion-eyebrow):not(.about-champion-signature) { font-size: 13px; }
  .about-champion-facts { grid-template-columns: 1fr; }
  .about-champion-fact,
  .about-champion-fact + .about-champion-fact {
    padding: 15px 0;
    border-left: 0;
  }
  .about-champion-fact + .about-champion-fact {
    border-top: 1px solid rgba(255,255,255,.13);
  }
  .about-champion-cta { width: 100%; }
}


/* ── Compact partner ecosystem summary ── */
.about-partners-summary {
  padding: 84px 0;
  background: var(--about-dark);
  color: var(--about-white);
}
.about-partners-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: end;
  gap: clamp(48px, 7vw, 96px);
}
.about-partners-summary .about-eyebrow { color: var(--about-gold); }
.about-partners-summary .about-section-title {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--about-white);
}
.about-partners-summary .about-section-title em { color: var(--about-gold); font-style: italic; }
.about-partners-summary-copy > p:not(.about-eyebrow) {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.78;
}
.about-partners-summary-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 0 28px;
  border: 1px solid var(--about-gold);
  border-radius: 2px;
  background: var(--about-gold);
  color: var(--about-black) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.about-partners-summary-cta:hover {
  border-color: var(--about-gold-hover);
  background: var(--about-gold-hover);
  color: #fff !important;
  transform: translateY(-1px);
}
.about-partners-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.about-partners-summary-stats div { padding: 22px 14px; }
.about-partners-summary-stats div + div { border-left: 1px solid rgba(255,255,255,.13); }
.about-partners-summary-stats strong,
.about-partners-summary-stats span { display: block; text-align: center; }
.about-partners-summary-stats strong {
  margin-bottom: 7px;
  color: var(--about-gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.about-partners-summary-stats span {
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.45;
  text-transform: uppercase;
}
.about-partners-summary-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.about-partners-summary-pillars span {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  background: #211f1a;
  color: rgba(255,255,255,.72);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  line-height: 1.15;
}
.about-partners-summary-pillars b {
  color: var(--about-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}
@media (max-width: 991px) {
  .about-partners-summary-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-partners-summary-stats { max-width: 620px; }
  .about-partners-summary-pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 40px; }
}
@media (max-width: 640px) {
  .about-partners-summary { padding: 62px 0; }
  .about-partners-summary-stats { grid-template-columns: 1fr; }
  .about-partners-summary-stats div + div { border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
  .about-partners-summary-pillars { grid-template-columns: 1fr; }
  .about-partners-summary-cta { width: 100%; box-sizing: border-box; }
}

/* Location cards: three-line description area and bottom-aligned map links */
.about-location-grid { align-items: stretch; }
.about-location {
  display: flex;
  flex-direction: column;
}
.about-location > p {
  min-height: 5.1em;
}
.about-location > a {
  margin-top: auto;
  padding-top: 16px;
}
