/* Focal Point Salon & Spa — refreshed spa design system (logo-aligned palette) */
:root {
  --brand: #127ac1;          /* logo azure blue */
  --brand-dark: #0f6298;
  --brand-darker: #0a3a5a;   /* deep navy */
  --brand-light: #e8f2fb;    /* pale blue tint */
  --accent: #c2a36b;         /* soft gold (complementary luxe accent) */
  --accent-dark: #a98a52;
  --ink: #16242e;
  --body: #45525b;
  --muted: #7e8c95;
  --line: #e2e8ec;
  --bg: #ffffff;
  --bg-alt: #f4f8fb;         /* cool light wash */
  --bg-deep: #0a3a5a;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(10,58,90,.08), 0 1px 2px rgba(10,58,90,.05);
  --shadow: 0 14px 40px rgba(10,58,90,.12);
  --maxw: 1180px;
  --font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 600; letter-spacing: .005em; }
h1 { font-size: clamp(2.05rem, 7.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.65rem, 5.2vw, 2.8rem); margin-top: 1.6em; }
h3 { font-size: clamp(1.3rem, 4.4vw, 1.55rem); margin-top: 1.4em; }
h4 { font-size: 1.3rem; margin-top: 1.3em; color: var(--brand-dark); }
p { margin: 0 0 1.1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  background: var(--brand); color: #fff; padding: 14px 30px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase; font-size: .82rem;
  transition: .2s; border: 0; cursor: pointer;
}
.btn:hover { background: var(--brand-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border: 1.5px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--brand-dark); }
.btn-brand { background: var(--accent); color: var(--brand-darker); }
.btn-brand:hover { background: var(--accent-dark); color: #fff; }

/* ---------- Header ---------- */
.topbar { background: var(--brand-darker); color: #d7e6f1; font-size: .82rem; letter-spacing: .02em; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 22px; flex-wrap: wrap; }
.topbar a { color: #fff; }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 22px; }
.brand { flex: 0 0 auto; }
.brand img { height: 56px; width: auto; max-width: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; align-items: center; }
.nav > ul > li { position: relative; }
.nav > ul > li > a {
  display: block; padding: 12px 14px; font-family: var(--font-body); font-weight: 500;
  color: var(--ink); border-radius: 8px; font-size: .92rem; letter-spacing: .03em;
}
.nav > ul > li > a:hover { background: var(--brand-light); text-decoration: none; color: var(--brand-dark); }
.nav .has-sub > a::after { content: "▾"; font-size: .7em; margin-left: 5px; color: var(--muted); }
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff;
  box-shadow: var(--shadow); border-radius: 12px; padding: 8px; list-style: none; margin: 6px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s; max-height: 74vh; overflow: auto;
  border-top: 3px solid var(--accent);
}
.nav li:hover > .submenu, .nav li:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 9px 14px; color: var(--body); border-radius: 8px; font-size: .9rem; letter-spacing: .02em; }
.submenu li a:hover { background: var(--bg-alt); color: var(--brand-dark); text-decoration: none; }
.nav .header-cta { margin-left: 8px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.7rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker)); color: #fff; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 440px; height: 440px; background: radial-gradient(circle, rgba(194,163,107,.28), transparent 70%); }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 72px 22px; position: relative; z-index: 1; }
.hero.no-image .container { grid-template-columns: 1fr; max-width: 880px; text-align: center; }
.hero .eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; color: var(--accent); font-weight: 600; }
.hero h1 { color: #fff; margin: 14px 0 20px; }
.hero p { color: #dceaf4; font-size: 1.12rem; max-width: 56ch; font-weight: 300; }
.hero.no-image p { margin-left: auto; margin-right: auto; }
.hero-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero.no-image .hero-actions { justify-content: center; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .82rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 11px 22px; max-width: var(--maxw); margin: 0 auto; color: var(--muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--accent); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Content ---------- */
.content { padding: 60px 0; }
.content .container { max-width: 820px; }
.content.has-aside .container { max-width: var(--maxw); display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.prose h2 { color: var(--brand-dark); }
.prose ul { padding-left: 1.2em; }
.prose li { margin: .4em 0; }
.prose figure { margin: 30px 0; }
.prose figure img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }
.prose .inline-cta {
  background: var(--brand-light); border-left: 4px solid var(--accent); border-radius: 12px;
  padding: 24px 28px; margin: 34px 0;
}
.prose .inline-cta p { margin: 0 0 14px; font-weight: 500; color: var(--brand-darker); font-family: var(--font-head); font-size: 1.4rem; }
.prose p a, .prose li a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; text-decoration-color: var(--accent); }
.prose p a:hover, .prose li a:hover { color: var(--brand); }
.prose ul ul { margin: .3em 0; padding-left: 1.1em; list-style: circle; }
.prose ul ul li { margin: .25em 0; }

/* Related services */
.related { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 52px 0; }
.related-posts { background: #fff; }
.related h2 { margin-top: 0; color: var(--brand-dark); }
.related-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related-grid li a { display: block; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 15px 18px; font-weight: 500; color: var(--brand-dark); transition: .15s; letter-spacing: .02em; }
.related-grid li a:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); text-decoration: none; }

/* Site directory */
.dir-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px 28px; }
.dir-col-wide { grid-column: 1 / -1; }
.dir-col h2 { font-size: 1.4rem; margin: 0 0 12px; color: var(--brand-dark); padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.dir-col ul { list-style: none; padding: 0; margin: 0; }
.dir-col-wide ul { columns: 3; column-gap: 28px; }
.dir-col li { margin: 0 0 8px; break-inside: avoid; }
.dir-col li a { color: var(--body); }
.dir-col li a:hover { color: var(--brand); }
@media (max-width: 640px) { .dir-col-wide ul { columns: 1; } }

/* Contact page + lead form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info h2, .contact-form-wrap h2 { font-size: 1.6rem; margin: 0 0 18px; color: var(--brand-dark); }
.contact-line { margin: 0 0 18px; line-height: 1.5; }
.contact-line strong { color: var(--brand-darker); }
.form-lead { margin: 0 0 22px; color: var(--body); }
.lead-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lead-form .field { margin: 0 0 18px; }
.lead-form label { display: block; font-weight: 500; margin: 0 0 6px; color: var(--brand-darker); font-size: .95rem; }
.lead-form label span[aria-hidden] { color: var(--accent-dark); margin-left: 2px; }
.lead-form label .optional { font-weight: 400; color: var(--muted, #8a96a0); }
.lead-form input, .lead-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #d4dee6; border-radius: 10px; font: inherit; color: var(--body); background: #fff; box-sizing: border-box; transition: border-color .15s, box-shadow .15s; }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.lead-form textarea { resize: vertical; }
.lead-form .btn { border: none; cursor: pointer; margin-top: 4px; }
.lead-form .btn:disabled { opacity: .65; cursor: default; transform: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 14px 0 0; font-size: .95rem; min-height: 1em; }
.form-status-error { color: #b3261e; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .lead-form .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* Blog index */
.post-grid { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .15s; }
.post-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.post-card h3 { margin: 0 0 10px; font-size: 1.4rem; line-height: 1.2; }
.post-card h3 a { color: var(--brand-dark); }
.post-card p { color: var(--body); font-size: .95rem; margin: 0 0 14px; }
.post-card .post-more { font-weight: 600; color: var(--brand); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 12px; margin: 10px 0; padding: 4px 20px; background: #fff; }
.faq summary { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--ink); cursor: pointer; padding: 14px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent-dark); font-size: 1.4em; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] { box-shadow: var(--shadow-sm); }

/* aside */
.aside-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 90px; }
.aside-card h3 { margin-top: 0; }
.aside-card .btn { width: 100%; text-align: center; margin-top: 8px; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card ul li a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--body); font-size: .92rem; }
.aside-card ul li a:hover { color: var(--brand); }

/* CTA band */
.cta-band { background: var(--bg-deep); color: #fff; text-align: center; padding: 64px 22px; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; left: -100px; bottom: -120px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(194,163,107,.22), transparent 70%); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: #dceaf4; max-width: 60ch; margin: 0 auto 26px; font-weight: 300; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-darker); color: #cdbcc3; font-size: .9rem; }
.site-footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 60px 22px 32px; }
.site-footer h4 { color: #fff; font-size: 1.25rem; margin: 0 0 16px; }
.site-footer a { color: #d7e3ec; }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: 8px 0; }
.site-footer .brandmark { height: 56px; margin-bottom: 14px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 20px; font-size: .82rem; color: #a392a0; }
.footer-contact p { margin: 4px 0; }

/* ---------- Home page sections ---------- */
.section-head { max-width: 64ch; margin: 0 auto 40px; text-align: center; }
.section-head .eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; color: var(--accent-dark); font-weight: 600; }
.section-head h2 { margin: 10px 0 0; color: var(--brand-dark); }
.section-head .lead { margin: 18px auto 0; color: var(--body); font-size: 1.12rem; font-weight: 300; }

.home-services { padding: 72px 0; }
.svc-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: .18s; }
.svc-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-card h3 { margin: 0 0 10px; font-size: 1.5rem; }
.svc-card h3 a { color: var(--brand-dark); }
.svc-card p { color: var(--body); font-size: .96rem; margin: 0 0 14px; }
.svc-card .svc-more { font-weight: 600; color: var(--brand); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }

.home-steps { padding: 72px 0; background: var(--brand-light); }
.step-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.step-card h3 { margin: 0 0 10px; color: var(--brand-dark); font-size: 1.5rem; }
.step-card h3 a { color: var(--brand-dark); }
.step-card p { color: var(--body); font-size: .96rem; margin: 0; }

.home-why { padding: 72px 0; }
.why-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.why-grid li { padding: 24px; border-top: 3px solid var(--accent); background: var(--bg-alt); border-radius: 0 0 var(--radius) var(--radius); }
.why-grid h3 { margin: 0 0 8px; color: var(--brand-dark); font-size: 1.3rem; }
.why-grid p { margin: 0; color: var(--body); font-size: .94rem; }

.home-popular { padding: 0 0 72px; }
.home-popular h2 { color: var(--brand-dark); text-align: center; }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; justify-content: center; }
.chip-row a { display: inline-block; padding: 11px 20px; border-radius: 999px; background: var(--brand-light); color: var(--brand-dark); font-weight: 500; font-size: .9rem; transition: .15s; letter-spacing: .02em; }
.chip-row a:hover { background: var(--brand); color: #fff; text-decoration: none; }

.home-blog { padding: 72px 0; background: var(--bg-alt); border-top: 1px solid var(--line); }
.home-blog .blog-all { margin: 30px 0 0; text-align: center; }
.home-blog .btn-outline, .home-location .btn-outline { border-color: var(--brand); color: var(--brand-dark); }
.home-blog .btn-outline:hover, .home-location .btn-outline:hover { background: var(--brand); color: #fff; }

.home-location { padding: 72px 0; }
.home-location .loc-info { text-align: center; max-width: 640px; margin: 0 auto; }
.home-location .eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; color: var(--accent-dark); font-weight: 600; }
.loc-info h2 { margin: 10px 0 18px; color: var(--brand-dark); }
.loc-addr { font-size: 1.08rem; color: var(--ink); }
.loc-hours { color: var(--muted); }
.home-location .hero-actions { justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; gap: 28px; padding: 52px 22px; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16/10; max-height: 360px; }
  .content { padding: 46px 0; }
  .content.has-aside .container { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .cta-band { padding: 48px 22px; }
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 28px; padding: 46px 22px 26px; }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; z-index: 60; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,58,90,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 55; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: #fff; flex-direction: column;
    padding: 80px 18px 24px; transform: translateX(100%); transition: .25s; box-shadow: var(--shadow); overflow-y: auto;
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch; align-items: stretch; z-index: 58; }
  .nav.open { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav > ul > li > a { padding: 14px 10px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; max-height: none;
    padding: 0 0 8px 12px; margin: 0; display: none; border-top: 0; }
  .nav li.open > .submenu { display: block; }
  .nav .has-sub > a::after { float: right; }
  .header-cta { margin: 12px 0 0; }
  .header-cta .btn { display: block; text-align: center; }
}
@media (max-width: 640px) {
  body { font-size: 16px; line-height: 1.7; }
  .topbar { font-size: .8rem; }
  .topbar .container { justify-content: center; gap: 14px; padding: 8px 16px; }
  .topbar > .container > span:first-child { display: none; }
  .topbar .tb-right { gap: 16px; }
  .site-header .container { padding: 10px 16px; }
  .brand img { height: 46px; }
  .hero .container { padding: 36px 18px; }
  .hero h1 { line-height: 1.08; }
  .hero p { font-size: 1.02rem; }
  .hero .eyebrow, .section-head .eyebrow, .home-location .eyebrow { letter-spacing: .14em; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }
  .hero-media img { aspect-ratio: 16/11; max-height: 280px; }
  .breadcrumb ol { padding: 9px 16px; }
  .content { padding: 34px 0; }
  .container { padding: 0 16px; }
  h2 { margin-top: 1.3em; }
  h3 { margin-top: 1.2em; }
  .prose figure { margin: 24px -16px; }
  .prose figure img { border-radius: 0; }
  .prose .inline-cta { margin: 28px 0; padding: 20px 22px; }
  .cta-band { padding: 44px 18px; }
  .home-services, .home-steps, .home-why, .home-blog, .home-location { padding: 46px 0; }
  .home-popular { padding: 0 0 46px; }
  .section-head { margin-bottom: 28px; }
  /* tighten card padding so content isn't cramped on small screens */
  .svc-card, .step-card { padding: 24px 22px; }
  .why-grid li { padding: 22px 20px; }
  .svc-grid, .step-grid, .why-grid { gap: 16px; }
  .chip-row { gap: 9px; }
  .chip-row a { padding: 10px 16px; font-size: .86rem; }
}
@media (max-width: 480px) {
  /* single-column grids: drop the 300px floor that can force overflow on narrow phones */
  .svc-grid { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
  .footer-contact { text-align: center; }
  .footer-contact .brandmark { margin-left: auto; margin-right: auto; }
  .hero-actions .btn, .home-location .hero-actions .btn { font-size: .78rem; padding: 13px 22px; }
}
