:root {
  --bg-page: #e8e4de;
  --card-bg: #a28f79;
  --text-light: #f6f0e8;
  --text-soft: rgba(246, 240, 232, 0.85);
  --text-dark: #2a241e;
  --white-soft: rgba(255, 255, 255, 0.88);
  --border-soft: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 20px 60px rgba(40, 30, 20, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-page);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  padding: 24px;
}

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

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

.page-shell {
  max-width: 1380px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(rgba(90, 73, 58, 0.28), rgba(90, 73, 58, 0.28)),
    url("female-hairdresser-making-hairstyle-blonde-woman-beauty-salon.jpg") center center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(88, 69, 54, 0.30) 0%,
      rgba(88, 69, 54, 0.25) 30%,
      rgba(88, 69, 54, 0.45) 100%
    );
  z-index: 1;
}

.navbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 34px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--text-light);
}

.brand-top {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-bottom {
  margin-top: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-light);
}

.nav a {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.95;
  transition: 0.25s ease;
}

.nav a:hover {
  opacity: 0.72;
}

.nav-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white-soft);
  color: #6c5948 !important;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  margin: 4px auto;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(92vh - 102px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px 120px;
  text-align: center;
}

.eyebrow {
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.03em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.hero-text {
  max-width: 700px;
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white-soft);
  color: #6b5847;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-bottom-card {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 34px;
  width: 340px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  color: var(--text-light);
}

.bottom-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 10px;
}

.bottom-card-text {
  line-height: 1.7;
  font-size: 0.95rem;
}

.services,
.about,
.contact {
  padding: 70px 16px 10px;
}

.section-head {
  margin-bottom: 26px;
}

.section-label {
  color: #7f6f61;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: #2f271f;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(114, 92, 73, 0.09);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(55, 42, 30, 0.05);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #2f271f;
}

.service-card p {
  line-height: 1.8;
  color: #5e5044;
  margin-bottom: 16px;
}

.service-card span {
  font-weight: 600;
  color: #3e332a;
}

.about-text {
  max-width: 850px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5a4d42;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(114, 92, 73, 0.09);
}

.contact-info p {
  margin-bottom: 10px;
  color: #5a4d42;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  body {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
    border-radius: 26px;
    background-position: center;
  }

  .navbar {
    padding: 20px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 5;
  }

  .nav {
    position: absolute;
    top: 84px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: min(280px, calc(100% - 40px));
    padding: 18px;
    border-radius: 22px;
    background: rgba(74, 59, 46, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-content {
    min-height: calc(88vh - 86px);
    padding: 30px 20px 130px;
  }

  .hero-text {
    max-width: 560px;
    font-size: 0.98rem;
  }

  .hero-bottom-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-top {
    font-size: 1.6rem;
  }

  .brand-bottom {
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 5rem);
    line-height: 0.95;
  }

  .eyebrow {
    letter-spacing: 0.22em;
    font-size: 0.72rem;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .btn {
    width: 100%;
    min-width: unset;
  }

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