/* =========================================================================
   Lynda Kees Massage Therapy — shared stylesheet
   Fonts: Paprika (decorative headings) + Caudex (body). Self-hosted.
   ========================================================================= */

/* ---- Fonts ------------------------------------------------------------- */
@font-face {
  font-family: "Paprika";
  src: url("fonts/paprika-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Caudex";
  src: url("fonts/caudex-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Caudex";
  src: url("fonts/caudex-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Caudex";
  src: url("fonts/caudex-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "Caudex";
  src: url("fonts/caudex-700-italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: block;
}

/* ---- Design tokens ----------------------------------------------------- */
:root {
  --purple:        #5834a1; /* title, headings, primary accent */
  --purple-bright: #8739e1; /* decorative quotes */
  --blue:          #332cca; /* body copy */
  --ink:           #191919; /* current nav item */
  --band:          #a2a3e9; /* header + nav panels */
  --page:          #c0cbed; /* outer page background */
  --white:         #ffffff;

  --site-width: 1000px;
  --radius: 30px;

  --serif: "Caudex", Georgia, "Times New Roman", serif;
  --display: "Paprika", "Caudex", Georgia, serif;
}

/* ---- Base -------------------------------------------------------------- */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--page);
  color: var(--blue);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--purple); }

/* ---- Page shell -------------------------------------------------------- */
.site {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0;
}

/* ---- Masthead ---------------------------------------------------------- */
.masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 34px 40px;
  background: var(--band);
  border-radius: 0 0 var(--radius) 0;
  margin-bottom: 15px;
}

.masthead .logo {
  width: 84px;
  flex: 0 0 auto;
}

.masthead .brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.12;
  color: var(--purple);
  letter-spacing: 0.01em;
}

/* ---- Layout: sidebar nav + content ------------------------------------ */
.layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--white);
}

.sidebar {
  flex: 0 0 232px;
  background: var(--band);
  border-radius: 0 0 var(--radius) 0;
  padding: 22px 24px;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li { margin: 0 0 14px; }
.sidebar li:last-child { margin-bottom: 0; }

.sidebar a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.sidebar a:hover { text-decoration: underline; }

.sidebar a[aria-current="page"] {
  color: var(--ink);
}

.content {
  flex: 1 1 auto;
  min-width: 0;
  background: var(--white);
  padding: 40px 52px 64px;
}

/* ---- Typography -------------------------------------------------------- */
.page-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--purple);
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--purple);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.content p { margin: 0 0 20px; }

/* Decorative quotes */
.quote {
  color: var(--purple-bright);
  text-align: center;
  margin: 0 0 28px;
}
.quote--display { font-family: var(--display); }
.quote--italic { font-style: italic; }

.emphasis {
  color: var(--purple);
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  text-align: center;
  margin: 28px 0;
}

.centered { text-align: center; }
.muted-note { font-style: italic; }

/* ---- Two independent columns of modalities (Massage page) -------------- */
.modalities {
  display: flex;
  gap: 48px;
  margin-top: 12px;
}
.modalities__col { flex: 1 1 0; min-width: 0; }
.modalities .modality p { font-size: 15px; margin-bottom: 22px; }
.modalities .section-title { margin-top: 6px; }

/* ---- Fees & hours ------------------------------------------------------ */
.fees,
.hours {
  margin: 0 0 8px;
  max-width: 420px;
}
.fees__row,
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.fees__row {
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
}
.fees dt,
.hours dt,
.fees dd,
.hours dd { margin: 0; }

.fees__note { margin: 6px 0 0; }
.stars {
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  margin: 4px 0 34px;
}

.hours {
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 22px;
}
.hours dt { font-weight: 700; }

.page-title__sub {
  font-size: 15px;
  font-style: italic;
}

.fine-print { font-size: 16px; }

/* ---- Contact page ------------------------------------------------------ */
.contact-detail {
  font-size: 20px;
  margin: 0 0 6px;
}
.contact-detail .label {
  font-family: var(--display);
  font-weight: 700;
  color: var(--purple);
  margin-right: 10px;
}
.contact-detail .value { font-weight: 700; }

.contact-detail .value a {
  color: var(--blue);
  text-decoration: none;
}
.contact-detail .value a:hover { text-decoration: underline; }

.address { font-weight: 700; line-height: 1.5; margin: 18px 0; }

.directions {
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
}
.form-intro {
  font-weight: 700;
  font-size: 16px;
}

/* ---- Contact form ------------------------------------------------------ */
.contact-form {
  margin-top: 24px;
  max-width: 520px;
}
.contact-form label {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  color: #000;
  margin: 16px 0 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  padding: 9px 11px;
  border: 1px solid #b8b8d8;
  border-radius: 4px;
  background: #fff;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  margin-top: 20px;
  font-family: var(--display);
  font-size: 16px;
  color: #fff;
  background: var(--purple);
  border: none;
  border-radius: 6px;
  padding: 10px 34px;
  cursor: pointer;
}
.contact-form button:hover { background: var(--purple-bright); }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 760px) {
  body { font-size: 17px; }

  .masthead {
    gap: 18px;
    padding: 22px 20px;
  }
  .masthead .logo { width: 60px; }
  .masthead .brand { font-size: 32px; }

  .layout { flex-direction: column; }

  .sidebar {
    flex-basis: auto;
    width: 100%;
    border-radius: 0;
    padding: 16px 20px;
  }
  .sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
  }
  .sidebar li { margin: 0; }

  .content { padding: 26px 22px 44px; }

  .modalities { flex-direction: column; gap: 0; }
}
