:root {
  --bg: #060606;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(212, 175, 55, 0.45);
  --text: #f7f4ed;
  --muted: rgba(247, 244, 237, 0.72);
  --soft: rgba(247, 244, 237, 0.52);
  --gold: #d4af37;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.18), transparent 26%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #050505 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(6, 6, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
}

.brand-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero-section {
  padding: 48px 0 28px;
}

.hero-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-text,
.section-copy p,
.section-heading p,
.info-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  font-size: 1.07rem;
  margin: 22px 0 0;
}

.eyebrow-pill,
.section-label,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #efe0a6;
  background: rgba(255, 255, 255, 0.04);
}

.section-label,
.kicker {
  color: #e4cb75;
}

.hero-actions,
.section-heading,
.info-footer {
  display: flex;
  gap: 16px;
}

.hero-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #121212;
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.button-block {
  width: 100%;
}

.trust-grid,
.card-grid,
.hero-gallery,
.field-row,
.contact-lines,
.summary-list,
.hours-list {
  display: grid;
  gap: 16px;
}

.trust-grid {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card,
.hero-panel,
.service-card,
.barber-card,
.testimonial-card,
.info-panel,
.booking-panel,
.booking-summary,
.hours-row,
.gallery-card,
.action-card,
.expect-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card,
.service-card,
.testimonial-card,
.booking-panel,
.booking-summary,
.info-panel {
  padding: 24px;
}

.mini-card strong,
.service-card strong,
.booking-summary h3,
.action-card strong,
.expect-card strong,
.info-panel h3 {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.mini-card span,
.location-card span,
.summary-item span,
.hours-row span,
.contact-lines span,
.service-meta,
.barber-card p,
.testimonial-card p,
.expect-card li,
.site-footer,
.footer-bottom {
  color: var(--soft);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-panel::before,
.booking-panel::before,
.info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 48%);
  pointer-events: none;
}

.hero-panel-top,
.service-card-top,
.summary-item,
.hours-row,
.info-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-panel-top {
  margin-bottom: 0;
}

.hero-panel-top h2 {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.rating-chip {
  min-width: 96px;
  padding: 16px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.rating-chip strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
}

.rating-chip span {
  color: var(--soft);
  font-size: 0.82rem;
}

.hero-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-shot,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 0;
}

.hero-shot img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot img {
  aspect-ratio: 1.15;
}

.hero-shot::after,
.gallery-card::after,
.barber-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-shot figcaption,
.gallery-meta,
.barber-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
}

.location-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
}

.location-card strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 44px 0;
}

.section-copy,
.section-heading {
  margin-bottom: 22px;
}

.section-heading {
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading h2,
.section-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-top: 10px;
}

.section-heading p,
.section-copy p {
  margin: 12px 0 0;
}

.section-note,
.text-link {
  font-size: 0.95rem;
  color: #e2cf88;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  gap: 20px;
}

.service-card.featured {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.35);
}

.service-card p,
.testimonial-card p,
.barber-card p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.service-note {
  color: var(--soft);
  font-size: 0.88rem;
}

.service-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.service-meta span {
  padding: 8px 0 0;
  color: rgba(247, 244, 237, 0.72);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px 26px 24px;
  min-height: 100%;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), transparent);
  opacity: 0.55;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 68%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.45);
}

.service-card.featured::before {
  opacity: 1;
}

.service-card.featured::after {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 64%);
}

.service-card-top {
  position: relative;
  z-index: 1;
  align-items: flex-start;
}

.service-card-top > div:first-child {
  padding-right: 12px;
  flex: 1;
}

.service-card-top > div:last-child {
  min-width: 88px;
  text-align: right;
}

.service-card strong {
  display: block;
}

.service-card-top > div:last-child strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: #f4dd9f;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.service-card-top > div:last-child .service-note {
  display: block;
  margin-top: 8px;
}

.service-card p {
  max-width: 28ch;
  font-size: 1rem;
}

.service-card.featured strong:first-child {
  color: #fff7d6;
}

.barber-card {
  overflow: hidden;
  padding: 0;
}

.barber-image-wrap {
  position: relative;
}

.barber-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.barber-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #e5cf85;
  font-size: 0.78rem;
  font-weight: 800;
}

.barber-copy {
  padding: 22px;
}

.barber-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.barber-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

.gallery-card img {
  aspect-ratio: 0.95;
}

.gallery-meta strong,
.barber-meta strong {
  display: block;
  margin-bottom: 4px;
}

.testimonial-rating {
  color: #e0c86d;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.hours-row {
  padding: 18px 20px;
}

.info-panel,
.booking-panel {
  position: relative;
}

.walk-in-pill {
  min-width: 110px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  text-align: center;
}

.walk-in-pill span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e4cf80;
}

.walk-in-pill strong {
  display: block;
  margin-top: 4px;
}

.map-frame {
  overflow: hidden;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 290px;
  border: 0;
}

.info-footer {
  margin-top: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
}

.summary-list,
.contact-lines,
.hours-list {
  margin-top: 18px;
}

.expect-card,
.action-card {
  margin-top: 18px;
  padding: 20px;
}

.expect-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.action-card p {
  margin: 10px 0 16px;
  color: var(--muted);
}

.hidden {
  display: none;
}

.contact-lines div {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contact-lines span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-footer {
  padding: 38px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(6, 6, 6, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow);
}

.whatsapp-float span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.16);
  color: #ead88e;
  font-weight: 800;
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .card-grid,
  .trust-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .hero-panel-top,
  .service-card-top,
  .summary-item,
  .hours-row,
  .info-panel-head,
  .info-footer,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 74px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-tag {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(11, 11, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
    line-height: 1;
  }

  .eyebrow-pill {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-card {
    padding: 22px;
  }

  .service-card-top {
    gap: 12px;
  }

  .service-card-top > div:last-child {
    min-width: 0;
  }

  .service-card-top > div:last-child strong {
    min-width: 0;
  }

  .hero-panel {
    padding: 18px;
    gap: 14px;
  }

  .whatsapp-label {
    display: none;
  }
}
