/* =========================================================
   AMOU NAIL STUDIO — shared stylesheet (VI / EN / KR)
   ========================================================= */

:root{
  --ink: #4A2C06;
  --ink-soft: #6B4A28;
  --muted: #8A7862;
  --cream: #F6F6F4;
  --cream-deep: #EFE9E0;
  --white: #FFFFFF;
  --line: #E6DFD3;
  --gold: #B08A57;
  --error: #B3452F;
  --ok: #4C7A5C;
  --shadow: 0 18px 46px rgba(74,44,6,0.10);
  --shadow-sm: 0 6px 18px rgba(74,44,6,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: 'Noto Serif KR', 'Noto Serif', serif;
  --font-body: 'Noto Sans KR', 'Noto Sans', sans-serif;
  --maxw: 1160px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 .5em;
  line-height: 1.3;
  letter-spacing: .01em;
}
p{ margin: 0 0 1em; }
.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.section{ padding: 64px 0; }
.section--tight{ padding: 40px 0; }
.section-head{ text-align:center; max-width: 640px; margin: 0 auto 40px; }
.eyebrow{
  display:inline-block;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-head h2{ font-size: 30px; margin-bottom: 12px; }
.section-head p{ color: var(--muted); margin:0; }
.bg-alt{ background: var(--white); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
.btn-primary{ background: var(--ink); color:#fff; }
.btn-primary:hover{ background: var(--ink-soft); }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color:#fff; }
.btn-block{ width:100%; }
.btn-sm{ padding: 9px 18px; font-size: 13.5px; }

/* ---------- header ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(246,246,244,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 20px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 40px; width: 40px; border-radius: 50%; object-fit: cover; background:#fff; }
.brand span{ font-family: var(--font-heading); font-weight:700; font-size: 17px; letter-spacing:.03em; }

.nav-desktop{ display:none; }
.nav-desktop ul{ display:flex; gap: 30px; }
.nav-desktop a{
  font-size: 14.5px; font-weight:500; color: var(--ink-soft);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.nav-desktop a:hover, .nav-desktop a.active{ color: var(--ink); border-color: var(--gold); }

.header-actions{ display:flex; align-items:center; gap: 14px; }
.lang-switch{ display:flex; gap: 4px; background: var(--cream-deep); border-radius: 999px; padding: 3px; }
.lang-switch a{
  font-size: 12px; font-weight:700; padding: 5px 10px; border-radius: 999px; color: var(--muted);
}
.lang-switch a.active{ background: var(--ink); color:#fff; }

.hamburger{
  display:flex; flex-direction:column; gap:4px; background:none; border:none; padding:8px;
}
.hamburger span{ width:22px; height:2px; background: var(--ink); display:block; }
.nav-desktop, .header-cta{ display:none; }

.mobile-drawer{
  position: fixed; inset:0; background: rgba(74,44,6,0.45);
  z-index: 200; display:none;
}
.mobile-drawer.open{ display:block; }
.mobile-drawer__panel{
  position:absolute; top:0; right:0; height:100%; width: 82%; max-width: 340px;
  background: var(--white); padding: 20px; box-shadow: var(--shadow);
  display:flex; flex-direction:column; gap: 4px;
}
.mobile-drawer__close{ align-self:flex-end; background:none; border:none; font-size:22px; color:var(--ink); padding:6px; }
.mobile-drawer a.nav-link{
  padding: 14px 6px; font-size: 16px; font-weight:600; border-bottom: 1px solid var(--line);
}
.mobile-drawer .btn{ margin-top: 16px; }
.mobile-drawer .lang-switch{ margin-top: 18px; align-self:flex-start; }

@media (min-width: 900px){
  .nav-desktop{ display:block; }
  .header-cta{ display:inline-flex; }
  .hamburger{ display:none; }
}

/* ---------- hero ---------- */
.hero{
  background: linear-gradient(160deg, var(--ink) 0%, #6b4a28 55%, #8a6a44 100%);
  color:#fff;
  padding: 76px 0 84px;
  position: relative;
  overflow:hidden;
}
.hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.10), transparent 55%);
}
.hero__inner{ position:relative; z-index:1; max-width: 640px; margin:0 auto; text-align:center; }
.hero .eyebrow{ color: #E9D6B8; }
.hero h1{ color:#fff; font-size: 40px; margin-bottom: 16px; }
.hero p{ color: rgba(255,255,255,0.85); font-size: 16.5px; margin-bottom: 30px; }
.hero__actions{ display:flex; flex-wrap:wrap; gap: 12px; justify-content:center; }
.hero .btn-outline{ color:#fff; border-color: rgba(255,255,255,0.6); }
.hero .btn-outline:hover{ background:#fff; color: var(--ink); }

.page-hero{
  background: var(--cream-deep);
  padding: 52px 0;
  text-align:center;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow{ color: var(--gold); }
.page-hero h1{ font-size: 32px; margin-bottom: 8px; }
.page-hero p{ color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ---------- stat tiles ---------- */
.stats{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.stat-tile{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 14px; text-align:center;
}
.stat-tile strong{ display:block; font-family: var(--font-heading); font-size: 26px; color: var(--ink); }
.stat-tile span{ display:block; font-size: 12.5px; color: var(--muted); margin-top:4px; }
@media (min-width: 720px){
  .stats{ grid-template-columns: repeat(5, 1fr); }
}

/* ---------- placeholder media ---------- */
.media-placeholder{
  aspect-ratio: 4/3; width:100%; border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--cream-deep), #E3D6C2);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold); position: relative; overflow:hidden;
}
.media-placeholder svg{ width: 34%; height: 34%; opacity:.55; }

/* ---------- service cards ---------- */
.group-block{ margin-bottom: 48px; }
.group-block__title{ font-size: 20px; margin-bottom: 18px; display:flex; align-items:center; gap:10px; }
.group-block__title::after{ content:""; flex:1; height:1px; background: var(--line); }

.card-grid{ display:grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px){ .card-grid{ grid-template-columns: repeat(3, 1fr); } }

.service-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow-sm); display:flex; flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card__media{ position:relative; aspect-ratio: 4/3; overflow:hidden; }
.service-card__media img{ width:100%; height:100%; object-fit:cover; }
.service-card__media a{ display:block; width:100%; height:100%; }
.service-card__body{ padding: 18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.service-card__body h3{ font-size: 17px; margin:0; }
.service-card__body h3 a{ color: inherit; text-decoration:none; }
.service-card__body h3 a:hover{ text-decoration:underline; }
.service-card__body p{ font-size: 13.8px; color: var(--muted); margin:0; flex:1; }
.service-card__meta{ display:flex; align-items:center; justify-content:space-between; margin-top: 6px; }
.service-card__time{ font-size: 12.5px; color: var(--gold); font-weight:600; }

/* ---------- video button + modal ---------- */
.service-card__video-btn{
  position:absolute; right:10px; bottom:10px; width:38px; height:38px; border-radius:50%;
  background: rgba(74,44,6,0.78); color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: transform .15s ease, background .15s ease;
}
.service-card__video-btn:hover{ background: var(--ink); transform: scale(1.07); }
.service-card__video-btn svg{ width:13px; height:13px; margin-left:2px; }

.video-modal{ position:fixed; inset:0; z-index:300; display:none; align-items:center; justify-content:center; padding:24px; }
.video-modal.open{ display:flex; }
.video-modal__backdrop{ position:absolute; inset:0; background: rgba(20,12,4,0.74); }
.video-modal__panel{ position:relative; z-index:1; width:100%; max-width: 420px; max-height: calc(100vh - 100px); }
.video-modal__panel.wide{ max-width: 720px; }
.video-modal__frame{ position:relative; width:100%; aspect-ratio: 9/16; max-height: calc(100vh - 100px); background:#000; border-radius:14px; overflow:hidden; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.video-modal__panel.wide .video-modal__frame{ aspect-ratio: 16/9; }
.video-modal__frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-modal__close{
  position:absolute; top:-44px; right:0; width:34px; height:34px; border-radius:50%;
  background: rgba(255,255,255,0.16); color:#fff; border:none; font-size:22px; line-height:1; cursor:pointer;
}
.video-modal__close:hover{ background: rgba(255,255,255,0.3); }

.price-note{
  text-align:center; font-size: 13.5px; color: var(--muted); margin: 30px auto 0; max-width: 480px;
}
.price-note a{ color: var(--ink); font-weight:600; border-bottom: 1px solid var(--gold); }

/* ---------- about ---------- */
.about-copy{ max-width: 720px; margin: 0 auto; white-space: pre-line; color: var(--ink-soft); font-size: 15.5px; }
.about-gallery{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 34px auto 0; max-width: 720px; }
.about-gallery img, .about-gallery .media-placeholder{ border-radius: var(--radius-sm); aspect-ratio: 1/1; object-fit:cover; }
.about-video-cta{ margin-top: 24px; }
.about-video-cta:empty{ display:none; }

/* ---------- reviews ---------- */
.review-grid{ display:grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px){ .review-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px){ .review-grid{ grid-template-columns: repeat(3, 1fr); } }

.review-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column;
}
.review-card__stars{ color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card__quote{ font-size: 14.5px; color: var(--ink); margin-bottom: 10px; white-space: pre-line; }
.review-card__translated{ font-size: 12.8px; color: var(--muted); font-style: italic; border-top: 1px dashed var(--line); padding-top: 10px; white-space: pre-line; }
.review-card__foot{ display:flex; justify-content:space-between; align-items:center; margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.review-card__name{ font-weight:700; color: var(--ink-soft); }
.verified-badge{ width:14px; height:14px; vertical-align:-2px; margin-left:2px; }

.review-card__quote-wrap{ position:relative; }
.review-card.has-more .review-card__quote-wrap{ max-height: 84px; overflow:hidden; }
.review-card.has-more.expanded .review-card__quote-wrap{ max-height:none; overflow:visible; }
.review-card.has-more:not(.expanded) .review-card__quote-wrap::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--white));
}
.review-card__more{
  align-self:flex-start; margin-top:8px; background:none; border:none; padding:0;
  color: var(--gold); font-weight:700; font-size:13px; cursor:pointer;
}
.review-card__more:hover{ text-decoration:underline; }

.review-more{ margin-top: 30px; }
.review-more[data-reviews-more]:empty{ margin-top: 0; }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px){ .contact-grid{ grid-template-columns: 1fr 1.15fr; } }
.contact-list{ display:flex; flex-direction:column; gap: 14px; }
.contact-item{
  display:flex; gap:14px; align-items:flex-start; background: var(--white);
  border:1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px;
}
.contact-item__icon{
  width:38px; height:38px; border-radius:50%; background: var(--cream-deep); color: var(--ink);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:17px;
}
.contact-item h4{ margin:0 0 3px; font-size: 14px; font-family: var(--font-body); font-weight:700; }
.contact-item p, .contact-item a{ margin:0; font-size: 14px; color: var(--muted); }
.contact-item a:hover{ color: var(--ink); }
.map-wrap{ border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 340px; }
.map-wrap iframe{ width:100%; height:100%; min-height: 340px; border:0; display:block; }

/* ---------- QR grid (Liên hệ) ---------- */
.qr-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 620px; margin: 0 auto; }
@media (min-width: 700px){ .qr-grid{ grid-template-columns: repeat(4, 1fr); } }
.qr-card{
  background: var(--white); border:1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 14px 16px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:10px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.qr-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.qr-card img{ width:100%; max-width: 132px; aspect-ratio:1/1; border-radius: 8px; border:1px solid var(--line); }
.qr-card span{ font-size: 13px; font-weight:600; color: var(--ink-soft); line-height:1.35; }

/* ---------- booking form ---------- */
.booking-card{
  max-width: 720px; margin: 0 auto; background: var(--white); border:1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 22px;
}
@media (min-width: 640px){ .booking-card{ padding: 40px; } }

.field{ margin-bottom: 20px; }
.field label{ display:block; font-size: 13.5px; font-weight:700; margin-bottom: 7px; }
.field label .req{ color: var(--error); }
.field label .opt{ color: var(--muted); font-weight:500; font-size: 12px; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field select, .field textarea{
  width:100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--cream); font-size: 15px; font-family: inherit; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--gold); background:#fff; }
.field.invalid input, .field.invalid select{ border-color: var(--error); background:#fdf1ef; }
.field .error-msg{ display:none; font-size:12px; color: var(--error); margin-top:5px; }
.field.invalid .error-msg{ display:block; }
.hp{ position:absolute; left:-9999px; }

.date-scroller{ display:flex; gap:10px; overflow-x:auto; padding-bottom: 8px; -webkit-overflow-scrolling:touch; }
.date-chip{
  flex: 0 0 auto; width: 62px; padding: 10px 4px; border-radius: 12px; border:1.5px solid var(--line);
  background: var(--cream); text-align:center; cursor:pointer;
}
.date-chip span{ display:block; }
.date-chip .dow{ font-size:11px; color: var(--muted); text-transform:uppercase; }
.date-chip .num{ font-size:18px; font-weight:700; margin: 2px 0; }
.date-chip .mon{ font-size:10.5px; color: var(--muted); }
.date-chip.selected{ background: var(--ink); border-color: var(--ink); color:#fff; }
.date-chip.selected .dow, .date-chip.selected .mon{ color: rgba(255,255,255,0.75); }

.time-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
@media (min-width: 480px){ .time-grid{ grid-template-columns: repeat(4, 1fr); } }
.time-slot{
  padding: 9px 4px; border-radius: 10px; border:1.5px solid var(--line); background: var(--cream);
  font-size: 13.5px; text-align:center;
}
.time-slot.selected{ background: var(--ink); border-color: var(--ink); color:#fff; }
.time-hint{ font-size: 12px; color: var(--muted); margin-top:10px; }

.consent-note{ font-size: 12.3px; color: var(--muted); margin: 18px 0; line-height:1.6; }
.consent-note a{ text-decoration: underline; }

.status{ margin-top:16px; padding:12px 14px; border-radius: var(--radius-sm); font-size:14px; display:none; }
.status.show{ display:block; }
.status.success{ background:#eaf6ec; color: var(--ok); }
.status.error{ background:#fdecea; color: var(--error); }

/* ---------- booking success popup ---------- */
.success-modal{ position:fixed; inset:0; z-index:400; display:none; align-items:center; justify-content:center; padding:24px; }
.success-modal.open{ display:flex; }
.success-modal__backdrop{ position:absolute; inset:0; background: rgba(20,12,4,0.6); }
.success-modal__panel{
  position:relative; z-index:1; width:100%; max-width: 380px; background: var(--white);
  border-radius: var(--radius); padding: 34px 28px 28px; text-align:center; box-shadow: 0 24px 60px rgba(0,0,0,.28);
  animation: successPop .22s ease;
}
@keyframes successPop{ from{ transform: scale(.94); opacity:0; } to{ transform: scale(1); opacity:1; } }
.success-modal__icon{
  width:56px; height:56px; margin:0 auto 16px; border-radius:50%; background:#eaf6ec;
  display:flex; align-items:center; justify-content:center;
}
.success-modal__icon svg{ width:28px; height:28px; }
.success-modal__title{ font-size:19px; margin:0 0 10px; color: var(--ink); }
.success-modal__desc{ font-size:14px; color: var(--muted); line-height:1.6; margin:0 0 22px; }
.success-modal__close{ width:100%; }

/* ---------- footer ---------- */
.site-footer{ background: var(--ink); color: rgba(255,255,255,0.82); padding: 52px 0 26px; margin-top: 60px; }
.footer-grid{ display:grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 780px){ .footer-grid{ grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom: 12px; }
.footer-brand img{ height: 34px; width:34px; border-radius:50%; }
.footer-brand span{ color:#fff; font-family: var(--font-heading); font-size:16px; font-weight:700; }
.site-footer p{ font-size: 13.5px; }
.site-footer h5{ color:#fff; font-size: 13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; }
.footer-links li{ margin-bottom: 9px; }
.footer-links a{ font-size:13.8px; color: rgba(255,255,255,0.78); }
.footer-links a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.15); margin-top: 36px; padding-top: 20px; font-size:12.5px; color: rgba(255,255,255,0.6); text-align:center; }

/* ---------- FAQ accordion ---------- */
.faq-list{ max-width: 720px; margin: 0 auto; display:flex; flex-direction:column; gap: 12px; }
.faq-item{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius-sm); overflow:hidden; }
.faq-item__q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 16px 20px; background:none; border:none; text-align:left; cursor:pointer;
  font-family: var(--font-body); font-size: 15px; font-weight:600; color: var(--ink);
}
.faq-item__icon{ flex-shrink:0; width:22px; height:22px; display:flex; align-items:center; justify-content:center; color: var(--gold); font-size:18px; transition: transform .2s ease; }
.faq-item.open .faq-item__icon{ transform: rotate(45deg); }
.faq-item__a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-item.open .faq-item__a{ max-height: 320px; }
.faq-item__a p{ margin:0; padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height:1.6; }

/* ---------- service detail page ---------- */
.back-link{ font-size: 13.5px; font-weight:600; color: var(--ink-soft); display:inline-flex; align-items:center; gap:6px; }
.back-link:hover{ color: var(--ink); }

.service-detail-loading, .service-detail-error{ text-align:center; color: var(--muted); padding: 60px 0; font-size:14.5px; }

.service-detail{ display:grid; grid-template-columns: 1fr; gap: 32px; margin-top: 24px; }
@media (min-width: 860px){ .service-detail{ grid-template-columns: 1.05fr 1fr; align-items:start; } }

.service-detail__media{ position:relative; border-radius: var(--radius); overflow:hidden; aspect-ratio: 4/3; }
.service-detail__media img{ width:100%; height:100%; object-fit:cover; }
.service-detail__video-btn{
  position:absolute; right:16px; bottom:16px; width:52px; height:52px; border-radius:50%;
  background: rgba(74,44,6,0.82); color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: transform .15s ease, background .15s ease;
}
.service-detail__video-btn:hover{ background: var(--ink); transform: scale(1.06); }
.service-detail__video-btn svg{ width:18px; height:18px; margin-left:3px; }

.service-detail__info{ display:flex; flex-direction:column; gap: 14px; }
.service-detail__group{
  align-self:flex-start; font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  color: var(--gold); background: var(--cream-deep); padding: 5px 12px; border-radius: 999px;
}
.service-detail__info h1{ font-size: 28px; margin:0; }
.service-detail__short{ color: var(--muted); font-size: 15px; margin:0; }
.service-detail__duration{ font-size: 13.5px; font-weight:600; color: var(--ink-soft); }

.service-detail__highlights{ list-style:none; margin:6px 0 0; padding:0; display:flex; flex-direction:column; gap:10px; }
.service-detail__highlights li{
  display:flex; align-items:flex-start; gap:10px; font-size: 14.5px; color: var(--ink); line-height:1.5;
}
.service-detail__highlights li::before{
  content:"✓"; flex-shrink:0; width:20px; height:20px; border-radius:50%; background: var(--ok); color:#fff;
  font-size:12px; font-weight:700; display:flex; align-items:center; justify-content:center; margin-top:1px;
}

.service-detail__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 8px; }

.service-detail__body{
  max-width: 760px; margin: 40px auto 0; white-space: pre-line; color: var(--ink-soft);
  font-size: 15.5px; line-height:1.8; border-top:1px solid var(--line); padding-top: 32px;
}

/* ---------- misc ---------- */
.center{ text-align:center; }
.mt-24{ margin-top:24px; }
.skip-link{ position:absolute; left:-999px; }
