/* =============================================
   KAYA MASSAGE THERAPY — PIXEL-FAITHFUL CSS
   Colors extracted directly from screenshot:
   - Global bg:    #e0e0db (warm gray-beige)
   - Button navy:  #0e2a46
   - Dark text:    #2a2829
   - Body text:    #3d3d3c
   - Font:         Playfair Display (headings) + system sans (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --bg:           #e0e0db;
  --bg-hover:     #d8d8d3;
  --white:        #ffffff;
  --navy:         #0e2a46;
  --navy-hover:   #1a3a5c;
  --text-dark:    #2a2829;
  --text-body:    #3d3d3c;
  --text-muted:   #666663;
  --link-color:   #2a2829;
  --border:       rgba(42,40,41,0.15);

  /* PT Serif = base body; Marcellus = logo, hero heading, all section headings */
  --font-body:    'PT Serif', Georgia, serif;
  --font-heading: 'Marcellus', Georgia, serif;

  --nav-h:        68px;
  --content-w:    1280px;
  --page-pad:     40px;
  --ease:         0.2s ease;
}

/* ===========================
   RESET
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   LAYOUT
   =========================== */
.wrap {
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ===========================
   BUTTONS — dark navy pill
   =========================== */
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: background var(--ease);
}
.btn:hover { background: var(--navy-hover); color: var(--white); }

/* Outline variant (on beige bg) */
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
  border-radius: 50px;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* Tiny Book button on service items */
.btn-sm {
  font-size: 12px;
  padding: 9px 20px;
}

/* ===========================
   LINKS — with underline decoration
   =========================== */
a.linked {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: opacity var(--ease);
}
a.linked:hover { opacity: 0.65; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav__wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  gap: 0;
}
/* Logo — Marcellus, left */
.nav__logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  margin-right: auto;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--text-dark); }

/* Center links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 32px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  transition: opacity var(--ease);
}
.nav__links a:hover { opacity: 0.6; }
.nav__links a.active { font-weight: 700; }

/* Phone */
.nav__phone {
  font-size: 16px;
  color: var(--text-dark);
  margin-right: 20px;
  white-space: nowrap;
  font-weight: 700;
}
.nav__phone:hover { opacity: 0.65; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform var(--ease), opacity var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  padding: 24px var(--page-pad) 32px;
  z-index: 99;
  border-top: 1px solid var(--border);
}
.nav__drawer.open { display: block; }
.nav__drawer ul { display: flex; flex-direction: column; gap: 16px; }
.nav__drawer a:not(.btn) { font-size: 16px; color: var(--text-dark); }
.nav__drawer .nav__drawer-phone { color: var(--text-muted); font-size: 14px; }
.nav__drawer hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* ===========================
   HERO — inset, not full-bleed
   Shows as a contained image block
   =========================== */
.hero {
  padding: 0 var(--page-pad);
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  /* Matches screenshot ratio: approx 960x680 */
  aspect-ratio: 960 / 680;
  overflow: hidden;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 28, 26, 0.32);
}
.hero__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hero__text h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* ===========================
   THERAPIES — 3-column card grid
   =========================== */
.therapies {
  padding: 72px var(--page-pad) 0;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.therapies__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 36px;
}
.therapies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.therapy-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-hover);
}
.therapy-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.therapy-card:hover .therapy-card__img img { transform: scale(1.04); }
.therapy-card__body { padding: 16px 0 32px; }
.therapy-card__body h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.therapy-card__body h4 a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.therapy-card__body h4 a:hover { opacity: 0.65; }
.therapy-card__body p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

/* ===========================
   SCHEDULE SECTION
   2-col: left text / right booking widget
   =========================== */
.schedule {
  padding: 72px var(--page-pad);
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.schedule__left {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.schedule__left h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.schedule__left p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* Acuity-style booking widget mockup */
.booking-widget {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.booking-widget__bar {
  background: #f8f8f6;
  border-bottom: 1px solid #e2e2e0;
  padding: 10px 16px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.booking-widget__bar a {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.booking-widget__bar a:hover { color: var(--text-dark); }
.booking-widget__list { padding: 0; }
.booking-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #ebebea;
}
.booking-item:last-child { border-bottom: none; }
.booking-item__info h5 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  line-height: 1.3;
}
.booking-item__info p {
  font-size: 14px;
  color: var(--text-muted);
}
.booking-item__info .show-all {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 8px;
}
.booking-item__desc {
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.6;
  margin-top: 6px;
  max-width: 340px;
}
.booking-item--expanded .booking-item__info { flex: 1; }
.booking-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--ease);
}
.booking-btn:hover { background: var(--navy-hover); color: var(--white); }
.booking-widget__footer {
  background: #f8f8f6;
  border-top: 1px solid #e2e2e0;
  padding: 10px 20px;
  text-align: center;
}
.booking-widget__footer p {
  font-size: 11px;
  color: var(--text-muted);
}
.booking-widget__footer span {
  font-weight: 600;
  font-size: 12px;
  color: #555;
}

/* ===========================
   PHILOSOPHY SECTION
   Left photo / right text
   =========================== */
.philosophy {
  padding: 0 var(--page-pad) 72px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.philosophy__photo img {
  width: 100%;
  display: block;
}
.philosophy__text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}
.philosophy__text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.philosophy__quote {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  margin: 24px 0 8px;
}
.philosophy__cite {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 28px;
  display: block;
}
/* ===========================
   SOCIAL SECTION
   Centered heading, 2 side-by-side
   photos + Follow button in middle
   =========================== */
.social {
  padding: 56px var(--page-pad) 72px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.social__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}
.social__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.social__photo {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.social__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.social__photo:hover img { transform: scale(1.04); }
.social__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ===========================
   CONTACT SECTION
   Left intro text / right form
   =========================== */
.contact {
  padding: 56px var(--page-pad) 0;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__left h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact__left p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Contact form */
.contact__form { display: flex; flex-direction: column; gap: 0; }
.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
  margin-top: 16px;
}
.form-label:first-child { margin-top: 0; }
.form-label span { font-size: 13px; font-weight: 400; color: var(--text-muted); margin-left: 4px; }
.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--text-dark);
  padding: 8px 0;
  outline: none;
  width: 100%;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-textarea:focus { border-color: var(--navy); }
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.form-submit { margin-top: 24px; }
.form-success {
  display: none;
  margin-top: 16px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

/* ===========================
   FOOTER BLOCK
   3-col: Contact | Logo | Location
   + BOOK NOW button
   =========================== */
.footer {
  padding: 56px var(--page-pad) 100px; /* bottom padding clears fixed button */
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}
.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.footer__col p,
.footer__col a {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
}
.footer__col a { color: var(--link-color); }
.footer__col a:hover { text-decoration: underline; }
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.footer__logo img {
  width: 273px;
  height: auto;
}
/* Fixed BOOK NOW button — always centered at bottom of viewport */
.footer__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 16px 0 20px;
  /* Subtle fade so it doesn't feel harsh on the content */
  background: linear-gradient(to top, var(--bg) 60%, transparent);
  pointer-events: none; /* let clicks pass through the gradient area */
}
.footer__bottom .btn {
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(14, 42, 70, 0.25);
}

/* ===========================
   INNER PAGE — page hero
   =========================== */
.page-hero {
  padding: 56px var(--page-pad) 48px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
}
.page-hero .sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Divider line between page hero and content */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 var(--page-pad);
  max-width: var(--content-w);
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   SERVICES PAGE
   =========================== */
.services-page {
  padding: 48px var(--page-pad) 72px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:first-child { padding-top: 0; }
.service-block h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-block p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
  max-width: 680px;
}
.service-block p:last-child { margin-bottom: 0; }
.service-block__cta { text-align: right; padding-top: 4px; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-page {
  padding: 48px var(--page-pad) 72px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-lead {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 24px;
}
.about-body p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 28px 0 14px;
}
.about-body ul { display: flex; flex-direction: column; gap: 8px; }
.about-body li {
  font-size: 16px;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}
.about-body li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--text-muted);
}
.about-img {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.about-img img { width: 100%; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page {
  padding: 48px var(--page-pad) 72px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-page__info p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 28px;
}
.contact-detail { margin-bottom: 20px; }
.contact-detail h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}
.contact-detail a { color: var(--link-color); text-decoration: underline; }
.contact-page__photo { margin-top: 32px; overflow: hidden; }
.contact-page__photo img { width: 100%; }
.contact-page__form h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}

/* ===========================
   BLOG PAGE
   =========================== */
.blog-page {
  padding: 48px var(--page-pad) 72px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 16px 0; }
.blog-card__date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-card__body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 8px 0 10px;
  line-height: 1.3;
}
.blog-card__body p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
}
.blog-card__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: underline;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  :root { --page-pad: 28px; }
  .therapies__grid { grid-template-columns: repeat(2, 1fr); }
  .schedule__grid { grid-template-columns: 1fr; gap: 36px; }
  .schedule__left { position: static; }
  .philosophy__grid { grid-template-columns: 1fr; gap: 32px; }
  .social__row { grid-template-columns: 1fr 1fr; }
  .social__cta { grid-column: 1 / -1; align-items: center; margin-top: 16px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr auto 1fr; }
  .footer__logo img { width: 200px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { position: static; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  :root { --page-pad: 20px; --nav-h: 60px; }
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .btn-nav-desktop { display: none; }
  .therapies__grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block__cta { text-align: left; }
  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__logo { grid-column: 1; order: -1; }
  .footer__logo img { width: 180px; }
  .blog-grid { grid-template-columns: 1fr; }
  .social__row { grid-template-columns: 1fr; }
  .social__cta { grid-column: 1; }
  .hero__text h1 { font-size: 26px; }
  .form-name-row { grid-template-columns: 1fr; }
}

/* ===========================
   SINGLE POST
   =========================== */
.single-post { padding: 48px var(--page-pad) 120px; }
.single-post__grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.single-post__hero-img {
  margin-bottom: 36px;
  overflow: hidden;
}
.single-post__hero-img img { width: 100%; }
.single-post__content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
}
.single-post__content h2,
.single-post__content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-dark);
  margin: 32px 0 14px;
  line-height: 1.2;
}
.single-post__content h2 { font-size: 28px; }
.single-post__content h3 { font-size: 22px; }
.single-post__content p  { margin-bottom: 20px; }
.single-post__content ul,
.single-post__content ol { padding-left: 20px; margin-bottom: 20px; }
.single-post__content li { margin-bottom: 6px; }
.single-post__content img { max-width: 100%; margin: 24px 0; }
.single-post__back { margin-top: 40px; }

/* Sidebar */
.single-post__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.single-post__sidebar-block {
  background: var(--bg-hover);
  padding: 28px 24px;
}
.single-post__sidebar-block h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.single-post__sidebar-block p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.single-post__recent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.single-post__recent li { list-style: none; }
.single-post__recent a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single-post__recent a:hover { opacity: 0.65; }
.single-post__recent span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Appointments page — inline styles moved to class */
.appt__packages-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}
.appt__packages {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.pkg-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-body);
}
.pkg-row__name    { flex: 1; }
.pkg-row__discount { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.pkg-row__price   {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-dark);
  white-space: nowrap;
}
.appt__tagline {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 32px;
}
.appt__contact { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.appt__contact-item h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.appt__contact-item p,
.appt__contact-item a {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}
.appt__contact-item a { color: var(--link-color); text-decoration: underline; }
.appt__logo { margin-bottom: 32px; }
.appt__logo img { width: 200px; height: auto; }
.appt__photo { overflow: hidden; margin-bottom: 36px; }
.appt__photo img { width: 100%; display: block; }
.appt {
  padding: 72px var(--page-pad) 120px;
  max-width: calc(var(--content-w) + var(--page-pad) * 2);
  margin: 0 auto;
}
.appt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.appt__left {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.appt__left h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 32px;
}

/* ===========================
   RESPONSIVE ADDITIONS
   =========================== */
@media (max-width: 1024px) {
  .single-post__grid { grid-template-columns: 1fr; }
  .single-post__sidebar { position: static; }
  .appt__grid { grid-template-columns: 1fr; }
  .appt__left { position: static; }
}
@media (max-width: 640px) {
	.hero__img-wrap {
		aspect-ratio: auto;
	}
	
}
