:root {
  --ink: #2f2528;
  --muted: #725f64;
  --rose: #9d596a;
  --rose-dark: #6d3242;
  --blush: #f6e7e6;
  --mist: #edf2ee;
  --ivory: #fffaf6;
  --line: rgba(80, 54, 58, 0.16);
  --shadow: 0 16px 40px rgba(66, 34, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 246, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  background: var(--rose-dark);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--rose-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta,
.button.primary {
  color: white;
  background: var(--rose-dark);
  box-shadow: 0 12px 30px rgba(109, 50, 66, 0.25);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(42, 26, 31, 0.78) 0%, rgba(42, 26, 31, 0.5) 48%, rgba(42, 26, 31, 0.08) 100%),
    linear-gradient(0deg, rgba(42, 26, 31, 0.2), rgba(42, 26, 31, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 96px);
  padding-top: 90px;
}

.eyebrow,
.section-kicker,
.panel-label,
.offer-tag {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5d5da;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.6vw, 3.6rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero-content > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.intro-band,
.section,
.split-section,
.why-section,
.faq-section,
.contact-section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 6vw, 92px);
  align-items: end;
  background: var(--mist);
}

.intro-band p,
.split-copy p,
.section-heading p,
.faq-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: 34px;
}

.soft {
  background: #fbf1ef;
}

.service-grid,
.offer-grid,
.testimonial-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.offer-grid article,
.testimonial-grid blockquote {
  margin: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(80, 54, 58, 0.06);
}

.service-grid img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.service-grid h3,
.service-grid p {
  padding-inline: 20px;
}

.service-grid h3 {
  padding-top: 20px;
}

.service-grid p {
  padding-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  color: var(--ink);
  position: relative;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--rose);
  content: "✓";
}

.feature-panel {
  padding: clamp(24px, 4vw, 44px);
  background: #463235;
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel .panel-label {
  color: #f5d5da;
}

.feature-panel ol {
  display: grid;
  gap: 20px;
  margin: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.offer-grid article {
  padding: 28px;
}

.offer-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.offer-grid span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--rose-dark);
  font-weight: 800;
}

.featured-offer {
  background: var(--ink) !important;
  color: white;
}

.featured-offer p {
  color: rgba(255, 255, 255, 0.76);
}

.featured-offer span,
.featured-offer .offer-tag {
  color: #f5d5da;
}

.why-section {
  color: white;
  background: #352d2f;
}

.why-section .section-kicker {
  color: #f5d5da;
}

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

.why-grid div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.testimonial-grid blockquote {
  padding: 28px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

.info-grid blockquote {
  background: rgba(255, 255, 255, 0.74);
}

.testimonial-grid cite {
  display: block;
  margin-top: 20px;
  color: var(--rose);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.assistant-actions button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--rose-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.phone-preview {
  width: min(390px, 100%);
  margin-inline: auto;
  overflow: hidden;
  background: #f7f4ef;
  border: 8px solid #2f2528;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  color: white;
  background: #075e54;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #8df2a4;
  border-radius: 50%;
}

.chat-window {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.message {
  max-width: 82%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.message.salon {
  align-self: flex-start;
  background: white;
}

.message.user {
  align-self: flex-end;
  background: #dcf8c6;
}

.faq-section {
  background: var(--mist);
}

details {
  max-width: 920px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 800;
}

summary::marker {
  color: var(--rose);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  background: var(--ivory);
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(80, 54, 58, 0.08);
}

.contact-card p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: var(--muted);
}

.contact-card strong {
  color: var(--ink);
}

footer {
  padding: 28px 18px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: #2f2528;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .intro-band,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .offer-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 18px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(42, 26, 31, 0.84) 0%, rgba(42, 26, 31, 0.54) 62%, rgba(42, 26, 31, 0.28) 100%);
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-content {
    align-self: end;
    width: calc(100% - 32px);
    margin: 0 auto 56px;
    padding-top: 110px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .offer-grid,
  .testimonial-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .phone-preview {
    border-width: 7px;
    border-radius: 26px;
  }

  .contact-card p {
    display: grid;
    gap: 4px;
  }
}
