:root {
  --bg: #f6f4f0;
  --bg-alt: #ebe7e0;
  --dark: #1a1714;
  --text: #46413b;
  --muted: #837c72;
  --accent: #b5852f;
  --accent-soft: #cda24f;
  --white: #fff;
  --shadow-sm: 0 6px 20px rgba(26, 23, 20, .07);
  --shadow-md: 0 18px 50px rgba(26, 23, 20, .12);
  --shadow-lg: 0 30px 80px rgba(26, 23, 20, .20);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1180px;
  --serif: 'Oswald', Impact, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

/* HEADINGS */
h1, h2, h3, h4 {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.05;
  color: var(--dark);
  font-weight: 600;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  letter-spacing: .02em;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
  border-color: var(--white);
}
.btn--block { width: 100%; }

/* EYEBROW */
.eyebrow {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--accent-soft); }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(246, 244, 240, .92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
}
.nav.scrolled .nav__brand { color: var(--dark); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255, 255, 255, .9);
  transition: color .25s ease;
  position: relative;
}
.nav.scrolled .nav__links a { color: var(--text); }
.nav__links a:hover { color: var(--accent); }
.nav__cta { padding: 11px 24px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 23, 20, .88) 0%, rgba(26, 23, 20, .55) 55%, rgba(26, 23, 20, .35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero__lead {
  color: rgba(255, 255, 255, .85);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
}
.stat__label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 6px;
}

/* SECTION */
.section { padding: 110px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); }
.section__head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section__title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.section__title--light { color: var(--white); }
.section__lead { color: var(--muted); font-size: 1.1rem; }

/* PRICING */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.price-card__name { font-size: 1.4rem; }
.price-card__price {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
}
.price-card__desc { color: var(--muted); font-size: .98rem; }
.price-card--feature {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.price-card--feature .price-card__name { color: var(--white); }
.price-card--feature .price-card__desc { color: rgba(255, 255, 255, .75); }

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__icon {
  font-size: 1.9rem;
  display: inline-block;
  margin-bottom: 16px;
}
.feature__title { font-size: 1.2rem; margin-bottom: 10px; }
.feature__text { color: var(--muted); font-size: .96rem; }

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 5;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.08); }

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.barber { text-align: center; }
.barber__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  aspect-ratio: 3 / 4;
}
.barber__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.barber:hover .barber__photo img { transform: scale(1.08); }
.barber__name { font-size: 1.25rem; margin-bottom: 4px; }
.barber__role {
  color: var(--accent);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.about__media:hover img { transform: scale(1.05); }
.about__body p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.about__body .btn { margin-top: 8px; }

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review__stars { color: var(--accent); letter-spacing: .15em; font-size: 1.05rem; }
.review__quote { color: var(--text); font-size: 1.05rem; font-style: italic; flex: 1; }
.review__person { display: flex; align-items: center; gap: 14px; }
.review__person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review__name { display: block; font-weight: 600; color: var(--dark); }
.review__service { display: block; font-size: .85rem; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }

/* BOOKING */
.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.book__lead { color: rgba(255, 255, 255, .8); font-size: 1.1rem; margin-bottom: 26px; }
.book__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.book__list li {
  color: rgba(255, 255, 255, .9);
  padding-left: 26px;
  position: relative;
}
.book__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-soft);
  font-weight: 700;
}
.book__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.field input, .field select {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--bg-alt);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(181, 133, 47, .15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .9rem; color: var(--muted); text-align: center; margin-top: 2px; }
.form-note.success { color: var(--accent); font-weight: 600; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255, 255, 255, .75); padding-top: 70px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer .nav__brand { color: var(--white); }
.footer__tag { margin: 16px 0 22px; max-width: 320px; }
.footer__socials { display: flex; gap: 22px; }
.footer__socials a { font-size: .9rem; transition: color .25s ease; }
.footer__socials a:hover { color: var(--accent-soft); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: .1em;
}
.footer__col p { font-size: .92rem; margin-bottom: 8px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .price-grid, .feature-grid, .team-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .about, .book { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__stats { gap: 32px; }
}

@media (max-width: 600px) {
  .nav__links { display: none; }
  .container { padding: 0 18px; }
  .hero__inner { padding-top: 110px; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero__lead { font-size: 1.05rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; }
  .hero__stats { gap: 24px; }
  .stat__num { font-size: 1.8rem; }
  .price-grid, .feature-grid, .team-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .section__head { margin-bottom: 44px; }
}
