:root {
  --paper: #fffdf8;
  --milk: #f7f2e8;
  --sage: #e3eee5;
  --sage-deep: #607f6c;
  --ink: #213733;
  --muted: #64736f;
  --line: rgba(35, 52, 47, 0.14);
  --clay: #bb6656;
  --clay-dark: #914a3d;
  --blue: #55768a;
  --sky: #dcecf1;
  --sun: #f4cf78;
  --rose: #f5dfd9;
  --mint: #dff1e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(25, 36, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body:has(dialog[open]) {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a.button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(720px, 100%);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 132px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.93) 36%, rgba(251, 250, 247, 0.54) 60%, rgba(251, 250, 247, 0.05) 100%),
    linear-gradient(0deg, rgba(251, 250, 247, 0.82) 0%, rgba(251, 250, 247, 0.02) 34%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 52vw);
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #314640;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(640px, 100%);
  margin-top: 34px;
}

.hero-actions .button {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(35, 52, 47, 0.18);
}

.button.primary:hover {
  background: #182823;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  background: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(640px, 100%);
  margin-top: 28px;
}

.hero-facts span {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(35, 52, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #41544e;
  font-size: 14px;
  text-align: center;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(880px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading p.privacy-note {
  max-width: 520px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.muted {
  background:
    linear-gradient(180deg, rgba(244, 207, 120, 0.12), rgba(255, 253, 248, 0)),
    var(--milk);
  border-block: 1px solid var(--line);
}

.intro-section {
  padding-top: clamp(58px, 7vw, 92px);
}

.fit-grid,
.services-grid,
.price-grid,
.review-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.fit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fit-item {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--sun);
  border-radius: 8px;
  background: var(--white);
}

.fit-item:nth-child(2) {
  border-top-color: var(--sage-deep);
  background: #f5fbf7;
}

.fit-item:nth-child(3) {
  border-top-color: var(--clay);
  background: #fff8f5;
}

.fit-item:nth-child(4) {
  border-top-color: var(--blue);
  background: #f5fbfd;
}

.fit-item p,
.service-card p,
.process-list p,
.about-section p,
.price-card p,
.review-grid p,
.contact-section p,
.footer p,
.policy-dialog p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(35, 52, 47, 0.12);
  border-top: 4px solid var(--card-accent, var(--sage-deep));
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(35, 52, 47, 0.06);
}

.service-card:nth-child(1),
.service-card:nth-child(6) {
  --card-accent: var(--clay);
  background: #fff8f5;
}

.service-card:nth-child(2),
.service-card:nth-child(7) {
  --card-accent: var(--blue);
  background: #f6fbfd;
}

.service-card:nth-child(3),
.service-card:nth-child(8) {
  --card-accent: var(--sage-deep);
  background: #f6fbf8;
}

.service-card:nth-child(4),
.service-card:nth-child(9) {
  --card-accent: #c89a32;
  background: #fffaf0;
}

.service-card:nth-child(5) {
  --card-accent: #7a6aa0;
  background: #faf8ff;
}

.service-number {
  display: inline-grid;
  width: 38px;
  height: 28px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-accent, var(--sage-deep)) 16%, white);
  color: var(--card-accent, var(--clay));
  font-weight: 800;
  font-size: 13px;
}

.service-card h3 {
  color: var(--ink);
}

.service-card p {
  hyphens: auto;
  text-align: justify;
  text-align-last: left;
}

.service-card .text-button,
.service-card .source-link {
  text-align: left;
}

.service-note {
  margin-top: 12px;
  font-size: 15px;
}

.text-button,
.source-link,
.link-button {
  width: fit-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--clay-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.source-link {
  margin-top: auto;
}

.source-link + .text-button {
  margin-top: 18px;
}

.process-section {
  background: var(--paper);
}

.process-list {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list article {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), #fff3cf);
  color: var(--ink);
  font-weight: 800;
}

.about-section {
  background:
    linear-gradient(135deg, rgba(220, 236, 241, 0.92), rgba(245, 223, 217, 0.55)),
    #eef7f7;
}

.about-layout,
.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.about-layout > div:first-child p {
  margin-top: 18px;
  font-size: 18px;
}

.education-panel {
  padding: 28px;
  border: 1px solid rgba(35, 52, 47, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}

.certificate-gallery a {
  text-decoration: none;
}

.certificate-gallery img {
  display: block;
  width: 100%;
  border: 1px solid rgba(35, 52, 47, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(35, 52, 47, 0.08);
}

.qualification-list {
  margin-top: 16px;
  border-top: 1px solid rgba(35, 52, 47, 0.14);
}

.qualification-list ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qualification-list li {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(35, 52, 47, 0.11);
}

.qualification-list span {
  display: inline-block;
  color: var(--clay-dark);
  font-weight: 800;
}

.qualification-list p {
  margin: 0;
  font-size: 16px;
}

.education-details {
  margin-top: 0;
}

.education-details summary {
  position: relative;
  padding: 12px 34px 12px 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.education-details summary::after {
  content: "+";
  position: absolute;
  top: 10px;
  right: 0;
  color: var(--clay-dark);
  font-size: 24px;
  line-height: 1;
}

.education-details[open] summary::after {
  content: "-";
}

.certificate-proof {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(35, 52, 47, 0.14);
}

.certificate-proof h3 {
  font-size: 20px;
}

.certificate-cover {
  margin-top: 18px;
}

.certificate-cover a {
  display: grid;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.certificate-cover img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 10px 26px rgba(35, 52, 47, 0.08);
}

.certificate-cover span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.certificate-details {
  margin-top: 18px;
}

.certificate-details summary {
  position: relative;
  width: fit-content;
  padding: 0 28px 0 0;
  color: var(--clay-dark);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.certificate-details summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  line-height: 1;
}

.certificate-details[open] summary::after {
  content: "-";
}

.certificate-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.certificate-gallery a {
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.certificate-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 8px;
}

.certificate-gallery span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--card-accent, var(--sage-deep));
  border-radius: 8px;
  background: var(--white);
}

.price-card:nth-child(1) {
  --card-accent: var(--sage-deep);
  background: #f6fbf8;
}

.price-card:nth-child(2) {
  --card-accent: var(--blue);
  background: #f5fbfd;
}

.price-card:nth-child(3) {
  --card-accent: var(--clay);
  background: #fff8f5;
}

.price-card h3 {
  color: var(--ink);
}

.price-card dl {
  margin: 22px 0 0;
}

.price-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-card dt {
  color: var(--muted);
}

.price-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.price-card p {
  margin-top: 18px;
}

.testimonials {
  background: var(--paper);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--sage-deep);
  border-radius: 8px;
  background: #f6fbf8;
  color: var(--ink);
}

.review-grid article:nth-child(2) {
  border-top-color: var(--clay);
  background: #fff8f5;
}

.review-grid article:nth-child(3) {
  border-top-color: var(--blue);
  background: #f5fbfd;
}

.review-grid p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.48;
}

.review-grid span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: var(--milk);
  border-block: 1px solid var(--line);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 8px;
  color: var(--clay-dark);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 42px 24px 0;
  color: var(--muted);
}

.contact-section {
  background: var(--ink);
  color: var(--paper);
}

.contact-section .eyebrow {
  color: #d9bea7;
}

.contact-section h2 {
  color: var(--paper);
}

.contact-section p,
.contact-section .consent {
  color: rgba(251, 250, 247, 0.76);
}

.contact-phone {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.contact-phone a,
.footer a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-section .button.primary {
  display: inline-flex;
  margin-top: 34px;
  background: var(--paper);
  color: var(--ink);
  min-width: min(280px, 100%);
}

.contact-section .link-button {
  display: inline;
  margin: 0 0 0 4px;
  color: var(--paper);
}

.consent {
  max-width: 620px;
  margin-top: 18px;
  font-size: 14px;
}

.address-list {
  display: grid;
  gap: 12px;
}

.address-list article {
  padding: 22px;
  border: 1px solid rgba(251, 250, 247, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.address-list h3 {
  color: var(--paper);
}

.address-list a {
  display: inline-block;
  margin-top: 12px;
  color: var(--paper);
  font-weight: 800;
  text-underline-offset: 5px;
}

.footer {
  padding: 32px clamp(18px, 5vw, 72px);
  background: #182823;
  color: rgba(251, 250, 247, 0.72);
  font-size: 14px;
}

.footer p + p,
.footer .link-button {
  margin-top: 8px;
}

.footer .link-button {
  color: var(--paper);
}

.mobile-cta {
  display: none;
}

.policy-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(720px, calc(100svh - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-dialog::backdrop {
  background: rgba(24, 40, 35, 0.58);
}

.dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 0;
}

.dialog-header h2 {
  font-size: 30px;
}

.dialog-header button {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.policy-content {
  padding: 20px 24px 24px;
}

.policy-dialog h3 {
  margin-top: 20px;
  color: var(--ink);
  font-size: 17px;
}

.policy-dialog p {
  margin-top: 10px;
}

.policy-dialog ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-dialog li + li {
  margin-top: 6px;
}

.policy-dialog a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 4px;
}

.policy-updated {
  color: var(--muted);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 4vw, 36px);
  bottom: clamp(18px, 4vw, 36px);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(35, 52, 47, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(35, 52, 47, 0.14);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(16px);
}

.back-to-top span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 18px;
  line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--white);
  transform: translateY(6px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.9) 48%, rgba(251, 250, 247, 0.16) 100%),
      linear-gradient(90deg, rgba(251, 250, 247, 0.82) 0%, rgba(251, 250, 247, 0.18) 100%);
  }

  .hero-content {
    width: min(680px, 100%);
  }

  .fit-grid,
  .services-grid,
  .price-grid,
  .review-grid,
  .process-list,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .process-list {
    border-left: 0;
  }

  .process-list article {
    border-left: 1px solid var(--line);
  }

  .about-layout,
  .contact-layout {
    gap: 28px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
    background:
      linear-gradient(180deg, rgba(220, 236, 241, 0.36), rgba(255, 253, 248, 0) 240px),
      var(--paper);
  }

  .site-header {
    min-height: 54px;
    padding: 9px 14px;
  }

  .nav {
    gap: 8px;
    font-size: 13px;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(35, 52, 47, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
  }

  .hero {
    display: grid;
    min-height: 0;
    padding: 0 0 34px;
    background:
      linear-gradient(180deg, rgba(247, 242, 232, 0.2), rgba(255, 253, 248, 1) 88%),
      var(--milk);
  }

  .hero-image {
    position: relative;
    inset: auto;
    z-index: 0;
    height: min(64vw, 265px);
    min-height: 215px;
    object-fit: cover;
    object-position: 74% 18%;
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 16px 34px rgba(35, 52, 47, 0.1);
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    width: auto;
    margin: -20px 16px 0;
    padding: 22px 0 0;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    left: -8px;
    z-index: -1;
    height: 118px;
    border: 1px solid rgba(35, 52, 47, 0.1);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 18px 40px rgba(35, 52, 47, 0.08);
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(29px, 9vw, 38px);
  }

  h3 {
    font-size: 19px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .primary {
    grid-column: 1 / -1;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .hero-facts span {
    width: 100%;
    min-height: 52px;
    padding: 8px 7px;
    border-radius: 12px;
    background: rgba(227, 238, 229, 0.56);
    font-size: 11px;
    line-height: 1.2;
  }

  .section {
    padding: 42px 16px;
  }

  .section-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    margin-left: 0;
    margin-top: 12px;
    font-size: 16px;
  }

  .fit-grid,
  .services-grid,
  .price-grid,
  .review-grid,
  .process-list,
  .about-layout,
  .contact-layout,
  .certificate-gallery {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fit-item,
  .service-card,
  .price-card,
  .review-grid article,
  .education-panel,
  .address-list article {
    padding: 18px;
  }

  .fit-item {
    min-height: 0;
    border-top-width: 3px;
  }

  .fit-item p {
    font-size: 14px;
    line-height: 1.42;
  }

  .services-grid,
  .price-grid,
  .address-list {
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    border-top-width: 0;
    border-left: 4px solid var(--card-accent, var(--sage-deep));
    box-shadow: none;
  }

  .service-number {
    width: 32px;
    height: 24px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .service-note {
    margin-top: 10px;
  }

  .source-link,
  .text-button {
    margin-top: 16px;
    font-size: 15px;
  }

  .qualification-list li {
    grid-template-columns: 72px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .qualification-list p {
    font-size: 14px;
    line-height: 1.38;
  }

  .education-details summary {
    padding-block: 12px;
  }

  .text-button {
    margin-top: 18px;
  }

  .certificate-cover img {
    max-height: 470px;
  }

  .certificate-gallery {
    gap: 12px;
  }

  .certificate-gallery img {
    aspect-ratio: 3 / 4;
  }

  .process-list article {
    min-height: 0;
    padding: 18px;
    border-left: 1px solid var(--line);
  }

  .process-list span {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
  }

  .price-card div {
    align-items: flex-start;
  }

  .price-card dd {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .review-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-grid article {
    flex: 0 0 86%;
    min-height: 0;
    scroll-snap-align: start;
  }

  .review-grid p {
    font-size: 17px;
    line-height: 1.48;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .contact-layout {
    gap: 22px;
  }

  .contact-phone {
    margin-top: 14px;
    font-size: clamp(28px, 9vw, 36px);
  }

  .contact-section .button.primary {
    margin-top: 28px;
  }

  .footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(35, 52, 47, 0.12);
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 -10px 34px rgba(35, 52, 47, 0.09);
  }

  .mobile-cta a,
  .mobile-cta button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(35, 52, 47, 0.14);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-cta button {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
  }

  .back-to-top {
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    min-height: 42px;
    padding: 0 12px 0 8px;
    font-size: 13px;
  }

  .back-to-top span {
    width: 26px;
    height: 26px;
    font-size: 17px;
  }
}

.options-page {
  min-height: 100svh;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(244, 207, 120, 0.24), transparent 34%),
    linear-gradient(180deg, #f7f2e8 0%, #fffdf8 48%, #edf7f8 100%);
}

.hero-options {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 42px clamp(16px, 4vw, 42px) 64px;
}

.options-intro {
  width: min(720px, 100%);
  margin-bottom: 30px;
}

.options-intro h1 {
  font-size: clamp(38px, 7vw, 64px);
}

.options-intro p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.options-intro a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--clay-dark);
  font-weight: 800;
  text-underline-offset: 5px;
}

.option-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 390px) minmax(220px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 4vw, 34px) 0;
  border-top: 1px solid var(--line);
}

.option-label span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--clay-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-label strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.06;
}

.option-note {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.phone-frame {
  width: min(390px, 100%);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(35, 52, 47, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 70px rgba(35, 52, 47, 0.16);
}

.phone-screen {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--paper);
}

.phone-screen h2 {
  font-size: 36px;
}

.phone-screen button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.option-screen-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.option-screen-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(33, 55, 51, 0.82) 0%, rgba(33, 55, 51, 0.58) 32%, rgba(33, 55, 51, 0.08) 72%),
    linear-gradient(90deg, rgba(33, 55, 51, 0.3), rgba(33, 55, 51, 0));
}

.option-cover-content {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 1;
  color: var(--paper);
}

.option-cover-content p,
.option-screen-panel p,
.option-screen-calm p {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-cover-content h2 {
  color: var(--paper);
}

.option-cover-content span,
.panel-copy span,
.option-screen-calm > span {
  display: block;
  margin-top: 12px;
  line-height: 1.45;
}

.option-cover-content div,
.panel-copy div,
.calm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.option-cover-content button:first-child,
.panel-copy button:first-child,
.calm-actions button:first-child {
  background: var(--paper);
  color: var(--ink);
}

.option-cover-content button:last-child,
.panel-copy button:last-child,
.calm-actions button:last-child {
  border: 1px solid rgba(255, 253, 248, 0.6);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.option-screen-panel {
  padding: 0;
  background:
    linear-gradient(145deg, #f7f2e8 0%, #fdf8ef 52%, #e5f1ed 100%);
}

.panel-photo {
  position: relative;
  height: 310px;
  margin: 0 0 0 84px;
  overflow: hidden;
  border-bottom-left-radius: 48px;
  background: #dcecf1;
}

.panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 20%;
}

.panel-copy {
  padding: 26px 22px 0;
}

.panel-copy p,
.option-screen-calm p {
  color: var(--clay-dark);
}

.panel-copy span,
.option-screen-calm > span {
  color: var(--muted);
}

.panel-copy button:first-child,
.calm-actions button:first-child {
  background: var(--ink);
  color: var(--paper);
}

.panel-copy button:last-child,
.calm-actions button:last-child {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.panel-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 20px 18px 0;
}

.panel-facts span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(35, 52, 47, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
  color: #41544e;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.option-screen-calm {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(220, 236, 241, 0.86), rgba(255, 253, 248, 0.96) 48%),
    var(--paper);
}

.calm-photo {
  height: 295px;
  margin: -20px -20px 24px;
  overflow: hidden;
  border-radius: 0 0 110px 110px;
  background: var(--sky);
}

.calm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 18%;
}

.option-screen-calm h2 {
  margin-top: 10px;
}

.option-screen-editorial {
  background: #f3eadf;
}

.option-screen-editorial > img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 72%;
  object-fit: cover;
  object-position: 72% 14%;
}

.option-screen-editorial::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background:
    linear-gradient(180deg, rgba(243, 234, 223, 0), #f3eadf 31%),
    linear-gradient(135deg, rgba(220, 236, 241, 0.68), rgba(245, 223, 217, 0.6));
}

.editorial-copy {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 1;
}

.editorial-copy p,
.arc-copy p,
.signature-top p,
.signature-copy p {
  margin: 0 0 10px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-copy h2 {
  color: var(--ink);
  font-size: 38px;
}

.editorial-copy span,
.arc-copy span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.editorial-copy button,
.signature-copy button {
  width: 100%;
  margin-top: 18px;
  background: var(--ink);
  color: var(--paper);
}

.option-screen-arc {
  padding: 22px;
  background:
    linear-gradient(150deg, #fffdf8 0%, #f5dfd9 46%, #dcecf1 100%);
}

.arc-copy {
  position: relative;
  z-index: 1;
  max-width: 270px;
}

.arc-copy h2 {
  font-size: 34px;
}

.arc-photo {
  position: absolute;
  right: -44px;
  bottom: 72px;
  width: 290px;
  height: 360px;
  overflow: hidden;
  border: 1px solid rgba(35, 52, 47, 0.12);
  border-radius: 160px 0 0 160px;
  background: var(--sky);
  box-shadow: -20px 20px 52px rgba(35, 52, 47, 0.12);
}

.arc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 14%;
}

.arc-actions {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.arc-actions button:first-child {
  background: var(--ink);
  color: var(--paper);
}

.arc-actions button:last-child {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.option-screen-signature {
  padding: 20px;
  background:
    linear-gradient(180deg, #fff8f1 0%, #f6fbfd 100%);
}

.signature-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

.signature-top p,
.signature-top span {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.signature-top span {
  max-width: 116px;
  text-align: right;
}

.option-screen-signature > img {
  display: block;
  width: calc(100% + 40px);
  height: 330px;
  margin: 22px -20px 0;
  object-fit: cover;
  object-position: 72% 16%;
  border-block: 1px solid rgba(35, 52, 47, 0.1);
}

.signature-copy {
  position: relative;
  margin: -46px 0 0;
  padding: 22px 0 0;
}

.signature-copy::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  left: -8px;
  z-index: -1;
  height: 116px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 34px rgba(35, 52, 47, 0.08);
}

.signature-copy h2 {
  font-size: 37px;
}

@media (max-width: 680px) {
  .fit-item h3 {
    font-size: 16px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  .service-card {
    height: 100%;
    padding: 12px;
  }

  .service-number {
    width: 28px;
    height: 22px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .service-card h3 {
    min-height: 0;
    font-size: 13px;
    line-height: 1.2;
    overflow-wrap: normal;
    hyphens: auto;
  }

  .service-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.34;
    hyphens: none;
    text-align: left;
    text-align-last: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .service-note {
    display: none;
  }

  .source-link,
  .text-button {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.25;
  }

  .service-card .text-button {
    margin-top: auto;
  }

  .options-page {
    padding-bottom: 0;
  }

  .hero-options {
    padding: 28px 14px 42px;
  }

  .options-intro {
    margin-bottom: 16px;
  }

  .options-intro h1 {
    font-size: 34px;
  }

  .options-intro p:not(.eyebrow),
  .option-note {
    font-size: 15px;
  }

  .option-card {
    display: block;
    padding: 24px 0 32px;
  }

  .option-label {
    margin-bottom: 16px;
  }

  .option-label strong {
    font-size: 27px;
  }

  .phone-frame {
    width: min(372px, 100%);
  }

  .phone-screen {
    min-height: 610px;
  }

  .option-note {
    margin-top: 16px;
  }
}

.hero-soft-arc {
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.86fr);
  gap: clamp(20px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 248, 241, 0.98), rgba(246, 251, 253, 0.94) 58%, rgba(227, 238, 229, 0.8)),
    var(--paper);
}

.hero-soft-arc .hero-content {
  width: min(650px, 100%);
  padding-top: 0;
}

.hero-role {
  margin: 16px 0 0;
  color: var(--clay-dark);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.25;
}

.hero-arc-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero-arc-visual::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -14vw;
  bottom: 8%;
  left: -18vw;
  border: 1px solid rgba(35, 52, 47, 0.08);
  border-radius: 340px 0 0 340px;
  background:
    linear-gradient(135deg, rgba(220, 236, 241, 0.98), rgba(245, 223, 217, 0.78) 48%, rgba(244, 207, 120, 0.34));
  box-shadow: -26px 24px 70px rgba(35, 52, 47, 0.1);
}

.hero-soft-arc .hero-image {
  position: absolute;
  top: 5%;
  right: clamp(-90px, -5vw, -34px);
  bottom: 0;
  left: auto;
  z-index: 0;
  width: min(680px, 58vw);
  height: 90%;
  object-fit: cover;
  object-position: 70% 14%;
  border-radius: 320px 0 0 320px;
  box-shadow: -18px 20px 56px rgba(35, 52, 47, 0.12);
}

@media (max-width: 980px) {
  .hero-soft-arc {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .hero-arc-visual {
    min-height: 430px;
  }

  .hero-soft-arc .hero-image {
    right: -44px;
    width: min(720px, 108vw);
  }
}

@media (max-width: 680px) {
  .hero-soft-arc {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 26px 16px 30px;
    overflow: hidden;
    gap: 0;
    background:
      linear-gradient(150deg, #fffdf8 0%, #f5dfd9 48%, #dcecf1 100%);
  }

  .hero-soft-arc::before {
    display: none;
  }

  .hero-soft-arc .hero-content {
    display: contents;
  }

  .hero-soft-arc .eyebrow,
  .hero-soft-arc h1,
  .hero-role,
  .hero-soft-arc .hero-lead {
    position: relative;
    z-index: 2;
    margin: 0;
    max-width: 100%;
  }

  .hero-soft-arc .eyebrow {
    order: 1;
  }

  .hero-soft-arc h1 {
    order: 2;
  }

  .hero-role {
    order: 3;
  }

  .hero-arc-visual {
    order: 4;
  }

  .hero-soft-arc .hero-lead {
    order: 5;
  }

  .hero-soft-arc .hero-actions {
    order: 6;
  }

  .hero-soft-arc .hero-facts {
    order: 7;
  }

  .hero-soft-arc .hero-content::before {
    display: none;
  }

  .hero-soft-arc .eyebrow {
    margin-bottom: 10px;
  }

  .hero-soft-arc h1 {
    max-width: 340px;
    font-size: clamp(33px, 9.4vw, 40px);
    line-height: 1.03;
  }

  .hero-role {
    margin-top: 12px;
    font-size: 16px;
  }

  .hero-soft-arc .hero-lead {
    max-width: 100%;
    margin-top: 16px;
    color: #314640;
    font-size: 15px;
    line-height: 1.46;
  }

  .hero-arc-visual {
    position: relative;
    z-index: 1;
    min-height: 0;
    height: clamp(282px, 78vw, 342px);
    margin: 20px -16px 0 -8px;
    pointer-events: none;
  }

  .hero-arc-visual::before {
    content: "";
    position: absolute;
    inset: 0 -34px 0 -96px;
    border: 1px solid rgba(35, 52, 47, 0.08);
    border-radius: 260px 0 0 260px;
    background:
      linear-gradient(125deg, rgba(220, 236, 241, 0.96), rgba(245, 223, 217, 0.78) 54%, rgba(244, 207, 120, 0.26));
    box-shadow: -16px 20px 50px rgba(35, 52, 47, 0.1);
  }

  .hero-soft-arc .hero-image {
    position: absolute;
    top: 0;
    right: -18px;
    bottom: 0;
    z-index: 1;
    width: calc(100% + 56px);
    max-width: none;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 100% 16%;
    border: 1px solid rgba(35, 52, 47, 0.08);
    border-right: 0;
    border-radius: 250px 0 0 250px;
    box-shadow: -16px 16px 42px rgba(35, 52, 47, 0.1);
  }

  .hero-soft-arc .hero-actions {
    position: relative;
    z-index: 3;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
    display: none;
  }

  .hero-soft-arc .hero-actions .primary {
    grid-column: 1 / -1;
  }

  .hero-soft-arc .hero-facts {
    position: relative;
    z-index: 3;
    margin-top: 18px;
    display: none;
  }
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 680px) {
  .motion-ready .motion-reveal {
    transform: translate3d(0, 10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
