/*
 * Healing Touch, Kirkland.
 *
 * A freshen-up, not a redesign: the client likes the flow of the old site, so
 * the running order is unchanged — what it is, what you can book, what it
 * costs, where to find it. What changes is everything that made it feel dated:
 * a real type scale, room to breathe, photographs at a size worth looking at,
 * and a phone number that is never more than a thumb away.
 *
 * The palette is sampled from her own treatment rooms rather than invented —
 * sage #7A864C off the green room's walls, warm olive #8D7948 and cream from
 * the second room. A visitor who has been in will recognise the place, and a
 * visitor who has not gets the calm the photographs are already selling.
 *
 * No frameworks, no webfonts, no third-party anything. A massage studio's site
 * should open instantly on a phone held in one hand.
 */

:root {
  --sage:      #7A864C;
  --sage-deep: #5E6939;
  --sage-pale: #EDF0E4;
  --olive:     #8D7948;
  --sand:      #DDBF96;

  --cream:  #FBF9F4;   /* page */
  --shell:  #F3EFE6;   /* alternating bands */
  --line:   #E2DCCE;
  --ink:    #2A2721;   /* warm near-black, never pure */
  --body:   #4E4A41;
  --muted:  #7C766B;

  --wrap: min(1120px, 100% - 2.6rem);
  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --sans:  system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --r: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
body {
  background: var(--cream); color: var(--body);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
.wrap { width: var(--wrap); margin-inline: auto; }
h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
a { color: var(--sage-deep); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 6px; }

/* ── header ─────────────────────────────────────────────────────────────── */

.head { position: sticky; top: 0; z-index: 50; background: rgba(251,249,244,.93);
  backdrop-filter: saturate(150%) blur(10px); -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line); }
.head-in { display: flex; align-items: center; gap: 1.4rem; height: 72px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.05; }
.brand b { font-family: var(--serif); font-weight: 400; font-size: 1.42rem; color: var(--ink); letter-spacing: .01em; }
.brand span { font-size: .68rem; letter-spacing: .19em; text-transform: uppercase; color: var(--sage); margin-top: .22rem; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.5rem; }
.nav a { color: var(--body); text-decoration: none; font-size: .95rem; }
.nav a:hover { color: var(--sage-deep); }
.call-btn {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--sage); color: #fff;
  text-decoration: none; font-weight: 600; font-size: .97rem; padding: .6rem 1.15rem;
  border-radius: 100px; white-space: nowrap; transition: background .15s;
}
.call-btn:hover { background: var(--sage-deep); }
.call-btn svg { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 860px) { .nav a:not(.call-btn) { display: none; } }

/* ── hero ───────────────────────────────────────────────────────────────── */

.hero { position: relative; }
.hero-img { position: relative; height: clamp(340px, 56vh, 560px); overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
/* The scrim has to be darkest where the words are, not where the design
   sketch assumed. Measured: the headline occupies 19-46% of the hero, and the
   original gradient thinned to 10% opacity at exactly the 40% mark — white
   type over a sunlit massage table. It now stays heavy through the upper-middle
   and lifts only in the corner where nothing is written. */
.hero-img::after { content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,39,33,.50) 0%, rgba(42,39,33,.52) 48%,
                            rgba(42,39,33,.40) 66%, rgba(42,39,33,.72) 100%),
    linear-gradient(90deg, rgba(42,39,33,.42) 0%, rgba(42,39,33,.12) 62%, rgba(42,39,33,0) 100%); }
.hero-in { position: absolute; inset: auto 0 0 0; padding-bottom: clamp(1.6rem, 4vw, 3rem); }
.hero .eyebrow { color: #fff; opacity: .92; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .7rem; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.6vw, 3.5rem); max-width: 18ch; }
.hero p { color: #F2EEE4; font-size: clamp(1.02rem, 2.2vw, 1.18rem); max-width: 46ch; margin-top: .8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem; border: 0; cursor: pointer;
  text-decoration: none; font-family: inherit; font-size: 1.02rem; font-weight: 600;
  padding: .85rem 1.6rem; border-radius: 100px; transition: background .15s, border-color .15s, color .15s;
}
.btn-1 { background: var(--sage); color: #fff; }
.btn-1:hover { background: var(--sage-deep); }
.btn-2 { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.btn-2:hover { background: rgba(255,255,255,.24); }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

/* the open-now strip, straight under the hero */
.strip { background: var(--sage); color: #fff; }
.strip-in { display: flex; flex-wrap: wrap; gap: .5rem 2.2rem; justify-content: center;
  padding: .8rem 0; font-size: .95rem; text-align: center; }
.strip b { font-weight: 600; }
.strip .tbc { opacity: .85; font-style: italic; }

/* ── sections ───────────────────────────────────────────────────────────── */

.sec { padding: clamp(3rem, 7vw, 5rem) 0; }
.sec-alt { background: var(--shell); border-block: 1px solid var(--line); }
section[id] { scroll-margin-top: 86px; }
.h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.lede { color: var(--muted); max-width: 58ch; margin-top: .8rem; font-size: 1.06rem; }
.head-block { margin-bottom: 2.4rem; }

/* ── services ───────────────────────────────────────────────────────────── */

.svcs { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.svc { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; }
.sec-alt .svc { background: #fff; }
.svc img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; min-width: 0; min-height: 0; }
.svc-body { padding: 1.5rem 1.4rem 1.6rem; }
.svc h3 { font-size: 1.34rem; margin-bottom: .5rem; }
.svc p { font-size: .99rem; }
.svc .from { display: inline-block; margin-top: 1rem; font-size: .88rem; font-weight: 600;
  color: var(--sage-deep); background: var(--sage-pale); padding: .3rem .8rem; border-radius: 100px; }

/* ── insurance / PIP ────────────────────────────────────────────────────── */

.pip { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
@media (max-width: 880px) { .pip { grid-template-columns: 1fr; } }
.pip-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--olive);
  border-radius: var(--r); padding: 1.7rem 1.6rem; }
.pip-card p { font-size: 1.02rem; }
.pip-note { margin-top: 1.1rem; font-size: .93rem; color: var(--muted); }

/* ── pricing ────────────────────────────────────────────────────────────── */

.price-group { margin-bottom: 2.2rem; }
.price-group h3 { font-size: 1.2rem; margin-bottom: .7rem; padding-bottom: .5rem; border-bottom: 2px solid var(--sage-pale); }
.price-row { display: flex; align-items: baseline; gap: .9rem; padding: .62rem 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row .what { flex: 1 1 auto; }
.price-row .dots { flex: 1 1 auto; border-bottom: 1px dotted var(--line); min-width: 1.5rem; transform: translateY(-.25rem); }
.price-row .amt { font-family: var(--serif); font-size: 1.14rem; color: var(--ink); white-space: nowrap; }
.price-row .amt.tbc { font-family: var(--sans); font-size: .86rem; font-style: italic; color: var(--muted); }
.price-foot { margin-top: 1.2rem; font-size: .92rem; color: var(--muted); }

/* ── visit ──────────────────────────────────────────────────────────────── */

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: start; }
@media (max-width: 880px) { .visit { grid-template-columns: 1fr; } }
.nap { font-style: normal; font-size: 1.08rem; line-height: 1.85; }
.nap strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: .3rem; }
.nap a { font-weight: 600; text-decoration: none; }
.nap a:hover { text-decoration: underline; }
.confirm { display: inline-block; font-size: .78rem; font-style: italic; color: #9A6B2F;
  background: #FBF0DC; border: 1px solid #EBD9B8; border-radius: 4px; padding: .05rem .4rem; margin-left: .4rem; }
.hours-list { margin-top: 1.4rem; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.hours-list dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem 1.6rem; margin-top: .5rem; font-size: 1rem; }
.hours-list dt { color: var(--ink); font-weight: 600; }

/* ── footer ─────────────────────────────────────────────────────────────── */

.foot { background: var(--ink); color: #C6C0B4; padding: 3rem 0 1.6rem; font-size: .95rem; }
.foot-in { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 780px) { .foot-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-in { grid-template-columns: 1fr; } }
.foot h4 { font-family: var(--sans); color: #fff; font-size: .76rem; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: .9rem; font-weight: 600; }
.foot ul { list-style: none; display: grid; gap: .55rem; }
.foot a { color: #DAD5C9; text-decoration: none; }
.foot a:hover { color: #fff; }
.foot-brand { font-family: var(--serif); font-size: 1.5rem; color: #fff; }
.copy { width: var(--wrap); margin: 2.4rem auto 0; padding-top: 1.3rem; border-top: 1px solid #423D34;
  font-size: .84rem; color: #8D8779; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }

/* A phone is how this business is actually booked, so on a small screen the
   number is pinned where a thumb already rests. */
.sticky-call { display: none; }
@media (max-width: 620px) {
  .sticky-call {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    align-items: center; justify-content: center; gap: .55rem;
    background: var(--sage); color: #fff; text-decoration: none; font-weight: 600;
    padding: .9rem 1rem calc(.9rem + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(42,39,33,.16);
  }
  .sticky-call svg { width: 17px; height: 17px; fill: currentColor; }
  body { padding-bottom: 3.6rem; }
}

/* ── added 24 Aug 2026, after the client's reply ─────────────────────────── */

/* Hot stone is free, and that is a selling point rather than a footnote, so it
   is set in the accent green where every other row shows a dollar figure. */
.amt-free { font-family: var(--serif); font-size: 1.05rem; color: var(--sage-deep); white-space: nowrap; }

/* Her own qualifying sentences — cupping is by appointment, hot stone is
   included — sit under the rows they qualify rather than in a footnote nobody
   reads next to the price they affect. */
.price-note { margin-top: .7rem; font-size: .9rem; line-height: 1.6; color: var(--muted); }

/* "Inside Salon Republic" is the single most useful line in the address: the
   street number alone sends people to a building, not to her door. */
.nap-where { color: var(--muted); }

/* Square injects its own button/iframe here and we do not control its markup,
   so the box only provides room and a centre line — no styling that Square's
   own CSS could fight with. */
.book-box { margin-top: 1.6rem; min-height: 72px; text-align: center; }
.book-box noscript p { color: var(--muted); }

/* The booking box reserves the calendar's height so that nothing on the page
   jumps when it arrives — the widget renders at about 500px. */
.book-box { min-height: 500px; }
.book-wait { padding: 2.5rem 0; text-align: center; color: var(--muted); font-style: italic; }
