/* Dr. Glenn Morezewich — Unlimited Optimal Health Centre
   Modern redesign 2026 — palette drawn from the original site:
   khaki #CCCC99 → warm cream/sage, #990000 → deep cinnabar red, #330000 → warm ink */

:root {
  --paper: #FBF9F1;
  --paper-deep: #F1EEDD;
  --sage: #CCCC99;
  --sage-soft: #E7E5CC;
  --ink: #2B241C;
  --ink-soft: #5C5344;
  --red: #8E1B1B;
  --red-deep: #6E1414;
  --gold: #A89968;
  --max: 1080px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }
a { color: var(--red); }
a:hover { color: var(--red-deep); }
img { max-width: 100%; height: auto; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 249, 241, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sage-soft);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand .seal {
  width: 40px; height: 40px; flex: 0 0 40px;
  background: var(--red); color: #fff;
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 10px; line-height: 1;
  writing-mode: vertical-rl;
  font-family: "Kaiti SC", "STKaiti", "KaiTi", serif;
  letter-spacing: 0;
  box-shadow: 0 1px 3px rgba(43,36,28,.25);
}
.brand .name { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.brand .name small { display: block; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

nav.main-nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
nav.main-nav a {
  text-decoration: none; color: var(--ink-soft);
  font-size: .92rem; font-weight: 600;
  padding: 8px 13px; border-radius: 20px;
}
nav.main-nav a:hover { color: var(--red); background: var(--sage-soft); }
nav.main-nav a.active { color: #fff; background: var(--red); }
nav.main-nav a.cta { border: 1.5px solid var(--red); color: var(--red); margin-left: 6px; }
nav.main-nav a.cta:hover { background: var(--red); color: #fff; }
nav.main-nav a.active.cta { background: var(--red); color: #fff; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--paper-deep) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--sage-soft);
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero .kicker {
  font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.hero h1 { margin-bottom: .35em; }
.hero .creds { font-size: .95rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 1.2em; }
.hero .lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 34em; }
.hero .art { text-align: center; }
.hero .art img { max-width: 380px; width: 100%; opacity: .92; }
.hero .art .art-caption {
  margin-top: 14px; font-family: var(--serif); font-style: italic;
  color: var(--ink-soft); font-size: 1.02rem;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: .98rem;
  padding: 13px 26px; border-radius: 28px; transition: transform .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--red); color: #fff; }
.btn.primary:hover { background: var(--red-deep); color: #fff; }
.btn.ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn.ghost:hover { border-color: var(--red); color: var(--red); }

/* ---------- sections ---------- */
section.band { padding: clamp(48px, 7vw, 88px) 0; }
section.band.tint { background: var(--paper-deep); border-top: 1px solid var(--sage-soft); border-bottom: 1px solid var(--sage-soft); }
.section-head { max-width: 44em; margin-bottom: 40px; }
.section-head .kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* treatment cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--sage-soft); border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 1px 2px rgba(43,36,28,.05);
}
.card .glyph {
  font-family: "Kaiti SC", "STKaiti", "KaiTi", serif;
  font-size: 1.7rem; color: var(--red); line-height: 1; margin-bottom: 12px;
}
.card h3 { font-size: 1.18rem; margin-bottom: .35em; }
.card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* pull quote */
.pullquote {
  max-width: 44em; margin: 0 auto; text-align: center;
}
.pullquote blockquote {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem); font-style: italic;
  line-height: 1.45; color: var(--ink); margin: 0 0 .6em;
}
.pullquote cite { font-style: normal; font-size: .95rem; font-weight: 700; color: var(--red); letter-spacing: .06em; }

/* prose pages */
.prose { max-width: 46em; }
.prose h2 { margin-top: 1.8em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .35em; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* FAQ */
details.faq {
  border-bottom: 1px solid var(--sage-soft);
  padding: 6px 0;
}
details.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  padding: 14px 36px 14px 0; position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--red); font-size: 1.5rem; font-family: var(--sans); font-weight: 400;
  transition: transform .15s ease;
}
details.faq[open] summary::after { content: "–"; }
details.faq .answer { padding: 0 0 18px; color: var(--ink-soft); max-width: 44em; }
details.faq .answer p:last-child { margin-bottom: 0; }

/* testimonials */
.testimonial {
  background: #fff; border: 1px solid var(--sage-soft); border-radius: 14px;
  padding: 32px 34px; margin-bottom: 22px;
  box-shadow: 0 1px 2px rgba(43,36,28,.05);
}
.testimonial p { font-size: 1.02rem; color: var(--ink-soft); }
.testimonial p:first-of-type::before { content: "\201C"; font-family: var(--serif); font-size: 2.2rem; color: var(--red); line-height: 0; vertical-align: -0.35em; margin-right: 4px; }
.testimonial footer { font-weight: 700; color: var(--red); font-size: .95rem; letter-spacing: .04em; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff; border: 1px solid var(--sage-soft); border-radius: 14px;
  padding: 34px;
}
.contact-card dt { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 20px; }
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd { margin: 4px 0 0; font-size: 1.25rem; font-family: var(--serif); font-weight: 600; }
.contact-card dd a { text-decoration: none; }

/* notice strip */
.notice {
  background: var(--sage-soft); border-radius: 12px; padding: 18px 22px;
  font-size: .95rem; color: var(--ink-soft);
}

/* footer */
.site-footer {
  background: var(--ink); color: #CFC8B8;
  padding: 48px 0 36px; margin-top: 0;
  font-size: .92rem;
}
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-family: var(--serif); font-size: 1.15rem; margin: 0 0 10px; }
.site-footer a { color: #E4DCC8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer .fineprint {
  grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px; margin-top: 8px; font-size: .82rem; color: #9A927F;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .hero .art { order: -1; }
  .hero .art img { max-width: 270px; }
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr; gap: 24px; }
  .site-header .wrap { flex-direction: column; padding-top: 12px; padding-bottom: 12px; }
  nav.main-nav { justify-content: center; }
}
