@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #FCB316;
  --gold-dim: rgba(252,179,22,0.55);
  --gold-faint: rgba(252,179,22,0.1);
  --gold-border: rgba(252,179,22,0.2);
  --bg: #0d0d0d;
  --bg2: #111111;
  --text: #f0ece4;
  --text-dim: rgba(240,236,228,0.6);
  --text-faint: rgba(240,236,228,0.3);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', Helvetica, sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); font-size: 21px; line-height: 1.85; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }

/* ── NAV ── */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 28px; background: var(--bg);
  border-bottom: 0.5px solid var(--gold-border);
}
.nav-logo { font-size: 23px; font-weight: 500; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { font-size: 13px; letter-spacing: 0.08em; color: var(--text-faint); text-transform: uppercase; }
.nav-links a.active, .nav-links a:hover { color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; -webkit-tap-highlight-color: transparent; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--gold); margin: 4px 0; }

/* ── MOBILE MENU ── */
.mmenu { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mmenu.open { display: flex; }
.mmenu a { font-size: 20px; letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase; }
.mmenu a.active, .mmenu a:hover { color: var(--gold); }
.mmenu-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--gold); font-size: 28px; cursor: pointer; line-height: 1; }

/* ── FLOAT BAR ── */
.fbar {
  position: sticky; top: 0; z-index: 500;
  height: 50px;
  background: rgba(13,13,13,0.98);
  border-bottom: 0.5px solid var(--gold-border);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  overflow: hidden;
}
.fbar-left { display: flex; align-items: center; gap: 12px; overflow: hidden; }
.fbar-text { font-size: 17px; color: var(--text-faint); white-space: nowrap; }
.fbar-text strong { color: rgba(240,236,228,0.8); font-weight: 500; }
.fbar-mobile { display: none; }
.fbar-desktop { display: inline; }
.fbar-sep { width: 0.5px; height: 12px; background: var(--gold-border); flex-shrink: 0; }
.fbar-btn {
  flex-shrink: 0;
  height: 34px; line-height: 34px;
  padding: 0 16px;
  background: var(--gold); color: var(--bg);
  font-size: 16px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap;
}

/* ── PAGE HEADER ── */
.page-hdr {
  padding: 52px 28px 40px; background: var(--bg2);
  border-bottom: 0.5px solid var(--gold-border);
  position: relative; overflow: hidden;
}
.page-hdr-glow { position: absolute; top: -80px; right: -40px; width: 300px; height: 300px; background: radial-gradient(ellipse, rgba(252,179,22,0.07) 0%, transparent 65%); pointer-events: none; }
.page-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.page-hdr h1 { font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 14px; }
.page-hdr h1 em { font-style: italic; color: var(--gold); }
.page-hdr p { font-size: 21px; color: var(--text-dim); max-width: 520px; line-height: 1.85; }

/* ── SECTIONS ── */
.sec { padding: 48px 28px; background: var(--bg); }
.sec2 { padding: 48px 28px; background: var(--bg2); }
.sec-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.sec-label::after { content: ''; width: 28px; height: 0.5px; background: var(--gold-border); }

/* ── PRICING ── */
.pr-sub { font-size: 11px; color: var(--text-faint); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.pr-grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--gold-faint); margin-bottom: 12px; max-width: 720px; }
.pr-grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--gold-faint); max-width: 360px; margin-bottom: 4px; }
.pr-card { background: var(--bg); padding: 6px 8px; text-align: center; }
.pr-dur { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 2px; }
.pr-amt { font-family: var(--serif); font-size: 22px; color: var(--gold); line-height: 1.2; }
.pr-note { font-size: 10px; color: var(--gold-dim); margin-top: 3px; }
.pr-fine { font-size: 11px; color: rgba(240,236,228,0.2); margin-top: 10px; }

/* ── SPECIALS (Morning & Regular Client) ── */
.special-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--gold-faint); margin-top: 32px; border-top: 0.5px solid var(--gold-border); }
.special-card { background: var(--bg2); padding: 24px 22px; }
.special-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gold-faint); margin-top: 8px; }
.why-card { background: var(--bg2); padding: 28px 24px; }
.why-icon { font-size: 32px; color: var(--gold); margin-bottom: 14px; font-family: var(--serif); letter-spacing: 0.04em; line-height: 1; }
.why-card:nth-child(2) .why-icon { font-size: 14px; letter-spacing: 0.08em; }
.why-card h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.why-card p { font-size: 15px; color: var(--text-dim); line-height: 1.85; }
.special-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 10px; font-style: italic; }
.special-desc { font-size: 14px; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.special-prices { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 14px; border-top: 0.5px solid var(--gold-border); }
.special-prices span { font-size: 13px; color: var(--text-faint); letter-spacing: 0.04em; }
.special-prices span strong { color: var(--gold-dim); font-weight: 500; margin-right: 6px; text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; }

/* ── WHY CHOOSE ME ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gold-faint); }
.why-card { background: var(--bg); padding: 28px 22px; }
.why-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 16px; font-size: 22px; }
.why-card h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 10px; font-style: italic; }
.why-card p { font-size: 14px; color: var(--text-dim); line-height: 1.75; }

/* ── BUTTONS ── */
.btn-g { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--bg); padding: 12px 24px; border-radius: 3px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.btn-o { display: inline-flex; align-items: center; gap: 8px; border: 0.5px solid rgba(252,179,22,0.4); color: var(--gold-dim); padding: 12px 24px; border-radius: 3px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }

/* ── CTA BAR ── */
.cta { padding: 52px 28px; background: var(--bg2); text-align: center; border-top: 0.5px solid var(--gold-border); }
.cta h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.cta h3 em { font-style: italic; color: var(--gold); }
.cta p { font-size: 14px; color: var(--text-dim); margin-bottom: 22px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--bg); padding: 18px 28px 80px; text-align: center; border-top: 0.5px solid rgba(252,179,22,0.08); font-size: 10px; color: rgba(240,236,228,0.18); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── CHATBOT ── */
.cbubble { position: fixed; bottom: 20px; right: 16px; z-index: 8000; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 16px rgba(252,179,22,0.25); }
.cbubble svg { width: 22px; height: 22px; stroke: var(--bg); fill: none; stroke-width: 1.5; }
.cbadge { position: absolute; top: -2px; right: -2px; width: 14px; height: 14px; background: #e74c3c; border-radius: 50%; border: 2px solid var(--bg); display: none; align-items: center; justify-content: center; font-size: 8px; color: white; font-weight: 700; }
.cwin { position: fixed; bottom: 76px; right: 12px; z-index: 8001; width: calc(100vw - 24px); max-width: 340px; background: var(--bg2); border: 0.5px solid var(--gold-border); border-radius: 12px; overflow: hidden; display: none; flex-direction: column; box-shadow: 0 8px 40px rgba(0,0,0,0.6); max-height: 68vh; }
.cwin.open { display: flex; }
.chead { background: var(--gold); padding: 11px 14px; display: flex; align-items: center; justify-content: space-between; }
.chead-info { display: flex; align-items: center; gap: 10px; }
.cavatar { width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--bg); }
.chead h4 { font-size: 13px; font-weight: 500; color: var(--bg); margin: 0; }
.chead p { font-size: 10px; color: rgba(13,13,13,0.6); margin: 0; }
.cclose { background: none; border: none; cursor: pointer; color: var(--bg); font-size: 20px; line-height: 1; }
.cmsgs { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; }
.cmsg { max-width: 85%; }
.cmsg-b { align-self: flex-start; }
.cmsg-u { align-self: flex-end; }
.cbubble-msg { padding: 10px 13px; border-radius: 12px; font-size: 13px; line-height: 1.6; }
.cmsg-b .cbubble-msg { background: rgba(255,255,255,0.06); color: var(--text); border-radius: 4px 12px 12px 12px; }
.cmsg-u .cbubble-msg { background: var(--gold); color: var(--bg); border-radius: 12px 4px 12px 12px; }
.ctime { font-size: 10px; color: var(--text-faint); margin-top: 3px; padding: 0 4px; }
.csugg { padding: 7px 10px; display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; border-top: 0.5px solid var(--gold-border); }
.csugg::-webkit-scrollbar { display: none; }
.csugg button { flex-shrink: 0; font-size: 11px; color: var(--gold); border: 0.5px solid var(--gold-border); padding: 5px 11px; border-radius: 20px; cursor: pointer; white-space: nowrap; background: none; font-family: var(--sans); }
.cinput-row { display: flex; gap: 8px; padding: 8px 10px; border-top: 0.5px solid var(--gold-border); background: var(--bg); }
.cinput { flex: 1; background: rgba(255,255,255,0.06); border: 0.5px solid var(--gold-border); border-radius: 20px; padding: 9px 13px; font-size: 13px; color: var(--text); font-family: var(--sans); outline: none; }
.cinput::placeholder { color: var(--text-faint); }
.csend { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.csend svg { width: 14px; height: 14px; stroke: var(--bg); fill: none; stroke-width: 2; }
.ctyping { display: flex; gap: 4px; align-items: center; padding: 10px 13px; }
.ctyping span { width: 5px; height: 5px; background: var(--text-faint); border-radius: 50%; animation: tbounce 1.2s infinite; }
.ctyping span:nth-child(2) { animation-delay: 0.2s; }
.ctyping span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tbounce { 0%,80%,100%{transform:scale(0.7);opacity:0.4}40%{transform:scale(1);opacity:1} }

/* ── DESKTOP OVERRIDES ── */
@media (min-width: 640px) {
  .footer { padding-bottom: 20px; font-size: 13px; }
  .sec, .sec2, .cta { padding: 32px 32px; }
  .sec-pricing { padding: 16px 32px; }
  .cwin { width: 340px; }
  .page-hdr h1 { font-size: 46px; }
  .page-hdr p { font-size: 21px; }
  .sec-label { font-size: 13px; letter-spacing: 0.2em; }
  .pr-sub { font-size: 15px; }
  .pr-dur { font-size: 14px; }
  .pr-amt { font-size: 28px; }
  .pr-fine { font-size: 14px; }
  .pr-note { font-size: 13px; }
  .cta h3 { font-size: 34px; }
  .cta p { font-size: 21px; }
  .btn-g, .btn-o { font-size: 16px; padding: 14px 28px; }
  .faq-q { font-size: 21px; }
  .faq-a { font-size: 21px; line-height: 1.9; }
  .faq-hl { font-size: 19px; }
  .faq-grp-t { font-size: 13px; }
  .about-body p { font-size: 21px; }
  .pquote p { font-size: 26px; }
  .test-card p { font-size: 19px; }
  .test-author { font-size: 14px; }
  .svc-block h2 { font-size: 23px; }
  .svc-block p { font-size: 21px; }
  .svc-note { font-size: 19px; }
  .svc-tag { font-size: 13px; padding: 5px 14px; }
  .con-card p { font-size: 19px; }
  .con-card h3 { font-size: 15px; }
  .loc-item p { font-size: 17px; }
  .loc-item h4 { font-size: 14px; }
  .what-body p { font-size: 21px; }
  .qual-card p { font-size: 17px; }
  .qual-card h3 { font-size: 17px; }
  .cred-card p { font-size: 17px; }
  .cred-card h4 { font-size: 14px; }
  .svc-card h3 { font-size: 19px; }
  .svc-card p { font-size: 17px; }
  .info-card p { font-size: 17px; }
  .info-card h4 { font-size: 15px; }
  .bcard-title { font-size: 23px; }
  .bcard-excerpt { font-size: 17px; }
  .post-body p { font-size: 21px; }
  .post-pull p { font-size: 26px; }
}

/* ── BOTTOM NAV (mobile only) ── */
.bnav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(13,13,13,0.98);
  border-top: 0.5px solid var(--gold-border);
  height: 62px;
  padding: 0;
}
.bnav-inner {
  display: flex; height: 100%;
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; color: var(--text-faint);
  font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.bnav-item.active, .bnav-item:hover { color: var(--gold); }
.bnav-item svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── MOBILE ── */

.paths-section { padding: 32px 20px; background: var(--bg); }
.paths-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gold-faint); }
.path-card { background: var(--bg2); padding: 32px 24px; text-decoration: none; display: flex; flex-direction: column; transition: all 0.25s; }
.path-card:hover { background: #1a1a1a; border-left: 2px solid var(--gold); padding-left: 22px; }
.path-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.path-card p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; flex: 1; }
.path-link { font-size: 13px; color: var(--gold); letter-spacing: 0.06em; font-weight: 500; display: block; }
.path-card:hover .path-link { color: #fce5a8; }

@media (max-width: 639px) {
  .nav { padding: 12px 16px; }
  .nav-links { display: none; }
  .hamburger { display: none; }
  .fbar { padding: 0 16px; }
  .fbar-sep, .fbar-hours { display: none; }
  .fbar-desktop { display: none; }
  .fbar-mobile { display: inline; }
  .fbar-text { font-size: 14px; }
  .bnav-item { padding: 6px 2px; }
  .bnav-item span { font-size: 10px; }
  .cbubble { bottom: 78px; right: 12px; }
  .cwin { bottom: 138px; right: 12px; max-height: calc(100vh - 220px); }
  .special-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 22px 18px; }
  .why-card h4 { font-size: 19px; }
  .why-card p { font-size: 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .special-title { font-size: 19px; }
  .why-card h4 { font-size: 18px; }
  .page-hdr { padding: 40px 16px 32px; }
  .page-hdr h1 { font-size: 32px; }
  .page-hdr p { font-size: 19px; }
  .sec, .sec2, .cta { padding: 36px 16px; }
  .pr-grid4 { grid-template-columns: repeat(2,1fr); }
  .pr-dur { font-size: 13px; }
  .pr-amt { font-size: 26px; }
  .pr-sub { font-size: 13px; }
  .pr-fine { font-size: 12px; }
  .cta h3 { font-size: 28px; }
  .cta p { font-size: 19px; }
  .btn-g, .btn-o { font-size: 16px; padding: 14px 22px; }
  .footer { padding: 16px 16px 80px; font-size: 12px; }
  .sec-label { font-size: 11px; }
  .bnav { display: block; }
}

@media(max-width:639px){
  .paths-grid { grid-template-columns: 1fr; }
  .path-card h3 { font-size: 20px; }
  .path-card { padding: 24px 16px; }
  .path-card:hover { border-left: none; padding-left: 24px; }
}