:root {
  --bg: #f5ecd9;
  --surface: #fffdf7;
  --surface-2: #fff7ea;
  --text: #2d211d;
  --muted: #6d5852;
  --brand: #8f4d3c;
  --brand-strong: #6f3629;
  --line: #e7d7c1;
  --ok: #1f6d39;
  --error: #a1332f;
  --shadow-soft: 0 14px 30px rgba(62, 33, 20, 0.08);
  --shadow-card: 0 10px 24px rgba(50, 24, 16, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 420px at 12% -8%, #fff8ec, transparent 72%),
    radial-gradient(1000px 380px at 96% 5%, #f8e5ce, transparent 70%),
    var(--bg);
  line-height: 1.5;
}

.wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, #f6d8cb 0%, #f1c5b8 38%, #e6ad9a 72%, #e0a18d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -130px;
  top: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0.6rem 0 0.55rem;
  width: min(840px, 96%);
  margin: 0.35rem auto;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(131, 72, 54, 0.16);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(62, 33, 20, 0.12);
  backdrop-filter: blur(1px);
}

.kicker {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(75, 39, 28, 0.24);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #603427;
  background: rgba(255, 255, 255, 0.45);
}

h1 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.lead {
  margin: 0 auto 0.3rem;
  max-width: 720px;
  color: #472f29;
  font-size: clamp(1rem, 2.4vw, 1.13rem);
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.45rem;
  background: linear-gradient(180deg, #995845, var(--brand));
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(95, 43, 28, 0.22);
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #8a4b3a, var(--brand-strong));
  box-shadow: 0 10px 20px rgba(78, 33, 22, 0.27);
}

.section {
  padding: 3.25rem 0;
}

main > .section:first-child {
  padding-top: 2.2rem;
}

.soft {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.7), rgba(255, 247, 235, 0.75));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 0.9rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.14;
}

.section-intro {
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.card {
  background: linear-gradient(180deg, var(--surface), #fff6eb);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(59, 29, 19, 0.1);
}

.service-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-toggle .chev {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2dfcc;
  color: var(--brand-strong);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.card.open .service-toggle .chev {
  transform: rotate(45deg);
}

.service-details {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-details.hidden {
  display: none;
}

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

.service-details li {
  margin-bottom: 0.62rem;
  border: 1px solid #ead7cb;
  border-radius: 10px;
  background: #fffdf9;
  padding: 0.55rem 0.6rem;
}

.treatment-pick {
  border: 0;
  background: transparent;
  color: #5b3a30;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
  font-weight: 700;
  width: 100%;
}

.treatment-pick:hover,
.treatment-pick:focus-visible {
  color: var(--brand-strong);
  text-decoration: underline;
}

.treatment-copy {
  margin: 0.24rem 0 0;
  color: #755f58;
  font-size: 0.86rem;
  line-height: 1.35;
}

.form {
  background: linear-gradient(180deg, var(--surface), #fffaf2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checks-grid {
  display: grid;
  gap: 0.68rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0.95rem;
}

.treatment-description {
  grid-column: 1 / -1;
  align-self: end;
  background: var(--surface-2);
  border: 1px solid #e2cabf;
  border-radius: 10px;
  padding: 0.78rem;
  font-size: 0.9rem;
  color: #5f4540;
  min-height: 48px;
}

.bottom-cta {
  text-align: center;
  background: linear-gradient(180deg, #fff8ef, #fff1dd);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1rem 1.35rem;
  box-shadow: var(--shadow-card);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1px solid #ddc6bc;
  border-radius: 10px;
  padding: 0.6rem 0.65rem;
  background: #fff;
  font-weight: 600;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.check-item:hover {
  border-color: #cfae9f;
  box-shadow: 0 3px 10px rgba(93, 44, 29, 0.08);
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
}

input,
select,
textarea {
  border: 1px solid #d8c1b5;
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  font: inherit;
  font-size: 0.94rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #c08c7e;
  box-shadow: 0 0 0 3px rgba(182, 116, 98, 0.18);
}

textarea {
  resize: vertical;
}

h3 {
  margin: 1.25rem 0 0.48rem;
  font-family: "Playfair Display", Georgia, serif;
}

.disclaimer-box {
  margin-top: 1rem;
  border: 1px dashed #ccaa9d;
  border-radius: 12px;
  padding: 0.95rem;
  background: linear-gradient(180deg, #fff8f1, #fff5ec);
}

.disclaimer-box h4 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.disclaimer-box p {
  margin: 0 0 0.85rem;
  color: #5f4540;
}

.consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.consent input {
  margin-top: 0.2rem;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  font-weight: 700;
}

.form-status.error {
  color: var(--error);
}

.form-status.success {
  color: var(--ok);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 18, 13, 0.7);
  backdrop-filter: blur(2px);
}

.modal-panel {
  position: relative;
  width: min(1120px, 96vw);
  max-height: 94vh;
  margin: 3vh auto;
  background: linear-gradient(180deg, #fffdf9, #fff8ee);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 26px 48px rgba(20, 10, 8, 0.35);
  border: 1px solid #ecd8c8;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff8ef, #fff4e5);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.28rem;
}

.close-btn {
  border: 1px solid #d8c1b5;
  background: #fff;
  color: #4a2a22;
  border-radius: 8px;
  padding: 0.45rem 0.74rem;
  cursor: pointer;
  font-weight: 700;
}

.modal-body {
  padding: 1.1rem;
  overflow: auto;
}

body.modal-open {
  overflow: hidden;
}

.footer {
  padding: 1.4rem 0 1.7rem;
  text-align: center;
  color: #5b4741;
  font-size: 0.94rem;
  border-top: 1px solid var(--line);
  margin-top: 1.2rem;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .services-grid,
  .form-grid,
  .checks-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .modal-panel {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }
}
