/* ============================================================
   service.css – page-specific styles for Services page
   ============================================================ */

:root {
  --warm-white: #fffcfc;
  --bg: #f5f0eb;
}

/* ── NAIL SERVICES GUIDE ── */
.guide-section {
  background: var(--bg);
  padding: clamp(80px, 10vw, 130px) clamp(20px, 8vw, 200px) 0;
  text-align: center;
  padding-top: calc(71px + clamp(50px, 7vw, 100px));
}
.guide-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500; color: var(--text);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 6px;
}
.guide-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400; color: var(--gold);
  margin-bottom: clamp(36px, 5vw, 60px);
}

/* Service cards – white rounded cards per design */
.service-cards {
  display: flex; flex-direction: column; gap: clamp(16px, 2.2vw, 26px);
  text-align: left; max-width: 880px; margin: 0 auto;
}
.service-card {
  background: #fffdfc;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(120,90,60,0.10);
  padding: clamp(18px, 2.6vw, 28px) clamp(18px, 3vw, 32px);
}
.service-card-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 10px;
}
.service-card-plus {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  transform: translateY(-1px);
}
.service-card-name { font-family: var(--font-serif); font-size: clamp(17px, 2vw, 22px); font-weight: 600; color: var(--gold); margin-right: auto; }
.service-card-desc { font-family: var(--font-sans); font-size: 12px; color: #555; line-height: 1.8; }
.service-card-duration { font-family: var(--font-serif); font-size: clamp(14px, 1.6vw, 18px); font-weight: 500; color: var(--gold); white-space: nowrap; }

/* ── "HOW LONG" BAND ── */
.band {
  background: var(--gold-light);
  padding: clamp(36px, 5vw, 60px) clamp(20px, 8vw, 200px);
  text-align: center;
  margin-top: clamp(40px, 5vw, 70px);
}
.band-heading { font-family: var(--font-serif); font-size: clamp(22px, 2.8vw, 36px); font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.band-body { font-family: var(--font-sans); font-size: 12px; color: #fff; line-height: 1.9; max-width: 680px; margin: 0 auto; }

/* ── MAKING A BOOKING ── */
.booking-section {
  background: var(--warm-white);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 8vw, 200px);
  text-align: center;
}
.section-title-lg {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500; color: var(--text);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: clamp(32px, 4vw, 50px);
}
.booking-steps { display: flex; flex-direction: column; gap: clamp(12px, 1.8vw, 18px); max-width: 760px; margin: 0 auto clamp(28px, 4vw, 44px); text-align: left; }

/* ── ACCORDION (shared) ── */
.acc-item { overflow: hidden; }
.acc-header {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative;
  background: none; border: none; cursor: pointer;
  text-align: center;
  font-family: var(--font-serif);
  transition: background 0.25s, color 0.25s;
}
.acc-icon { position: absolute; right: clamp(12px, 2vw, 20px); width: 12px; height: 12px; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; background: currentColor; transition: transform 0.3s;
}
.acc-icon::before { left: 0; right: 0; top: 5px; height: 1.5px; }
.acc-icon::after  { top: 0; bottom: 0; left: 5px; width: 1.5px; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.acc-panel-inner { padding: clamp(16px, 2.4vw, 26px) clamp(14px, 2.5vw, 28px); }

/* Booking step accordion: outlined bar → brown bar when open */
.booking-acc .acc-header {
  border-top: 1px solid rgba(160,122,86,0.45);
  border-bottom: 1px solid rgba(160,122,86,0.45);
  padding: clamp(12px, 1.8vw, 16px) clamp(36px, 5vw, 48px);
  color: var(--gold);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 600;
}
.booking-acc.open .acc-header {
  background: var(--gold);
  border-color: var(--gold);
  color: #fdf8f2;
}
.booking-acc .acc-panel-inner { background: #fffdfc; }
.acc-text { font-family: var(--font-sans); font-size: 12px; color: #555; line-height: 1.8; }
.acc-text.center { text-align: center; }
.remove-options { display: flex; justify-content: center; gap: clamp(10px, 2vw, 18px); flex-wrap: wrap; margin: 16px 0 14px; }
.remove-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
}
.acc-note {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
/* Step 2: manicure type table */
.manicure-types { display: flex; flex-direction: column; }
.manicure-row {
  display: grid; grid-template-columns: clamp(150px, 22vw, 190px) 1fr;
  gap: clamp(12px, 2vw, 22px);
  padding: clamp(10px, 1.5vw, 14px) 0;
  border-bottom: 1px solid rgba(160,122,86,0.14);
  align-items: center;
}
.manicure-row:last-child { border-bottom: none; }
.manicure-chip {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(213,193,168,0.28);
  border-radius: 6px;
  padding: 10px 12px;
  text-align: center;
  line-height: 1.5;
}
.manicure-desc { font-family: var(--font-sans); font-size: 12px; color: #555; line-height: 1.7; }
.acc-list {
  list-style: none;
  text-align: left;
  display: flex; flex-direction: column; gap: 12px;
}
.acc-list li {
  font-family: var(--font-sans); font-size: 12px; color: #555; line-height: 1.8;
  padding-left: 18px; position: relative;
}
.acc-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
.booking-thanks { font-family: var(--font-serif); font-style: italic; font-size: clamp(20px, 2.5vw, 30px); font-weight: 500; color: var(--gold); margin-bottom: 8px; }
.booking-tagline { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #555; }

/* ── WAXING ── */
.waxing-section {
  background: var(--bg);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 8vw, 200px);
  text-align: center;
}
.waxing-section .section-title-lg { margin-bottom: 10px; }
.waxing-intro { font-family: var(--font-sans); font-size: 12px; color: #666; margin-bottom: clamp(36px, 5vw, 54px); }
.waxing-phases { display: flex; flex-direction: column; gap: clamp(10px, 1.5vw, 16px); max-width: 760px; margin: 0 auto; }
.waxing-acc .acc-header {
  border-top: 1px solid rgba(160,122,86,0.4);
  border-bottom: 1px solid rgba(160,122,86,0.4);
  padding: clamp(12px, 1.8vw, 16px) clamp(36px, 5vw, 48px);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--gold);
}
.waxing-acc.open .acc-header { color: #7a5635; }
.waxing-acc .acc-panel-inner {
  background: #fffdfc;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 6px 20px rgba(120,90,60,0.08);
}

/* ── "HOW LONG WILL WAX LAST" BAND ── */
.wax-band {
  background: var(--gold-light);
  padding: clamp(36px, 5vw, 60px) clamp(20px, 8vw, 200px);
  text-align: center;
}
.wax-band .band-heading { color: var(--gold); }

/* ── TREATMENT MENU ── */
.menu-section {
  background: #8b6440;
  padding: clamp(50px, 7vw, 90px) clamp(20px, 5vw, 80px);
}
.menu-title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 38px); font-weight: 500; color: #fff; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.menu-grid { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 32px); max-width: 900px; margin: 0 auto; }
.menu-card { background: #c2a585; border-radius: 8px; padding: clamp(20px, 3vw, 36px); }
.menu-card-title { font-family: var(--font-serif); font-style: italic; font-size: clamp(19px, 2.1vw, 28px); font-weight: 600; color: #fff; text-align: center; margin-bottom: clamp(16px, 2.5vw, 26px); padding-bottom: clamp(12px, 2vw, 18px); border-bottom: 1px solid rgba(255,255,255,0.35); }
.menu-rows { display: flex; flex-direction: column; gap: 0; }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: clamp(8px, 1.2vw, 13px) 0; border-bottom: 1px solid rgba(255,255,255,0.28); align-items: start; }
.menu-row:last-child { border-bottom: none; }
.menu-row-name { font-family: var(--font-sans); font-size: 12px; font-weight: 400; color: #fff; line-height: 1.5; }
.menu-row-sub { font-family: var(--font-sans); font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 3px; line-height: 1.5; }
.menu-row-price { font-family: var(--font-sans); font-size: 12px; font-weight: 500; color: #fff; white-space: nowrap; text-align: right; }

/* ── WHY BOOK WITH US ── */
.why-section { background: var(--bg); padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px); }
.why-inner { max-width: 980px; margin: 0 auto; }
.why-heading {
  font-family: var(--font-serif); font-size: clamp(28px, 4vw, 52px);
  font-weight: 500; color: var(--text);
  display: flex; flex-direction: column; justify-content: center;
}
.why-heading span { display: block; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 28px); }
.why-card { background: rgba(213,193,168,0.28); border-radius: 8px; padding: clamp(22px, 3vw, 34px); }
.why-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 18px; height: 18px; fill: #fff; }
.why-card-title { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.why-card-desc { font-family: var(--font-sans); font-size: 12px; color: #666; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-heading { text-align: center; padding-bottom: 8px; }
  .manicure-row { grid-template-columns: 1fr; gap: 8px; }
  .manicure-chip { justify-self: start; }
}

@media (max-width: 540px) {
  .menu-row { grid-template-columns: 1fr; }
  .menu-row-price { text-align: left; }
  .service-card-head { flex-wrap: wrap; row-gap: 2px; }
  .service-card-duration { width: 100%; padding-left: 25px; }
  .acc-icon { right: 8px; }
  .booking-acc .acc-header, .waxing-acc .acc-header { padding-left: 28px; padding-right: 28px; }
}
