* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1d1b;
  --muted: #5d5d59;
  --accent: #8a5d3b;
  --accent-soft: #f0e6dc;
  --panel: #f8f4f0;
  --line: #ded7cf;
  --shadow: 0 24px 60px rgba(29, 29, 27, 0.12);
  --radius: 18px;
  --max-width: 1120px;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #6e472b;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: #f4efe9;
  border-right: 1px solid var(--line);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta p {
  font-size: 0.9rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 6vw;
}

.section--hero {
  background: url("../images/hero-stylist.svg") no-repeat right top;
  background-size: 38%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section--hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  max-width: 560px;
}

.section--hero p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section--hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.section--split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section--split.reverse {
  flex-direction: row-reverse;
}

.section--split .text {
  flex: 1;
}

.section--split .media {
  flex: 1;
  padding: 20px;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section--cards {
  background: var(--panel);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 12px;
}

.section--highlight {
  background: linear-gradient(120deg, #fff, #f6efe7);
}

.section--quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: url("../images/texture.svg") no-repeat left center;
  background-size: 120px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 640px;
}

.section--timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-row span {
  font-weight: 700;
  color: var(--accent);
  min-width: 120px;
}

.section--form {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.section--services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-row .price {
  margin-left: auto;
  font-weight: 700;
  color: var(--accent);
}

.section--cta {
  text-align: center;
  background: var(--accent);
  color: #fff;
}

.section--cta a {
  color: #fff;
  text-decoration: underline;
}

.footer {
  padding: 32px 6vw 48px;
  background: #1f1d1b;
  color: #f7f0e8;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #f7f0e8;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: #1f1d1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sidebar-cta {
    width: 100%;
  }

  .section--split,
  .section--split.reverse {
    flex-direction: column;
  }

  .section--hero {
    background-position: center 20px;
    background-size: 50%;
  }
}

@media (max-width: 600px) {
  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
