:root {
  --black: #080808;
  --dark: #111111;
  --gold: #c8a96a;
  --gold-light: #d7b56d;
  --cream: #f8f5ef;
  --white: #ffffff;
  --text: #1e1b18;
  --muted: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr 160px;
  align-items: center;
  gap: 2rem;
}

.logo img {
  max-width: 190px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2.3rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav a:hover {
  color: var(--gold);
}

.header-btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.9rem 1.3rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.header-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* HERO */
.hero {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(
      90deg,
      rgba(248, 245, 239, 1) 0%,
      rgba(248, 245, 239, 1) 42%,
      rgba(248, 245, 239, 0.92) 52%,
      rgba(248, 245, 239, 0.45) 62%,
      rgba(248, 245, 239, 0.08) 72%,
      rgba(248, 245, 239, 0) 82%
    ),
    url("../images/hero.png") right center / cover no-repeat;
}

.hero-grid {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-text {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-text > * {
  max-width: 560px;
}

.hero-small {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.hero-script {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 2.3rem;
  font-style: italic;
  margin: 0.4rem 0 1.4rem;
  font-weight: 400;
  opacity: 0.95;
}

.hero-desc {
  max-width: 480px;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-dark {
  width: fit-content;
  background: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 1rem 1.8rem;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-image {
  display: none;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1.8rem;
  font-weight: 600;
}

.section-title span {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 0.8rem auto 0;
}

/* SERVICES */
.services-preview {
  background: #ffffff;
  padding: 4.5rem 0 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: block;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card div {
  min-height: 72px;
  padding: 1rem 1rem 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-card strong {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #1e1b18;
}

.service-card span {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}

.center {
  text-align: center;
  margin-top: 1.5rem;
}

.outline-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--text);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: 0.3s ease;
}

.outline-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ABOUT */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  background: var(--cream);
  align-items: center;
}

.about-image {
  min-height: 360px;
  background: url("../images/salon-interior.jpg") center center / cover no-repeat;
}

.about-content {
  padding: 2.5rem 3rem;
}

.gold-label {
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 800;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin: 0.4rem 0 1rem;
}

.about-content p {
  max-width: 540px;
  color: #444;
  margin-bottom: 1.5rem;
}

.experience-badge {
  color: var(--gold);
  text-align: center;
  padding: 2rem;
}

.experience-badge strong {
  font-family: "Playfair Display", serif;
  display: block;
  font-size: 4rem;
  line-height: 1;
}

.experience-badge span {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

/* REVIEWS */
.reviews {
  background: #ffffff;
  padding: 5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(200, 169, 106, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-card strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}
/* FOOTER */
.footer {
  background: var(--black);
  color: white;
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-logo {
  max-width: 230px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.footer-column {
  border-left: 1px solid rgba(200,169,106,0.13);
  padding-left: 1.7rem;
}

.footer h4 {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer p {
  color: rgba(255,255,255,0.86);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.footer-btn {
  display: inline-block;
  margin-top: 1rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  font-weight: 800;
}

.footer-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.3rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo img {
    margin: 0 auto;
  }

  .nav {
    flex-wrap: wrap;
  }

  .header-btn {
    margin: 0 auto;
  }

  .hero {
  min-height: 100vh;
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.15) 0%,
      rgba(8, 8, 8, 0.35) 35%,
      rgba(8, 8, 8, 0.75) 100%
    ),
    url("../images/hero_mobile.png") center center / cover no-repeat;
}

.hero-grid {
  min-height: 100vh;
}

.hero-text {
  width: 100%;
  padding: 0 1.5rem 3rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-text > * {
  max-width: 100%;
}

.hero h1,
.hero-script,
.hero-desc,
.hero-small {
  color: white;
}

.hero-script {
  color: var(--gold);
}

.hero h1 {
  font-size: 3rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.92);
}

  .service-grid {
  grid-template-columns: repeat(2, 1fr);
}

  .about-preview {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .hero {
    min-height: 100svh;
    background:
      linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.05) 0%,
        rgba(8, 8, 8, 0.25) 35%,
        rgba(8, 8, 8, 0.82) 100%
      ),
      url("../images/hero_mobile.png") center center / cover no-repeat;
  }

  .hero-grid {
    min-height: 100svh;
  }

  .hero-text {
    width: 100%;
    margin: 0;
    padding: 0 1.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-text > * {
    max-width: 100%;
  }

  .hero-small {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 0.35rem;
  }

  .hero-script {
    font-size: 1.55rem;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
  }

  .btn-dark {
    width: fit-content;
    padding: 0.95rem 1.5rem;
    font-size: 0.8rem;
  }

  .hero-image {
    display: none;
  }
  .service-grid {
  grid-template-columns: 1fr;
}

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    border-left: none;
    padding-left: 0;
  }

  .footer-brand {
    align-items: center;
  }
}