
:root{
  --bg:#fbf6f1;
  --paper:#fffdfa;
  --paper-2:#fff8f3;
  --ink:#5f493d;
  --muted:#866f63;
  --rose:#d7a0a0;
  --rose-deep:#bb8381;
  --rose-soft:#f1dddd;
  --sage:#9aa28e;
  --line:#e8dbcf;
  --line-2:#efe6de;
  --shadow:0 22px 60px rgba(95,73,61,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Noto Sans TC",sans-serif;
  line-height:1.85;
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:min(1140px, calc(100% - 40px));margin:auto}
.narrow{width:min(850px, calc(100% - 40px))}
h1,h2,h3{font-family:"Noto Serif TC",serif;margin-top:0}
h1{
  font-size:clamp(38px,5.6vw,72px);
  line-height:1.25;
  margin:0 0 22px;
  letter-spacing:.04em;
}
h2{
  font-size:clamp(30px,4vw,42px);
  margin-bottom:14px;
}
h3{font-size:22px;margin-bottom:10px}
p{margin:0 0 14px}
ul{margin:14px 0 0 18px;padding:0}
li{margin-bottom:6px}
.eyebrow{
  display:inline-block;
  margin-bottom:10px;
  color:var(--rose-deep);
  font-size:12px;
  font-weight:700;
  letter-spacing:.22em;
}
.lead{
  font-size:18px;
  color:var(--muted);
  max-width:760px;
}
.lead-sm{font-size:17px;color:var(--muted)}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,253,250,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(232,219,207,.8);
}
.nav-wrap{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand img{
  width:56px;height:56px;border-radius:50%;object-fit:cover;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}
.brand span{display:flex;flex-direction:column;line-height:1.35}
.brand strong{font-family:"Noto Serif TC",serif;font-size:20px;letter-spacing:.12em}
.brand small{font-size:12px;color:var(--muted);letter-spacing:.16em}
nav{display:flex;gap:22px;align-items:center}
nav a{text-decoration:none;font-size:14px}
.nav-cta{
  padding:10px 16px;
  border:1px solid var(--rose);
  border-radius:999px;
}
.menu-toggle{
  display:none;
  border:0;
  background:none;
  font-size:28px;
  color:var(--ink);
}

.hero{
  position:relative;
  min-height:760px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-bg,
.hero-overlay{
  position:absolute;
  inset:0;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(.95) brightness(.96);
}
.hero-overlay{
  background:
    linear-gradient(90deg, rgba(251,246,241,.82) 0%, rgba(251,246,241,.66) 34%, rgba(251,246,241,.18) 62%, rgba(251,246,241,.08) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  padding:84px 0;
}
.hero-copy{
  max-width:700px;
}
.glass{
  background:rgba(255,253,250,.54);
  border:1px solid rgba(255,255,255,.62);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  border-radius:28px;
  padding:36px 34px;
}
.hero-actions,.contact-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.hero-badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.hero-badges span{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(232,219,207,.9);
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  color:var(--muted);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  transition:transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.primary{
  background:var(--ink);
  color:#fff;
  box-shadow:0 12px 30px rgba(95,73,61,.18);
}
.secondary{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
}
.line{
  background:#06C755;
  color:#fff;
}
.light-btn{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
}
.full{width:100%;margin-top:12px}

.section{padding:92px 0}
.soft{background:var(--paper-2)}
.section-heading{
  max-width:760px;
  margin:0 auto 44px;
  text-align:center;
}
.section-heading p:last-child{color:var(--muted)}

.intro-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}
.intro-text p{color:var(--muted)}
.intro-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}
.intro-logo img{
  width:min(360px, 90%);
  border-radius:50%;
}

.cards{
  display:grid;
  gap:22px;
}
.cards.three{
  grid-template-columns:repeat(3, 1fr);
}
.card{
  background:var(--paper);
  border:1px solid var(--line-2);
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 28px rgba(95,73,61,.05);
}
.clean-card{
  padding:26px;
}
.card p{color:var(--muted)}
.card ul{color:var(--muted)}
.icon{
  font-size:28px;
  margin-bottom:16px;
}
.tag{
  display:inline-block;
  margin-bottom:14px;
  padding:5px 12px;
  border-radius:999px;
  background:var(--rose-soft);
  color:var(--rose-deep);
  font-size:12px;
  font-weight:700;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.feature-item{
  background:var(--paper);
  border:1px solid var(--line-2);
  border-radius:22px;
  padding:26px;
}
.feature-item p{color:var(--muted)}

.process-wrap{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:start;
}
.steps{
  list-style:none;
  padding:0;
  margin:28px 0 0;
}
.steps li{
  display:flex;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid rgba(95,73,61,.11);
}
.steps li > span{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--rose-soft);
  color:var(--rose-deep);
  font-weight:700;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.steps p{margin-top:4px;color:var(--muted)}
.process-card{
  position:sticky;
  top:108px;
}
.process-card small{
  display:block;
  margin-top:16px;
  color:var(--muted);
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}
.about-photo img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.about-copy p{color:var(--muted)}

details{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 22px;
  margin:12px 0;
}
summary{
  cursor:pointer;
  font-weight:700;
}
details p{margin-top:10px;color:var(--muted)}

.contact{
  padding-top:72px;
}
.contact-box{
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 35%),
    linear-gradient(135deg, #6c5449 0%, #5c463b 100%);
  color:#fff;
  border-radius:32px;
  padding:44px 42px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  box-shadow:var(--shadow);
}
.contact-copy p{color:#eadfd6}
.contact-box .eyebrow{color:#efc5c4}

footer{
  padding:40px 0 54px;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:var(--muted);
}
.footer-grid strong{color:var(--ink)}
.footer-right{text-align:right}
.copyright{font-size:13px}

@media (max-width: 980px){
  .founder-highlights{
    grid-template-columns:repeat(2,1fr);
  }
  .pricing-grid{
    grid-template-columns:1fr;
  }
  .pricing-card.recommended{
    transform:none;
  }
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5){
    grid-column:auto;
  }
  .intro-grid,
  .process-wrap,
  .about-grid{
    grid-template-columns:1fr;
  }
  .cards.three,
  .feature-grid,
  .location-grid{
    grid-template-columns:1fr;
  }
  .process-card{position:static}
}

@media (max-width: 1100px){
  .menu-toggle{display:block}
  nav{
    display:none;
    position:absolute;
    left:20px;
    right:20px;
    top:76px;
    background:var(--paper);
    padding:18px;
    border-radius:18px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
  }
  nav.open{display:flex}
  .hero{
    min-height:680px;
  }
  .hero-overlay{
    background:linear-gradient(180deg, rgba(251,246,241,.88) 0%, rgba(251,246,241,.76) 44%, rgba(251,246,241,.30) 100%);
  }
  .glass{padding:28px 22px}
  .section{padding:76px 0}
  .contact-box,
  .footer-grid{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-right{text-align:left}
}

@media (max-width: 560px){
  .service-grid{grid-template-columns:1fr}
  .container{width:min(100% - 26px, 1000px)}
  .brand strong{font-size:18px}
  .brand small{font-size:11px}
  .hero{min-height:620px}
  .hero-copy .lead{font-size:16px}
  .btn{width:100%}
  .hero-actions,.contact-actions{gap:10px}
}


.locations-section{
  background:linear-gradient(180deg, var(--bg) 0%, #fffaf6 100%);
}
.location-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.location-card{
  background:var(--paper);
  border:1px solid var(--line-2);
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 28px rgba(95,73,61,.05);
}
.location-card p{color:var(--muted)}
.location-icon{
  font-size:30px;
  margin-bottom:16px;
}
.location-tag{
  display:inline-block;
  margin-top:8px;
  padding:6px 12px;
  border-radius:999px;
  background:var(--rose-soft);
  color:var(--rose-deep);
  font-size:12px;
  font-weight:700;
}
.city-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:14px 0 12px;
}
.city-tags span{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:#f7efe8;
  border:1px solid var(--line);
  font-size:13px;
}
.location-note{
  font-size:14px;
}
.location-notice{
  margin-top:24px;
  padding:20px 22px;
  border-radius:18px;
  background:var(--paper-2);
  border:1px solid var(--line);
}
.location-notice p{
  margin:5px 0 0;
  color:var(--muted);
}


/* Formal five-service section */
.service-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
}
.service-card{
  grid-column:span 2;
  display:flex;
  flex-direction:column;
  min-height:100%;
  position:relative;
  overflow:hidden;
}
.service-card:nth-child(4){
  grid-column:2 / span 2;
}
.service-card:nth-child(5){
  grid-column:4 / span 2;
}
.featured-service{
  border-color:rgba(215,160,160,.48);
  background:
    radial-gradient(circle at 100% 0%, rgba(241,221,221,.50), transparent 32%),
    var(--paper);
}
.service-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.service-topline .icon{
  margin-bottom:14px;
}
.service-number{
  font-family:"Noto Serif TC",serif;
  color:rgba(187,131,129,.55);
  font-size:28px;
  font-weight:700;
  letter-spacing:.08em;
}
.service-card ul{
  margin-bottom:18px;
}
.service-link{
  margin-top:auto;
  padding-top:8px;
  text-decoration:none;
  font-weight:700;
  color:var(--rose-deep);
}
.service-disclaimer{
  margin-top:auto;
  padding:12px 14px;
  border-radius:14px;
  background:#f7f1eb;
  border:1px solid var(--line);
  font-size:12px;
  line-height:1.65;
}


/* Pricing section */
.pricing-section{
  background:
    radial-gradient(circle at 12% 10%, rgba(241,221,221,.55), transparent 26%),
    linear-gradient(180deg, #fffaf6 0%, var(--bg) 100%);
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  align-items:stretch;
}
.pricing-card{
  position:relative;
  display:flex;
  flex-direction:column;
  background:var(--paper);
  border:1px solid var(--line-2);
  border-radius:26px;
  padding:32px 28px 28px;
  box-shadow:0 14px 34px rgba(95,73,61,.07);
  overflow:hidden;
}
.pricing-card.recommended{
  border-color:rgba(215,160,160,.65);
  box-shadow:0 18px 42px rgba(95,73,61,.11);
  transform:translateY(-8px);
}
.pricing-ribbon{
  position:absolute;
  top:16px;
  right:-31px;
  width:120px;
  padding:5px 0;
  text-align:center;
  transform:rotate(38deg);
  background:var(--rose-deep);
  color:white;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
}
.pricing-icon{
  font-size:30px;
  margin-bottom:14px;
}
.pricing-card h3{
  min-height:68px;
  line-height:1.55;
}
.pricing-meta{
  margin:12px 0 18px;
  padding:14px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.pricing-meta > div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:5px 0;
}
.pricing-meta span{
  color:var(--muted);
  font-size:14px;
}
.pricing-meta strong{
  text-align:right;
}
.pricing-fit{
  color:var(--muted);
  flex:1;
  margin-bottom:22px;
}
.pricing-note{
  margin-top:26px;
  padding:20px 22px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:18px;
}
.pricing-note p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:14px;
}


/* Founder section */
.founder-section{
  background:
    radial-gradient(circle at 15% 20%, rgba(241,221,221,.45), transparent 28%),
    var(--paper);
}
.founder-grid{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:54px;
  align-items:start;
}
.founder-visual{
  position:sticky;
  top:110px;
}
.founder-image-wrap{
  position:relative;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:30px;
  padding:24px;
  box-shadow:var(--shadow);
}
.founder-image-wrap img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:22px;
}
.photo-note{
  display:block;
  text-align:center;
  margin-top:14px;
  color:var(--muted);
  font-size:12px;
}
.founder-title{
  color:var(--rose-deep);
  font-weight:700;
  letter-spacing:.04em;
  margin-top:-4px;
}
.founder-lead{
  font-size:18px;
  color:var(--muted);
  margin:20px 0 26px;
}
.founder-highlights{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin:24px 0 30px;
}
.founder-highlights > div{
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 14px;
  text-align:center;
}
.founder-highlights strong{
  display:block;
  font-family:"Noto Serif TC",serif;
  color:var(--rose-deep);
  font-size:26px;
  margin-bottom:4px;
}
.founder-highlights span{
  color:var(--muted);
  font-size:13px;
}
.founder-story p{
  color:var(--muted);
}
.founder-philosophy{
  position:relative;
  margin-top:28px;
  padding:28px 28px 24px 42px;
  background:linear-gradient(135deg,#f8eee8,#fffaf6);
  border:1px solid var(--line);
  border-radius:24px;
}
.quote-mark{
  position:absolute;
  left:14px;
  top:-10px;
  font-family:Georgia,serif;
  font-size:70px;
  line-height:1;
  color:rgba(187,131,129,.30);
}
.founder-philosophy h3{
  margin-bottom:12px;
}
.founder-philosophy p{
  color:var(--muted);
}

@media (max-width: 980px){
  .founder-highlights{
    grid-template-columns:repeat(2,1fr);
  }
  .founder-grid{
    grid-template-columns:1fr;
  }
  .founder-visual{
    position:static;
    max-width:440px;
    margin:auto;
  }
}

@media (max-width: 560px){
  .founder-highlights{
    grid-template-columns:1fr;
  }
  .founder-philosophy{
    padding:26px 20px 22px 34px;
  }
}


/* ===== Launch-ready accessibility & final responsive overrides ===== */
.skip-link{
  position:fixed;
  left:12px;
  top:12px;
  z-index:9999;
  transform:translateY(-160%);
  padding:10px 14px;
  border-radius:10px;
  background:#fff;
  color:var(--ink);
  box-shadow:var(--shadow);
}
.skip-link:focus{transform:translateY(0)}

a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline:3px solid rgba(187,131,129,.65);
  outline-offset:3px;
  border-radius:6px;
}

section[id]{scroll-margin-top:100px}

.footer-legal a{
  text-decoration:none;
  border-bottom:1px solid rgba(134,111,99,.35);
}
.contact-legal-note{
  font-size:13px;
  opacity:.85;
}

/* Final desktop layouts */
.location-grid{grid-template-columns:repeat(3,1fr)}
.pricing-grid{grid-template-columns:repeat(2,1fr)}
.founder-highlights{grid-template-columns:repeat(5,1fr)}

/* Mobile navigation starts before the desktop nav becomes crowded */
@media (max-width:1100px){
  .menu-toggle{display:block}
  nav{
    display:none;
    position:absolute;
    left:20px;
    right:20px;
    top:76px;
    max-height:calc(100vh - 96px);
    overflow:auto;
    background:var(--paper);
    padding:18px;
    border-radius:18px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
  }
  nav.open{display:flex}
}

@media (max-width:980px){
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5){grid-column:auto}
  .location-grid,
  .pricing-grid{grid-template-columns:1fr}
  .founder-highlights{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:560px){
  .service-grid{grid-template-columns:1fr}
  .founder-highlights{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}


/* ===== 2026-08-21 Hero compact adjustment ===== */
.hero{
  min-height:680px;
}
.hero-inner{
  padding:46px 0 52px;
}
.hero-copy-compact{
  max-width:650px;
}
.hero-copy-compact.glass{
  padding:24px 26px 22px;
  border-radius:24px;
}
.hero-copy-compact h1{
  font-size:clamp(34px,4.5vw,58px);
  line-height:1.2;
  margin-bottom:14px;
}
.hero-copy-compact .lead{
  font-size:16px;
  line-height:1.72;
  margin-bottom:10px;
}
.hero-copy-compact .eyebrow{
  margin-bottom:6px;
}
.hero-copy-compact .hero-actions{
  margin-top:18px;
}
.hero-copy-compact .btn{
  min-height:44px;
  padding:0 19px;
  font-size:14px;
}
.hero-copy-compact .hero-badges{
  margin-top:16px;
  gap:8px;
}
.hero-copy-compact .hero-badges span{
  padding:6px 11px;
  font-size:12px;
}

/* ===== Key-focus service ===== */
.life-stage-service{
  position:relative;
  margin:0 auto 34px;
  max-width:1040px;
  padding:28px 30px;
  border-radius:26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241,221,221,.78), transparent 36%),
    linear-gradient(135deg,#fffdfa,#fff7f1);
  border:1px solid rgba(215,160,160,.55);
  box-shadow:0 16px 38px rgba(95,73,61,.08);
}
.life-stage-badge{
  position:absolute;
  top:18px;
  right:18px;
  padding:6px 12px;
  border-radius:999px;
  background:var(--rose-deep);
  color:#fff;
  font-size:12px;
  font-weight:700;
}
.life-stage-inner{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  align-items:start;
}
.life-stage-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--rose-soft);
  color:var(--rose-deep);
  font-size:30px;
}
.life-stage-copy h3{
  margin-bottom:10px;
  padding-right:88px;
}
.life-stage-copy p{
  color:var(--muted);
  margin-bottom:8px;
}
.life-stage-note{
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:#f7f1eb;
  border:1px solid var(--line);
  font-size:12px;
  line-height:1.65;
}

@media (max-width:1100px){
  .hero{
    min-height:620px;
  }
  .hero-inner{
    padding:34px 0 40px;
  }
  .hero-copy-compact{
    max-width:590px;
  }
}

@media (max-width:700px){
  .hero{
    min-height:auto;
  }
  .hero-inner{
    padding:26px 0 34px;
  }
  .hero-copy-compact.glass{
    padding:20px 18px 18px;
  }
  .hero-copy-compact h1{
    font-size:34px;
  }
  .life-stage-service{
    padding:24px 20px;
  }
  .life-stage-inner{
    grid-template-columns:1fr;
  }
  .life-stage-badge{
    position:static;
    display:inline-block;
    margin-bottom:14px;
  }
  .life-stage-copy h3{
    padding-right:0;
  }
}



/* ===== 2026-08-21 Preserve background title text ===== */
.hero{
  align-items:flex-start;
}
.hero-inner{
  padding-top:32px;
  padding-bottom:150px;
}
.hero-copy-compact{
  max-width:555px;
  margin-left:0;
}
.hero-copy-compact.glass{
  padding:20px 22px 18px;
}
.hero-copy-compact h1{
  font-size:clamp(31px,3.9vw,50px);
  line-height:1.16;
  margin-bottom:12px;
}
.hero-copy-compact .lead{
  font-size:15px;
  line-height:1.62;
}
.hero-copy-compact .hero-actions{
  margin-top:14px;
}
.hero-copy-compact .hero-badges{
  margin-top:12px;
}

/* Keep the lower area of the original photo visible */
.hero-bg img{
  object-position:center 46%;
}

@media (min-width:1200px){
  .hero-inner{
    padding-top:28px;
    padding-bottom:170px;
  }
  .hero-copy-compact{
    max-width:540px;
  }
}

@media (max-width:1100px){
  .hero-inner{
    padding-top:24px;
    padding-bottom:125px;
  }
  .hero-copy-compact{
    max-width:520px;
  }
}

@media (max-width:700px){
  .hero{
    align-items:flex-start;
  }
  .hero-inner{
    padding-top:20px;
    padding-bottom:90px;
  }
  .hero-copy-compact{
    max-width:100%;
  }
  .hero-copy-compact h1{
    font-size:31px;
  }
}



/* ===== 2026-08-21 Brand intro logo proportion fix ===== */
.intro-grid{
  grid-template-columns:1.2fr .8fr;
  gap:42px;
  align-items:center;
}
.intro-logo{
  display:flex;
  align-items:center;
  justify-content:center;
}
.intro-logo.clean-card{
  min-height:520px;
  padding:34px 28px;
  border-radius:30px;
  background:linear-gradient(180deg,#fffdfa 0%, #fbf4ee 100%);
}
.intro-logo img{
  width:min(290px, 74%);
  max-width:290px;
  height:auto;
  aspect-ratio:1/1;
  object-fit:contain;
  border-radius:0;
  margin:auto;
  box-shadow:none;
}

@media (max-width:1100px){
  .intro-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .intro-logo.clean-card{
    min-height:420px;
    padding:26px 22px;
  }
  .intro-logo img{
    width:min(260px, 72%);
    max-width:260px;
  }
}

@media (max-width:700px){
  .intro-logo.clean-card{
    min-height:360px;
    padding:22px 18px;
  }
  .intro-logo img{
    width:min(220px, 70%);
    max-width:220px;
  }
}



/* ===== 2026-08-21 Intro title line-break fix ===== */
.intro-title{
  line-height:1.34;
  letter-spacing:.02em;
}
.intro-title-line{
  white-space:nowrap;
}
@media (max-width:1100px){
  .intro-title-line{
    white-space:normal;
  }
}
@media (max-width:700px){
  .intro-title{
    font-size:30px;
    line-height:1.4;
  }
}



/* ===== 2026-08-21 Feature highlight card ===== */
.feature-item-highlight{
  grid-column:1 / -1;
  background:
    radial-gradient(circle at 100% 0%, rgba(241,221,221,.72), transparent 36%),
    linear-gradient(135deg,#fffdfa,#fff7f1);
  border-color:rgba(215,160,160,.55);
  box-shadow:0 14px 32px rgba(95,73,61,.07);
}
.feature-item-highlight h3{
  color:var(--ink);
}
.feature-note{
  margin-top:10px;
  padding:8px 10px;
  border-radius:10px;
  background:#f7f1eb;
  border:1px solid var(--line);
  font-size:12px;
  line-height:1.6;
}
@media (max-width:980px){
  .feature-item-highlight{
    grid-column:auto;
  }
}



/* ===== 2026-08-21 Additional audience cards ===== */
.feature-item-added{
  position:relative;
}
.feature-mini-icon{
  font-size:24px;
  margin-bottom:10px;
}



/* ===== 2026-08-21 About section horizontal image fix ===== */
.about-grid{
  grid-template-columns:1.05fr .95fr;
  gap:38px;
  align-items:center;
}
.about-photo img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  object-position:center 52%;
  border-radius:26px;
  box-shadow:var(--shadow);
}

@media (max-width:980px){
  .about-grid{
    grid-template-columns:1fr;
  }
  .about-photo img{
    aspect-ratio:16/9;
    object-position:center 52%;
  }
}



/* ===== 2026-08-21 Force horizontal image in About section ===== */
.about-grid{
  grid-template-columns: 1.08fr 0.92fr !important;
  gap: 38px !important;
  align-items: center !important;
}
.about-photo-horizontal{
  width: 100% !important;
}
.about-photo-horizontal img{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  border-radius: 26px !important;
  box-shadow: var(--shadow) !important;
}

@media (max-width: 980px){
  .about-grid{
    grid-template-columns: 1fr !important;
  }
  .about-photo-horizontal img{
    aspect-ratio: 16 / 9 !important;
    object-position: center 52% !important;
  }
}


/* ===== Story sharing section ===== */
.stories-section{
  background:
    radial-gradient(circle at 10% 10%, rgba(241,221,221,.45), transparent 28%),
    var(--paper-2);
}
.stories-notice{
  max-width:900px;
  margin:-16px auto 32px;
  padding:14px 18px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,253,250,.75);
  color:var(--muted);
  font-size:13px;
}
.stories-notice span{
  color:var(--rose-deep);
  font-size:20px;
  line-height:1.2;
}
.stories-notice p{margin:0}

.stories-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.story-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  background:var(--paper);
  border:1px solid var(--line-2);
  border-radius:24px;
  box-shadow:0 10px 28px rgba(95,73,61,.06);
}
.story-image{
  width:100%;
  aspect-ratio:16/10;
  overflow:hidden;
  background:#f6ece5;
}
.story-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.story-image-placeholder{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  color:var(--rose-deep);
  background:
    radial-gradient(circle at 30% 30%, rgba(241,221,221,.78), transparent 34%),
    linear-gradient(135deg,#fff8f3,#f6ece5);
}
.story-image-placeholder span{
  font-family:"Noto Serif TC",serif;
  font-size:54px;
  line-height:1;
}
.story-image-placeholder small{
  color:var(--muted);
  letter-spacing:.15em;
}
.story-content{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:22px 22px 20px;
}
.story-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--rose-deep);
  font-size:12px;
  font-weight:700;
  margin-bottom:10px;
}
.story-card h3{
  font-size:21px;
  line-height:1.55;
  margin-bottom:10px;
}
.story-summary{
  color:var(--muted);
  font-size:14px;
  flex:1;
}
.story-details{
  margin:10px 0 14px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}
.story-details summary{
  color:var(--rose-deep);
  font-size:14px;
}
.story-details p{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.story-footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding-top:12px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
}
.stories-actions{
  text-align:center;
  margin-top:30px;
}
.story-loading,
.story-empty{
  grid-column:1 / -1;
  text-align:center;
  padding:40px;
  color:var(--muted);
}

@media (max-width:980px){
  .stories-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:650px){
  .stories-grid{grid-template-columns:1fr}
}



/* ===== Story modal reader ===== */
.story-read-button{
  appearance:none;border:0;background:transparent;padding:8px 0 10px;margin-top:6px;
  color:var(--rose-deep);font:inherit;font-weight:700;text-align:left;cursor:pointer
}
.story-read-button::after{content:" →"}
.story-read-button:hover{text-decoration:underline}
.story-modal{position:fixed;inset:0;z-index:3000;display:none}
.story-modal.open{display:block}
.story-modal-backdrop{position:absolute;inset:0;background:rgba(47,35,29,.62);backdrop-filter:blur(5px)}
.story-modal-dialog{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:min(920px,calc(100% - 36px));max-height:min(88vh,900px);overflow:hidden;
  border-radius:28px;background:var(--paper);box-shadow:0 30px 90px rgba(32,20,15,.30);
  border:1px solid rgba(255,255,255,.65)
}
.story-modal-scroll{max-height:min(88vh,900px);overflow-y:auto;padding:46px 62px 50px}
.story-modal-close{
  position:absolute;right:18px;top:16px;z-index:2;width:42px;height:42px;border-radius:50%;
  border:1px solid var(--line);background:rgba(255,253,250,.94);color:var(--ink);
  font-size:28px;line-height:1;cursor:pointer
}
.story-modal-meta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:14px;color:var(--rose-deep);font-size:13px;font-weight:700}
.story-modal-meta span{padding:5px 10px;border-radius:999px;background:var(--rose-soft)}
.story-modal-dialog h2{font-size:clamp(30px,4vw,44px);line-height:1.45;margin:0 0 10px}
.story-modal-pet{color:var(--muted);margin-bottom:28px}
.story-modal-body{max-width:720px;margin:auto;color:var(--ink);font-size:17px;line-height:2}
.story-modal-body h3{margin:36px 0 14px;font-size:24px;color:var(--ink)}
.story-modal-body p{margin:0 0 22px}
.story-modal-body p:first-child{font-size:18px}
.story-modal-footer{
  display:flex;justify-content:space-between;gap:20px;max-width:720px;margin:40px auto 0;
  padding-top:18px;border-top:1px solid var(--line);color:var(--muted);font-size:12px
}
.story-modal-open{overflow:hidden}

@media (max-width:700px){
  .story-modal-dialog{width:100%;max-height:100vh;height:100vh;border-radius:0}
  .story-modal-scroll{max-height:100vh;padding:72px 22px 42px}
  .story-modal-close{position:fixed;right:14px;top:14px}
  .story-modal-body{font-size:16px;line-height:1.9}
  .story-modal-dialog h2{font-size:29px}
  .story-modal-footer{flex-direction:column;gap:5px}
}

/* ===== Story modal v7 fix ===== */
.story-read-button{
  position:relative;
  z-index:1;
}



/* ===== Facebook integration ===== */
.facebook{
  background:#1877F2;
  color:#fff;
}
.facebook:hover{
  opacity:.92;
}
.footer-social a{
  text-decoration:none;
  border-bottom:1px solid rgba(134,111,99,.35);
}



/* ===== 2026-08-25 Hero width fine-tuning ===== */
.hero-copy-compact{
  max-width: 620px !important;
}
.hero-copy-compact.glass{
  padding: 20px 24px 18px !important;
}
.hero-copy-compact h1{
  font-size: clamp(32px, 4.05vw, 50px) !important;
  line-height: 1.16 !important;
  letter-spacing: .01em !important;
}

@media (min-width: 1200px){
  .hero-copy-compact{
    max-width: 610px !important;
  }
}
@media (max-width: 1100px){
  .hero-copy-compact{
    max-width: 560px !important;
  }
}



/* ===== V15 live-site cleanup: booking & courses ===== */
.course-live-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}
.course-live-actions .btn{
  min-width:210px;
  text-align:center;
}
.line-btn{
  background:#06C755;
  color:#fff;
}
.line-btn:hover{
  opacity:.92;
}

@media (max-width:700px){
  .course-live-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .course-live-actions .btn{
    width:100%;
  }
}
