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

:root {
  --pink: #F08E80;
  --black: #000000;
  --white: #FFFFFF;
  --light-bg: #FDF0E6;
  --text: #222222;
  --heading: #3a3a3a;
  --font-head: 'Josefin Sans', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { color: var(--heading); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 110px;
  background: var(--light-bg);
  border-bottom: none;
}

.nav-logo img {
  height: 78px;
  width: 78px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--pink); }
.nav-links a.active { color: var(--pink); }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 999px;
}
.nav-cta:hover { opacity: 0.85; color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 75%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0,0,0,0.4);
  color: var(--white);
}

.hero-credential {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #E8C9A0;
  font-weight: 500;
  margin-top: 16px;
}

.hero-overlay h1 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.5;
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-cta { margin-top: 28px; }

/* ===== Intro ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 40px;
  gap: 60px;
  align-items: center;
}

.intro-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-img img {
  width: 62%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.intro-text h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.intro-title {
  color: var(--pink);
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}

.intro-text p {
  margin-bottom: 16px;
}

.intro-roles {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 28px !important;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 620px;
  margin: 0 auto;
}

.stat-card {
  background: transparent;
  border: 1.5px solid var(--pink);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--pink);
}

.stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

/* ===== Services ===== */
.services {
  background: var(--light-bg);
  padding: 80px 40px;
}

.services-heading {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.service-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-text {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.service-label {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
}

.service-text h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.service-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  flex: 1;
}

/* ===== Newsletter ===== */
.newsletter {
  background: var(--light-bg);
  padding: 56px 20px;
  text-align: center;
}

/* keep pink/white alternation where newsletter would otherwise follow another tinted section */
.section-tint + .newsletter,
.process-section + .newsletter,
.ws-philosophy + .newsletter {
  background: var(--white);
}

.newsletter h2 {
  font-family: var(--font-head);
  color: var(--pink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter p {
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.8;
  color: var(--text);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1 1 200px;
  padding: 14px 18px;
  border: 1px solid #e5d9cd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
}

.newsletter-form button {
  flex: 0 0 auto;
  padding: 14px 32px;
  background: var(--pink);
  color: var(--white);
  border: none;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.newsletter-form button:hover { opacity: 0.85; }

.newsletter-msg {
  display: none;
  margin-top: 16px;
  font-size: 15px;
  color: var(--pink);
  font-weight: 500;
}

.newsletter-msg.show { display: block; }

/* ===== Social Float ===== */
.social-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light-bg);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 200;
}

.social-float a {
  color: var(--text);
  display: flex;
}

.social-float a:hover { opacity: 0.6; }

.social-float svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 600px) {
  .social-float {
    right: 14px;
    bottom: 14px;
    padding: 10px 16px;
    gap: 12px;
  }
  .social-float svg { width: 18px; height: 18px; }
}

/* ===== Footer ===== */
.footer {
  padding: 56px 40px 28px;
  font-size: 13px;
  color: #888;
}

.footer-copyright {
  text-align: center;
  color: #888;
}

/* ===== Page Hero ===== */
.page-hero {
  max-width: 800px;
  margin: 80px auto 220px;
  padding: 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.page-hero p { margin-bottom: 16px; }

.page-hero--dark {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 45vh;
  min-height: 340px;
  overflow: hidden;
  text-align: center;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-quote {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  max-width: 750px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-quote span {
  display: block;
  font-size: 0.8em;
  margin-top: 8px;
  opacity: 0.8;
  font-style: normal;
}

.page-hero-overlay p {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Content Sections ===== */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 40px;
}

/* Full-bleed pink wrapper — wrap a .content-section inside this to tint the whole row */
.section-tint { background: var(--light-bg); }

.content-section--with-img {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: center;
}

.content-section--reverse .text-block { order: 2; }
.content-section--reverse .img-block { order: 1; }

.text-block p { margin-bottom: 16px; }

.img-block img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.4;
}

.overline {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 8px;
}

blockquote {
  border-left: 3px solid var(--pink);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #444;
  line-height: 1.8;
}

/* ===== Lists ===== */
.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.7;
}

.bullet-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--pink);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.7;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ===== Photo Grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.photo-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.podcast-card { color: inherit; text-decoration: none; text-align: center; }
.podcast-card img {
  width: 55%;
  max-width: 180px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.podcast-card .podcast-title { margin: 12px 0 4px; font-size: 14px; font-weight: 400; }
.podcast-card .podcast-meta { margin-bottom: 0; font-size: 13px; color: #888; }

/* ===== Coaching Packages ===== */
.packages {
  background: var(--light-bg);
  padding: 80px 40px;
}

.package {
  max-width: 800px;
  margin: 0 auto 64px;
  background: var(--white);
  padding: 48px;
}

.package--alt {
  background: var(--white);
}

.package-text h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 20px;
}

.package-text h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 12px;
  letter-spacing: 0.04em;
}

.package-text p { margin-bottom: 16px; }

/* ===== Toggle (details/summary) ===== */
.toggle {
  margin-bottom: 8px;
}

.toggle:first-of-type {
  margin-top: 24px;
}

.toggle summary {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px 14px 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.toggle summary::-webkit-details-marker { display: none; }

.toggle summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.toggle[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.toggle .bullet-list,
.toggle > p {
  padding-bottom: 12px;
}

/* ponytail: .package-details 的 margin-top 被卡片底部對齊的 auto 蓋掉，間距改放在最後一個 toggle 下方 */
.toggle:last-of-type {
  margin-bottom: 28px;
}

.package-details {
  border-left: 3px solid var(--pink);
  padding: 2px 0 2px 22px;
  margin: 28px 0;
}

.detail-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 12px !important;
}

.package-details .check-list li {
  font-size: 15px;
  margin-bottom: 8px;
}

.detail-price {
  font-size: 15px;
  margin: 14px 0 2px !important;
}

.detail-price-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 0 !important;
}

/* ===== Philosophy ===== */
.philosophy {
  max-width: 700px;
  margin: 0 auto;
  padding: 72px 40px;
  text-align: center;
}

.philosophy blockquote {
  border: none;
  padding: 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.testimonial {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 28px;
}

.testimonial p { font-size: 15px; line-height: 1.8; margin-bottom: 12px; }

.testimonial-author {
  font-size: 13px !important;
  color: #888 !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.testimonial-expand summary {
  font-size: 13px;
  color: var(--pink);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 16px;
  margin-bottom: 12px;
  display: inline-block;
}

.testimonial-expand summary::-webkit-details-marker { display: none; }

.testimonial-expand summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--pink);
  border-bottom: 1.5px solid var(--pink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.testimonial-expand[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.testimonials-more {
  margin-top: 32px;
  text-align: center;
}

.testimonials-more > summary {
  display: inline-block;
  background: none;
  border: 1px solid var(--pink);
  color: var(--pink);
  padding: 10px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.testimonials-more > summary::-webkit-details-marker { display: none; }

.testimonials-more[open] > summary { display: none; }

.testimonials-more .testimonials-grid { text-align: left; }

/* ===== Testimonial Carousel ===== */
.carousel-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 8px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 700px) {
  .carousel-track .testimonial { flex: 0 0 calc(50% - 12px); }
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--pink);
  color: var(--pink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  z-index: 2;
}
.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }
@media (max-width: 600px) {
  .carousel-btn { display: none; }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  padding: 0;
  cursor: pointer;
}
.carousel-dots button.active { background: var(--pink); }

/* ===== FAQ ===== */
.faq details {
  border-bottom: 1px solid #ddd;
  padding: 4px 0;
}

.faq summary {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--pink);
  transition: transform 0.2s;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
}

.faq-body p { margin-bottom: 12px; }

.faq-body a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Partnerships Grid ===== */
.services-grid-section {
  padding: 80px 40px;
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-tile {
  background: var(--white);
  padding: 40px;
}

.service-tile h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 16px;
}

/* ===== Process Steps ===== */
.process-section { background: var(--light-bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.step { text-align: center; }

.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 300;
  color: var(--pink);
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p { font-size: 14px; color: #555; line-height: 1.7; }

/* ===== Workshops ===== */
.workshop-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

.workshop-item--reverse { direction: rtl; }
.workshop-item--reverse > * { direction: ltr; }

.workshop-text {
  padding: 64px 48px;
}

.workshop-text h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  margin: 8px 0 12px;
  line-height: 1.4;
}

.workshop-sub {
  color: #666;
  font-style: italic;
  margin-bottom: 20px !important;
}

.workshop-text h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 24px 0 12px;
}

.workshop-text p { margin-bottom: 16px; }

.workshop-info {
  background: var(--light-bg);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.9;
}

.workshop-info p { margin: 0; }

.workshop-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.workshop-img img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== Misc ===== */
.en { font-style: italic; color: #555; }
.roles { font-size: 14px; color: #777; line-height: 1.9; margin-top: 16px; }

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }

  .intro {
    grid-template-columns: 1fr;
    margin: 48px auto;
    padding: 0 20px;
    gap: 32px;
  }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 100%; }
  .stat-card { padding: 16px 8px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }

  .services-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card { margin-bottom: 40px; }

  .service-img { padding: 24px 20px 0; }
  .service-text { padding: 32px 24px; }

  .services { padding: 48px 20px; }
  .hero-overlay h1 { font-size: 22px; }

  .page-hero { margin: 48px auto 200px; padding: 0 20px; }
  .page-hero--dark { height: 50vh; }
  .page-hero-overlay { padding: 20px; }

  .content-section { padding: 48px 20px; }
  .content-section--with-img {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-section--reverse .text-block,
  .content-section--reverse .img-block { order: unset; }

  .img-block img { aspect-ratio: 4/3; max-width: 300px; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 12px; }
  .photo-grid--2 { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }

  .packages { padding: 48px 20px; }
  .package { padding: 28px 20px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid-section { padding: 48px 20px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .workshop-item,
  .workshop-item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .workshop-text { padding: 40px 20px; }
  .workshop-img { padding: 24px 20px 0; }
}

/* =====================================================
   Soft layout system（工作坊風格，全站共用）
   ===================================================== */

/* --- 按鈕統一改 pill 形 --- */
.btn { border-radius: 999px; }

/* --- 置中頁首加柔霧圓暈 --- */
.page-hero { position: relative; z-index: 0; }

.page-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  max-width: 90vw;
  height: 380px;
  background: radial-gradient(closest-side, var(--light-bg) 55%, rgba(253,240,230,0) 100%);
  border-radius: 50%;
  z-index: -1;
}

/* --- 左文右圖 hero（照片交疊）--- */
.ws-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 88px 40px 104px;
}

.ws-hero::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -140px;
  width: 620px;
  height: 460px;
  background: radial-gradient(closest-side, var(--light-bg) 60%, rgba(253,240,230,0) 100%);
  border-radius: 50%;
  z-index: -1;
}

.ws-hero-text .ws-overline {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
  margin-bottom: 16px;
}

.ws-hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.ws-hero-text .ws-lead {
  font-weight: 400;
  color: #333;
  margin-bottom: 14px;
}

.ws-hero-text p { font-size: 16px; line-height: 1.9; color: #555; }

.ws-hero-collage {
  position: relative;
  justify-self: end;
  width: min(360px, 100%);
}

.ws-hero-collage .ws-photo-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.ws-hero-collage .ws-photo-small {
  position: absolute;
  left: -72px;
  bottom: -40px;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* --- 奶油色卡片格 --- */
.ws-list {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ws-item { display: flex; }

.ws-card {
  background: #FDF6EF;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.ws-card .ws-overline {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
  text-align: center;
  margin-bottom: 14px;
}

.ws-card h2 {
  font-family: var(--font-head);
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid #EBD9C8;
  border-bottom: 1px solid #EBD9C8;
  margin-bottom: 8px;
}

.ws-sub {
  text-align: center;
  font-style: italic;
  color: #8a7f76;
  font-size: 14.5px;
  margin: 10px 0 22px;
}

.ws-card > p { font-size: 14.5px; line-height: 1.9; color: #444; margin-bottom: 20px; }
.ws-card > p:not([class]) { flex: 1 0 auto; }

.ws-forwho {
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
  margin-bottom: 14px;
}

.ws-arrows { list-style: none; padding: 0; margin-bottom: 24px; }

.ws-arrows li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.85;
  color: #444;
}

.ws-arrows li::before {
  content: '⟶';
  position: absolute;
  left: 0;
  color: #C9B4A3;
  font-size: 13px;
}

.ws-meta {
  text-align: center;
  font-size: 13.5px;
  line-height: 2;
  color: #6f655c;
  letter-spacing: 0.04em;
  border-top: 1px solid #EBD9C8;
  padding-top: 18px;
  margin-top: auto;
  margin-bottom: 20px;
}

.ws-meta strong { font-weight: 500; color: #4a403a; }

.ws-note {
  text-align: center;
  font-size: 12.5px;
  color: #9b8f84;
  margin-top: 14px;
}

.ws-note a { text-decoration: underline; text-underline-offset: 3px; }
.ws-note a:hover { color: var(--pink); }

.ws-card .btn {
  align-self: center;
  border-radius: 999px;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  padding: 13px 34px;
}

/* --- 米色帶狀區塊（哲學／承諾）--- */
.ws-philosophy {
  background: var(--light-bg);
  margin-top: 96px;
  padding: 88px 40px;
}

.ws-philosophy h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--pink);
  margin-bottom: 12px;
}

.ws-philosophy .ws-phil-sub {
  text-align: center;
  color: #777;
  font-size: 15px;
  margin-bottom: 56px;
}

.ws-phil-grid {
  max-width: 640px;
  margin: 0 auto;
}

.ws-phil-item {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #EBD9C8;
}

.ws-phil-item:last-child { border-bottom: none; }

.ws-phil-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 300;
  color: var(--pink);
  flex: 0 0 44px;
}

.ws-phil-item h3 {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
}

.ws-phil-item p { font-size: 14.5px; line-height: 1.9; color: #555; }

/* --- 教練方案卡片（coaching）--- */
.packages {
  background: var(--white);
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.package {
  background: #FDF6EF;
  border-radius: 20px;
  max-width: none;
  margin: 0;
  padding: 44px 44px 40px;
  display: flex;
}

.package-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-text .overline {
  text-align: center;
  font-size: 21px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.package-text h2 {
  text-align: center;
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.5;
  margin: 6px 0 24px;
}

.package-details { margin-top: auto; }

.package-text .btn { align-self: center; margin-top: 8px; }

/* --- 見證卡片 --- */
.testimonial { background: #FDF6EF; }

/* --- 企業合作方案格 --- */
.services-grid-section { background: var(--white); }

.services-grid { gap: 28px; }

.service-tile {
  background: #FDF6EF;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.service-tile .overline {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.26em;
  font-weight: 500;
}

.service-tile h3 {
  text-align: center;
  font-weight: 700;
  margin: 10px 0 18px;
}

/* --- 首頁服務卡片 --- */
.service-text .service-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.26em;
  font-weight: 500;
  flex: none;
}

.service-text h3 {
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.service-text h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--pink);
  margin: 12px auto 0;
}

.service-text .btn { align-self: center; }

/* --- Soft layout 手機版 --- */
@media (max-width: 820px) {
  .ws-hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 72px;
    gap: 56px;
    text-align: center;
  }
  .ws-hero::before { left: -80px; width: 420px; height: 320px; }
  .ws-hero-collage { justify-self: center; width: min(300px, 78%); }
  .ws-hero-collage .ws-photo-small { left: -40px; bottom: -32px; }

  .ws-list { grid-template-columns: 1fr; padding: 24px 20px 0; gap: 32px; }
  .ws-card { padding: 36px 24px; }

  .ws-philosophy { margin-top: 64px; padding: 56px 20px; }
  .ws-phil-item { flex-direction: column; gap: 10px; }

  .packages { grid-template-columns: 1fr; padding: 24px 20px 0; gap: 32px; }
  .package { padding: 36px 24px; }
}

/* =====================================================
   About page（左文右圖 hero＋色帶節奏版型）
   ===================================================== */

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 40px 96px;
}

.about-hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-hero-text p { margin-bottom: 16px; }

.about-hero > img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: 30% top;
  border-radius: 50%;
  justify-self: center;
}

.band {
  background: var(--light-bg);
  padding: 88px 40px;
}

.band-inner { max-width: 700px; margin: 0 auto; }
.band-inner p { margin-bottom: 16px; }
.band-inner .bullet-list { margin-bottom: 28px; }

.about .content-section--with-img { max-width: 1080px; padding: 88px 40px; }
.about .img-block img { max-width: 420px; }

.cta-section {
  background: var(--white);
  padding: 88px 40px;
  text-align: center;
}

.cta-row-title { margin-bottom: 40px; }

.cta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 21px; margin-bottom: 10px; }
.cta-card p { font-size: 15px; color: #555; margin-bottom: 14px; }
.cta-card a { color: var(--pink); font-size: 14px; letter-spacing: 0.04em; }
.cta-card a:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 768px) {
  .about-hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 56px; }
  .about-hero > img { justify-self: center; max-width: 320px; }
  .band { padding: 56px 20px; }
  .cta-section { padding: 56px 20px; }
  .cta-row { grid-template-columns: 1fr; }
}

/* ===== Articles ===== */
.article-filters {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border: 1px solid #EBD9C8;
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn:hover { border-color: var(--pink); }

.filter-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.article-empty {
  text-align: center;
  color: #555;
  padding: 0 40px 96px;
}

.article-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.article-card {
  display: block;
}

.article-card[hidden] {
  display: none;
}

.article-card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: 20px 0 0;
}

.article-card-meta {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 10px;
}

.article-card h2 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

.article-card-excerpt {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px !important;
}

.article-card-link {
  font-size: 13.5px;
  color: var(--pink);
}

.article-card:hover .article-card-link { text-decoration: underline; text-underline-offset: 3px; }

.article-body .text-block { max-width: 720px; margin: 0 auto; }
.article-body img { margin-bottom: 24px; }
.article-body p { margin-bottom: 28px; }
.article-body h2, .article-body h3 { margin-top: 12px; margin-bottom: 20px; }
.article-inline-img {
  max-width: 320px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.article-photo {
  width: 100%;
  display: block;
}

.article-carousel {
  margin: 32px 0;
}

.article-carousel-main {
  width: 100%;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDF6EF;
  overflow: hidden;
}

.article-carousel-main img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  margin-bottom: 0;
}

.article-carousel-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.article-carousel-thumbs img {
  height: 72px;
  width: auto;
  flex: none;
  opacity: 0.5;
  cursor: pointer;
  margin-bottom: 0;
  border: 2px solid transparent;
}

.article-carousel-thumbs img.active { opacity: 1; border-color: var(--pink); }
.article-back { margin-top: 32px; font-size: 14px; }
.article-back a:hover { color: var(--pink); }

.article-nav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #EBD9C8;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.article-nav a { color: inherit; }
.article-nav a:hover { color: var(--pink); }
.article-nav-next { text-align: right; }

@media (max-width: 600px) {
  .article-nav { flex-direction: column; gap: 12px; }
  .article-nav-next { text-align: left; }
}

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

@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; padding: 0 20px 56px; }
}

/* ===== 適合誰／不適合誰（coaching）===== */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 8px;
}

.fit-col h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.x-list { list-style: none; padding: 0; }

.x-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.7;
}

.x-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #b0a49a;
  font-weight: 700;
}

/* ===== 文末：作者 CTA ＋ 延伸閱讀 ===== */
.article-outro {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 2px solid var(--pink);
  text-align: center;
}

.article-outro p {
  font-size: 17px;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 22px;
}

/* 選擇器要壓過上面的 .article-outro p，不然 margin-top 會被吃掉 */
.article-outro p.article-outro-sig {
  font-family: var(--font-head);
  font-size: 14px;
  color: #8a7d72;
  margin-top: 24px;
  margin-bottom: 0;
}

.article-outro-sig a { border-bottom: 1px solid var(--pink); }
.article-outro-sig a:hover { color: var(--pink); }

.article-related { margin-top: 56px; }

.article-related h2 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8a7c;
  margin-bottom: 18px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-body .article-related-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 0;
}

.article-body .article-related-card p { margin-bottom: 0; }

.article-related-card .cat {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-top: 10px;
}

.article-related-card .t {
  font-size: 15px;
  line-height: 1.55;
  margin-top: 5px;
}

.article-related-card:hover .t { color: var(--pink); }

/* 取代原本的 article-nav：保留回列表頁的連結，權重才不會斷 */
.article-body p.article-related-all {
  margin: 32px 0 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 14px;
  color: #8a7d72;
}

.article-related-all a:hover { color: var(--pink); }

@media (max-width: 600px) {
  .article-related-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* 內文的情境連結，預設 a 是 color:inherit 沒底線，不標出來讀者看不到 */
.article-body a.inline-link {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a.inline-link:hover { opacity: 0.75; }
