:root {
  --ink: #211d1b;
  --muted: #6f6861;
  --line: #e6ded6;
  --paper: #fffdf9;
  --soft: #f5efe8;
  --sage: #77836f;
  --rose: #b08478;
  --deep: #3d4840;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(45, 38, 32, 0.12);
}

* {
  box-sizing: border-box;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.topbar {
  background: var(--deep);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-weight: 760;
  letter-spacing: 0;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 520;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--deep);
  background: var(--deep);
  color: var(--white);
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 720;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--deep);
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(33, 29, 27, 0.78), rgba(33, 29, 27, 0.42) 52%, rgba(33, 29, 27, 0.1)),
    url("https://images.squarespace-cdn.com/content/v1/6733bd357d7d6b3cd95717e8/b4976ab0-032c-4fc1-8b4f-5bc2b73920b4/morpheus8-technology-instagram-post-black-preview-1-1024x1024.jpg") center / cover;
  color: var(--white);
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-weight: 760;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.3rem);
  font-weight: 500;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  background: var(--white);
  padding: 22px;
}

.trust-item strong {
  display: block;
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

section {
  padding: 82px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.portrait {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.soft-band {
  background: var(--soft);
}

.treatment-list {
  display: grid;
  gap: 16px;
}

.treatment {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price {
  display: grid;
  gap: 8px;
  align-content: start;
}

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--soft);
  color: var(--deep);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td {
  color: var(--muted);
}

td strong {
  color: var(--ink);
}

tr:last-child td {
  border-bottom: 0;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--white);
  color: var(--deep);
  text-decoration: none;
  font-weight: 650;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  background: var(--deep);
  color: var(--white);
}

.contact .section-heading p,
.contact address {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

address {
  font-style: normal;
}

.footer {
  padding: 28px 0;
  background: #181d1a;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 860px) {
  .nav-inner,
  .topbar-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .trust-grid,
  .split,
  .card-grid,
  .treatment,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 58px 0;
  }
}
