:root {
  --ink: #1d171a;
  --muted: #6f6066;
  --soft: #fff8f6;
  --paper: #ffffff;
  --rose: #c65b73;
  --rose-deep: #93394d;
  --lilac: #8a6fb0;
  --sage: #5d8c79;
  --champagne: #ecd6c8;
  --line: rgba(29, 23, 26, 0.13);
  --shadow: 0 24px 70px rgba(89, 44, 59, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 12%, rgba(198, 91, 115, 0.16), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(93, 140, 121, 0.13), transparent 24%),
    linear-gradient(180deg, #fff8f6 0%, #f6ebe6 100%);
  font-family: Inter, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.page {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.demo-banner {
  margin: 0;
  padding: 8px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 246, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 91, 115, 0.28);
  border-radius: 50%;
  color: var(--rose-deep);
  background: radial-gradient(circle, #ffe8ef, #fff);
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-cta,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--muted);
}

.nav-cta,
.btn-primary {
  border: 1px solid var(--rose-deep);
  color: #fff;
  background: var(--rose-deep);
}

.nav-cta {
  padding: 8px 18px;
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.btn {
  padding: 12px 18px;
  cursor: pointer;
}

.hero {
  padding: clamp(46px, 7vw, 96px) 0 72px;
}

.hero-grid,
.section-grid,
.booking-layout,
.comparison-grid,
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.hero-copy,
.section-copy {
  display: grid;
  gap: 20px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 11.7ch;
  font-size: clamp(3.1rem, 5.55vw, 5.55rem);
  line-height: 1.02;
}

h2 {
  max-width: 12.8ch;
  font-size: clamp(2.25rem, 4.2vw, 4.65rem);
  line-height: 1;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-copy > p,
.section-copy p,
.offer-card p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.07rem;
}

.hero-actions,
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 4px 0 0;
}

.hero-facts div,
.service-panel,
.booking-form,
.comparison-table,
.offer-card,
.scope-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(89, 44, 59, 0.08);
}

.hero-facts div {
  padding: 14px;
}

dt {
  margin-bottom: 5px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.visual-card {
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.nail-card {
  width: min(100%, 500px);
  margin-left: auto;
  transform: rotate(1deg);
}

.nail-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.booking-mini {
  position: absolute;
  left: 8px;
  bottom: 42px;
  width: min(330px, 82%);
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(29, 23, 26, 0.16);
  backdrop-filter: blur(12px);
}

.booking-mini strong {
  color: var(--rose-deep);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-mini span {
  color: var(--muted);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.section {
  padding: 84px 0;
}

.split-section {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.service-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-panel {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.18;
}

.hair-panel::before {
  background: repeating-linear-gradient(90deg, #4b3327 0 9px, #d7b89d 9px 18px);
}

.nail-panel::before {
  background:
    radial-gradient(ellipse at 50% 18%, #fff 0 24%, transparent 25%),
    linear-gradient(160deg, #f2a6b8, #8a6fb0);
}

.panel-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-family: Georgia, serif;
  font-weight: 700;
}

.service-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.booking-section {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(198, 91, 115, 0.1), transparent 42%),
    #fffdfc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-list span {
  border: 1px solid rgba(93, 140, 121, 0.26);
  border-radius: var(--radius);
  padding: 9px 11px;
  color: var(--sage);
  background: rgba(93, 140, 121, 0.08);
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.form-step {
  display: grid;
  gap: 12px;
}

.step-label {
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-card {
  display: grid;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff8f6;
}

.choice-card input:checked + span {
  border-color: rgba(147, 57, 77, 0.42);
  background: rgba(198, 91, 115, 0.1);
  box-shadow: inset 4px 0 0 var(--rose-deep);
}

.choice-card small {
  color: var(--muted);
  font-weight: 800;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff8f6;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.slot-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff8f6;
  cursor: pointer;
}

.slot-grid input {
  width: auto;
  margin: 0 7px 0 0;
}

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

.wide {
  grid-column: 1 / -1;
}

.deposit-box,
.confirmation {
  border: 1px dashed rgba(147, 57, 77, 0.34);
  border-radius: var(--radius);
  padding: 15px;
  background: rgba(198, 91, 115, 0.07);
}

.deposit-box div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.deposit-box span {
  color: var(--muted);
  font-weight: 900;
}

.deposit-box strong {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--rose-deep);
}

.deposit-box p {
  color: var(--muted);
  font-size: 0.92rem;
}

.full {
  width: 100%;
}

.confirmation {
  min-height: 92px;
  color: var(--muted);
  white-space: pre-wrap;
}

.comparison-grid {
  align-items: start;
}

.comparison-table {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span {
  padding: 15px;
  border-right: 1px solid var(--line);
}

.table-row span:last-child {
  border-right: 0;
}

.table-head {
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.offer-section {
  padding-top: 0;
}

.offer-grid {
  align-items: stretch;
}

.offer-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
}

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

.scope-list article {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.scope-list strong {
  color: var(--rose-deep);
}

.scope-list span {
  color: var(--muted);
}

.scope-list .is-focus {
  border-color: rgba(93, 140, 121, 0.36);
  background: rgba(93, 140, 121, 0.08);
}

.site-footer {
  padding: 28px 0;
  color: #fff8f6;
  background: var(--ink);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p:last-child {
  max-width: 620px;
  color: rgba(255, 248, 246, 0.72);
  text-align: right;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-grid,
  .booking-layout,
  .comparison-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .nail-card {
    margin: 0;
  }

  .booking-mini {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 22px, 1140px);
  }

  .nav {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-facts,
  .service-board,
  .form-grid,
  .slot-grid,
  .table-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .nail-card img {
    height: 390px;
  }

  .table-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .table-row span:last-child {
    border-bottom: 0;
  }

  .footer-grid,
  .footer-grid p:last-child {
    text-align: left;
  }
}
