:root {
  --black: #100c08;
  --black-2: #0c0907;
  --dark: #140f0a;
  --dark-card: #19120b;
  --cream: #ece3d4;
  --cream-text: #f4ecdd;
  --muted: #9a8f7e;
  --muted-light: #c8bba4;
  --gold: #c39a5c;
  --gold-light: #d8b072;
  --gold-dark: #a87f3f;
  --brown: #241b12;
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: #e8ded0;
  font-family: 'IM Fell Double Pica', serif;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

section[id] { scroll-margin-top: 78px; }
::selection { background: var(--gold); color: #161009; }
a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'Rye', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--gold { background: var(--gold); color: #161009; }
.button--gold:hover { background: var(--gold-light); }
.button--dark { background: #161009; color: #f1e8d8; }
.button--outline-light { background: transparent; border-color: rgba(232, 222, 208, 0.32); color: #e8ded0; }
.button--outline-light:hover { border-color: var(--gold); color: var(--gold-light); }
.button--outline-dark { background: transparent; border-color: #1a120a; color: #1a120a; }
.button--outline-dark:hover { background: #1a120a; color: #f1e8d8; }

@keyframes bi-pulse {
  0% { box-shadow: 0 0 0 0 rgba(195, 154, 92, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(195, 154, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(195, 154, 92, 0); }
}

@keyframes bi-blade {
  0% { left: -12%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 112%; opacity: 0; }
}

@keyframes bi-reveal {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gold);
  color: #161009;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px;
  font-family: 'Rye', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  animation: bi-pulse 2.4s infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: padding 0.3s ease, gap 0.3s ease;
}

.whatsapp-float:hover { padding: 14px 22px 14px 16px; gap: 10px; }
.whatsapp-float__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #161009;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 12px;
}
.whatsapp-float__text {
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.3s ease;
}
.whatsapp-float:hover .whatsapp-float__text { max-width: 120px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(16, 12, 8, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(195, 154, 92, 0.18);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  flex: none;
}
.brand-mark span {
  transform: rotate(-45deg);
  font-family: 'Rye', sans-serif;
  color: var(--gold);
  font-weight: 400;
  font-size: 16px;
}
.brand-mark--small { width: 30px; height: 30px; }
.brand-mark--small span { font-size: 13px; color: var(--gold-light); }
.brand-text {
  font-family: 'Rye', sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1e8d8;
  font-size: 16px;
  line-height: 1;
}
.brand-text strong {
  color: var(--gold);
  letter-spacing: 0.28em;
  font-size: 11px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a,
.mobile-nav a {
  color: #cdbfa8;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.mobile-nav a:hover { color: var(--gold-light); }
.header-cta { padding: 11px 20px; font-size: 12px; }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(195, 154, 92, 0.4);
  border-radius: 2px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.burger span {
  width: 18px;
  height: 2px;
  background: var(--gold-light);
  display: block;
}
.mobile-nav {
  display: none;
  border-top: 1px solid rgba(195, 154, 92, 0.18);
  background: #140f0a;
  padding: 14px 22px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: #d8cdb8;
  padding: 11px 4px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-nav a:last-child { border-bottom: 0; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c0907;
}
.hero__bg,
.hero__pattern,
.hero__placeholder,
.hero__overlay { position: absolute; inset: 0; }
.hero__bg { background: linear-gradient(115deg, #1c130b 0%, #241810 45%, #100b07 100%); }
.hero__pattern,
.image-card__pattern {
  background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.25) 0 2px, transparent 2px 26px);
  opacity: 0.5;
}
.hero__placeholder,
.quote-section__placeholder,
.image-card__placeholder,
.barber-card__photo span,
.map-placeholder span {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(236, 227, 212, 0.18);
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.hero__overlay { background: radial-gradient(120% 90% at 50% 30%, transparent 30%, rgba(10, 7, 5, 0.55) 75%, rgba(10, 7, 5, 0.92) 100%); }
.hero__content {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow strong,
.section-kicker {
  font-family: 'Rye', sans-serif;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.hero__title-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 2px 4px;
}
.hero h1 {
  margin: 0;
  font-family: 'Rye', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  font-size: 74px;
  color: var(--cream-text);
  animation: bi-reveal 1.05s cubic-bezier(0.7, 0, 0.18, 1) 0.2s both;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero__blade {
  position: absolute;
  top: -6%;
  bottom: -6%;
  width: 3px;
  background: linear-gradient(180deg, transparent, #f4e2bf, var(--gold-light), #f4e2bf, transparent);
  box-shadow: 0 0 22px 5px rgba(216, 176, 114, 0.85);
  animation: bi-blade 1.45s cubic-bezier(0.7, 0, 0.18, 1) both;
  pointer-events: none;
}
.hero__subtitle {
  max-width: 600px;
  margin: 24px auto 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted-light);
  font-weight: 300;
}
.hero__actions,
.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.trust-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-list span,
.check-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b6a98f;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.trust-list span::before,
.check-list span::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

.section-separator { background: var(--black); }
.separator-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px 0;
}
.separator-inner span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 154, 92, 0.5));
  transform-origin: center;
}
.separator-inner span:last-child { background: linear-gradient(90deg, rgba(195, 154, 92, 0.5), transparent); }
.separator-inner i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.separator-inner b {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.section { padding: 88px 0; }
.section--light { background: var(--cream); color: var(--brown); }
.section--dark { background: var(--black); }
.section--dark-alt { background: var(--dark); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  margin: 12px 0 0;
  font-family: 'Rye', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1.06;
  color: var(--cream-text);
}
.section-title--dark { color: #221911; }
.section-heading p,
.section-copy {
  margin: 16px 0px;
  max-width: 520px;
  color: #5c4f40;
  font-size: 16px;
  line-height: 1.75;
}
.section-heading p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}
.section-heading p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.section--light .section-heading p { color: #5c4f40; }
.section-copy--light { color: var(--muted); margin-left: 0; }

.image-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.image-card__pattern,
.image-card__placeholder { position: absolute; inset: 0; }
.image-card__placeholder { color: rgba(236, 227, 212, 0.45); }
.image-card__brand {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.image-card__brand strong {
  font-family: 'Rye', sans-serif;
  color: #e8ded0;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.check-list span {
  color: #3a2e22;
  font-family: 'Rye', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.check-list span::before { width: 9px; height: 9px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(40, 26, 14, 0.14);
  border-bottom: 1px solid rgba(40, 26, 14, 0.14);
}
.stats-grid article {
  text-align: center;
  padding: 30px 16px;
  border-right: 1px solid rgba(40, 26, 14, 0.12);
}
.stats-grid article:last-child { border-right: 0; }
.stats-grid strong {
  display: block;
  font-family: 'Rye', sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: var(--gold-dark);
  line-height: 1;
}
.stats-grid span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b5d4c;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Preçário estilo menu premium */
.price-menu-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(195, 154, 92, 0.14), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(216, 176, 114, 0.10), transparent 30%),
    var(--black);
}

.price-menu-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(10, 7, 5, 0.78), rgba(10, 7, 5, 0.88)),
    repeating-linear-gradient(130deg, rgba(195, 154, 92, 0.06) 0 1px, transparent 1px 34px),
    radial-gradient(ellipse at 50% 0%, rgba(76, 45, 23, 0.55), transparent 62%);
  opacity: 0.95;
}

.price-menu-section .container { position: relative; z-index: 1; }

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

.price-menu-card {
  position: relative;
  min-height: 510px;
  padding: 38px 40px 36px;
  border: 2px solid rgba(195, 154, 92, 0.62);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(19, 15, 11, 0.82), rgba(12, 9, 7, 0.88)),
    radial-gradient(circle at 50% 0%, rgba(195, 154, 92, 0.13), transparent 42%);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-menu-card::before {
  content: '';
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(195, 154, 92, 0.11);
  border-radius: 6px;
  pointer-events: none;
}

.price-menu-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 176, 114, 0.92);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(216, 176, 114, 0.18);
}

.price-menu-icon {
  width: 118px;
  height: 118px;
  margin: 0 auto 34px;
  color: var(--gold);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.icon-1 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.price-menu-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.price-menu-icon .cream { fill: #e9deca; }
.price-menu-icon .dark { fill: #15100a; }
.price-menu-icon--light { color: #e9deca; }
.price-menu-icon--light .cream { fill: var(--gold); }

.price-menu-card:hover .price-menu-icon {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 14px 26px rgba(216, 176, 114, 0.20));
}

.price-menu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-menu-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 10px;
}

.price-menu-line h3 {
  margin: 0;
  font-family: 'Rye', sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f4ecdd;
  white-space: nowrap;
}

.price-menu-line span {
  height: 1px;
  transform: translateY(-3px);
  border-bottom: 2px dotted rgba(232, 222, 208, 0.36);
}

.price-menu-line strong {
  font-family: 'Rye', sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  color: var(--gold-light);
  white-space: nowrap;
}

.price-menu-item p {
  margin: 9px 0 0;
  color: #b6ad9e;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.price-menu-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}


.barber-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(40, 26, 14, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.barber-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(40, 26, 14, 0.24); }
.barber-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, #2a1c10, #15100a);
  overflow: hidden;
}

.barber-card__photo span { position: absolute; inset: 0; color: rgba(236, 227, 212, 0.42); }
.barber-card__body { padding: 22px 22px 26px; }
.barber-card h3 {
  margin: 0;
  font-family: 'Rye', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 21px;
  color: #221911;
}
.barber-card strong {
  display: block;
  margin: 7px 0 0;
  font-family: 'Rye', sans-serif;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.barber-card p { margin: 13px 0 0; color: #5c4f40; font-size: 14px; line-height: 1.6; }
.barber-card a {
  display: block;
  text-align: center;
  margin-top: 20px;
  background: #1a120b;
  color: #e8ded0;
  text-decoration: none;
  font-family: 'Rye', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  padding: 13px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.barber-card a:hover { background: var(--gold); color: #161009; }

.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery-filters button {
  font-family: 'Rye', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 17px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid rgba(195, 154, 92, 0.32);
  transition: all 0.25s ease;
  background: transparent;
  color: #b0a48f;
}
.gallery-filters button.active,
.gallery-filters button:hover { background: var(--gold); color: #161009; border-color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(195, 154, 92, 0.12);
}
.gallery-item.is-hidden { display: none; }
.gallery-item__img {
  position: absolute;
  inset: 0;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.55s ease;
}
.gallery-item__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.22) 0 2px, transparent 2px 22px);
  opacity: 0.5;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.09); filter: brightness(1.12); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 7, 5, 0.82));
}
.gallery-item__overlay span {
  font-family: 'Rye', sans-serif;
  color: #9c7a3c;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 600;
}
.gallery-item__overlay strong {
  font-family: 'Rye', sans-serif;
  color: #f1e8d8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  font-weight: 500;
  margin-top: 2px;
}

.gallery-item__img {
  width: 100%;
  height: 110%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.section-subtitle {
  text-align: center;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 680px !important;
}

.bg-1 { background: linear-gradient(150deg, #2a1c10, #15100a); }
.bg-2 { background: linear-gradient(150deg, #241810, #120d08); }
.bg-3 { background: linear-gradient(150deg, #2e1f12, #16100a); }
.bg-4 { background: linear-gradient(150deg, #211710, #100b07); }
.bg-5 { background: linear-gradient(150deg, #2a1c10, #1a120b); }
.bg-6 { background: linear-gradient(150deg, #251a10, #13100a); }
.bg-7 { background: linear-gradient(150deg, #2c1e12, #15100a); }
.bg-8 { background: linear-gradient(150deg, #231810, #110c08); }
.bg-9 { background: linear-gradient(150deg, #291c11, #16100a); }

.quote-section {
  position: relative;
  background: #0c0907;
  overflow: hidden;
}
.quote-section__bg,
.quote-section__placeholder,
.quote-section__overlay { position: absolute; inset: 0; }
.quote-section__bg { background: linear-gradient(120deg, #241810, #15100a 60%, #0c0907); }
.quote-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.28) 0 2px, transparent 2px 28px);
  opacity: 0.45;
}
.quote-section__placeholder { color: rgba(236, 227, 212, 0.12); }
.quote-section__overlay { background: radial-gradient(100% 100% at 50% 50%, transparent 35%, rgba(10, 7, 5, 0.85)); }
.quote-section__content {
  position: relative;
  max-width: 920px;
  padding: 104px 32px;
  text-align: center;
}
.quote-section__bg {
  position: absolute;
  inset: 0;
  background-image: url("images/quote-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.quote-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgb(0 0 0 / 75%) 45%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.quote-section__content > span {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 30px;
}
.quote-section p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.3;
  color: #f1e8d8;
}
.quote-section strong {
  display: block;
  margin-top: 26px;
  font-family: 'Rye', sans-serif;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a120a;
  text-align: center;
  padding: 74px 0;
}
.section-kicker--dark { color: #3a2a14; }
.cta-section h2 {
  margin: 12px auto 0;
  font-family: 'Rye', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 46px;
  line-height: 1.05;
  max-width: 760px;
}
.cta-section p {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: #3a2a14;
}
.cta-section__actions { margin-top: 32px; }

.hours-card {
  background: linear-gradient(160deg, #1b130c, #100c08);
  border: 1px solid rgba(195, 154, 92, 0.22);
  padding: 24px;
  border-radius: 3px;
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row span {
  color: #968a78;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.hours-row strong {
  color: #cdbfa8;
  font-family: 'Rye', sans-serif;
  letter-spacing: 0.05em;
  font-size: 16px;
}
.hours-row--closed strong { color: #c0743f; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(40, 26, 14, 0.08);
  border-radius: 3px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(40, 26, 14, 0.08);
}
.contact-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 127, 63, 0.35);
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.contact-card strong {
  display: block;
  font-family: 'Rye', sans-serif;
  color: #221911;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.contact-card p {
  margin: 8px 0 0;
  color: #5c4f40;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
}
.contact-card a { color: #5c4f40; text-decoration: none; }
.contact-card a:hover { color: var(--gold-dark); }

.map-section {
  background: #100c08;
  padding: 88px 0;
}
.map-placeholder {
  position: relative;
  min-height: 360px;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(150deg, #2a1c10, #0d0a07);
  border: 1px solid rgba(195, 154, 92, 0.18);
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.45;
}
.map-placeholder span { position: absolute; inset: 0; color: rgba(236, 227, 212, 0.3); }
.map-placeholder a {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--gold);
  color: #161009;
  text-decoration: none;
  font-family: 'Rye', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 12px 20px;
  border-radius: 2px;
  transition: background 0.2s ease;
}
.map-placeholder a:hover { background: var(--gold-light); }

.site-footer {
  background: #0c0907;
  border-top: 1px solid rgba(195, 154, 92, 0.18);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand strong {
  font-family: 'Rye', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f1e8d8;
  font-size: 18px;
}
.site-footer p {
  margin: 18px 0 0;
  color: #8a7e6c;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-title {
  display: block;
  font-family: 'Rye', sans-serif;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.site-footer a,
.site-footer .footer-grid span:not(.brand-mark):not(.brand-mark span) {
  display: block;
  color: #a89c89;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom span {
  color: #6f6555;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.footer-bottom span:last-child {
  font-size: 12px;
  font-family: monospace;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .price-menu-grid { gap: 20px; }
  .price-menu-card { padding: 34px 28px; }
  .price-menu-line h3 { font-size: 16px; }
  .price-menu-item p { font-size: 14px; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 12px; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .container { width: min(100% - 44px, 1180px); }
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .split-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .cards-grid, .stats-grid, .price-menu-grid { grid-template-columns: 1fr; }
  .price-menu-card { min-height: auto; }
  .stats-grid article { border-right: 0; border-bottom: 1px solid rgba(40, 26, 14, 0.12); }
  .stats-grid article:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 36px, 1180px); }
  .hero { min-height: 86vh; }
  .hero__content { padding-top: 86px; padding-bottom: 86px; }
  .hero h1 { font-size: 35px; }
  .hero__subtitle { font-size: 16px; }
  .eyebrow strong { letter-spacing: 0.16em; }
  .section { padding: 68px 0; }
  .section-title, .cta-section h2 { font-size: 34px; }
  .quote-section p { font-size: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .price-menu-card { padding: 30px 22px; }
  .price-menu-icon { width: 96px; height: 96px; margin-bottom: 28px; }
  .price-menu-line h3 { font-size: 15px; }
  .price-menu-line strong { font-size: 18px; }
  .contact-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.promo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.55) 45%,
    rgba(10, 10, 10, 0.35) 100%
  );
}

.barber-card__photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #111;
}

.barber-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}


