* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f1f1f;
  background: #f7f5f2;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 10px;
}

.topbar-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: #5b5b5b;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 36px 6vw 20px;
  gap: 32px;
  position: relative;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 42px;
  margin: 0;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
}

.hero-visual .image-box {
  background: #d9c9b8;
  padding: 16px;
  transform: rotate(-2deg);
}

.hero-visual img {
  width: 100%;
  height: 420px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  background: #2b4f45;
  color: #fff;
  padding: 12px 20px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #e8dfd0;
  color: #2b4f45;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  z-index: 20;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: #efe7dc;
}

.section.bg-salon {
  background-color: #d8d3c8;
  background-image: url("https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1f1f;
}

.section.bg-salon .storyline {
  background: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-size: 28px;
  margin-bottom: 18px;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.asym-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.asym-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #d0d7d3;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-image {
  flex: 1 1 280px;
  background: #c7d0c9;
  padding: 12px;
  transform: translateY(-12px);
}

.offset-image img {
  height: 320px;
  width: 100%;
}

.offset-copy {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-item strong {
  font-size: 17px;
}

.pricing-item span {
  color: #2b4f45;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 13px;
  color: #5b5b5b;
}

.form-panel input,
.form-panel select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.storyline {
  background: #f2ede5;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip .strip-item {
  flex: 1 1 200px;
  background: #e1d8cd;
  padding: 10px;
  border-radius: 14px;
}

.image-strip img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
}

.footer {
  padding: 32px 6vw;
  background: #1f1f1f;
  color: #f5f1ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.disclaimer {
  font-size: 12px;
  color: #d6d2ca;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-page {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-page h1 {
  margin: 0;
  font-size: 34px;
}

.legal-page h2 {
  margin-bottom: 6px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.thanks-wrap {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reference-list {
  font-size: 12px;
  color: #d6d2ca;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
