/* Michael Barber — Ralph Lauren inspired premium barbershop */
:root {
  --cream: #f8f6f1;
  --cream-dark: #ede9e0;
  --charcoal: #1a1a1a;
  --gold: #8b7355;
  --gold-light: #a89070;
  --white: #ffffff;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(26,26,26,0.4), transparent);
  transition: background var(--transition);
}

.header.scrolled {
  background: var(--charcoal);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.9);
}

/* About */
.about {
  padding: 6rem 2rem;
  background: var(--cream);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: var(--charcoal);
}

/* Gallery */
.gallery {
  padding: 6rem 2rem;
  background: var(--cream-dark);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contacts */
.contacts {
  padding: 6rem 2rem;
  background: var(--cream);
}

.contacts-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 2.5rem;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  text-decoration: none;
  color: var(--charcoal);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
}

/* Booking */
.booking {
  padding: 6rem 2rem;
  background: var(--charcoal);
  color: var(--white);
}

.booking .section-title {
  color: var(--white);
  margin-bottom: 3rem;
}

.booking-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.booking-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: border-color var(--transition);
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.booking-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-submit {
  padding: 1rem 2rem;
  margin-top: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--gold-light);
}

.form-message {
  max-width: 480px;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.5rem;
}

.form-message.success {
  color: #7cb87c;
}

.form-message.error {
  color: #c76b6b;
}

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero-title {
    letter-spacing: 0.2em;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    flex-direction: column;
  }

  .contact-card {
    min-width: 100%;
  }
}
