/* =========================================================
   郭子賢獸醫師 官方網站  |  Dr. Kuo Tzu-Hsien, DVM
   Design System — "Sky Blue / Teal" CIS
   ========================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand palette (from provided color board) */
  --teal-deep:   #0E6973;   /* primary dark   */
  --teal:        #118C8C;   /* primary        */
  --mint:        #BAD9CE;   /* light accent   */
  --gold:        #F2BB16;   /* accent / CTA   */
  --amber:       #BF820F;   /* secondary gold */

  /* Derived neutrals */
  --ink:         #0B2A2D;   /* main text      */
  --ink-soft:    #3C5B5D;   /* secondary text */
  --ink-faint:   #6E8788;   /* muted text     */
  --paper:       #FFFFFF;
  --paper-2:     #F4F8F7;   /* off-white bg    */
  --mint-soft:   #EAF4F0;   /* tint block bg   */
  --mint-tint:   #F2F8F6;
  --line:        #DCE9E5;   /* hairline border */
  --line-strong: #C5DAD3;

  /* Tints with alpha */
  --teal-08: rgba(17,140,140,.08);
  --teal-12: rgba(17,140,140,.12);
  --deep-90: rgba(14,105,115,.92);

  /* Typography */
  --serif: "Cormorant Garamond", "Noto Serif TC", "Songti TC", serif;
  --serif-cjk: "Noto Serif TC", "Songti TC", serif;
  --sans: "Inter", "Noto Sans TC", -apple-system, "PingFang TC", sans-serif;

  /* Spacing / shape */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(11,42,45,.05);
  --shadow:    0 16px 40px -18px rgba(11,42,45,.22);
  --shadow-lg: 0 30px 70px -28px rgba(11,42,45,.30);
  --maxw: 1180px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  font-size: 16.5px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- 3. Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.bg-paper2 { background: var(--paper-2); }
.bg-mint   { background: var(--mint-soft); }
.center { text-align: center; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"]{ transition-delay:.08s } [data-delay="2"]{ transition-delay:.16s }
[data-delay="3"]{ transition-delay:.24s } [data-delay="4"]{ transition-delay:.32s }
[data-delay="5"]{ transition-delay:.40s } [data-delay="6"]{ transition-delay:.48s }

/* ---------- 4. Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif-cjk); font-weight: 600; line-height: 1.25; color: var(--ink); letter-spacing: .01em; }
.display { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: .80rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:""; width: 26px; height: 1.5px; background: var(--gold); display:inline-block; }
.eyebrow.center-line { justify-content: center; }
.section-title { font-size: clamp(1.85rem, 3.6vw, 2.9rem); margin: 16px 0 .4em; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
.lead.center { margin-inline: auto; }
.muted { color: var(--ink-faint); }

/* ---------- 5. Buttons (VI) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: .02em;
  padding: 14px 28px; border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--teal-deep); color: #fff; box-shadow: 0 10px 26px -12px rgba(14,105,115,.7); }
.btn-primary:hover { background: var(--teal); box-shadow: 0 16px 32px -12px rgba(17,140,140,.65); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 26px -12px rgba(242,187,22,.8); }
.btn-gold:hover { background: var(--amber); color: #fff; }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-outline { border: 1.5px solid var(--line-strong); color: var(--teal-deep); }
.btn-outline:hover { border-color: var(--teal-deep); background: var(--teal-deep); color: #fff; }
.btn-ghost { color: var(--teal-deep); padding-inline: 6px; }
.btn-ghost:hover { color: var(--amber); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-on-dark.btn-outline { border-color: rgba(255,255,255,.4); color:#fff; }
.btn-on-dark.btn-outline:hover { background:#fff; color: var(--teal-deep); border-color:#fff; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ---------- 6. Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  background: rgba(255,255,255,.72); backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent; transition: border-color .4s, box-shadow .4s, background .4s;
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif-cjk); font-weight: 600; font-size: 1.16rem; color: var(--teal-deep); letter-spacing: .04em; }
.brand__sub { font-size: .64rem; letter-spacing: .28em; color: var(--ink-faint); text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative; padding: 9px 15px; font-size: .94rem; font-weight: 500; color: var(--ink-soft);
  border-radius: 999px; transition: color .25s, background .25s; white-space: nowrap;
}
.nav__links a::after {
  content:""; position:absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--teal-deep); }
.nav__links a.active { color: var(--teal-deep); }
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta { margin-left: 10px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--teal-deep); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2){ opacity: 0; }
.nav__toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px){
  .nav__links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; background:#fff; padding: 20px 26px 28px; gap: 4px; border-bottom:1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .4s var(--ease); align-items:stretch; }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 16px; font-size:1.02rem; border-bottom:1px solid var(--line); border-radius:0; }
  .nav__links a::after{ display:none; }
  .nav__cta{ margin-left:0; margin-top:10px; }
  .nav__cta .btn{ width:100%; justify-content:center; }
  .nav__toggle { display:flex; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + 40px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; min-height: calc(100vh - var(--nav-h)); padding-bottom: 60px; }
.hero__kicker { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); line-height: 1.12; letter-spacing: .005em; }
.hero h1 .accent { color: var(--teal); }
.hero__role { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2.4vw,1.7rem); color: var(--amber); margin-top: 6px; letter-spacing: .02em; }
.hero__intro { font-size: 1.14rem; color: var(--ink-soft); margin: 26px 0 34px; max-width: 52ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero__stat .n { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--teal-deep); line-height: 1; }
.hero__stat .n .unit { font-size: 1.1rem; color: var(--amber); margin-left: 2px; }
.hero__stat .l { font-size: .86rem; color: var(--ink-faint); margin-top: 6px; letter-spacing: .04em; }

/* Hero portrait / emblem */
.hero__visual { position: relative; display: flex; justify-content: center; }
.portrait {
  position: relative; width: min(420px, 90%); aspect-ratio: 4/5; border-radius: 240px 240px 24px 24px;
  overflow: hidden; background: linear-gradient(160deg, var(--mint) 0%, var(--teal) 60%, var(--teal-deep) 100%);
  box-shadow: var(--shadow-lg); border: 8px solid #fff;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.portrait__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,.9); gap: 12px; text-align:center; padding: 20px; }
.portrait__ph svg { width: 92px; height: 92px; opacity: .9; }
.portrait__ph span { font-size: .8rem; letter-spacing: .12em; opacity: .85; }
.hero__badge {
  position: absolute; bottom: 22px; left: -8px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 20px; display: flex; align-items: center; gap: 12px; max-width: 250px;
}
.hero__badge .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--gold); display:flex; align-items:center; justify-content:center; flex:none; }
.hero__badge .ic svg { width: 22px; height: 22px; color: var(--ink); }
.hero__badge b { font-family: var(--serif-cjk); font-size: .95rem; color: var(--ink); }
.hero__badge small { display:block; font-size: .76rem; color: var(--ink-faint); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: -1; }
.hero__deco { position:absolute; inset: 0; z-index: -2; pointer-events: none; overflow:hidden; }
.hero__deco .ring { position:absolute; border: 1.5px solid var(--line-strong); border-radius: 50%; opacity:.5; }
.hero__deco .r1 { width: 520px; height: 520px; right: -160px; top: -120px; }
.hero__deco .r2 { width: 320px; height: 320px; right: -60px; top: -40px; border-color: var(--mint); }
.hero__deco .dot { position:absolute; width: 10px; height:10px; border-radius:50%; background: var(--gold); right: 200px; top: 90px; opacity:.7; }

/* ---------- 8. Marquee / specialties strip ---------- */
.strip { background: var(--teal-deep); color: #fff; overflow: hidden; padding: 18px 0; }
.strip__track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip__track span { font-family: var(--serif); font-style: italic; font-size: 1.15rem; opacity: .9; display: inline-flex; align-items: center; gap: 56px; }
.strip__track span::after { content: "✦"; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .strip__track { animation: none; } }

/* ---------- 9. Generic section header ---------- */
.s-head { max-width: 720px; margin-bottom: 56px; }
.s-head.center { margin-inline: auto; }

/* ---------- 10. Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--mint-soft); color: var(--teal-deep); display:flex; align-items:center; justify-content:center; margin-bottom: 22px; transition: background .35s, color .35s; }
.card__ic svg { width: 28px; height: 28px; }
.card:hover .card__ic { background: var(--teal-deep); color: #fff; }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card__tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.tag { font-size: .76rem; color: var(--teal-deep); background: var(--teal-08); padding: 5px 12px; border-radius: 999px; font-weight: 500; }

/* expertise list cards */
.exp-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; height:100%; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.exp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.exp-card__top { display:flex; align-items:center; gap:16px; margin-bottom:22px; }
.exp-card__num { font-family: var(--serif); font-size: 1.05rem; font-weight:600; color:#fff; background: var(--teal); width:40px;height:40px;border-radius:12px;display:flex;align-items:center;justify-content:center; flex:none; }
.exp-card h3 { font-size:1.3rem; }
.exp-card ul li { display:flex; gap:12px; padding:11px 0; border-top:1px dashed var(--line); color: var(--ink-soft); font-size:.98rem; }
.exp-card ul li:first-child { border-top:none; }
.exp-card ul li svg { width:20px;height:20px;color:var(--teal);flex:none;margin-top:3px; }
.exp-card ul li b { color: var(--ink); font-weight:600; }
.exp-card ul li .en { color: var(--ink-faint); font-size:.85rem; }

/* ---------- 11. Insight (knowledge base) cards ---------- */
.filters { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 44px; }
.filter-btn {
  font-size:.9rem; font-weight:500; padding:9px 20px; border-radius:999px; color: var(--ink-soft);
  border:1px solid var(--line); background:#fff; transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal-deep); }
.filter-btn.active { background: var(--teal-deep); color:#fff; border-color: var(--teal-deep); box-shadow: 0 8px 20px -10px rgba(14,105,115,.6); }

.insight-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.insight-card {
  display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; height:100%;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.insight-card__head { padding: 24px 26px 0; }
.insight-card__cat { display:inline-flex; align-items:center; gap:7px; font-size:.74rem; font-weight:600; letter-spacing:.06em; padding:5px 12px; border-radius:999px; margin-bottom:16px; }
.insight-card__cat .dot { width:7px;height:7px;border-radius:50%; }
.insight-card h3 { font-size:1.2rem; line-height:1.4; margin-bottom:6px; }
.insight-card .en-title { font-family: var(--serif); font-style:italic; font-size:.9rem; color: var(--ink-faint); }
.insight-card__body { padding: 16px 26px 0; flex:1; }
.insight-card__body p { font-size:.94rem; color: var(--ink-soft); }
.insight-card__foot { padding: 20px 26px 24px; display:flex; align-items:center; justify-content:space-between; margin-top:auto; }
.insight-card__species { font-size:.8rem; color: var(--ink-faint); display:flex; align-items:center; gap:6px; white-space:nowrap; }
.insight-card .go { font-size:.9rem; font-weight:600; color: var(--teal-deep); display:inline-flex; align-items:center; gap:6px; transition: gap .25s; white-space:nowrap; }
.insight-card:hover .go { gap:11px; color: var(--amber); }
.insight-card__bar { height:4px; width:100%; }

/* species pill colors by system */
.sys-derm  { background: rgba(191,130,15,.12);  color: var(--amber); }
.sys-resp  { background: rgba(17,140,140,.12);   color: var(--teal); }
.sys-gi     { background: rgba(14,105,115,.12);   color: var(--teal-deep); }
.sys-endo  { background: rgba(242,187,22,.18);   color: #9a7400; }
.sys-onco  { background: rgba(120,90,140,.14);    color: #6a4f80; }
.sys-neuro { background: rgba(40,120,160,.14);    color: #1f6e96; }
.dot.sys-derm{background:var(--amber)} .dot.sys-resp{background:var(--teal)}
.dot.sys-gi{background:var(--teal-deep)} .dot.sys-endo{background:var(--gold)}
.dot.sys-onco{background:#6a4f80} .dot.sys-neuro{background:#1f6e96}
.bar-derm{background:var(--amber)} .bar-resp{background:var(--teal)}
.bar-gi{background:var(--teal-deep)} .bar-endo{background:var(--gold)}
.bar-onco{background:#6a4f80} .bar-neuro{background:#1f6e96}

/* ---------- 12. About / split feature ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.split--reverse .split__media { order: 2; }
.feature-media { position:relative; border-radius: var(--radius-lg); overflow:hidden; background: linear-gradient(150deg,var(--teal) 0%,var(--teal-deep) 100%); aspect-ratio: 5/6; box-shadow: var(--shadow); }
.feature-media .quote { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; padding: 46px; color:#fff; }
.feature-media .quote .mark { font-family: var(--serif); font-size: 5rem; line-height:.5; color: var(--gold); margin-bottom: 24px; }
.feature-media .quote p { font-family: var(--serif-cjk); font-size: 1.5rem; line-height:1.6; }
.feature-media .quote cite { display:block; margin-top:24px; font-style:normal; font-size:.9rem; opacity:.8; letter-spacing:.06em; }

/* timeline */
.timeline { position: relative; margin-top: 10px; }
.timeline::before { content:""; position:absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--line-strong); }
.tl-item { position: relative; padding: 0 0 34px 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position:absolute; left: 2px; top: 5px; width: 16px; height: 16px; border-radius:50%; background:#fff; border: 3px solid var(--teal); }
.tl-item.gold::before { border-color: var(--gold); }
.tl-year { font-family: var(--serif); font-weight:600; color: var(--teal-deep); font-size:1.05rem; letter-spacing:.04em; }
.tl-item h4 { font-size:1.12rem; margin:4px 0 4px; }
.tl-item p { color: var(--ink-soft); font-size:.96rem; }
.tl-item .en { font-family: var(--serif); font-style:italic; color: var(--ink-faint); font-size:.9rem; }

/* info rows */
.info-row { display:flex; gap: 20px; padding: 20px 0; border-bottom:1px solid var(--line); }
.info-row:last-child { border-bottom:none; }
.info-row .k { width: 130px; flex:none; font-weight:600; color: var(--teal-deep); font-size:.95rem; }
.info-row .v { color: var(--ink-soft); }
.info-row .v b { color: var(--ink); font-weight:600; }

/* ---------- 13. Stat band ---------- */
.statband { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%); color:#fff; position:relative; overflow:hidden; }
.statband::after { content:""; position:absolute; right:-120px; bottom:-120px; width: 360px; height:360px; border:40px solid rgba(255,255,255,.05); border-radius:50%; }
.statband .grid-4 { gap: 30px; position:relative; z-index:1; }
.stat-b { text-align:center; }
.stat-b .n { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.4rem); font-weight:600; line-height:1; }
.stat-b .n .unit { font-size:1.3rem; color: var(--gold); }
.stat-b .l { margin-top:10px; font-size:.92rem; opacity:.82; letter-spacing:.05em; }
.stat-b + .stat-b { border-left: 1px solid rgba(255,255,255,.15); }

/* ---------- 14. CTA ---------- */
.cta { position: relative; background: var(--teal-deep); color:#fff; border-radius: var(--radius-lg); padding: clamp(44px,6vw,80px); overflow:hidden; text-align:center; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 10%, rgba(242,187,22,.18), transparent 45%), radial-gradient(circle at 90% 90%, rgba(186,217,206,.18), transparent 45%); }
.cta > * { position: relative; z-index:1; }
.cta h2 { color:#fff; font-size: clamp(1.8rem,3.6vw,2.7rem); }
.cta p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 16px auto 32px; }
.cta .hero__actions { justify-content:center; }

/* ---------- 15. Footer ---------- */
.footer { background: #06211F; color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: rgba(255,255,255,.5); }
.footer p { font-size: .92rem; line-height: 1.8; margin-top: 16px; max-width: 34ch; }
.footer h5 { color:#fff; font-family: var(--sans); font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a { font-size:.94rem; transition: color .25s, padding .25s; }
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact li { display:flex; gap:11px; font-size:.94rem; margin-bottom:14px; align-items:flex-start; }
.footer__contact svg { width:18px;height:18px;color:var(--gold);flex:none;margin-top:3px; }
.footer__bottom { display:flex; justify-content:space-between; align-items:center; padding-top: 26px; font-size:.84rem; color: rgba(255,255,255,.45); flex-wrap:wrap; gap:10px; }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- 16. Page hero (interior pages) ---------- */
.page-hero { padding: calc(var(--nav-h) + 60px) 0 64px; background: var(--mint-soft); position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; right:-100px; top:-80px; width:340px;height:340px;border:2px solid var(--line-strong); border-radius:50%; opacity:.5; }
.page-hero__inner { position:relative; z-index:1; max-width: 760px; }
.page-hero h1 { font-size: clamp(2.1rem,4.4vw,3.3rem); margin: 14px 0 18px; }
.crumb { font-size:.85rem; color: var(--ink-faint); }
.crumb a:hover { color: var(--teal); }

/* ---------- 17. Guide (detail) ---------- */
.guide-hero { padding: calc(var(--nav-h) + 50px) 0 50px; color:#fff; position:relative; overflow:hidden; }
.guide-hero::before{content:"";position:absolute;inset:0;background:rgba(6,33,31,.18);}
.guide-hero__inner{position:relative;z-index:2;max-width:820px;}
.guide-hero .crumb, .guide-hero .crumb a { color: rgba(255,255,255,.75); }
.guide-hero .insight-card__cat { background: rgba(255,255,255,.15)!important; color:#fff!important; }
.guide-hero h1 { color:#fff; font-size: clamp(2rem,4.2vw,3rem); margin: 16px 0 12px; }
.guide-hero .en { font-family:var(--serif); font-style:italic; font-size:1.1rem; color: rgba(255,255,255,.8); }
.guide-body { display:grid; grid-template-columns: 1fr 300px; gap: 56px; align-items:start; }
.guide-main h2 { font-size: 1.5rem; margin: 0 0 18px; }
.guide-main > p { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 30px; }
.takeaways { display:grid; gap:16px; margin: 10px 0 40px; }
.takeaway { display:flex; gap:16px; background: var(--mint-tint); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; }
.takeaway .n { font-family:var(--serif); font-weight:600; font-size:1.3rem; color: var(--teal); flex:none; }
.takeaway p { margin:0; font-size:.98rem; color: var(--ink); }
.sec-list { display:flex; flex-wrap:wrap; gap:10px; }
.sec-list span { font-size:.88rem; background:#fff; border:1px solid var(--line); padding:8px 16px; border-radius:999px; color: var(--ink-soft); }
.guide-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
.aside-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.aside-card h4 { font-size:1.05rem; margin-bottom:14px; }
.aside-card .meta-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed var(--line); font-size:.9rem; }
.aside-card .meta-row:last-of-type { border-bottom:none; }
.aside-card .meta-row .k { color: var(--ink-faint); }
.aside-card .meta-row .v { color: var(--ink); font-weight:600; }
.aside-card .btn { width:100%; justify-content:center; margin-top: 18px; }
.related { margin-top: 18px; }

/* ---------- 18. Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:start; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; display:flex; gap:18px; align-items:flex-start; transition: transform .35s var(--ease), box-shadow .35s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .ic { width:52px;height:52px;border-radius:14px;background:var(--mint-soft);color:var(--teal-deep);display:flex;align-items:center;justify-content:center;flex:none; }
.contact-card .ic svg{width:26px;height:26px;}
.contact-card h4 { font-size:1.1rem; margin-bottom:4px; }
.contact-card p { color: var(--ink-soft); font-size:.95rem; }
.form { background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:34px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:.88rem; font-weight:600; color:var(--ink); margin-bottom:8px; }
.field input, .field textarea, .field select {
  width:100%; padding: 13px 16px; border:1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size:.98rem; color: var(--ink); background: var(--paper-2); transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--teal); background:#fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width:100%; justify-content:center; }
.form__note { font-size:.82rem; color:var(--ink-faint); margin-top:14px; text-align:center; }

/* hours table */
.hours li { display:flex; justify-content:space-between; padding: 12px 0; border-bottom:1px solid var(--line); font-size:.96rem; }
.hours li:last-child{border-bottom:none;}
.hours li span:first-child{ color: var(--ink); font-weight:500; }
.hours li span:last-child{ color: var(--ink-soft); }

/* ---------- 19. misc ---------- */
.pill-list { display:flex; flex-wrap:wrap; gap:10px; }
.pill-list .tag { font-size:.84rem; padding:7px 15px; }
.note { background: rgba(242,187,22,.1); border:1px solid rgba(242,187,22,.4); border-radius: var(--radius-sm); padding: 16px 20px; font-size:.9rem; color: var(--amber); display:flex; gap:10px; }
.note svg{width:20px;height:20px;flex:none;}

/* ---------- 20. Responsive ---------- */
@media (max-width: 980px){
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align:center; }
  .hero__kicker, .eyebrow { justify-content:center; }
  .hero__actions, .hero__stats { justify-content:center; }
  .hero__intro { margin-inline:auto; }
  .hero__visual { order: -1; }
  .split, .contact-grid, .guide-body { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .guide-aside { position: static; }
  .grid-3, .grid-4, .insight-grid { grid-template-columns: repeat(2,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .grid-2, .grid-3, .grid-4, .insight-grid { grid-template-columns: 1fr; }
  .hero__stat .n { font-size: 2rem; }
  .stat-b + .stat-b { border-left:none; }
  .statband .grid-4 { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .footer__top { grid-template-columns: 1fr; gap:30px; }
  .feature-media .quote { padding: 32px; }
  .section { padding: 64px 0; }
}
