/* ==========================================================================
   Vital Kneads — shared styles
   Rebuilt from the original Squarespace site. Brand color #38abbc (teal).
   Type: Source Sans 3 (self-hosted) — Adobe humanist sans, same lineage as the
   original Adobe hypatia-sans-pro. Body set light (300) with 0.14em tracking and
   loose leading to match the original's airy typesetting.
   ========================================================================== */

/* --- Fonts ------------------------------------------------------------- */
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/sourcesans3-300.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/sourcesans3-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/sourcesans3-600.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/sourcesans3-700.woff2") format("woff2");
}
/* Whimsical display face (nav + buttons) — free stand-in for the original
   licensed "silverstein" / "adorn-smooth-slab-serif". */
@font-face {
  font-family: "Neucha";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/neucha-400.woff2") format("woff2");
}

/* --- Design tokens ----------------------------------------------------- */
:root {
  --teal: #38abbc;
  --teal-dark: #2c8b99;
  --teal-text: #318996;
  --nav-active: #00eaff;
  --ink: #0f1010;
  --muted: #6a6f71;
  --hairline: #e6e6e6;
  --bg: #ffffff;
  --header-bg: #fafafa;
  --footer-teal: #1d7f95;
  --font: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --display: "Neucha", "Source Sans 3", cursive, sans-serif;
  --maxw: 780px;
}

/* --- Reset-ish --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }

/* --- Skip link (accessibility) ---------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--teal); color: #000; padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --- Header / logo ----------------------------------------------------- */
.site-header {
  background: var(--header-bg);
  text-align: center;
  padding: 18px 20px 0;
}
.site-header .logo {
  display: inline-block;
  width: 250px;
  max-width: 58%;
  margin: 0 auto 28px;
}
.site-header .logo img { width: 100%; }

/* --- Navigation (geometric band, white links) ------------------------- */
.site-nav {
  background:
    linear-gradient(rgba(18,20,60,0.28), rgba(18,20,60,0.28)),
    #2f2f8a url("../img/geo-band.webp") center / cover no-repeat;
}
.site-nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 22px 16px;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 34px;
}
.site-nav a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.5px;
  padding: 4px 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: color 0.15s ease;
}
.site-nav a:hover,
.site-nav a:focus { color: var(--nav-active); }
.site-nav a[aria-current="page"] { color: var(--nav-active); }

/* --- Main / layout ----------------------------------------------------- */
main { min-height: 40vh; }
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 22px;
  text-align: center;
}
.section.wide { max-width: 980px; }

.tagline {
  color: var(--teal-text);
  font-weight: 300;
  font-size: 29px;
  line-height: 1.4;
  letter-spacing: normal;
  margin: 0 0 26px;
}
.subhead {
  font-weight: 300;
  font-size: 19px;
  letter-spacing: 0.14em;
  line-height: 2.6;
  margin: 0 0 26px;
}
.page-title {
  color: var(--teal-text);
  font-weight: 300;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 34px;
}
.rule {
  border: 0;
  border-top: 1px solid var(--hairline);
  max-width: 540px;
  margin: 34px auto;
}
p { margin: 0 0 24px; }
.prose { color: var(--ink); }
.prose p {
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 2.6;
}

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-block;
  background: var(--teal);
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1.5px;
  padding: 18px 34px;
  border-radius: 3px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover,
.btn:focus { background: var(--teal-dark); color: #000; }
.btn-wrap { margin: 30px 0; }

/* --- Images in content ------------------------------------------------- */
.content-img {
  margin: 30px auto;
  border-radius: 2px;
}
.content-img.framed { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.portraits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 30px auto;
}
.portraits img {
  width: 320px;
  max-width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* --- Testimonials ------------------------------------------------------ */
.testimonial {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.testimonial blockquote {
  margin: 0 0 10px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  font-size: 15px;
  text-transform: uppercase;
}

/* --- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--footer-teal);
  text-align: center;
  padding: 30px 22px 56px;
  color: #ffffff;
}
.site-footer .foot-contact {
  color: #ffffff;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.12em;
  margin: 0 auto 8px;
  max-width: 900px;
}
.site-footer .foot-contact strong { font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.site-footer .foot-logo {
  width: 190px;
  height: auto;
  margin: 22px auto 26px;
}
.site-footer .foot-tag {
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}
.site-footer .foot-tag strong { font-weight: 600; color: #ffffff; }
.site-footer a { color: #ffffff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* --- MassageBook booking widget (Services page) ------------------------ */
.mb-widget {
  max-width: 900px;
  margin: 10px auto 20px;
}
.mb-widget iframe {
  width: 100%;
  height: 1000px;
  border: 0;
  display: block;
}

/* --- Bottom geometric banner (full-bleed decorative strip) ------------- */
.geo-strip {
  width: 100%;
  aspect-ratio: 1600 / 388;
  max-height: 300px;
  background: #2f2f8a url("../img/geo-band.webp") center / cover no-repeat;
}

/* --- Visually-hidden (SEO / screen-reader text for image-only pages) --- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 640px) {
  body { font-size: 18px; }
  .site-nav ul { gap: 4px 18px; padding: 14px 12px; }
  .site-nav a { font-size: 12px; letter-spacing: 1.8px; }
  .tagline { font-size: 24px; }
  .page-title { font-size: 25px; letter-spacing: 3px; }
  .section { padding: 44px 20px; }
}
