/* ============================================
   FADE & CO. — CLEAN CUT STUDIO
   Modern / Minimal Barbershop Theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --sage: #7C9A82;
  --sage-hover: #6B8A71;
  --light-gray: #F5F5F3;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-height: 72px;
  --max-width: 1200px;
  --section-pad: 120px;
  --section-pad-mobile: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease, color 0.25s ease;
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  max-width: 620px;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
}


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

.section {
  padding: var(--section-pad) 0;
}

.section--gray {
  background: var(--light-gray);
}

.section-header {
  margin-bottom: 64px;
}

.section-header p {
  margin-top: 16px;
  color: rgba(26, 26, 26, 0.6);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage-hover);
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  opacity: 1;
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.875rem;
}


/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.nav__logo span {
  color: var(--sage);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  opacity: 1;
}

.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 12px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 48px 24px;
}

.nav__mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}


/* --- Hero --- */
.hero {
  padding: 160px 0 var(--section-pad);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.hero__label {
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__line {
  width: 48px;
  height: 1px;
  background: var(--sage);
  margin-top: 64px;
}


/* --- Services List --- */
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  transition: padding-left 0.3s ease;
}

.service-item:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.service-item:hover {
  padding-left: 8px;
}

.service-item__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
}

.service-item__detail {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 2px;
}

.service-item__price {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--sage);
  white-space: nowrap;
  margin-left: 24px;
}


/* --- Package Card --- */
.package-card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  padding: 40px;
  border-radius: 4px;
}

.package-card--featured {
  border-color: var(--sage);
}

.package-card__label {
  margin-bottom: 16px;
}

.package-card h3 {
  margin-bottom: 12px;
}

.package-card__price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 20px;
}

.package-card p {
  font-size: 0.9375rem;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 24px;
}

.package-card__includes {
  margin-bottom: 32px;
}

.package-card__includes li {
  font-size: 0.9375rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-card__includes li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}


/* --- Team Cards --- */
.team-card {
  text-align: center;
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--sage);
  border: 1px solid rgba(124, 154, 130, 0.2);
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 16px;
}

.team-card p {
  font-size: 0.9375rem;
  color: rgba(26, 26, 26, 0.6);
  margin: 0 auto;
  max-width: 280px;
}


/* --- Testimonials / Reviews --- */
.review-card {
  padding: 32px 0 32px 32px;
  border-left: 1px solid var(--sage);
}

.review-card__text {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  max-width: 100%;
}

.review-card__author {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--sage);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}


/* --- Info / Location --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.info-block {
  margin-bottom: 40px;
}

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

.info-block__label {
  margin-bottom: 12px;
}

.info-block p, .info-block a {
  font-size: 1rem;
  line-height: 1.7;
}

.info-block a {
  color: var(--sage);
}

.info-block a:hover {
  opacity: 0.7;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
  font-size: 0.9375rem;
}

.hours-list li span:first-child {
  color: rgba(26, 26, 26, 0.5);
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* --- Page Header (inner pages) --- */
.page-header {
  padding: 140px 0 80px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.page-header .label {
  margin-bottom: 16px;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(26, 26, 26, 0.6);
  font-size: 1.0625rem;
}


/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: var(--section-pad) 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin: 0 auto 32px;
  color: rgba(26, 26, 26, 0.6);
}

.cta-section .btn {
  margin: 0 8px;
}


/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding: 48px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__left {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.4);
}

.footer__right {
  display: flex;
  gap: 24px;
}

.footer__right a {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.4);
}

.footer__right a:hover {
  color: var(--sage);
  opacity: 1;
}


/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* --- Google Review CTA --- */
.google-cta {
  text-align: center;
  padding: 64px 40px;
  background: var(--light-gray);
  border-radius: 4px;
}

.google-cta p {
  margin: 12px auto 24px;
  color: rgba(26, 26, 26, 0.6);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 var(--section-pad-mobile);
    min-height: auto;
  }

  .hero p {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-header {
    padding: 110px 0 56px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-section .btn {
    margin: 4px 0;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .review-card {
    padding: 24px 0 24px 24px;
  }

  .package-card {
    padding: 32px 24px;
  }

  .team-card__avatar {
    width: 80px;
    height: 80px;
    font-size: 1.125rem;
  }
}
