@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&display=swap');

/* Oldlace Beauty — 官網共用樣式（手機優先） */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  /* 新設計 tokens */
  --bg:      #F8F7F5;
  --text:    #1C1A17;
  --muted:   #9C9890;
  --border:  #E4E2DC;
  --dark:    #2A2720;
  --white:   #FEFEFE;
  /* 內頁內容用 */
  --cream:#FDF6EC;
  --cream-2:#F6ECDD;
  --ink:#2B2723;
  --ink-soft:#6B6359;
  --line:#E6DCCB;
  --accent:#A98B6B;
  --line-green:#06C755;
  --maxw:680px;
  --radius:14px;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:"Noto Sans TC",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;
  color:var(--ink);background:var(--bg);font-size:16px;line-height:1.85;
  padding-top:80px;
  -webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:transparent;
}
img{max-width:100%;display:block}
a{color:inherit}
.serif{font-family:"Noto Serif TC",serif}

/* 容器 */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
section{padding:54px 0}
section.tight{padding:38px 0}

/* 導覽列 */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;justify-content:space-between;align-items:center;
  padding:1.4rem 3rem;
  background:var(--bg);
  border-bottom:1px solid var(--border);
}
.nav-logo{text-decoration:none;color:var(--text)}
.nav-logo-main{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:1.05rem;font-weight:300;
  letter-spacing:0.22em;text-transform:uppercase;
}
.nav-logo-sub{
  display:block;font-size:0.58rem;
  letter-spacing:0.38em;color:var(--muted);
  margin-top:0.12rem;text-transform:uppercase;
}
.nav-links{display:flex;gap:2.4rem;list-style:none}
.nav-links a{
  font-size:0.78rem;letter-spacing:0.08em;
  color:var(--text);text-decoration:none;transition:color 0.2s;
}
.nav-links a:hover{color:var(--muted)}
.nav-book{
  font-size:0.78rem;letter-spacing:0.12em;
  color:var(--text);text-decoration:none;
  border-bottom:1px solid var(--text);padding-bottom:1px;
  transition:opacity 0.2s;
}
.nav-book:hover{opacity:0.45}
@media(max-width:768px){
  nav{padding:1.2rem 1.5rem}
  .nav-links{display:none}
}

/* Hero */
.hero{position:relative}
.hero img{width:100%;height:78vh;max-height:620px;object-fit:cover;object-position:center 28%}
.hero-cap{position:absolute;left:0;right:0;bottom:0;padding:30px 22px 26px;
  background:linear-gradient(to top,rgba(0,0,0,.5),transparent);color:#fff}
.hero-cap h1{font-size:30px;line-height:1.35;font-weight:600;letter-spacing:.02em}
.hero-cap p{font-size:14px;margin-top:8px;opacity:.95}

/* 文字區塊 */
.eyebrow{font-size:12px;letter-spacing:.32em;text-transform:uppercase;color:var(--accent);margin-bottom:12px}
h2{font-size:23px;line-height:1.5;font-weight:600;margin-bottom:16px;letter-spacing:.01em}
h3{font-size:17px;font-weight:600;margin:22px 0 6px}
p+p{margin-top:14px}
.lead{font-size:17px;color:var(--ink)}
.soft{color:var(--ink-soft)}

/* 卡片 */
.card{background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);padding:22px;margin-top:16px}
.card.plain{background:#fff}
.qa{border-top:1px solid var(--line);padding:18px 0}
.qa:first-of-type{border-top:0}
.qa .q{font-weight:600}
.qa .a{color:var(--ink-soft);margin-top:6px}
ul.clean{list-style:none;margin-top:10px}
ul.clean li{position:relative;padding-left:20px;margin:9px 0;color:var(--ink-soft)}
ul.clean li::before{content:"";position:absolute;left:2px;top:13px;width:6px;height:6px;border-radius:50%;background:var(--accent)}

/* 價目 */
.price{display:flex;justify-content:space-between;align-items:baseline;gap:12px;
  padding:16px 0;border-top:1px solid var(--line)}
.price:first-child{border-top:0}
.price .name{font-weight:600;font-size:17px}
.price .meta{font-size:13px;color:var(--ink-soft);margin-top:2px}
.price .amt{font-size:19px;font-weight:600;white-space:nowrap}

/* 步驟 */
.step{display:flex;gap:14px;padding:14px 0;border-top:1px solid var(--line)}
.step:first-child{border-top:0}
.step .n{flex:0 0 28px;height:28px;border-radius:50%;background:var(--ink);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600}
.step .t b{display:block}

/* 圖片網格 */
.grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px}
.grid img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:10px}

/* 按鈕 */
.btn{display:block;text-align:center;text-decoration:none;border-radius:999px;
  padding:15px 22px;font-size:16px;font-weight:600;margin-top:14px}
.btn-line{background:var(--line-green);color:#fff}
.btn-dark{background:var(--ink);color:#fff}
.btn-ghost{background:#fff;color:var(--ink);border:1px solid var(--ink)}
.btns{display:flex;flex-direction:column;gap:10px;margin-top:18px}
@media(min-width:520px){.btns{flex-direction:row}.btns .btn{flex:1;margin-top:0}}

/* CTA 區 */
.cta-band{background:var(--cream-2);text-align:center}
.cta-band h2{margin-bottom:6px}

/* 頁尾 */
footer{
  border-top:1px solid var(--border);
  padding:2.5rem 3rem;
  display:flex;justify-content:space-between;align-items:center;
  background:var(--bg);
}
.footer-brand{
  font-family:'Cormorant Garamond',serif;
  font-size:0.85rem;letter-spacing:0.22em;
  text-transform:uppercase;color:var(--muted);
}
.footer-nav{display:flex;gap:2rem;list-style:none}
.footer-nav a{
  font-size:0.72rem;letter-spacing:0.1em;
  color:var(--muted);text-decoration:none;transition:color 0.2s;
}
.footer-nav a:hover{color:var(--text)}
@media(max-width:768px){
  footer{flex-direction:column;gap:1.5rem;text-align:center;padding:2rem 1.5rem}
}

.center{text-align:center}
.divider{height:1px;background:var(--line);margin:6px 0}

/* 痛點編號列 */
.pt-list{margin-top:24px}
.pt-item{display:flex;gap:18px;padding:20px 0;border-top:1px solid var(--line)}
.pt-item:first-child{border-top:0;padding-top:4px}
.pt-num{flex:0 0 28px;font-size:20px;font-weight:600;font-family:"Noto Serif TC",serif;color:var(--accent);line-height:1.3}
.pt-item b{display:block;margin-bottom:4px}
.pt-item p{color:var(--ink-soft);font-size:14px;line-height:1.8;margin:0}

/* 特色圖文並排 */
.feat-list{margin-top:20px}
.feat{display:flex;gap:18px;align-items:flex-start;padding:22px 0;border-top:1px solid var(--line)}
.feat:first-child{border-top:0;padding-top:0}
.feat img{width:84px;height:84px;border-radius:12px;object-fit:cover;flex-shrink:0}
.feat h3{margin:0 0 6px;font-size:16px}
.feat p{color:var(--ink-soft);font-size:14px;margin:0;line-height:1.75}

/* 作品 1大+4小 */
.works-main{margin-top:16px;border-radius:var(--radius);overflow:hidden}
.works-main img{width:100%;display:block}
.works-sub{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.works-sub img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:10px}

/* 顧客評論 */
.review-grid{display:grid;gap:12px;margin-top:20px}
.review-card{background:#fff;border-radius:14px;padding:22px 20px}
.review-text{font-size:15px;line-height:1.9;color:var(--ink)}
.review-meta{margin-top:10px;font-size:12px;color:var(--accent);letter-spacing:.08em}

/* ── 首頁三段式版型 ── */
.disp{font-family:'Cormorant Garamond','Noto Serif TC',Georgia,serif}

/* 1. 品牌風格 */
.hp-brand{display:flex;min-height:100vh;background:#EDE8E2}
.hp-brand-photo{flex:0 0 46%;overflow:hidden}
.hp-brand-photo img{width:100%;height:100%;object-fit:cover;object-position:center top}
.hp-brand-text{flex:1;display:flex;flex-direction:column;justify-content:center;padding:48px 7% 80px;position:relative}
.hp-brand-title{font-size:clamp(52px,8.5vw,128px);font-weight:300;line-height:.95;letter-spacing:-.01em;color:#1a1714}
.hp-brand-sub{margin-top:28px;font-size:13px;letter-spacing:.22em;color:#888}
.hp-watermark{position:absolute;bottom:28px;right:28px;font-size:10px;letter-spacing:.3em;color:#ccc;text-transform:uppercase}

/* 2. 品牌介紹 */
.hp-about{display:flex;min-height:90vh;background:#F8F5F1}
.hp-about-photo{flex:0 0 46%;overflow:hidden}
.hp-about-photo img{width:100%;height:100%;object-fit:cover;object-position:center top}
.hp-about-text{flex:1;display:flex;flex-direction:column;justify-content:center;padding:48px 7% 80px;position:relative}
.hp-about-h{font-size:clamp(38px,5.5vw,72px);font-weight:300;letter-spacing:.05em;margin-bottom:36px;color:#1a1714}
.hp-about-text p{font-size:15px;line-height:2.1;color:#3d3530;margin:0}
.hp-about-text p+p{margin-top:18px}
.hp-watermark--about{right:28px;bottom:28px}

/* 3. 按鈕 / GET IN TOUCH */
.hp-touch{position:relative;min-height:80vh;display:flex;align-items:flex-end}
.hp-touch-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:blur(3px);transform:scale(1.06)}
.hp-touch-overlay{position:absolute;inset:0;background:rgba(20,16,12,.3)}
.hp-touch-content{position:relative;z-index:1;padding:60px 7% 80px;color:#fff;width:100%}
.hp-touch-brand{font-size:11px;letter-spacing:.32em;opacity:.75;margin-bottom:14px}
.hp-touch-h{font-size:clamp(44px,7.5vw,108px);font-weight:300;line-height:1;letter-spacing:.02em;margin-bottom:48px}
.hp-touch-links{display:flex;gap:48px;flex-wrap:wrap}
.hp-touch-links a{color:#fff;text-decoration:underline;text-underline-offset:5px;text-decoration-thickness:1px;font-size:16px;letter-spacing:.04em;transition:opacity .2s}
.hp-touch-links a:hover{opacity:.65}

@media(max-width:739px){
  .hp-brand,.hp-about{flex-direction:column}
  .hp-brand-photo,.hp-about-photo{flex:none;height:68vw;min-height:260px}
  .hp-brand-text,.hp-about-text{padding:36px 22px 56px}
  .hp-touch-content{padding:40px 22px 60px}
  .hp-touch-links{flex-direction:column;gap:22px}
  .hp-watermark{display:none}
}
