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

:root {
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --mid: #2a2a2a;
  --light: #f5f1eb;
  --lightgrey: #f0eeea;
  --white: #ffffff;
  --gray: #888;
  --font-display: "Playfair Display", serif;
  --font-body: "Cormorant Garamond", serif;
  --font-sans: "Oswald", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/*  Utility  */
.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 28px;
}
.gold-line.center {
  margin: 14px auto 28px;
}

.gold-ornament {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin: 12px auto 28px;
  display: block;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}
.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1rem;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
   NAVBAR
 */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: transparent;
  transition:
    background 0.4s,
    padding 0.4s;
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  padding: 14px 60px;
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 11px 26px;
  transition: background 0.3s;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* 
   PAGE HERO
 */
#page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.025) 60px,
      rgba(201, 168, 76, 0.025) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.025) 60px,
      rgba(201, 168, 76, 0.025) 61px
    ),
    radial-gradient(
      ellipse at 30% 60%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 55%
    );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  animation-delay: 0.2s;
}
.page-hero-content .hero-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 18px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.breadcrumb a:hover {
  opacity: 0.7;
}

/* 
   WHY US
 */
#why-us {
  background: var(--white);
  padding: 100px 80px;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left: heading + icon points */
.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0;
}

.why-point {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
}
.why-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

/* Right: photo */
.why-right {
  position: relative;
}
.why-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}
.why-photo-inner {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.46)),
    url("https://images.unsplash.com/photo-1517837016564-bfc465599c7f?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
/* Layered visual atmosphere */

.why-photo-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 30%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}
.photo-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
/* Decorative corner accent */
.why-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(201, 168, 76, 0.25);
  z-index: -1;
}

/* 
   BARBERS
 */
#barbers {
  background: var(--lightgrey);
  padding: 100px 80px;
}
.barbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.barber-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.barber-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.barber-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.bp-1 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.42)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=900&q=80");
}
.bp-2 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.42)),
    url("https://images.unsplash.com/photo-1622286342621-4bd786c2447c?auto=format&fit=crop&w=900&q=80");
}
.bp-3 {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.42)),
    url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=900&q=80");
}

/* Silhouette-style figure accent */




/* Overlay with socials */
.barber-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity 0.35s;
}
.barber-card:hover .barber-overlay {
  opacity: 1;
}

.barber-socials {
  display: flex;
  gap: 18px;
}
.barber-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.barber-socials a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.barber-socials svg {
  width: 16px;
  height: 16px;
}

.barber-info {
  padding: 20px 22px;
  text-align: center;
  border-top: 2px solid var(--gold);
}
.barber-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.barber-info span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* 
   TESTIMONIALS
 */
#testimonials {
  position: relative;
  padding: 120px 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.testimonials-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201, 168, 76, 0.02) 80px,
      rgba(201, 168, 76, 0.02) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201, 168, 76, 0.02) 80px,
      rgba(201, 168, 76, 0.02) 81px
    ),
    radial-gradient(
      ellipse at 15% 80%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 45%
    );
}
.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
#testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.testimonial-slider {
  position: relative;
  min-height: 200px;
  margin: 40px 0 20px;
}
.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  pointer-events: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 28px;
}
.author {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 52px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: var(--gold);
}

/* 
   BRANDS
 */
#brands {
  padding: 100px 80px;
  background: var(--white);
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-logo {
  flex: 1;
  min-width: 130px;
  max-width: 180px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  filter: grayscale(100%);
  opacity: 0.55;
  transition:
    filter 0.35s,
    opacity 0.35s,
    border-color 0.35s;
  cursor: pointer;
}
.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: rgba(201, 168, 76, 0.4);
}
.brand-logo svg {
  width: 80px;
  height: 50px;
}

/* 
   CONTACT / FOOTER SECTION
 */
#contact {
  position: relative;
  padding: 100px 80px;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 10% 90%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 40%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.01) 80px,
      rgba(255, 255, 255, 0.01) 81px
    );
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Contact Info */
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  padding-top: 8px;
}

/* Contact Form */
.contact-form-wrap {
  padding-top: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  outline: none;
  resize: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.btn-send {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}
.btn-send:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4caf50;
  padding: 12px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.form-success.show {
  display: block;
}

/* 
   FOOTER BAR
 */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 80px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bar a {
  color: var(--gold);
  transition: opacity 0.3s;
}
.footer-bar a:hover {
  opacity: 0.7;
}

.footer-social-row {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social-row a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.footer-social-row a:hover {
  color: var(--gold);
}

/* 
   RESPONSIVE
 */
@media (max-width: 1000px) {
  #why-us,
  #barbers,
  #brands,
  #contact {
    padding: 70px 40px;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-right {
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  #testimonials {
    padding: 80px 40px;
  }
}

@media (max-width: 700px) {
  #navbar {
    padding: 16px 20px;
  }
  #navbar.scrolled {
    padding: 10px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: block;
  }

  #why-us,
  #barbers,
  #brands,
  #contact {
    padding: 60px 20px;
  }
  .barbers-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .brands-row {
    gap: 0;
  }
  .brand-logo {
    min-width: 100px;
  }
  .footer-bar {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 20px;
  }
  #testimonials {
    padding: 70px 20px;
  }
}
