/* ==========================================================================
   青韵美甲沙龙 Tina Green Nail — 全站样式
   配色取自品牌 logo：嫩绿 + 藏青 + 米白
   ========================================================================== */
:root{
  --green:#84c07a;
  --green-deep:#5ea25a;
  --navy:#1f5573;
  --navy-deep:#153b52;
  --cream:#f7f8f3;
  --ink:#233038;
  --muted:#7c8a92;
  --gold:#c9a86a;
  --white:#ffffff;
  --line:rgba(31,85,115,.1);
  --shadow:0 16px 34px -24px rgba(31,85,115,.35);
  --radius:20px;
  --transition:.25s ease;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:clip;max-width:100%}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  color:var(--ink);
  background:#e7f1e0;              /* 柔和品牌绿，整体更绿（呼应原网页） */
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
.serif{font-family:Georgia,"Songti SC","STSong",serif}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
section{scroll-margin-top:90px}

/* ===== 通用标题 ===== */
.section-head{text-align:center;max-width:640px;margin:0 auto 2.6rem}
.section-eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  color:var(--green-deep);font-size:.78rem;letter-spacing:.22em;
  text-transform:uppercase;font-weight:700;margin-bottom:.9rem;
}
.section-eyebrow::before,.section-eyebrow::after{content:"";width:26px;height:2px;background:var(--green)}
.section-title{font-size:clamp(1.7rem,3.2vw,2.3rem);color:var(--navy-deep);font-weight:700;line-height:1.2}
.section-sub{color:var(--muted);margin-top:.7rem;font-size:1rem}

/* ===== 按钮 ===== */
.btn{
  display:inline-block;background:var(--navy);color:#fff;
  padding:.7rem 1.5rem;border-radius:999px;font-size:.95rem;font-weight:600;
  transition:transform .2s,background .2s;cursor:pointer;border:none;
}
.btn:hover{background:var(--green-deep);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--navy);border:1.5px solid rgba(31,85,115,.3)}
.btn-ghost:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.btn-lg{padding:.85rem 2rem;font-size:1rem}

/* ===== 顶部公告条 ===== */
.topbar{
  background:#f7f8f4;color:#3f4d55;font-size:.82rem;letter-spacing:.02em;
  border-bottom:1px solid rgba(31,85,115,.1);
  display:flex;justify-content:space-between;align-items:center;gap:.8rem 1.5rem;flex-wrap:wrap;
  padding:.5rem max(1.25rem, calc((100% - 1200px) / 2));
}
.topbar .tb-left{white-space:nowrap}
.topbar .tb-right{white-space:nowrap}
.topbar strong{color:var(--green-deep)}
.topbar a,.copyable{color:var(--navy);text-decoration:none;font-weight:600;cursor:pointer}
.topbar a:hover,.copyable:hover{color:var(--green-deep)}
/* 点击复制提示 */
.copyable{position:relative}
.copyable.copied::after{
  content:"Copied!";position:absolute;left:calc(100% + 8px);top:50%;bottom:auto;transform:translateY(-50%);
  background:var(--navy-deep);color:#fff;font-size:.68rem;font-weight:700;letter-spacing:.03em;
  padding:.2rem .5rem;border-radius:6px;white-space:nowrap;box-shadow:0 6px 16px -6px rgba(0,0,0,.4);z-index:200;
}

/* ===== 导航栏 ===== */
header.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(231,241,224,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(94,162,90,.22);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:.85rem 1.5rem;gap:1.5rem;max-width:1200px;margin:0 auto}
.brand{display:flex;align-items:center;gap:.75rem}
.brand-logo{height:58px;width:auto;display:block}
.brand-name{line-height:1.05}
.brand-name .en{display:block;font-size:1.55rem;font-weight:800;color:var(--navy-deep);letter-spacing:.005em;line-height:1.02}
.brand-name .zh{display:block;font-size:.82rem;font-weight:600;letter-spacing:.2em;color:var(--green-deep);margin-top:3px}
.menu{display:flex;gap:2rem;list-style:none;font-size:.95rem}
.menu a{position:relative;padding:.2rem 0;color:var(--navy);font-weight:500}
.menu a::after{content:"";position:absolute;left:0;bottom:-4px;height:2px;width:0;background:var(--green);transition:width .25s}
.menu a:hover::after,.menu a.active::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:1rem}
.phone{font-size:.9rem;color:var(--navy);font-weight:600;white-space:nowrap}
.hamburger{display:none;position:relative;width:42px;height:42px;padding:0;border:0;cursor:pointer;font-size:0;
  background:linear-gradient(var(--navy),var(--navy)) center/22px 2px no-repeat}
.hamburger::before,.hamburger::after{content:"";position:absolute;left:10px;right:10px;height:2px;border-radius:2px;background:var(--navy);transition:transform .25s,top .25s,bottom .25s}
.hamburger::before{top:13px}
.hamburger::after{bottom:13px}
.hamburger.open{background:none}
.hamburger.open::before{top:20px;transform:rotate(45deg)}
.hamburger.open::after{bottom:20px;transform:rotate(-45deg)}

/* 移动菜单抽屉 */
.mobile-menu{
  display:none;flex-direction:column;background:var(--cream);
  border-bottom:1px solid var(--line);padding:.5rem 1.5rem 1.2rem;
}
.mobile-menu.open{display:flex}
.mobile-menu a{padding:.75rem 0;color:var(--navy);font-weight:500;border-bottom:1px solid var(--line)}
.mobile-menu .btn{margin-top:1rem;text-align:center}

/* ===== Hero ===== */
.hero{display:grid;grid-template-columns:1.05fr .95fr;gap:2.5rem;align-items:center;padding:4rem 1.5rem 4.5rem;max-width:1200px;margin:0 auto}
.hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;color:var(--green-deep);font-size:.8rem;letter-spacing:.22em;text-transform:uppercase;font-weight:700;margin-bottom:1.1rem}
.hero-eyebrow::before{content:"";width:28px;height:2px;background:var(--green)}
.hero h1{font-size:clamp(2.4rem,5vw,3.6rem);line-height:1.15;color:var(--navy-deep);font-weight:700;margin-bottom:1.2rem}
.hero h1 .accent{color:var(--green-deep)}
.hero p.lead{font-size:1.05rem;line-height:1.9;color:#4b5a63;max-width:34ch;margin-bottom:2rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.4rem}
.hero-stats{display:flex;gap:2.4rem}
.hero-stats .num{font-size:1.7rem;font-weight:700;color:var(--navy);line-height:1}
.hero-stats .lbl{font-size:.78rem;color:var(--muted);margin-top:.35rem;letter-spacing:.05em}
.hero-visual{position:relative;display:flex;justify-content:center}
.visual-card{position:relative;width:100%;max-width:420px;aspect-ratio:4/5;border-radius:30px;overflow:hidden;
  background:radial-gradient(120% 80% at 50% 0%,#eaf3e6 0%,#dcebd6 45%,#cfe4c8 100%);
  box-shadow:0 30px 60px -25px rgba(31,85,115,.35);display:flex;flex-direction:column;align-items:center;justify-content:center;border:1px solid rgba(94,162,90,.25)}
.visual-card img{width:66%;max-width:280px;filter:drop-shadow(0 8px 18px rgba(94,162,90,.35))}
.visual-card .vc-name{margin-top:.4rem;font-size:1.6rem;font-weight:700;color:var(--navy);letter-spacing:.14em}
.visual-card .vc-sub{font-size:.7rem;letter-spacing:.3em;text-transform:uppercase;color:var(--green-deep);margin-top:.35rem}
.badge-float{position:absolute;background:#fff;border-radius:16px;padding:.75rem 1rem;box-shadow:0 14px 30px -12px rgba(31,85,115,.3);display:flex;align-items:center;gap:.6rem;font-size:.82rem;font-weight:600;color:var(--navy)}
.badge-float .dot{width:34px;height:34px;border-radius:50%;background:var(--cream);display:flex;align-items:center;justify-content:center;font-size:1.1rem}
.badge-1{top:8%;left:-4%}
.badge-2{bottom:9%;right:-5%}

/* ===== Hero 居中构图 ===== */
.hero-centered{
  position:relative;overflow:hidden;
  text-align:center;max-width:none;margin:0;
  padding:3.5rem 1.5rem 4.5rem;display:flex;flex-direction:column;align-items:center;
  background:linear-gradient(180deg,rgba(215,232,202,.85) 0%,rgba(231,241,224,.9) 100%),
    url(/images/hero-bg.webp) center 32%/cover no-repeat;
}
/* 古典巴洛克两侧装饰 */
.hero-centered::before,.hero-centered::after{
  content:"";position:absolute;top:50%;transform:translateY(-50%);
  width:64px;height:140px;opacity:.8;pointer-events:none;z-index:0;
  background:url(/images/baroque-corner.svg) no-repeat center/contain;
}
.hero-centered::before{left:3%}
.hero-centered::after{right:3%;transform:translateY(-50%) scaleX(-1)}
.hero-centered>*{position:relative;z-index:1}
.hero-centered>*{max-width:940px}
.hero-logo-panel{
  background:#c3d8a6;                     /* 截图同款柔和绿底 */
  padding:9px;border-radius:22px;margin-bottom:1.6rem;
  box-shadow:0 18px 40px -22px rgba(94,162,90,.6);
  animation:floatY 4s ease-in-out infinite;
}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.hero-logo-card{
  background:#fff;border-radius:18px;padding:1.5rem 2rem;
  display:flex;flex-direction:column;align-items:center;gap:.35rem;
}
.hero-logo-h{width:100%;max-width:520px;height:auto;display:block}
.hero-logo-card img{width:110px;height:auto;margin-bottom:.3rem}
.hlc-en{font-size:2rem;font-weight:700;color:var(--navy);letter-spacing:.01em;line-height:1}
.hlc-zh{font-size:.92rem;font-weight:500;letter-spacing:.24em;color:var(--green-deep)}
.hero-centered .hero-eyebrow{margin-bottom:1rem}
.hero-centered h1{font-size:clamp(2.3rem,5vw,3.4rem);line-height:1.18;color:var(--navy-deep);font-weight:700;margin-bottom:1.1rem}
.hero-centered h1 .accent{color:var(--green-deep)}
.hero-centered p.lead{font-size:1.08rem;line-height:1.9;color:#4b5a63;max-width:none;margin:0 auto 2rem}
.hero-centered .hero-actions{justify-content:center}
.hero-centered .hero-stats{justify-content:center;gap:3rem}

/* ===== Our Mission ===== */
.mission{padding:1rem 0 3.5rem}
.mission-lead{text-align:center;max-width:1000px;margin:0 auto;font-size:1.12rem;line-height:2;color:#3f4d55}
.mission-lead strong{color:var(--green-deep);font-weight:700}
.mission-pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem;margin-top:2.6rem}
.pillar{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem 1.2rem;text-align:center;box-shadow:var(--shadow);transition:transform .2s}
.pillar:hover{transform:translateY(-4px)}
.pillar .p-ico{font-size:2rem;display:block;margin-bottom:.6rem}
.pillar b{display:block;color:var(--navy);font-size:1.1rem;margin-bottom:.3rem}
.pillar span{color:var(--muted);font-size:.9rem}

/* ===== 通用区块间距 ===== */
.section{padding:4rem 0}
.section-alt{background:#fff}

/* ===== 服务卡片 ===== */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.service-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:2rem 1.6rem;box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s}
.section-alt .service-card{background:var(--cream)}
.service-card:hover{transform:translateY(-5px);box-shadow:0 24px 44px -22px rgba(31,85,115,.4)}
.service-card .ico{width:56px;height:56px;border-radius:16px;background:linear-gradient(135deg,#eaf3e6,#cfe4c8);display:flex;align-items:center;justify-content:center;font-size:1.7rem;margin-bottom:1.1rem}
.service-card h3{font-size:1.2rem;color:var(--navy);margin-bottom:.6rem}
.service-card p{color:#556069;font-size:.94rem;margin-bottom:1rem}
.service-card .price{color:var(--green-deep);font-weight:700;font-size:1.05rem}

/* ===== 作品展示 ===== */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.gallery-item{position:relative;aspect-ratio:1;border-radius:16px;overflow:hidden;box-shadow:var(--shadow);
  background:linear-gradient(135deg,#eaf3e6,#dcebd6);display:flex;align-items:center;justify-content:center}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-item .ph{font-size:2.4rem;opacity:.5}
.gallery-item .cap{position:absolute;left:0;right:0;bottom:0;padding:.7rem .9rem;color:#fff;font-size:.85rem;font-weight:600;background:linear-gradient(transparent,rgba(21,59,82,.75))}

/* ===== 评价区 ===== */
.rev-head{display:flex;align-items:flex-end;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;margin-bottom:1.8rem}
.rev-head h2{font-size:clamp(1.6rem,3vw,2.1rem);color:var(--navy-deep);font-weight:700}
.rev-head p{color:var(--muted);font-size:.95rem;margin-top:.35rem}
.rev-summary{display:flex;gap:.9rem;flex-wrap:wrap}
.src-chip{display:flex;align-items:center;gap:.6rem;background:#fff;border:1px solid var(--line);border-radius:14px;padding:.6rem .9rem;box-shadow:0 8px 20px -14px rgba(31,85,115,.3);text-decoration:none;transition:transform .2s,box-shadow .2s}
a.src-chip:hover{transform:translateY(-2px);box-shadow:0 14px 26px -14px rgba(31,85,115,.45)}
a.src-chip .meta span{color:var(--green-deep);font-weight:600}
.src-chip .ico{width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:.9rem;font-weight:700}
.ico-g{background:#4285F4}
.ico-ins{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.src-chip .meta b{display:block;font-size:1.02rem;color:var(--navy);line-height:1.1}
.src-chip .meta span{font-size:.72rem;color:#8b98a0}
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.rev-card{background:#fff;border:1px solid rgba(31,85,115,.08);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:.9rem;transition:transform .2s,box-shadow .2s}
.section-alt .rev-card{background:var(--cream)}
.rev-card:hover{transform:translateY(-4px);box-shadow:0 24px 44px -22px rgba(31,85,115,.4)}
.rev-top{display:flex;align-items:center;justify-content:space-between}
.stars{color:#f5a623;letter-spacing:.06em;font-size:.95rem}
.src-tag{font-size:.68rem;font-weight:700;letter-spacing:.05em;padding:.2rem .55rem;border-radius:999px}
.tag-g{color:#4285F4;background:rgba(66,133,244,.1)}
.tag-ins{color:#c1327a;background:rgba(220,39,67,.09)}
.rev-text{color:#3f4d55;line-height:1.75;font-size:.95rem;flex:1}
.rev-user{display:flex;align-items:center;gap:.7rem}
.avatar{width:40px;height:40px;border-radius:50%;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1rem;flex-shrink:0}
.rev-user b{font-size:.9rem;color:var(--navy)}
.rev-user span{font-size:.74rem;color:#95a2aa}

/* ===== CTA 横幅 ===== */
.cta-band{background:linear-gradient(135deg,var(--navy),var(--navy-deep));color:#fff;border-radius:26px;padding:3rem 2rem;text-align:center;margin:0 1.5rem}
.cta-band h2{font-size:clamp(1.6rem,3vw,2.2rem);margin-bottom:.8rem}
.cta-band p{color:rgba(255,255,255,.8);margin-bottom:1.8rem;max-width:44ch;margin-left:auto;margin-right:auto}
.cta-band .btn{background:var(--green);color:var(--navy-deep)}
.cta-band .btn:hover{background:#fff}

/* ===== 页面头（内页） ===== */
.page-hero{text-align:center;padding:3.5rem 1.5rem 2.5rem;background:linear-gradient(180deg,#eef4ea,var(--cream))}
.page-hero h1{font-size:clamp(2rem,4vw,2.8rem);color:var(--navy-deep);margin-bottom:.7rem}
.page-hero p{color:var(--muted);max-width:52ch;margin:0 auto}

/* ===== 信息 / 联系 ===== */
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start}
.info-list{list-style:none;display:flex;flex-direction:column;gap:1.2rem}
.info-list li{display:flex;gap:1rem;align-items:flex-start}
.info-list .ico{width:46px;height:46px;border-radius:12px;background:linear-gradient(135deg,#eaf3e6,#cfe4c8);display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0}
.info-list b{display:block;color:var(--navy);font-size:1rem;margin-bottom:.2rem}
.info-list p,.info-list a{color:#556069;font-size:.95rem}
.info-list a:hover{color:var(--green-deep)}

/* ===== 表单 ===== */
.contact-form{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:1rem}
.contact-form label{font-size:.85rem;font-weight:600;color:var(--navy);margin-bottom:-.5rem}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;padding:.8rem 1rem;border:1px solid var(--line);border-radius:12px;font-size:.95rem;font-family:inherit;background:var(--cream);color:var(--ink)}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:none;border-color:var(--green);background:#fff}
.contact-form textarea{min-height:120px;resize:vertical}
.contact-form .btn{margin-top:.5rem}
.captcha-row{display:flex;align-items:center;gap:.8rem;flex-wrap:wrap}
.captcha-row img{border:1px solid var(--line);border-radius:8px;background:#fff}

/* ===== 价目表页头（绿绿葱葱，呼应原价目表图） ===== */
.pricelist-hero{
  position:relative;overflow:hidden;
  background:linear-gradient(160deg,#bcd7a4 0%,#a9cd8d 100%);
  padding:3.8rem 1.5rem 3rem;
}
.pricelist-hero h1{color:#1f4d2e;text-shadow:0 1px 0 rgba(255,255,255,.25)}
.pricelist-hero p{color:#2f5b3c;max-width:52ch;margin:0 auto}
.pricelist-hero .leaf-deco{
  position:absolute;top:14px;width:90px;height:auto;opacity:.55;
  filter:brightness(.85) saturate(1.2);
}
.pricelist-hero .leaf-left{left:22px;transform:rotate(-18deg)}
.pricelist-hero .leaf-right{right:22px;transform:rotate(18deg) scaleX(-1)}

/* ===== 服务菜单（价目表） ===== */
.menu-section{background:linear-gradient(160deg,#cfe4bf 0%,#bcd7a4 100%)}
.menu-section .menu-h{color:#1f4d2e;border-bottom-color:#7fb562}
.menu-section .menu-h span{color:#3f7a4c}
.menu-section .m-price,.menu-section .m-trow>span{color:#2f7a3f}
.menu-wrap{display:grid;grid-template-columns:1.15fr .85fr;gap:1.8rem;align-items:stretch}
.menu-col{display:flex;flex-direction:column;gap:1.8rem}
.menu-col .menu-block:last-child{flex:1 1 auto}
.menu-block{background:#fff;border:1px solid rgba(94,162,90,.25);border-radius:22px;padding:1.8rem 1.6rem;box-shadow:0 20px 44px -28px rgba(31,85,115,.4)}
.menu-block.additional{background:linear-gradient(180deg,#fbfdf9,#fff)}
.menu-h{font-size:1.5rem;color:var(--navy-deep);letter-spacing:.06em;font-weight:700;text-align:center;padding-bottom:.9rem;margin-bottom:1.1rem;border-bottom:2px solid var(--green)}
.menu-h span{display:block;font-size:.82rem;letter-spacing:.16em;color:var(--green-deep);font-weight:600;margin-top:.25rem;font-family:"PingFang SC","Microsoft YaHei",sans-serif}

.menu-list{display:flex;flex-direction:column}
.m-row{display:flex;align-items:baseline;gap:.5rem;padding:.55rem 0;border-bottom:1px dashed rgba(31,85,115,.14)}
.m-row:last-child{border-bottom:none}
.m-name{color:var(--navy);font-weight:600;font-size:1rem;white-space:nowrap}
.m-name em{font-style:normal;color:var(--muted);font-weight:400;font-size:.82rem;margin-left:.45rem}
.m-lead{flex:1;border-bottom:1px dotted rgba(31,85,115,.28);transform:translateY(-3px)}
.m-price{color:var(--green-deep);font-weight:700;font-size:1.05rem;white-space:nowrap}

.m-table{margin-top:1.1rem}
.m-thead,.m-trow{display:grid;grid-template-columns:1.5fr .8fr .8fr .8fr;align-items:center;gap:.4rem}
.m-table.pedi .m-thead,.m-table.pedi .m-trow{grid-template-columns:1.9fr .8fr .8fr}
.m-thead{padding:.3rem 0 .5rem}
.m-thead span{font-size:.72rem;color:var(--muted);text-align:center;line-height:1.15;text-transform:uppercase;letter-spacing:.03em}
.m-trow{padding:.6rem 0;border-bottom:1px dashed rgba(31,85,115,.14)}
.m-trow:last-child{border-bottom:none}
.m-trow>span{text-align:center;color:var(--green-deep);font-weight:700;font-size:1rem}
.m-trow .th-name{text-align:left;color:var(--navy);font-weight:600;font-size:1rem;display:flex;flex-direction:column}
.th-name em{font-style:normal;color:var(--muted);font-weight:400;font-size:.8rem;margin-top:.1rem}
.th-name small{color:#8b98a0;font-weight:400;font-size:.72rem;margin-top:.3rem;line-height:1.4}

.menu-figure{margin:1.4rem 0 .2rem;text-align:center}
.menu-figure img{width:100%;max-width:340px;height:auto;margin:0 auto;border-radius:16px;box-shadow:0 16px 34px -22px rgba(31,85,115,.5);display:block}
.menu-figure figcaption{margin-top:.7rem;font-size:.82rem;color:var(--muted)}

/* ===== 预约页背景 ===== */
.booking-section{
  background:linear-gradient(160deg,#eaf3e6 0%,#dcecd5 55%,#cfe6c7 100%);
}
.booking-section .contact-form{background:#fff;box-shadow:0 24px 50px -26px rgba(31,85,115,.45)}
.booking-section .info-list .ico{background:#fff}

/* ===== Book & Gift Cards ===== */
.book-gift{background:linear-gradient(160deg,#dcecd2,#cfe4c3)}
.bg-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
.bg-card{background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:22px;padding:2.2rem 2rem;box-shadow:0 20px 44px -26px rgba(31,85,115,.4);display:flex;flex-direction:column;align-items:flex-start}
.bg-card.gift{background:linear-gradient(180deg,#fff,#f4faef)}
.bg-card .p-ico{font-size:2.2rem;margin-bottom:.8rem}
.bg-card h3{font-size:1.5rem;color:var(--navy-deep);margin-bottom:.7rem}
.bg-card p{color:#4b5a63;line-height:1.8;margin-bottom:1.4rem}
.bg-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:auto}

/* ===== 首页 Location & Hours ===== */
.lochours{background:linear-gradient(160deg,#eef5ea,#e2efdc)}
.loc-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:1.6rem;align-items:start}
.loc-info,.loc-hours{background:#fff;border:1px solid rgba(94,162,90,.25);border-radius:22px;padding:1.6rem 1.7rem;box-shadow:0 20px 44px -28px rgba(31,85,115,.4)}
.loc-info .info-list{gap:.55rem}
.loc-info .info-list li{margin-bottom:0;align-items:center}
.loc-info .info-list li b{margin-bottom:.05rem}
.loc-info .info-list li p{line-height:1.45}
.loc-info small{color:#8b98a0;font-size:.82rem;line-height:1.45;display:inline-block;margin-top:.15rem}
/* 活力图标：各项不同的鲜亮渐变 */
.loc-info .info-list li:nth-child(1) .ico{background:linear-gradient(135deg,#ff8a9b,#ff5f6d)}
.loc-info .info-list li:nth-child(2) .ico{background:linear-gradient(135deg,#7ed957,#3fa34d)}
.loc-info .info-list li:nth-child(3) .ico{background:linear-gradient(135deg,#4facfe,#3a7bd5)}
.loc-info .info-list li:nth-child(4) .ico{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888)}
.loc-hours{display:flex;flex-direction:column}
.loc-hours h3{color:var(--navy-deep);font-size:1.3rem;margin-bottom:1.2rem;padding-bottom:.7rem;border-bottom:2px solid var(--green)}
.hours-list{list-style:none;display:flex;flex-direction:column;gap:.9rem}
.hours-list li{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;flex-wrap:wrap}
.hours-list span{color:var(--muted);font-size:.92rem}
.hours-list b{color:var(--green-deep);font-weight:700;font-size:1rem;white-space:nowrap}

/* ===== Footer ===== */
footer.site-footer{background:var(--navy-deep);color:#fff;padding:3rem 0 1.5rem;margin-top:4rem}
.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;margin-bottom:2rem}
.footer-section h3{color:#fff;margin-bottom:1rem;font-size:1.15rem}
.footer-section p,.footer-section a{color:rgba(255,255,255,.8);line-height:1.9;font-size:.92rem}
.footer-section a:hover{color:var(--green)}
.footer-bottom{text-align:center;padding-top:2rem;border-top:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.6)}
.footer-bottom p{margin-bottom:.5rem}
.footer-partner{margin-top:1rem;font-size:.9rem;color:rgba(255,255,255,.7)}
.footer-partner a{color:var(--green);transition:var(--transition)}
.footer-partner a:hover{color:#fff}

/* ===== 响应式 ===== */
@media(max-width:860px){
  .menu,.phone,.phone-wrap,.nav-cta{display:none}
  .nav{flex-wrap:nowrap;gap:.6rem}
  .brand{min-width:0;flex:0 1 auto}
  .hamburger{display:block;flex-shrink:0}
  .hero{grid-template-columns:1fr;gap:2.5rem;padding-top:2.5rem}
  .hero-visual{order:-1}
  .visual-card{max-width:340px}
  .hero p.lead{max-width:none}
  .badge-1{left:0}.badge-2{right:0}
  .services-grid,.gallery-grid,.rev-grid{grid-template-columns:1fr 1fr}
  .info-grid{grid-template-columns:1fr}
  .mission-pillars{grid-template-columns:1fr}
  .hero-centered .hero-stats{gap:2rem}
  .menu-wrap{grid-template-columns:1fr}
  .loc-grid{grid-template-columns:1fr}
  .bg-grid{grid-template-columns:1fr}
  .gift-grid{grid-template-columns:1fr}
  .bm-item{flex-direction:column;align-items:flex-start;gap:.7rem}
  .bm-cat-body{grid-template-columns:1fr}
  .bm-photo{position:static;max-width:320px;margin:0 auto}
  .pricelist-hero .leaf-deco{width:56px;opacity:.4}
  .pricelist-hero .leaf-left{left:8px}
  .pricelist-hero .leaf-right{right:8px}
}
@media(max-width:560px){
  .brand-name .zh{font-size:1.1rem}
  .hero-stats{gap:1.6rem}
  .services-grid,.gallery-grid,.rev-grid{grid-template-columns:1fr}
}

/* ===== Book 页：服务菜单预约 ===== */
.book-menu{background:linear-gradient(160deg,#e7f1e0,#d7e8ca)}
.bm-cat{background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:22px;padding:1.6rem 1.8rem;margin-bottom:1.6rem;box-shadow:0 20px 44px -28px rgba(31,85,115,.4)}
.bm-cat-head{display:flex;align-items:center;justify-content:space-between;padding-bottom:1rem;margin-bottom:.6rem;border-bottom:2px solid var(--green)}
.bm-cat-head h2{font-size:1.7rem;color:var(--navy-deep)}
.bm-book-all{padding:.5rem 1.6rem}
.bm-cat-body{display:grid;grid-template-columns:340px 1fr;gap:2rem;align-items:start}
.bm-photo{position:sticky;top:100px;border-radius:16px;overflow:hidden;box-shadow:0 18px 40px -24px rgba(31,85,115,.5)}
.bm-photo img{width:100%;height:auto;display:block;aspect-ratio:1;object-fit:cover}
.bm-list{display:flex;flex-direction:column}
.bm-item{display:block;padding:1.1rem 0;border-bottom:1px dashed rgba(31,85,115,.15);color:inherit;transition:padding-left .2s}
.bm-item:first-child{padding-top:0}
.bm-item:last-child{border-bottom:none;padding-bottom:0}
.bm-item:hover{padding-left:.5rem}
.bm-item h3{font-size:1.15rem;color:var(--navy);margin-bottom:.35rem}
.bm-item:hover h3{color:var(--green-deep)}
.bm-item p{color:#697680;font-size:.88rem;line-height:1.6;margin-bottom:.5rem;max-width:64ch}
.bm-meta{font-size:.92rem;color:var(--green-deep)}
.bm-meta strong{color:var(--navy)}
.bm-note{background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:22px;padding:1.8rem;text-align:center;box-shadow:0 20px 44px -28px rgba(31,85,115,.4)}
.bm-note p{color:#4b5a63;margin-bottom:1.2rem}
.bm-note a[href^="tel"]{color:var(--green-deep);font-weight:700}

/* ===== Gift Card 页 ===== */
.gift-page{background:linear-gradient(160deg,#e7f1e0,#d7e8ca)}
.gift-wrap{max-width:640px;text-align:center;position:relative}
.gc-balance{color:var(--navy);font-weight:600;font-size:.9rem}
.gc-balance:hover{color:var(--green-deep)}
.gift-head .gc-balance{display:block;text-align:right;font-size:.85rem;margin-bottom:1.2rem}
.gift-head h2{font-size:clamp(1.9rem,4vw,2.6rem);color:var(--navy-deep);margin-bottom:.5rem}
.gift-head p{color:#4b5a63;font-size:1.05rem;margin-bottom:2rem}
.gift-carousel{display:flex;align-items:center;justify-content:center;gap:1.2rem;margin-bottom:1.2rem}
.gc-arrow{width:46px;height:46px;border-radius:50%;border:1.5px solid rgba(31,85,115,.3);background:#fff;color:var(--navy);font-size:1.1rem;cursor:pointer;flex-shrink:0;transition:background .2s,color .2s}
.gc-arrow:hover{background:var(--navy);color:#fff}
.gc-stage{width:100%;max-width:360px}
/* 品牌卡面（4 款自绘设计） */
.gift-card-mock{width:100%;aspect-ratio:1.6/1;border-radius:20px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.3rem;
  box-shadow:0 26px 50px -22px rgba(21,59,82,.6);border:1px solid rgba(255,255,255,.15);transition:background .4s}
.gift-card-mock img{width:60px;height:auto;filter:brightness(0) invert(1) opacity(.92)}
.gift-card-mock .gc-brand{color:#fff;font-size:1.25rem;font-weight:700;letter-spacing:.02em;margin-top:.3rem}
.gift-card-mock .gc-label{color:rgba(255,255,255,.85);font-size:.72rem;letter-spacing:.35em;text-transform:uppercase}
.gift-card-mock[data-style="0"]{background:linear-gradient(135deg,#1f5573,#153b52 60%,#2e5471)}
.gift-card-mock[data-style="1"]{background:linear-gradient(135deg,#5ea25a,#3f7a4c 70%,#2f5b3c)}
.gift-card-mock[data-style="2"]{background:linear-gradient(135deg,#c9a86a,#a9884b 70%,#8a6d38)}
.gift-card-mock[data-style="3"]{background:linear-gradient(135deg,#84c07a,#5ea25a 55%,#1f5573)}
.gift-thumbs{display:flex;gap:.6rem;justify-content:center;margin-bottom:1.4rem}
.gc-thumb{width:52px;height:34px;border-radius:8px;border:2px solid transparent;cursor:pointer;box-shadow:0 6px 14px -8px rgba(31,85,115,.5);transition:transform .15s}
.gc-thumb:hover{transform:translateY(-2px)}
.gc-thumb.is-active{border-color:var(--navy)}
.gc-thumb.gc-s0{background:linear-gradient(135deg,#1f5573,#2e5471)}
.gc-thumb.gc-s1{background:linear-gradient(135deg,#5ea25a,#2f5b3c)}
.gc-thumb.gc-s2{background:linear-gradient(135deg,#c9a86a,#8a6d38)}
.gc-thumb.gc-s3{background:linear-gradient(135deg,#84c07a,#1f5573)}
.gift-kind{margin-top:2.4rem;display:flex;flex-direction:column;gap:.9rem;text-align:left;max-width:520px;margin-left:auto;margin-right:auto}
.gift-q{font-size:1.4rem;color:var(--navy-deep);margin-bottom:.2rem;text-align:left}
.gift-opt{display:flex;align-items:center;gap:1rem;background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:16px;padding:1.1rem 1.2rem;box-shadow:0 12px 30px -20px rgba(31,85,115,.4);transition:transform .2s,box-shadow .2s}
.gift-opt:hover{transform:translateY(-3px);box-shadow:0 20px 38px -20px rgba(31,85,115,.5)}
.gift-opt .go-ico{font-size:1.6rem;flex-shrink:0}
.gift-opt .go-text{flex:1;display:flex;flex-direction:column}
.gift-opt .go-text b{color:var(--navy);font-size:1.02rem}
.gift-opt .go-text span{color:#697680;font-size:.86rem;margin-top:.15rem}
.gift-opt .go-arrow{color:var(--green-deep);font-weight:700}
.gift-buy{text-align:center;margin-top:.4rem}
.gift-fine{color:var(--muted);font-size:.8rem;line-height:1.5}

/* ===== 深色分隔边（页面/区块之间，参考 #2e5471） ===== */
.section-alt{border-top:2px solid #2e5471;border-bottom:2px solid #2e5471}
.mission,.menu-section,.book-gift,.lochours,.gift-page,.book-menu,.pricelist-hero,.about-hero{
  border-top:1px solid rgba(46,84,113,.35);
}
.cta-band{border:1px solid rgba(46,84,113,.6)}

/* ===== Services 色卡卡片（右下） ===== */
.chart-card{margin-top:1.6rem;background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:22px;
  overflow:hidden;box-shadow:0 20px 44px -26px rgba(31,85,115,.4)}
.chart-card img{width:100%;height:auto;display:block}
.chart-card figcaption{padding:.8rem 1rem;text-align:center;font-size:.85rem;color:#3f7a4c;font-weight:600}

/* ===== Footer 完整 logo（左下白色徽章） ===== */
.footer-logo{display:block;background:#fff;border-radius:16px;padding:12px 18px;max-width:240px;
  width:100%;height:auto;margin-bottom:1rem}

/* ===== About 页绿色装饰 + 照片卡 ===== */
.about-hero{position:relative;overflow:hidden;background:linear-gradient(160deg,#e3f0da,#d2e7c4);padding:2.2rem 1.5rem 2rem}
.about-grid{align-items:center}
/* 巴洛克镀金相框 */
.about-chart-wrap{position:relative;max-width:400px;margin:0 auto;padding:14px;background:#fff;
  border:2px solid var(--gold);border-radius:6px;outline:1px solid var(--gold);outline-offset:5px;
  box-shadow:0 30px 60px -28px rgba(31,85,115,.45)}
.about-chart{width:100%;height:420px;object-fit:cover;object-position:center 45%;display:block;border-radius:2px}
.about-chart-wrap::before,.about-chart-wrap::after{content:"";position:absolute;left:50%;transform:translateX(-50%);
  width:160px;height:20px;background:url(/images/baroque-divider.svg) center/contain no-repeat;
  filter:drop-shadow(0 0 2px #fff)}
.about-chart-wrap::before{top:-11px}
.about-chart-wrap::after{bottom:-11px}
.about-hero h1{color:#1f4d2e}
.about-hero p{color:#2f5b3c}
.about-hero .leaf-deco{position:absolute;top:20px;width:80px;height:auto;opacity:.4;filter:brightness(.9) saturate(1.25)}
.about-hero .leaf-left{left:32px;transform:rotate(-16deg)}
.about-hero .leaf-right{right:32px;transform:rotate(16deg) scaleX(-1)}
.about-photo{width:100%;max-width:400px;margin:0;border-radius:26px;overflow:hidden;background:#fff;
  box-shadow:0 30px 60px -28px rgba(31,85,115,.45);border:1px solid rgba(94,162,90,.28)}
.about-photo img{width:100%;height:auto;display:block;aspect-ratio:1;object-fit:cover}
.about-photo figcaption{padding:.85rem 1rem;text-align:center;font-size:.85rem;color:var(--muted)}
.about-photo figcaption a{color:var(--green-deep);font-weight:700}

/* ===== Press 引文 ===== */
.press{padding:2.5rem 0}
.press-card{max-width:820px;margin:0 auto;text-align:center;background:linear-gradient(135deg,#153b52,#1f5573);
  border-radius:26px;padding:2.6rem 2rem;box-shadow:0 26px 54px -26px rgba(21,59,82,.7)}
.press-eyebrow{display:inline-block;color:var(--green);font-size:.78rem;letter-spacing:.22em;text-transform:uppercase;font-weight:700;margin-bottom:1.1rem}
.press-quote{color:#fff;font-size:clamp(1.2rem,2.6vw,1.6rem);line-height:1.5;margin-bottom:1.6rem;font-style:italic}
.press-card .btn-ghost{color:#fff;border-color:rgba(255,255,255,.4)}
.press-card .btn-ghost:hover{background:#fff;color:var(--navy);border-color:#fff}

/* ===== Location 地图布局 ===== */
.loc-grid2{display:grid;grid-template-columns:1.15fr .85fr;gap:1.6rem;align-items:stretch}
.loc-map{border-radius:22px;overflow:hidden;box-shadow:0 20px 44px -28px rgba(31,85,115,.45);border:1px solid rgba(94,162,90,.28);min-height:360px}
.loc-map iframe{width:100%;height:100%;min-height:360px;border:0;display:block}
.loc-details{background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:22px;padding:1.7rem 1.8rem;box-shadow:0 20px 44px -28px rgba(31,85,115,.4);display:flex;flex-direction:column;justify-content:center}
.loc-details .info-list{gap:.6rem}
.loc-details .info-list li{margin-bottom:0;align-items:center}
.loc-details .info-list li b{margin-bottom:.05rem}
.loc-details .info-list .ico{background:none !important;box-shadow:none;width:auto;height:auto;border-radius:0;font-size:1.5rem;align-self:flex-start;margin-top:.1rem}
.loc-details .info-list li{gap:.8rem}
.loc-details small{color:#8b98a0;font-size:.8rem;line-height:1.45;display:inline-block;margin-top:.15rem}
@media(max-width:860px){.loc-grid2{grid-template-columns:1fr}}

/* ===== 新 Footer（变窄，Stay in the Loop） ===== */
.footer-narrow{max-width:820px;margin:0 auto;padding:0 1.5rem;text-align:center}
.footer-top{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;margin-bottom:1.4rem}
.footer-ig{color:var(--green);font-weight:700;font-size:.92rem}
.footer-ig:hover{color:#fff}
.footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem 1.6rem;margin-bottom:2rem;padding-bottom:1.6rem;border-bottom:1px solid rgba(255,255,255,.14)}
.footer-nav a{color:rgba(255,255,255,.85);font-weight:500;font-size:.95rem}
.footer-nav a:hover{color:var(--green)}
.newsletter{margin-bottom:2rem}
.newsletter h3{color:#fff;font-size:1.35rem;margin-bottom:1rem}
.nl-form{display:flex;max-width:460px;margin:0 auto;background:#fff;border-radius:999px;padding:.3rem;box-shadow:0 12px 30px -16px rgba(0,0,0,.5)}
.nl-form input{flex:1;border:0;background:transparent;padding:.7rem 1.1rem;font-size:.95rem;color:var(--ink);outline:none;font-family:inherit}
.nl-btn{background:var(--navy);color:#fff;border:0;border-radius:999px;padding:.7rem 1.6rem;font-weight:700;cursor:pointer;white-space:nowrap;transition:background .2s}
.nl-btn:hover{background:var(--green-deep)}

/* ===== Our Salon / Walk-Ins 板块 ===== */
.salon-band{padding:3rem 0}
.salon-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
.salon-card{background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:22px;padding:2rem 1.9rem;box-shadow:0 20px 44px -28px rgba(31,85,115,.4)}
.salon-card .section-eyebrow{margin-bottom:.6rem}
.salon-card h3{font-size:1.5rem;color:var(--navy-deep);margin-bottom:.8rem}
.salon-card p{color:#4b5a63;line-height:1.85;margin-bottom:1.1rem}
.salon-card .btn{margin-top:.2rem}
@media(max-width:760px){.salon-grid{grid-template-columns:1fr}}

/* Book 页色卡图（竖版，不裁太多） */
.bm-photo-chart img{aspect-ratio:3/4}

/* 礼品卡图（花卉设计） */
.gift-card-img{width:100%;max-width:440px;height:auto;border-radius:22px;box-shadow:0 26px 50px -22px rgba(21,59,82,.5);border:1px solid rgba(94,162,90,.25);display:block}

/* Services ADDITIONAL 卡右下角叶子装饰 */
.menu-block.additional{position:relative;overflow:hidden}
.menu-block.additional::after{
  content:"";position:absolute;right:-18px;bottom:-14px;width:150px;height:150px;
  background:url(/images/leaf-mark.png) no-repeat center/contain;opacity:.13;
  transform:rotate(-18deg);pointer-events:none;
}
.menu-block.additional .menu-h,.menu-block.additional .menu-list{position:relative;z-index:1}

/* ===== 导航电话：可拨打 + 复制按钮 ===== */
.phone-wrap{display:inline-flex;align-items:center;gap:.3rem;white-space:nowrap}
.phone{text-decoration:none}
.phone-copy{background:none;border:0;cursor:pointer;color:var(--green-deep);font-size:1rem;line-height:1;
  padding:.2rem .3rem;border-radius:7px;opacity:.7;transition:opacity .2s,background .2s}
.phone-copy:hover{opacity:1;background:rgba(94,162,90,.14)}

/* ===== Gallery：完整展示（瀑布流）+ 点击放大 ===== */
.gallery-grid{display:block;column-count:3;column-gap:1.1rem;grid-template-columns:none}
.gallery-item{aspect-ratio:auto;display:block;width:100%;margin:0 0 1.1rem;break-inside:avoid;cursor:zoom-in;background:linear-gradient(135deg,#eaf3e6,#dcebd6)}
.gallery-item img{height:auto;object-fit:contain;display:block}
@media(max-width:900px){.gallery-grid{column-count:2}}
@media(max-width:560px){.gallery-grid{column-count:1}}

/* Lightbox */
.lightbox{position:fixed;inset:0;z-index:1000;background:rgba(16,38,50,.92);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;padding:4vw;
  opacity:0;visibility:hidden;transition:opacity .25s}
.lightbox.open{opacity:1;visibility:visible}
.lightbox img{max-width:100%;max-height:84vh;border-radius:14px;box-shadow:0 30px 80px -20px rgba(0,0,0,.7)}
.lightbox .lb-cap{color:#eaf3e6;font-size:.95rem;font-weight:600;letter-spacing:.02em;text-align:center}
.lb-close{position:absolute;top:16px;right:22px;width:44px;height:44px;font-size:1.7rem;color:#fff;
  background:rgba(255,255,255,.12);border:0;border-radius:50%;cursor:pointer;line-height:1;transition:background .2s}
.lb-close:hover{background:rgba(255,255,255,.28)}

/* ===== 点击波纹质感 ===== */
.tg-ripple{position:fixed;pointer-events:none;z-index:9999;border-radius:50%;transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(94,162,90,.4),rgba(94,162,90,0) 68%);animation:tgRipple .6s ease-out forwards}
@keyframes tgRipple{from{width:10px;height:10px;opacity:.75}to{width:190px;height:190px;opacity:0}}

/* ===== Why Clients Love Us 卡片装饰 ===== */
.why-grid .service-card{position:relative;overflow:hidden}
.why-grid .service-card::after{content:"";position:absolute;right:-14px;bottom:-16px;width:120px;height:120px;
  background:url(/images/leaf-mark.png) no-repeat center/contain;opacity:.1;transform:rotate(-15deg);pointer-events:none}
.why-grid .service-card>*{position:relative;z-index:1}

/* 移动端隐藏导航电话（覆盖上面的 base 规则） */
@media(max-width:860px){.phone-wrap{display:none}}

/* ===== 古典巴洛克装饰 ===== */
/* 标题下方镀金分隔花饰 */
.section-head{position:relative}
.section-head::after{content:"";display:block;width:190px;height:22px;margin:1.1rem auto 0;
  background:url(/images/baroque-divider.svg) no-repeat center/contain}
.page-hero::after,.pricelist-hero::after{content:"";display:block;width:190px;height:22px;
  margin:1.1rem auto 0;position:relative;z-index:1;
  background:url(/images/baroque-divider.svg) no-repeat center/contain}
/* 页面 hero 两侧改为巴洛克卷草（替换原叶子） */
.about-hero .leaf-deco,.pricelist-hero .leaf-deco{
  position:absolute;top:50%;transform:translateY(-50%);
  width:46px;height:auto;opacity:.75;filter:none}
.about-hero .leaf-left,.pricelist-hero .leaf-left{left:26px}
.about-hero .leaf-right,.pricelist-hero .leaf-right{right:26px;transform:translateY(-50%) scaleX(-1)}

/* ===== 悬浮 Address 标（导向地址） ===== */
.addr-fab{position:fixed;right:18px;bottom:18px;z-index:400;
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--navy-deep);color:#fff;text-decoration:none;
  padding:.7rem 1.05rem;border-radius:999px;font-size:.9rem;font-weight:700;letter-spacing:.01em;
  box-shadow:0 14px 30px -10px rgba(21,59,82,.6);border:1px solid rgba(184,145,47,.5);
  transition:transform .2s,box-shadow .2s}
.addr-fab:hover{transform:translateY(-3px);box-shadow:0 20px 38px -12px rgba(21,59,82,.7);color:#fff}
.addr-fab .pin{font-size:1.05rem;line-height:1}
@media(max-width:560px){.addr-fab{right:12px;bottom:12px;padding:.6rem .85rem;font-size:.82rem}}

/* ===== 首页 logo 突出边框（徽章式） ===== */
.brand-logo{height:52px;padding:5px 12px;background:#fff;border:2px solid var(--green);
  border-radius:14px;box-shadow:0 8px 20px -8px rgba(31,85,115,.4)}

/* ===== 沙龙实景双图（同尺寸，裁剪不变形） ===== */
.salon-photos{padding:1rem 0 3rem}
.photo-duo{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.photo-card{position:relative;margin:0;border-radius:20px;overflow:hidden;
  box-shadow:0 26px 50px -26px rgba(21,59,82,.55);border:1px solid rgba(94,162,90,.28)}
.photo-card img{width:100%;height:340px;object-fit:cover;display:block;transition:transform .5s}
.photo-card:hover img{transform:scale(1.05)}
.photo-card figcaption{position:absolute;left:0;right:0;bottom:0;padding:.9rem 1.1rem;
  color:#fff;font-size:.95rem;font-weight:600;letter-spacing:.01em;
  background:linear-gradient(transparent,rgba(21,59,82,.8))}
@media(max-width:640px){
  .photo-duo{grid-template-columns:1fr;gap:1.1rem}
  .photo-card img{height:260px}
}
/* 移动端 logo 徽章缩小（覆盖上面 base 徽章尺寸） */
@media(max-width:860px){.brand-logo{height:40px;padding:4px 9px}}


/* ===== Live Waitlist 页 ===== */
.wl-cta{background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:22px;
  padding:2.6rem 2rem;text-align:center;max-width:720px;margin:0 auto 3.5rem;
  box-shadow:0 20px 44px -26px rgba(31,85,115,.4)}
.wl-eyebrow{display:block;font-size:.82rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--green-deep);font-weight:700;margin-bottom:.5rem}
.wl-cta h2{font-size:clamp(1.6rem,3vw,2.1rem);color:var(--navy-deep);margin-bottom:.8rem}
.wl-cta p{color:#4b5a63;line-height:1.8;max-width:46ch;margin:0 auto}
.wl-join{margin-top:1.6rem}
.wl-fine{font-size:.88rem;color:var(--muted);margin-top:1.1rem}
.wl-steps{list-style:none;counter-reset:wl;display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.4rem;margin:2rem 0 3.2rem;padding:0}
.wl-steps li{counter-increment:wl;position:relative;background:#fff;border-radius:18px;
  border:1px solid rgba(94,162,90,.22);padding:2.4rem 1.5rem 1.6rem}
.wl-steps li::before{content:counter(wl);position:absolute;top:-16px;left:1.5rem;
  width:34px;height:34px;border-radius:50%;background:var(--navy-deep);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.95rem}
.wl-steps b{display:block;color:var(--navy-deep);font-size:1.1rem;margin-bottom:.4rem}
.wl-steps span{color:#4b5a63;line-height:1.75;font-size:.95rem}
@media(max-width:860px){
  .wl-steps{grid-template-columns:1fr}
  .wl-cta{padding:2rem 1.3rem}
}

/* ===== Topbar 社交（Instagram） ===== */
.topbar .tb-right{display:inline-flex;align-items:center;gap:.55rem}
.tb-ig{display:inline-flex;align-items:center;gap:.35rem;line-height:1}
.tb-ig svg{width:15px;height:15px;display:block;flex-shrink:0}
.tb-ig:hover{color:var(--green-deep)}
.topbar .tb-sep{color:rgba(31,85,115,.3)}
@media(max-width:640px){
  .tb-ig-txt{display:none}
}
@media(max-width:420px){
  .topbar .tb-left{white-space:normal}
  .tb-mail{font-size:.78rem}
}

/* ==========================================================================
   博客 / 长文（Blog & guides）
   ========================================================================== */
.post-hero{position:relative;overflow:hidden;text-align:center;
  background:linear-gradient(160deg,#bcd7a4 0%,#a9cd8d 100%);
  padding:3.4rem 1.5rem 2.8rem}
.post-hero .post-kicker{display:inline-block;font-size:.78rem;letter-spacing:.18em;
  text-transform:uppercase;font-weight:700;color:#1f4d2e;background:rgba(255,255,255,.6);
  border-radius:999px;padding:.35rem .95rem;margin-bottom:1rem}
.post-hero h1{font-size:clamp(1.75rem,3.6vw,2.6rem);color:#1f4d2e;max-width:22ch;margin:0 auto .9rem;
  text-shadow:0 1px 0 rgba(255,255,255,.25);line-height:1.25}
.post-hero .post-dek{color:#2f5b3c;max-width:60ch;margin:0 auto;font-size:1.02rem}
.post-meta{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem 1.1rem;
  margin-top:1.4rem;font-size:.87rem;color:#2f5b3c}
.post-meta span{display:inline-flex;align-items:center;gap:.35rem}

.post-wrap{max-width:820px;margin:0 auto;padding:0 1.5rem}
.post-body{background:#fff;border:1px solid rgba(94,162,90,.25);border-radius:22px;
  padding:2.6rem clamp(1.2rem,4vw,3rem);box-shadow:0 20px 44px -30px rgba(31,85,115,.45)}
.post-body h2{font-family:Georgia,"Songti SC","STSong",serif;font-size:clamp(1.35rem,2.6vw,1.75rem);
  color:var(--navy-deep);margin:2.6rem 0 .9rem;padding-top:.4rem;scroll-margin-top:90px}
.post-body h2:first-child{margin-top:0}
.post-body h3{font-size:1.12rem;color:var(--navy-deep);margin:1.8rem 0 .6rem}
.post-body p{color:#3f4d55;line-height:1.85;margin-bottom:1.05rem}
.post-body ul,.post-body ol{margin:0 0 1.2rem 1.15rem;color:#3f4d55;line-height:1.85}
.post-body li{margin-bottom:.5rem}
.post-body a{color:var(--green-deep);font-weight:600;text-decoration:underline;
  text-decoration-color:rgba(94,162,90,.4);text-underline-offset:3px}
.post-body a:hover{color:var(--navy-deep)}
.post-body strong{color:var(--navy-deep)}
.post-body figure{margin:1.6rem 0}
.post-body figure img{width:100%;height:auto;border-radius:16px;display:block}
.post-body figcaption{font-size:.86rem;color:var(--muted);margin-top:.55rem;text-align:center}
.post-lede{font-size:1.06rem;color:#2f4049 !important;border-left:4px solid var(--green);
  padding-left:1.1rem;margin-bottom:1.6rem !important}

/* 关键要点 / 摘要块（利于 AI 摘录） */
.takeaways{background:linear-gradient(180deg,#f2f8ec,#e9f3e0);border:1px solid rgba(94,162,90,.35);
  border-radius:18px;padding:1.5rem 1.6rem;margin:0 0 2rem}
.takeaways h2{margin:0 0 .8rem !important;font-size:1.12rem !important;
  letter-spacing:.02em;color:#1f4d2e !important;font-family:inherit !important}
.takeaways ul{margin:0 0 0 1.1rem;color:#2f4049}
.takeaways li{margin-bottom:.55rem;line-height:1.75}

/* 目录 */
.toc{background:#f7faf4;border:1px dashed rgba(94,162,90,.45);border-radius:16px;
  padding:1.2rem 1.4rem;margin:0 0 2.2rem}
.toc b{display:block;color:var(--navy-deep);margin-bottom:.6rem;font-size:.95rem}
.toc ol{margin:0 0 0 1.15rem;columns:2;column-gap:2rem;font-size:.94rem}
.toc a{text-decoration:none;font-weight:500}
@media(max-width:640px){.toc ol{columns:1}}

/* 提示 / 警示色块 */
.callout{border-radius:16px;padding:1.15rem 1.3rem;margin:1.6rem 0;line-height:1.8;font-size:.97rem}
.callout b{display:block;margin-bottom:.35rem}
.callout p:last-child{margin-bottom:0}
.callout-tip{background:#eef6e8;border-left:5px solid var(--green-deep);color:#2f4a35}
.callout-warn{background:#fdf3e7;border-left:5px solid #d79a3c;color:#5a4526}
.callout-note{background:#eef4f8;border-left:5px solid var(--navy);color:#2b4756}

/* 数据表 */
.table-scroll{overflow-x:auto;margin:1.6rem 0;-webkit-overflow-scrolling:touch}
.data-table{width:100%;border-collapse:collapse;min-width:560px;font-size:.94rem}
.data-table caption{caption-side:top;text-align:left;font-size:.86rem;color:var(--muted);
  padding-bottom:.6rem}
.data-table th,.data-table td{padding:.75rem .85rem;text-align:left;
  border-bottom:1px solid rgba(31,85,115,.12);vertical-align:top}
.data-table thead th{background:var(--navy-deep);color:#fff;font-weight:600;white-space:nowrap}
.data-table thead th:first-child{border-radius:10px 0 0 0}
.data-table thead th:last-child{border-radius:0 10px 0 0}
.data-table tbody tr:nth-child(even){background:#f7faf4}
.data-table td b{color:var(--navy-deep)}

/* 数字条 */
.stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin:1.8rem 0}
.stat-row div{background:#f4f9ee;border:1px solid rgba(94,162,90,.3);border-radius:16px;
  padding:1.2rem 1rem;text-align:center}
.stat-row .n{display:block;font-size:1.6rem;font-weight:700;color:var(--green-deep);line-height:1.2}
.stat-row .l{display:block;font-size:.84rem;color:#4b5a63;margin-top:.35rem;line-height:1.5}
@media(max-width:640px){.stat-row{grid-template-columns:1fr}}

/* 误区对照 */
.myth{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:1.6rem 0}
.myth>div{border-radius:16px;padding:1.1rem 1.2rem;font-size:.95rem;line-height:1.75}
.myth .m-bad{background:#fbeeee;border:1px solid rgba(190,90,90,.28);color:#6b3b3b}
.myth .m-good{background:#eef6e8;border:1px solid rgba(94,162,90,.35);color:#2f4a35}
.myth b{display:block;margin-bottom:.3rem}
@media(max-width:640px){.myth{grid-template-columns:1fr}}

/* FAQ */
.faq{margin:1.4rem 0 0}
.faq details{background:#f7faf4;border:1px solid rgba(94,162,90,.28);border-radius:14px;
  padding:.95rem 1.15rem;margin-bottom:.75rem}
.faq details[open]{background:#fff;box-shadow:0 10px 26px -22px rgba(31,85,115,.5)}
.faq summary{cursor:pointer;font-weight:600;color:var(--navy-deep);list-style:none;
  display:flex;justify-content:space-between;gap:1rem;align-items:flex-start}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--green-deep);font-size:1.3rem;line-height:1;flex-shrink:0}
.faq details[open] summary::after{content:"–"}
.faq details p{margin:.7rem 0 0;font-size:.95rem}

/* 作者 / 来源 / 免责 */
.author-box{display:flex;gap:1.1rem;align-items:flex-start;background:#f7faf4;
  border:1px solid rgba(94,162,90,.28);border-radius:18px;padding:1.3rem 1.4rem;margin:2.4rem 0 0}
.author-box .ab-ico{width:52px;height:52px;border-radius:14px;flex-shrink:0;
  background:linear-gradient(135deg,#eaf3e6,#cfe4c8);display:flex;align-items:center;
  justify-content:center;font-size:1.5rem}
.author-box b{display:block;color:var(--navy-deep);margin-bottom:.25rem}
.author-box p{font-size:.92rem;margin:0;line-height:1.75}
.sources{margin-top:2.4rem;background:#f4f7fa;border-radius:18px;padding:1.4rem 1.5rem;
  border:1px solid rgba(31,85,115,.14)}
.sources b{display:block;color:var(--navy-deep);margin-bottom:.7rem}
.sources ol{margin:0 0 0 1.15rem;font-size:.9rem;line-height:1.8;color:#4b5a63}
.sources a{word-break:break-word}
.disclaimer{margin-top:1.2rem;font-size:.86rem;color:var(--muted);line-height:1.75}

/* 文末 CTA */
.post-cta{margin:2.6rem 0 0;background:linear-gradient(160deg,#bcd7a4,#a9cd8d);
  border-radius:20px;padding:2rem 1.6rem;text-align:center}
.post-cta h2{margin:0 0 .6rem !important;color:#1f4d2e !important}
.post-cta p{color:#2f5b3c;max-width:48ch;margin:0 auto 1.3rem}
.post-cta .bg-actions{justify-content:center;display:flex;gap:.8rem;flex-wrap:wrap}

/* 博客索引 */
.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem}
.blog-card{background:#fff;border:1px solid rgba(94,162,90,.28);border-radius:20px;
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 18px 40px -30px rgba(31,85,115,.5);transition:transform var(--transition)}
.blog-card:hover{transform:translateY(-4px)}
.blog-card img{width:100%;height:210px;object-fit:cover;display:block}
.blog-card .bc-body{padding:1.5rem 1.5rem 1.7rem;display:flex;flex-direction:column;flex:1}
.blog-card .bc-tag{font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
  font-weight:700;color:var(--green-deep);margin-bottom:.5rem}
.blog-card h2{font-family:Georgia,serif;font-size:1.25rem;color:var(--navy-deep);
  margin-bottom:.6rem;line-height:1.35}
.blog-card p{color:#4b5a63;font-size:.95rem;line-height:1.75;margin-bottom:1.2rem}
.blog-card .bc-meta{font-size:.84rem;color:var(--muted);margin-top:auto;margin-bottom:.9rem}
.blog-card .btn{align-self:flex-start}
@media(max-width:860px){.blog-grid{grid-template-columns:1fr}}

/* ===== 导航增至 7 项后的空间调整 ===== */
@media(max-width:1200px){
  .menu{gap:1.3rem;font-size:.92rem}
  .nav{gap:1rem}
  .nav-cta{gap:.7rem}
}
/* 中等屏幕提前切换到汉堡菜单，避免导航挤成两行 */
@media(max-width:1060px) and (min-width:861px){
  .menu,.phone,.phone-wrap,.nav-cta{display:none}
  .nav{flex-wrap:nowrap;gap:.6rem}
  .hamburger{display:block;flex-shrink:0}
}
