:root {
  --black: #0c0c0c;
  --black-2: #111111;
  --surface: #171717;
  --surface-2: #1d1d1d;

  --white: #f5f2ec;
  --text: #d4d0c8;
  --muted: #8a867f;

  --copper: #b8773d;
  --copper-light: #d89d63;
  --cream: #d9c7a3;

  --border: rgba(255,255,255,0.08);

  --container: 1180px;
}


/* ==================================================
   RESET
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;

  -webkit-text-size-adjust: 100%;
}


body {
  min-height: 100vh;

  color: var(--text);
  background: var(--black);

  font-family: "Manrope", sans-serif;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}


body.menu-open,
body.modal-open {
  overflow: hidden;
}


img {
  display: block;

  max-width: 100%;
}


a {
  color: inherit;

  text-decoration: none;
}


button {
  color: inherit;

  font: inherit;

  cursor: pointer;
}


.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}


.section {
  padding: 110px 0;
}


.small-label {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--copper-light);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;
}



/* ==================================================
   HEADER
================================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 1000;

  width: 100%;

  padding-top:
    env(safe-area-inset-top);

  background:
    rgba(10,10,10,0.72);

  backdrop-filter: blur(15px);

  border-bottom:
    1px solid rgba(255,255,255,0.04);

  transition: 0.3s;
}


.site-header.scrolled {
  background:
    rgba(10,10,10,0.95);

  border-bottom-color:
    var(--border);
}


.header-inner {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


.logo {
  display: flex;
  align-items: center;

  gap: 13px;

  flex-shrink: 0;
}


.logo-mark {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--cream);

  border:
    2px solid var(--copper);

  border-radius: 50%;

  font-family: "Bebas Neue", sans-serif;

  font-size: 21px;

  letter-spacing: 1px;
}


.logo-copy {
  display: flex;
  flex-direction: column;

  line-height: 1;
}


.logo-copy strong {
  color: var(--white);

  font-family: "Bebas Neue", sans-serif;

  font-size: 20px;

  letter-spacing: 3px;
}


.logo-copy span {
  margin-top: 4px;

  color: var(--copper-light);

  font-size: 7px;
  font-weight: 700;

  letter-spacing: 4px;
}


.desktop-nav {
  display: flex;
  align-items: center;

  gap: 27px;
}


.desktop-nav a {
  color: #c2beb6;

  font-size: 12px;
  font-weight: 600;

  transition: 0.2s;
}


.desktop-nav a:hover {
  color: var(--copper-light);
}


.header-book {
  min-height: 43px;

  display: inline-flex;
  align-items: center;

  padding: 0 18px;

  color: #0c0c0c;

  background: var(--copper-light);

  font-size: 11px;
  font-weight: 700;

  border-radius: 999px;
}


.menu-toggle {
  display: none;

  width: 45px;
  height: 45px;

  background: transparent;

  border:
    1px solid var(--border);

  border-radius: 50%;
}


.menu-toggle span {
  display: block;

  width: 18px;
  height: 1px;

  margin: 5px auto;

  background: white;
}



/* ==================================================
   MOBILE MENU
================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 4000;

  opacity: 0;
  visibility: hidden;

  transition: 0.25s;
}


.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}


.mobile-menu-overlay {
  position: absolute;
  inset: 0;

  background:
    rgba(0,0,0,0.7);
}


.mobile-menu-panel {
  position: absolute;

  top: 0;
  right: 0;

  width: min(85%, 360px);
  height: 100%;

  padding:
    max(
      25px,
      env(safe-area-inset-top)
    )
    25px
    max(
      25px,
      env(safe-area-inset-bottom)
    );

  background: #111;

  border-left:
    1px solid var(--border);

  transform: translateX(100%);

  transition: 0.3s;
}


.mobile-menu.active
.mobile-menu-panel {
  transform: translateX(0);
}


.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 25px;

  border-bottom:
    1px solid var(--border);
}


.mobile-menu-top > span {
  color: #777;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 3px;
}


.mobile-menu-top button {
  width: 40px;
  height: 40px;

  color: white;

  background: #191919;

  border:
    1px solid var(--border);

  border-radius: 50%;

  font-size: 22px;
}


.mobile-nav {
  display: flex;
  flex-direction: column;

  margin-top: 25px;
}


.mobile-nav a {
  padding: 18px 0;

  color: white;

  border-bottom:
    1px solid var(--border);

  font-family: "Bebas Neue", sans-serif;

  font-size: 25px;

  letter-spacing: 1px;
}


.mobile-menu-cta {
  width: 100%;

  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 30px;

  color: #111;

  background: var(--copper-light);

  font-size: 12px;
  font-weight: 700;

  border-radius: 5px;
}



/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;

  min-height: 850px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;
}


.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.hero-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(10,10,10,0.95) 0%,
      rgba(10,10,10,0.70) 45%,
      rgba(10,10,10,0.25) 75%
    ),
    linear-gradient(
      to top,
      rgba(10,10,10,0.94),
      transparent 50%
    );
}


.hero-layout {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1fr
    310px;

  gap: 70px;

  align-items: end;

  padding-top: 160px;
  padding-bottom: 90px;
}


.hero-label {
  margin-bottom: 18px;

  color: var(--copper-light);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 3px;
}


.hero h1 {
  max-width: 800px;

  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size:
    clamp(
      70px,
      10vw,
      130px
    );

  font-weight: 400;

  line-height: 0.84;

  letter-spacing: 1px;
}


.hero h1 span {
  display: block;

  color: var(--copper-light);
}


.hero-main > p {
  max-width: 600px;

  margin-top: 28px;

  color: #aaa59c;

  font-size: 15px;

  line-height: 1.8;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 13px;

  margin-top: 35px;
}


.btn {
  min-height: 53px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  font-size: 12px;
  font-weight: 700;

  transition: 0.25s;
}


.btn-copper {
  color: #111;

  background: var(--copper-light);
}


.btn-copper:hover {
  transform: translateY(-3px);
}


.btn-ghost {
  color: white;

  background:
    rgba(255,255,255,0.03);

  border:
    1px solid rgba(255,255,255,0.18);
}


.btn-ghost:hover {
  border-color: var(--copper-light);
}


.hero-side-card {
  padding: 28px;

  background:
    rgba(19,19,19,0.88);

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255,255,255,0.10);
}


.hero-card-kicker {
  display: block;

  color: var(--copper-light);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 2px;
}


.hero-side-card strong {
  display: block;

  margin-top: 8px;

  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size: 25px;

  letter-spacing: 1px;
}


.hero-side-card p {
  margin-top: 8px;

  color: #777;

  font-size: 10px;

  line-height: 1.6;
}


.hero-side-divider {
  height: 1px;

  margin: 22px 0;

  background: var(--border);
}



/* ==================================================
   QUICK INFO
================================================== */

.quick-info {
  background: var(--copper);
}


.quick-info-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}


.quick-info-grid > div {
  min-height: 115px;

  display: flex;
  justify-content: center;
  flex-direction: column;

  padding: 20px 28px;

  color: #111;

  border-right:
    1px solid rgba(0,0,0,0.15);
}


.quick-info-grid > div:first-child {
  border-left:
    1px solid rgba(0,0,0,0.15);
}


.quick-info span {
  font-family: "Bebas Neue", sans-serif;

  font-size: 28px;

  letter-spacing: 1px;
}


.quick-info p {
  margin-top: 4px;

  font-size: 9px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}



/* ==================================================
   HEADINGS
================================================== */

.split-heading {
  display: grid;

  grid-template-columns:
    1fr
    0.5fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 55px;
}


.split-heading h2,
.story-copy h2,
.experience-title h2,
.gallery-heading h2,
.reviews-top h2,
.contact-main h2,
.schedule-content h2 {
  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size:
    clamp(
      50px,
      7vw,
      84px
    );

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: 1px;
}


.split-heading h2 strong,
.story-copy h2 strong,
.experience-title h2 strong,
.gallery-heading h2 strong,
.reviews-top h2 strong,
.contact-main h2 strong,
.schedule-content h2 strong {
  color: var(--copper-light);

  font-weight: 400;
}


.split-heading > p {
  color: #817d76;

  font-size: 13px;

  line-height: 1.8;
}



/* ==================================================
   SERVICES
================================================== */

.services {
  background: #121212;
}


.services-stack {
  display: flex;
  flex-direction: column;

  gap: 12px;
}


.service-row {
  display: grid;

  grid-template-columns:
    230px
    1fr
    180px;

  min-height: 190px;

  overflow: hidden;

  background: #171717;

  border:
    1px solid var(--border);

  border-radius: 8px;

  transition: 0.25s;
}


.service-row:hover {
  transform: translateY(-2px);

  border-color:
    rgba(216,157,99,0.3);
}


.service-highlight {
  background:
    linear-gradient(
      90deg,
      rgba(184,119,61,0.14),
      #171717 55%
    );

  border-color:
    rgba(216,157,99,0.25);
}


.service-photo {
  height: 100%;
}


.service-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


.service-content {
  display: flex;
  justify-content: center;
  flex-direction: column;

  padding: 30px;
}


.service-content > span {
  color: var(--copper-light);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 2px;
}


.service-content h3 {
  margin-top: 9px;

  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size: 34px;

  font-weight: 400;

  letter-spacing: 1px;
}


.service-content p {
  max-width: 600px;

  margin-top: 8px;

  color: #838079;

  font-size: 12px;

  line-height: 1.7;
}


.service-meta {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;

  padding: 30px;

  border-left:
    1px solid var(--border);
}


.service-meta strong {
  color: var(--cream);

  font-family: "Bebas Neue", sans-serif;

  font-size: 32px;
}


.service-meta a {
  margin-top: 15px;

  color: var(--copper-light);

  font-size: 10px;
  font-weight: 700;

  transition: 0.2s;
}


.service-meta a:hover {
  color: white;
}


.extra-services {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  margin-top: 20px;

  border-top:
    1px solid var(--border);

  border-left:
    1px solid var(--border);
}


.extra-services > div {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  min-height: 80px;

  padding: 20px;

  border-right:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);
}


.extra-services span {
  color: #8a867f;

  font-size: 9px;
  font-weight: 700;
}


.extra-services strong {
  color: var(--cream);

  font-family: "Bebas Neue", sans-serif;

  font-size: 21px;

  font-weight: 400;
}



/* ==================================================
   STORY
================================================== */

.story {
  background: #0e0e0e;
}


.story-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 90px;

  align-items: center;
}


.story-copy > p {
  margin-top: 22px;

  color: #8a867f;

  font-size: 13px;

  line-height: 1.9;
}


.story-numbers {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  margin-top: 40px;

  border-top:
    1px solid var(--border);
}


.story-numbers > div {
  padding: 25px 20px 0 0;
}


.story-numbers strong {
  display: block;

  color: var(--copper-light);

  font-family: "Bebas Neue", sans-serif;

  font-size: 42px;

  font-weight: 400;
}


.story-numbers span {
  display: block;

  margin-top: 5px;

  color: #707070;

  font-size: 9px;
}


.story-image {
  position: relative;
}


.story-image img {
  width: 100%;

  aspect-ratio: 1.2;

  object-fit: cover;

  border-radius: 8px;
}


.story-stamp {
  position: absolute;

  right: -20px;
  bottom: -20px;

  width: 110px;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #111;

  background: var(--copper-light);

  border-radius: 50%;

  font-family: "Bebas Neue", sans-serif;

  font-size: 18px;

  letter-spacing: 1px;

  transform: rotate(-10deg);
}



/* ==================================================
   EXPERIENCE
================================================== */

.experience {
  padding: 100px 0;

  background: #181818;
}


.experience-title {
  max-width: 800px;

  margin-bottom: 45px;
}


.experience-title > span {
  color: #777;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 3px;
}


.experience-list {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid var(--border);

  border-left:
    1px solid var(--border);
}


.experience-list article {
  min-height: 250px;

  padding: 30px;

  border-right:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);
}


.experience-list article > span {
  color: var(--copper);

  font-family: "Bebas Neue", sans-serif;

  font-size: 18px;
}


.experience-list h3 {
  margin-top: 70px;

  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size: 28px;

  font-weight: 400;
}


.experience-list p {
  margin-top: 10px;

  color: #777;

  font-size: 11px;

  line-height: 1.7;
}



/* ==================================================
   TEAM
================================================== */

.team {
  background: #101010;
}


.team-list {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


.barber-card {
  overflow: hidden;

  background: #171717;

  border:
    1px solid var(--border);

  border-radius: 8px;
}


.barber-image {
  aspect-ratio: 0.9;

  overflow: hidden;
}


.barber-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    saturate(0.75);

  transition: 0.45s;
}


.barber-card:hover
.barber-image img {
  transform: scale(1.04);

  filter:
    saturate(1);
}


.barber-details {
  padding: 24px;
}


.barber-details > span {
  color: var(--copper-light);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 1.5px;
}


.barber-details h3 {
  margin-top: 8px;

  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size: 32px;

  font-weight: 400;
}


.barber-details p {
  margin-top: 9px;

  color: #7b7770;

  font-size: 11px;

  line-height: 1.7;
}


.barber-details a {
  display: inline-block;

  margin-top: 20px;

  color: var(--copper-light);

  font-size: 10px;
  font-weight: 700;
}



/* ==================================================
   GALLERY
================================================== */

.gallery {
  background: #151515;
}


.gallery-heading {
  max-width: 850px;

  margin-bottom: 55px;
}


.masonry-gallery {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  grid-auto-rows: 210px;

  gap: 10px;
}


.gallery-card {
  position: relative;

  padding: 0;

  overflow: hidden;

  background: #222;

  border: none;

  border-radius: 6px;
}


.gallery-card.tall {
  grid-row:
    span 2;
}


.gallery-card.wide {
  grid-column:
    span 2;
}


.gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.45s;
}


.gallery-card:hover img {
  transform: scale(1.05);
}



/* ==================================================
   REVIEWS
================================================== */

.reviews {
  padding: 100px 0;

  background: #0e0e0e;
}


.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 50px;
}


.reviews-score {
  text-align: right;
}


.reviews-score strong {
  display: block;

  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size: 70px;

  font-weight: 400;

  line-height: 1;
}


.reviews-score > span {
  display: block;

  margin-top: 5px;

  color: var(--copper-light);

  font-size: 12px;

  letter-spacing: 3px;
}


.reviews-score p {
  margin-top: 7px;

  color: #666;

  font-size: 9px;
}


.reviews-track {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}


.reviews-track article {
  min-height: 260px;

  display: flex;
  justify-content: space-between;
  flex-direction: column;

  padding: 28px;

  background: #171717;

  border:
    1px solid var(--border);

  border-radius: 8px;
}


.reviews-track article > p {
  color: #b1ada5;

  font-size: 14px;

  line-height: 1.8;
}


.reviews-track article strong {
  display: block;

  color: white;

  font-size: 11px;
}


.reviews-track article span {
  display: block;

  margin-top: 3px;

  color: #666;

  font-size: 9px;
}



/* ==================================================
   SCHEDULE CTA
================================================== */

.schedule-cta {
  position: relative;

  min-height: 520px;

  display: flex;
  align-items: center;

  overflow: hidden;
}


.schedule-bg {
  position: absolute;
  inset: 0;
}


.schedule-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


.schedule-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(12,12,12,0.95),
      rgba(12,12,12,0.55)
    );
}


.schedule-content {
  position: relative;

  z-index: 2;
}


.schedule-content > span {
  color: var(--copper-light);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 3px;
}


.schedule-content h2 {
  max-width: 750px;

  margin-top: 12px;
}


.schedule-content p {
  max-width: 520px;

  margin-top: 18px;

  color: #a4a098;

  font-size: 13px;

  line-height: 1.8;
}


.schedule-content .btn {
  margin-top: 28px;
}



/* ==================================================
   CONTACT
================================================== */

.contact {
  background: #121212;
}


.contact-layout {
  display: grid;

  grid-template-columns:
    1fr
    0.75fr;

  gap: 70px;

  align-items: stretch;
}


.contact-columns {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 0;

  margin-top: 40px;

  border-top:
    1px solid var(--border);

  border-left:
    1px solid var(--border);
}


.contact-columns > div {
  min-height: 120px;

  padding: 23px;

  border-right:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);
}


.contact-columns span {
  display: block;

  color: #666;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 2px;
}


.contact-columns strong {
  display: block;

  margin-top: 10px;

  color: white;

  font-size: 13px;

  line-height: 1.7;
}


.contact-whatsapp {
  display: inline-block;

  margin-top: 28px;

  color: var(--copper-light);

  font-size: 11px;
  font-weight: 700;
}


.map-placeholder {
  min-height: 480px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;

  text-align: center;

  background:
    repeating-linear-gradient(
      45deg,
      #171717,
      #171717 20px,
      #191919 20px,
      #191919 40px
    );

  border:
    1px solid var(--border);

  border-radius: 8px;
}


.map-placeholder span {
  color: var(--copper-light);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 2px;
}


.map-placeholder strong {
  display: block;

  margin-top: 8px;

  color: white;

  font-family: "Bebas Neue", sans-serif;

  font-size: 40px;

  font-weight: 400;
}


.map-placeholder p {
  max-width: 300px;

  margin-top: 12px;

  color: #777;

  font-size: 11px;

  line-height: 1.7;
}



/* ==================================================
   FOOTER
================================================== */

.footer {
  padding-bottom:
    env(safe-area-inset-bottom);

  background: #090909;

  border-top:
    1px solid var(--border);
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1fr
    0.4fr
    0.4fr
    0.4fr;

  gap: 60px;

  padding: 70px 0;
}


.footer-brand > p {
  max-width: 350px;

  margin-top: 20px;

  color: #666;

  font-size: 11px;

  line-height: 1.7;
}


.footer-nav {
  display: flex;
  flex-direction: column;

  gap: 11px;
}


.footer-nav h4 {
  margin-bottom: 7px;

  color: white;

  font-size: 10px;
}


.footer-nav a {
  color: #6e6a64;

  font-size: 10px;

  transition: 0.2s;
}


.footer-nav a:hover {
  color: var(--copper-light);
}


.footer-bottom {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid var(--border);
}


.footer-bottom p {
  color: #4e4b47;

  font-size: 9px;
}


.footer-bottom a {
  color: var(--copper-light);

  font-weight: 700;
}



/* ==================================================
   WHATSAPP
================================================== */

.whatsapp-float {
  position: fixed;

  right:
    max(
      20px,
      env(safe-area-inset-right)
    );

  bottom:
    max(
      20px,
      env(safe-area-inset-bottom)
    );

  z-index: 1200;

  width: 59px;
  height: 59px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;

  border-radius: 50%;

  box-shadow:
    0 15px 35px
    rgba(37,211,102,0.25);

  transition: 0.25s;
}


.whatsapp-float:hover {
  transform:
    translateY(-4px)
    scale(1.03);
}


.whatsapp-float svg {
  width: 30px;
  height: 30px;

  fill: white;
}



/* ==================================================
   GALLERY MODAL
================================================== */

.gallery-modal {
  position: fixed;
  inset: 0;

  z-index: 6000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 35px;

  opacity: 0;
  visibility: hidden;

  background:
    rgba(0,0,0,0.95);

  transition: 0.25s;
}


.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}


.gallery-modal > img {
  width: auto;

  max-width: 95vw;
  max-height: 90vh;

  object-fit: contain;
}


.gallery-modal-close {
  position: absolute;

  top:
    max(
      20px,
      env(safe-area-inset-top)
    );

  right:
    max(
      20px,
      env(safe-area-inset-right)
    );

  width: 45px;
  height: 45px;

  color: white;

  background: #171717;

  border:
    1px solid var(--border);

  border-radius: 50%;

  font-size: 24px;
}



/* ==================================================
   REVEAL
================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(22px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}



/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

  .desktop-nav {
    gap: 16px;
  }


  .header-book {
    display: none;
  }


  .hero-layout {
    grid-template-columns:
      1fr
      270px;

    gap: 40px;
  }


  .extra-services {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .experience-list {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .masonry-gallery {
    grid-template-columns:
      repeat(3, 1fr);
  }


  .footer-grid {
    grid-template-columns:
      1fr
      0.5fr
      0.5fr;

    gap: 40px;
  }


  .footer-brand {
    grid-column:
      span 3;
  }

}



/* ==================================================
   MOBILE / TABLET
================================================== */

@media (max-width: 820px) {

  .section {
    padding: 85px 0;
  }


  .desktop-nav {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .hero {
    min-height: 760px;
  }


  .hero-layout {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-top: 150px;
    padding-bottom: 60px;
  }


  .hero-side-card {
    max-width: 350px;
  }


  .quick-info-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .split-heading {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .service-row {
    grid-template-columns:
      180px
      1fr;
  }


  .service-meta {
    grid-column:
      span 2;

    min-height: 70px;

    align-items: center;
    justify-content: space-between;
    flex-direction: row;

    padding: 15px 25px;

    border-left: none;
    border-top:
      1px solid var(--border);
  }


  .story-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .story-image {
    max-width: 650px;
  }


  .team-list {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .barber-card:last-child {
    grid-column:
      span 2;

    max-width: 50%;

    margin-inline: auto;
  }


  .reviews-track {
    display: flex;

    gap: 14px;

    overflow-x: auto;

    scroll-snap-type:
      x mandatory;

    padding-bottom: 10px;
  }


  .reviews-track article {
    min-width: 75%;

    scroll-snap-align:
      start;
  }


  .contact-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .map-placeholder {
    min-height: 350px;
  }

}



/* ==================================================
   SMARTPHONE
================================================== */

@media (max-width: 600px) {

  .container {
    width:
      calc(100% - 28px);
  }


  .header-inner {
    min-height: 70px;
  }


  .logo-copy strong {
    font-size: 17px;
  }


  .hero {
    min-height: 720px;
  }


  .hero-image {
    object-position:
      63% center;
  }


  .hero-shade {
    background:
      linear-gradient(
        to bottom,
        rgba(10,10,10,0.45),
        rgba(10,10,10,0.95) 75%
      );
  }


  .hero-layout {
    padding-top: 130px;
  }


  .hero h1 {
    font-size:
      clamp(
        64px,
        22vw,
        90px
      );
  }


  .hero-main > p {
    font-size: 13px;
  }


  .hero-buttons {
    flex-direction: column;
  }


  .hero-buttons .btn {
    width: 100%;
  }


  .hero-side-card {
    width: 100%;
    max-width: none;
  }


  .quick-info-grid {
    grid-template-columns: 1fr 1fr;
  }


  .quick-info-grid > div {
    min-height: 95px;

    padding: 18px;
  }


  .quick-info span {
    font-size: 23px;
  }


  .split-heading h2,
  .story-copy h2,
  .experience-title h2,
  .gallery-heading h2,
  .reviews-top h2,
  .contact-main h2,
  .schedule-content h2 {
    font-size:
      clamp(
        48px,
        17vw,
        68px
      );
  }


  .service-row {
    grid-template-columns: 1fr;
  }


  .service-photo {
    height: 210px;
  }


  .service-meta {
    grid-column: auto;
  }


  .extra-services {
    grid-template-columns: 1fr;
  }


  .story-numbers {
    grid-template-columns: 1fr 1fr;
  }


  .story-stamp {
    width: 90px;
    height: 90px;

    right: 10px;
    bottom: -15px;

    font-size: 15px;
  }


  .experience-list {
    grid-template-columns: 1fr;
  }


  .experience-list article {
    min-height: 210px;
  }


  .experience-list h3 {
    margin-top: 45px;
  }


  .team-list {
    grid-template-columns: 1fr;
  }


  .barber-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  .masonry-gallery {
    grid-template-columns:
      1fr
      1fr;

    grid-auto-rows: 170px;
  }


  .gallery-card.wide {
    grid-column:
      span 2;
  }


  .gallery-card.tall {
    grid-row:
      span 2;
  }


  .reviews-top {
    align-items: flex-start;
    flex-direction: column;
  }


  .reviews-score {
    text-align: left;
  }


  .reviews-track article {
    min-width: 88%;
  }


  .schedule-cta {
    min-height: 500px;
  }


  .schedule-bg img {
    object-position:
      65% center;
  }


  .schedule-content .btn {
    width: 100%;
  }


  .contact-columns {
    grid-template-columns: 1fr;
  }


  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .footer-brand {
    grid-column: auto;
  }


  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;

    padding: 24px 0;
  }


  .whatsapp-float {
    width: 55px;
    height: 55px;

    right:
      max(
        15px,
        env(safe-area-inset-right)
      );

    bottom:
      max(
        15px,
        env(safe-area-inset-bottom)
      );
  }

}



/* ==================================================
   CELULARES ESTREITOS
================================================== */

@media (max-width: 390px) {

  .logo-copy {
    display: none;
  }


  .hero h1 {
    font-size: 64px;
  }


  .quick-info-grid {
    grid-template-columns: 1fr;
  }


  .story-numbers {
    grid-template-columns: 1fr;
  }


  .masonry-gallery {
    grid-template-columns: 1fr;

    grid-auto-rows: 240px;
  }


  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

}



/* ==================================================
   ACESSIBILIDADE
================================================== */

@media (
  prefers-reduced-motion:
  reduce
) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}

.map-box {
  min-height: 480px;
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 8px;
}

.map-box iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 480px;
}