/* ===== Base ===== */
* { box-sizing: border-box; }

:root{
  --bg: #faf8f6;
  --card: #ffffff;
  --text: #1e1e1e;
  --muted: rgba(0,0,0,.62);
  --line: rgba(0,0,0,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;

  /* Ki Nails rose-gold */
  --ki-cream: #fffaf8;
  --ki-rose:  #d6a89b;
  --ki-rose2: #c99588;
  --ki-ink:   #2a2a2a;
}

html, body{
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

/* Center everything (layout + text) */
body{ text-align: center; }

.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(250,248,246,.75);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  padding: 18px 0 14px;
}

.brand-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand{
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: .5px;
}

.brand-subtitle{
  font-size: 20px;
  color: var(--muted);
}

.header-phone{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 0;
  padding: 0;
}

.phone-icon svg{
  width: 18px;
  height: 18px;
  display: block;
  opacity: .85;
}

.phone-number{
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
}

.phone-number:hover{
  text-decoration: underline;
}

.phone-separator{ opacity: .55; }

.open-late{
  color: var(--muted);
  font-size: 16px;
}

/* Language buttons */
.lang-switch{
  display: inline-flex;
  gap: 8px;
  margin-top: 10px;
}

.lang-btn{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: rgba(0,0,0,.72);
}

.lang-btn.is-active{
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ===== Cards / Sections ===== */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin: 18px auto;
}

.section-title{
  margin: 28px 0 12px;
  font-size: 20px;
  font-weight: 750;
}

/* ===== Hero ===== */
.hero{
  padding: 18px;
}

.hero-media{
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.hero-img{
  width: min(900px, 100%);
  max-height: 460px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.hero-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-title{
  margin: 8px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
}

.hero-desc{
  margin: 0;
  color: rgba(0,0,0,.72);
  max-width: 820px;
}

.cta-row{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ===== Ki Nails Rose-Gold Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 18px;
  min-width: 220px;

  background: #ffffff;
  color: var(--ki-ink);
  border: 1px solid rgba(214, 168, 155, 0.45);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);

  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  border-color: rgba(201, 149, 136, 0.65);
}

/* Primary CTA */
/* Primary CTA — Book Online (Filled Rose-Gold) */
.btn.primary{
  background: linear-gradient(135deg, #f7e7e2 0%, #ecd1c9 100%);
  color: #2a2a2a;
  border: 1px solid rgba(201,149,136,.9);

  box-shadow:
    0 10px 26px rgba(214,168,155,.45),
    inset 0 0 0 1px rgba(255,255,255,.7);

  font-weight: 900;
}

.btn.primary:hover{
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px rgba(214,168,155,.55),
    inset 0 0 0 1px rgba(255,255,255,.8);
}

/* Ghost CTA */
/* Secondary / Ghost CTA */
.btn.ghost{
  background: transparent;
  color: #3a3a3a;
  border: 1px solid rgba(214,168,155,.35);
  box-shadow: none;
}

.btn.ghost:hover{
  border-color: rgba(201,149,136,.6);
  background: rgba(214,168,155,.08);
}

/* Optional: 2-line CTA button (if you use spans inside) */
.btn.two-line{
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
}

.btn .btn-top{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.btn .btn-sub{
  font-size: 12px;
  opacity: 0.85;
}

.btn .badge{
  color: var(--ki-rose2);
}

/* ===== Service Cards ===== */
.card-title{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: none;
}

/* Table wrapper */
.table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
}

/* ===== Official website table style ===== */
.price-table{
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  background: #fff;
}

.price-table thead th{
  padding: 14px 12px;
  font-size: 15px;
  color: rgba(0,0,0,.72);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

/* Row baseline */
.price-table tbody tr{
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.price-table tbody tr:last-child{
  border-bottom: none;
}

.price-table td{
  padding: 14px 12px;
  vertical-align: middle;
  font-size: 15px;
}

/* Column alignment: Service left, Description center, Price right */
.price-table th:first-child,
.price-table td:first-child{
  text-align: left;
  font-weight: 700;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2){
  text-align: center;
  color: rgba(0,0,0,.62);
}

.price-table th:last-child,
.price-table td:last-child{
  text-align: right;
  font-weight: 800;
  white-space: nowrap;
}

/* Hover (subtle) */
.price-table tbody tr:hover{
  background: rgba(0,0,0,.02);
}

/* ===== Contact ===== */
.contact-grid{
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.contact-item{
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
}

.label{
  font-weight: 800;
  color: rgba(0,0,0,.72);
  margin-bottom: 6px;
}

.value a{
  color: inherit;
  text-decoration: none;
}
.value a:hover{
  text-decoration: underline;
}

.map-image{
  margin-top: 12px;
}

.contact-map{
  display: block;
  width: 100%;
  max-width: 360px;   /* adjust: 300–450px is ideal */
  height: auto;

  margin: 50px auto;  /* centers it */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}



