/* ========================================
   HOME PAGE — Glaucio's Barbershop
   Sections: Hero, About, Our Work, Services,
   Care & Style, Our Team, Testimonials,
   Ride Your Wave, Gift Voucher, Our Place,
   CTA Chair, Footer
   ======================================== */

/* ========== SECTION UTILITY ========== */
.section {
  position: relative;
  width: 100%;
  padding: 80px 84px;
  overflow: hidden;
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.section--gold {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 6vw, 112px);
  line-height: 0.72;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 48px;
  min-width: 260px;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  line-height: 1.2;
}

.btn-view-all:hover {
  opacity: 0.85;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  background-color: var(--color-text);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: opacity 0.2s;
}

.carousel-btn:hover {
  opacity: 0.8;
}

/* ========== 1. HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 900px;
  background-color: #e2e2e2;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__bg-text {
  position: absolute;
  top: 100px;
  left: 63px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(200px, 26vw, 500px);
  line-height: 1;
  letter-spacing: -15px;
  text-transform: uppercase;
  color: #1d1d1d;
  white-space: nowrap;
  z-index: 1;
}

.hero__barber-img {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%) scaleY(-1) rotate(171deg);
  width: 46%;
  max-width: 900px;
  z-index: 2;
  object-fit: cover;
}

.hero__dark-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-color: #0b0b0b;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

.hero__dark-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover;
  mix-blend-mode: difference;
  opacity: 0.32;
}

.hero__title-right {
  position: absolute;
  top: 100px;
  right: 60px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(200px, 26vw, 500px);
  line-height: 1;
  letter-spacing: -25px;
  text-transform: uppercase;
  color: #fefefe;
  z-index: 4;
}

.hero__portrait {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 35%;
  max-width: 682px;
  z-index: 5;
  object-fit: cover;
  border-radius: 0;
}

.hero__script {
  position: absolute;
  bottom: 60px;
  right: 12%;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(100px, 12vw, 230px);
  color: var(--color-gold);
  letter-spacing: 7px;
  z-index: 6;
  transform: rotate(-8deg);
}

.hero__tagline {
  position: absolute;
  bottom: 80px;
  right: 5%;
  font-family: var(--font-body);
  font-size: 13px;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 340px;
  z-index: 7;
}

.hero__slide-nav {
  position: absolute;
  bottom: 200px;
  right: 20%;
  display: flex;
  align-items: center;
  gap: 48px;
  z-index: 7;
}

.hero__slide-counter {
  font-family: var(--font-body);
  font-size: 40px;
  color: white;
  letter-spacing: -3px;
  line-height: 0.94;
}

/* ========== 2. ABOUT ========== */
.about {
  padding: 100px 84px;
  background: white;
}

.about__text-large {
  font-family: var(--font-body);
  font-size: clamp(36px, 5vw, 92px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -3px;
  color: var(--color-text);
  max-width: 1400px;
  margin-bottom: 60px;
}

.about__text-large .bracket {
  color: var(--color-gold);
}

.about__body {
  display: flex;
  justify-content: flex-end;
}

.about__body-text {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  max-width: 530px;
  color: var(--color-text);
}

.about__body-text p + p {
  margin-top: 16px;
}

/* ========== 3. OUR WORK ========== */
.our-work {
  padding: 60px 84px 80px;
  background: white;
}

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

.our-work__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
}

/* ========== 4. OUR SERVICES ========== */
.services {
  padding: 100px 84px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  position: relative;
}

.services__layout {
  display: flex;
  gap: 60px;
}

.services__title-vertical {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 18vw, 333px);
  line-height: 0.72;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  white-space: nowrap;
  flex-shrink: 0;
}

.services__content {
  flex: 1;
}

.services__category {
  margin-bottom: 48px;
}

.services__category-label {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--color-gold);
  letter-spacing: 1.92px;
  margin-bottom: 12px;
}

.services__table {
  width: 100%;
}

.services__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 40px);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services__row-name {
  color: white;
  flex: 1;
}

.services__row-duration {
  color: var(--color-text-dim);
  width: 100px;
  text-align: left;
}

.services__row-price {
  color: white;
  width: 100px;
  text-align: right;
}

/* ========== 5. CARE AND STYLE (Shop) ========== */
.shop {
  padding: 60px 84px 80px;
  background: white;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card__category {
  font-size: 16px;
  color: var(--color-text);
}

.product-card__category span {
  text-decoration: underline;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 489/376;
  object-fit: cover;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.5vw, 48px);
  line-height: 0.96;
  text-transform: uppercase;
  flex: 1;
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  white-space: nowrap;
}

.product-card__desc {
  font-size: 16px;
  line-height: 1.2;
}

.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 48px;
  background-color: black;
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  line-height: 0.72;
}

.product-card__btn:hover {
  opacity: 0.85;
}

/* ========== 6. OUR TEAM ========== */
.team {
  padding: 100px 84px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.team__card {
  display: flex;
  gap: 96px;
  align-items: flex-start;
  margin-top: 72px;
}

.team__card-photo {
  width: 154px;
  height: 154px;
  object-fit: cover;
  flex-shrink: 0;
}

.team__card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team__card-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 0.96;
  text-transform: uppercase;
}

.team__card-address {
  font-size: 16px;
  line-height: 1.2;
}

.team__card-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team__detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.team__detail-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 0.72;
}

.team__detail-value {
  font-size: 16px;
  line-height: 1.2;
}

.team__bio {
  margin-top: 48px;
  font-size: 16px;
  line-height: 1.2;
  max-width: 580px;
}

.team__bio p + p {
  margin-top: 16px;
}

.team__portrait {
  flex-shrink: 0;
  width: 50%;
  max-width: 600px;
  object-fit: cover;
}

/* ========== 7. WHAT CLIENTS SAY ========== */
.testimonials {
  padding: 80px 84px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.testimonials__header {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.testimonials__subtitle {
  font-size: 16px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  max-width: 310px;
  line-height: 1.2;
}

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

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

.testimonial-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.testimonial-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.testimonial-card__quote {
  font-size: 40px;
  line-height: 1;
  color: var(--color-text);
  font-family: Georgia, serif;
}

.testimonial-card__avatar {
  width: 248px;
  height: 248px;
  object-fit: cover;
  border-radius: 0;
}

.testimonial-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--color-text);
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text);
}

/* ========== 8. RIDE YOUR WAVE (Surf) ========== */
.surf {
  padding: 80px 84px;
  background: white;
  position: relative;
}

.surf__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.surf__left {
  max-width: 500px;
}

.surf__desc {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-top: 24px;
}

.surf__book-link {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  color: var(--color-text);
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 2px;
  line-height: 0.72;
}

/* ========== 9. RIDE THE WAVES / GIFT VOUCHER ========== */
.waves-section {
  padding: 80px 84px;
  background-color: var(--color-gold);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waves-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 272px);
  line-height: 0.72;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

/* ========== 10. GIFT VOUCHER ========== */
.gift-voucher {
  padding: 80px 84px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.gift-voucher__steps {
  display: flex;
  gap: 80px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.gift-step {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gift-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 0.96;
  text-transform: uppercase;
}

.gift-step__desc {
  font-size: 16px;
  line-height: 1.2;
}

.gift-voucher__subtitle {
  font-size: 16px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ========== 11. OUR PLACE ========== */
.our-place {
  padding: 80px 84px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.our-place__image {
  width: 100%;
  max-width: 1752px;
  margin: 48px auto 0;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ========== 12. YOUR STYLE / CTA ========== */
.cta-chair {
  padding: 100px 84px;
  background: white;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.cta-chair__image {
  width: 45%;
  max-width: 800px;
  object-fit: cover;
}

.cta-chair__content {
  flex: 1;
}

.cta-chair__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 12vw, 232px);
  line-height: 0.72;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: right;
  color: #0f0f0f;
}

.cta-chair__book {
  margin-top: 48px;
}

.cta-chair__info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-transform: uppercase;
}

.info-block__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 0.96;
  margin-bottom: 8px;
}

.info-block__text {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.44px;
}

.info-block__text p + p {
  margin-top: 4px;
}

/* ========== 13. FOOTER ========== */
.site-footer {
  padding: 80px 84px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.site-footer__book-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 180px);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1;
}

.site-footer__columns {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 160px;
}

.footer-col__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 0.72;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col__list a,
.footer-col__list p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer-col__list a:hover {
  color: var(--color-white);
}

.footer-col__hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col__hours p {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__logo {
  width: 93px;
}

.footer__socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__socials img {
  width: 28px;
  height: 28px;
}

/* ========== BOOK NOW LINK ========== */
.book-now-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: underline;
  line-height: 0.72;
  color: var(--color-text);
  transition: color 0.2s;
}

.book-now-link:hover {
  color: var(--color-gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .section {
    padding: 60px 40px;
  }

  .about {
    padding: 80px 40px;
  }

  .services {
    padding: 80px 40px;
  }

  .our-work__gallery,
  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-chair {
    flex-direction: column;
    padding: 60px 40px;
  }

  .cta-chair__image {
    width: 100%;
  }

  .cta-chair__title {
    text-align: left;
  }

  .site-footer__columns {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 20px;
  }

  .about {
    padding: 60px 20px;
  }

  .our-work__gallery,
  .shop__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .services__layout {
    flex-direction: column;
  }

  .services__title-vertical {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(60px, 15vw, 120px);
  }

  .services__row {
    font-size: 20px;
  }

  .team__card {
    flex-direction: column;
    gap: 32px;
  }

  .hero__bg-text,
  .hero__title-right {
    font-size: clamp(80px, 18vw, 200px);
  }

  .site-footer__columns {
    flex-direction: column;
    gap: 32px;
  }

  .gift-voucher__steps {
    flex-direction: column;
    gap: 40px;
  }
}
