:root {
  --bg: #eef3ee;
  --card: #e6ddd2;
  --text: #2f2a2a;
  --border: #c9b8a8;
  --shadow: rgba(0, 0, 0, 0.12);
  --accent: #5f7f6a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 25px;
}

.page {
  max-width: 80%;
  margin: 0 auto;
  padding: 28px 24px 70px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--accent);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.intake-link {
  margin-top: -8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(95, 127, 106, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.intake-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(95, 127, 106, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
}

.bio-card {
  background: #f7f6f1;
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: start;
}
.bio-profile-column {
  display: flex;
  justify-content: center;
}

.bio-content {
  text-align: center;
}


.bio-subtitle {
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2px;
}

.bio-question {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: #1f7f8c;
  background: #e8f4f5;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 127, 140, 0.35);
  display: inline-block;
}

.bio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 19px;
  line-height: 1.6;
  color: #5b5f66;
  font-family: "Trebuchet MS", "Gill Sans", Arial, sans-serif;
  font-weight: 600;
}

.bio-list-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0 auto 14px;
}

.bio-side-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid #e8d6d6;
}

.bio-highlight {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1f7f8c;
  letter-spacing: 0.3px;
  background: #e8f4f5;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 127, 140, 0.35);
  display: inline-block;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bio-profile {
  margin-top: 18px;
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: #dfc2c2;
  border: 4px solid #efe0e0;
  display: grid;
  place-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  box-shadow: 0 0 0 10px rgba(95, 127, 106, 0.25), 0 12px 24px rgba(0, 0, 0, 0.2);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  text-align: center;
}

.profile-bio {
  margin: 0;
  text-align: center;
}

.profile-bio summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(95, 127, 106, 0.35);
  background: rgba(95, 127, 106, 0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.profile-bio summary::-webkit-details-marker {
  display: none;
}

.profile-bio summary::after {
  content: "▾";
  font-size: 16px;
  color: var(--accent);
}

.profile-bio[open] summary::after {
  content: "▴";
}

.profile-bio summary:hover,
.profile-bio summary:focus-visible {
  background: rgba(95, 127, 106, 0.18);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  outline: none;
}

.profile-bio p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin: 22px 0 28px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 1fr));
  gap: 26px;
}

.service-card {
  background: #1f7f8c;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 28px 28px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #f7f6f2;
}

.service-card h3 {
  margin: 0;
  font-size: 22px;
  text-align: center;
  color: #1f7f8c;
  letter-spacing: 0.4px;
  background: #e8f4f5;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(31, 127, 140, 0.35);
}

.service-title-highlight {
  color: #4b6f89;
  letter-spacing: 0.4px;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 18px;
}

.service-description {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #f7f6f2;
  text-align: left;
}

.session-and-price {
  margin-top: 36px;
  padding: 28px 32px;
  background: #f1ece4;
  border: 2px solid rgba(95, 127, 106, 0.25);
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  color: #2f2a2a;
}

.session-and-price h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.4px;
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
}

.session-column {
  background: #fff9f2;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(95, 127, 106, 0.2);
}

.session-column h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #3f6f8f;
}

.session-column p {
  margin: 0 0 10px;
  font-weight: 600;
  color: #2f2a2a;
}

.session-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.session-column li {
  background: rgba(95, 127, 106, 0.12);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
}

.contact-box {
  margin: 28px auto 0;
  padding: 22px 26px;
  max-width: 560px;
  text-align: center;
  background: #1f7f8c;
  color: #f7f6f2;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.contact-box h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #e9f3f5;
  background: rgba(255, 255, 255, 0.16);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-box p {
  margin: 6px 0;
  font-weight: 600;
}

.contact-note {
  margin-top: 10px;
  font-weight: 500;
  color: #e9f3f5;
}

.placeholder-image {
  width: 190px;
  height: 130px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-size: 13px;
  overflow: hidden;
}

.placeholder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.relaxation-image {
  width: 220px;
  height: 190px;
}

.relaxation-image img {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
}

.deeptissue-image img {
  object-fit: scale-down;
  background: rgba(255, 255, 255, 0.1);
}

.deeptissue-image {
  height: 150px;
}

.relaxation-image {
  width: 210px;
  height: 150px;
}

.relaxation-image img {
  object-fit: contain;
  background: #e6ddd2;
}

.photo-wheel {
  position: relative;
  width: min(90vw, 980px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.photo-wheel::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 7px solid rgba(95, 127, 106, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.photo-node {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
}

.photo-title {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.photo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8d6d6;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  background: #f3ebe1;
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-center {
  width: 340px;
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #e8d6d6;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  background: #f3ebe1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  text-align: center;
}

.photo-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-node.top {
  top: 12%;
  left: 50%;
}

.photo-node.top-left {
  top: 26%;
  left: 26%;
}

.photo-node.top-right {
  top: 26%;
  left: 74%;
}

.photo-node.right {
  top: 50%;
  left: 82%;
}

.photo-node.bottom-right {
  top: 74%;
  left: 74%;
}

.photo-node.bottom-left {
  top: 74%;
  left: 26%;
}

.photo-node.left {
  top: 50%;
  left: 18%;
}

.photo-node.center {
  top: 50%;
  left: 50%;
}

.benefits-title {
  display: block;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
}

.benefits-text {
  display: block;
}

@media (max-width: 900px) {
  .services {
    grid-template-columns: 1fr;
  }

  .photo-wheel {
    width: min(92vw, 700px);
  }

  .photo-circle {
    width: 120px;
    height: 120px;
  }

  .photo-center {
    width: 280px;
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .bio-card {
    grid-template-columns: 1fr;
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .placeholder-image {
    justify-self: center;
    width: 220px;
    height: 150px;
  }

  .photo-wheel {
    width: min(92vw, 520px);
  }

  .photo-circle {
    width: 104px;
    height: 104px;
  }

  .photo-center {
    width: 240px;
    min-height: 130px;
  }

  .photo-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .photo-center p {
    font-size: 13px;
    line-height: 1.4;
  }

  .session-and-price {
    padding: 20px 18px;
  }

  .session-grid {
    grid-template-columns: 1fr;
  }

  .session-and-price h2 {
    font-size: 26px;
  }

  .session-column h3 {
    font-size: 20px;
  }

  .session-column li {
    font-size: 16px;
  }

  .bio-list-row {
    flex-direction: column;
  }

  .bio-side-image {
    width: 180px;
    height: 140px;
  }

  h1 {
    font-size: 34px;
    text-align: center;
  }
}

.intake-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 24px 60px;
}

.intake-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px var(--shadow);
}

.intake-title {
  text-align: center;
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 10px;
}

.intake-subtitle {
  text-align: center;
  margin: 0 0 24px;
  color: #5b5f66;
  font-size: 18px;
}

.intake-form {
  display: grid;
  gap: 16px;
}

.intake-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.intake-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
}

.intake-field input,
.intake-field select,
.intake-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9b8a8;
  font-size: 16px;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f8f6f2;
}

.intake-field textarea {
  min-height: 120px;
  resize: vertical;
}

.intake-section-title {
  margin: 16px 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #3f6f8f;
}

.signature-box {
  border: 2px dashed rgba(95, 127, 106, 0.4);
  border-radius: 12px;
  padding: 12px;
  background: #f6fbf7;
}

.signature-canvas {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: 1px solid rgba(95, 127, 106, 0.35);
  background: #ffffff;
  display: block;
  touch-action: none;
}

.signature-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: #c9b8a8;
  color: #2f2a2a;
}

.alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 16px;
}

.alert-success {
  background: #e6f4ea;
  color: #1b5e20;
}

.alert-error {
  background: #fdecea;
  color: #b71c1c;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e0d4c7;
  text-align: left;
}

.admin-table th {
  background: #f1ece4;
}

.table-wrapper {
  overflow-x: auto;
}

.admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.login-card {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px var(--shadow);
}
