:root {
  --bg: #fff8f4;
  --bg-soft: #f7e9df;
  --text: #271b17;
  --muted: #7f6760;
  --accent: #a86447;
  --accent-dark: #6f3825;
  --cream: #fffdf9;
  --line: rgba(39, 27, 23, 0.12);
  --shadow: 0 25px 70px rgba(67, 39, 28, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 244, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: -0.04em;
}

.logo span {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
}

.logo small {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:not(.nav-cta) {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-cta {
  background: var(--text);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(35, 22, 18, 0.14);
  border-radius: 50%;
  color: var(--dark);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.instagram-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.instagram-link:hover {
  transform: translateY(-2px);
  background: var(--dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0a0a0a;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - 136px);
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 7.7rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero-text {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.15rem;
  margin: 24px 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-dark);
  color: white;
  box-shadow: 0 16px 35px rgba(111, 56, 37, 0.22);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  max-width: 560px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.image-card {
  overflow: hidden;
  border-radius: 44px;
  box-shadow: var(--shadow);
}

.main-card {
  position: absolute;
  inset: 0 0 0 70px;
}

.main-card img {
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.appointment-card {
  left: 0;
  bottom: 70px;
  width: 245px;
}

.appointment-card span,
.appointment-card p,
.rating-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.appointment-card strong {
  display: block;
  margin: 4px 0;
}

.rating-card {
  right: -18px;
  top: 80px;
  width: 220px;
}

.rating-card strong {
  color: var(--accent);
  letter-spacing: 0.1em;
}

.brand-strip {
  margin: 42px auto 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6vw, 80px);
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 118px auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.05rem;
}

.services-grid,
.stylist-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.review-card,
.stylist-card {
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(67, 39, 28, 0.07);
}

.service-card {
  min-height: 305px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--accent-dark);
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.service-card h3,
.look-card h3,
.stylist-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p,
.look-card p,
.stylist-card p,
.review-card p {
  color: var(--muted);
}

.service-card span {
  margin-top: auto;
  font-weight: 900;
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.featured-service {
  background: var(--text);
  color: white;
}

.featured-service p,
.featured-service span {
  color: rgba(255, 255, 255, 0.75);
}

.experience-section {
  width: min(1180px, calc(100% - 32px));
  margin: 120px auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  background: var(--bg-soft);
  border-radius: 46px;
  padding: 32px;
}

.experience-image {
  overflow: hidden;
  border-radius: 34px;
  min-height: 520px;
}

.experience-image img {
  height: 100%;
  object-fit: cover;
}

.experience-content {
  padding: 32px;
}

.experience-content > p:not(.eyebrow) {
  color: var(--muted);
  margin: 22px 0;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 18px;
  color: var(--text);
}

.check-list span {
  color: var(--accent-dark);
  font-weight: 900;
  margin-right: 8px;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.look-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.look-card.tall {
  min-height: 540px;
}

.look-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.look-card:hover img {
  transform: scale(1.06);
}

.look-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 10, 0.72), transparent 58%);
}

.look-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
}

.look-card p {
  color: rgba(255, 255, 255, 0.74);
}

.stylists {
  margin-top: 40px;
}

.stylist-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stylist-card {
  padding: 14px 14px 24px;
}

.stylist-card img {
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.stylist-card h3,
.stylist-card p {
  padding-inline: 10px;
}

.reviews-section {
  background: var(--text);
  color: white;
  padding: 110px 0;
}

.reviews-section .section-heading,
.reviews-grid {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.13);
}

.review-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.booking-section {
  width: min(1180px, calc(100% - 32px));
  margin: 118px auto;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 44px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 46px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.booking-card p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 18px;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  font-weight: 800;
  color: var(--text);
}

.booking-form input,
.booking-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  min-height: 52px;
  border-radius: 16px;
  padding: 0 14px;
  font: inherit;
  color: var(--text);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
}

.footer-logo {
  color: var(--text);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-weight: 800;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
 
   .menu-toggle {
    display: inline-flex;
    
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 250, 246, 0.98);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(35, 22, 18, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(35, 22, 18, 0.12);
    z-index: 9999;

    transform-origin: top;
    transform: scaleY(0.94);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.active {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .experience-section,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .main-card {
    inset: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookbook-grid,
  .stylist-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .look-card,
  .look-card.tall {
    min-height: 430px;
  }

  .brand-strip {
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: 16px;
  }
}

@media (max-width: 768px) {
  .navbar,
  .hero,
  .section,
  .experience-section,
  .booking-section,
  .footer,
  .reviews-section .section-heading,
  .reviews-grid {
    width: min(100% - 22px, 1180px);
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero {
    margin-top: 34px;
    gap: 36px;
  }

  .hero-stats,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .floating-card {
    position: relative;
    width: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .main-card {
    position: relative;
    height: 380px;
    border-radius: 28px;
  }

  .section,
  .experience-section,
  .booking-section {
    margin-block: 82px;
  }

  .experience-section,
  .booking-card {
    padding: 18px;
    border-radius: 30px;
  }

  .experience-content {
    padding: 10px;
  }

  .experience-image {
    min-height: 360px;
  }

  .booking-card {
    gap: 28px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }


  .nav-actions {
    margin-left: auto;
  }

  .nav-cta {
    display: inline-flex;
    white-space: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .instagram-link {
    width: 40px;
    height: 40px;
  }

  .portfolio-back-link {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

.portfolio-back-link {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  background: #2f2421;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.portfolio-back-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
