:root {
  --text-dark: #121317;
  --text-muted: #626875;
  --page-bg: #f2f4f7;
  --surface: #ffffff;
  --accent-red: #d92332;
  --accent-red-on-dark: #ff6b76;
  --accent-red-hover: #c91f2d;
  --accent-navy: #0c2872;
  --deep-navy: #101827;
  --line: rgba(12, 40, 114, 0.14);
  --shadow: 0 24px 70px rgba(10, 18, 32, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page-bg);
  color: var(--text-dark);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  color: var(--surface);
  background:
    linear-gradient(90deg, rgba(10, 14, 24, 0.94), rgba(12, 40, 114, 0.7)),
    url("assets/images/hero-storefront.jpeg") center / cover;
  padding: 24px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 0;
  position: relative;
  z-index: 2;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--surface);
  background: var(--accent-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent-red-on-dark);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 38px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.language-toggle span {
  display: grid;
  min-width: 34px;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.64);
}

.language-toggle span.is-active {
  background: var(--surface);
  color: var(--accent-navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
  max-width: 1180px;
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  padding: 90px 0 56px;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent-red-on-dark);
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 850px;
  font-size: 88px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--accent-red);
  color: var(--surface);
}

.btn-primary:hover {
  background: var(--accent-red-hover);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--surface);
}

.visit-card .btn-secondary {
  border-color: rgba(18, 19, 23, 0.22);
  color: var(--text-dark);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-meta span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  padding: 8px 12px;
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--surface);
  font-size: 28px;
  line-height: 1.1;
}

.hero-card p:not(.status-label) {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card a {
  color: var(--accent-red-on-dark);
  font-weight: 800;
  text-decoration: none;
}

.status-label {
  color: var(--accent-red-on-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-heading h2,
.section-copy h2,
.visit-card h2 {
  font-size: 56px;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.visit-card p {
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.service-card p {
  color: var(--text-muted);
}

.service-card span {
  color: var(--accent-navy);
  font-size: 28px;
  font-weight: 900;
}

.service-addons {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-addons span {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 800;
}

.service-addons strong {
  color: var(--accent-navy);
  font-size: 18px;
  line-height: 1.2;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 54px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 96px;
}

.image-panel {
  border: 4px solid var(--surface);
  overflow: hidden;
  min-height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: var(--text-dark);
  list-style: none;
}

.check-list li {
  padding-left: 32px;
  position: relative;
}

.check-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 3px solid var(--accent-red);
  border-radius: 50%;
  left: 0;
  position: absolute;
  top: 7px;
}

.dark-section {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(217, 35, 50, 0.18), transparent 32%),
    var(--deep-navy);
  color: var(--surface);
}

.dark-section .section-heading {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.dark-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.dark-section .eyebrow {
  color: var(--accent-red-on-dark);
}

.barber-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.barber-grid article {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.barber-photo,
.barber-photo-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(217, 35, 50, 0.24), rgba(12, 40, 114, 0.36)),
    rgba(255, 255, 255, 0.06);
}

.barber-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.barber-photo-placeholder {
  color: rgba(255, 255, 255, 0.86);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.barber-grid h3 {
  margin: 6px 0 12px;
  font-size: 25px;
}

.barber-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.barber-role {
  color: var(--accent-red-on-dark) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-top: 24px;
  text-transform: uppercase;
}

.barber-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.barber-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.barber-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  width: fit-content;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--surface);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.barber-call:hover {
  border-color: rgba(217, 35, 50, 0.72);
  color: var(--accent-red-on-dark);
}

.cuts-section {
  padding-bottom: 80px;
}

.cuts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cut-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(18, 19, 23, 0.08);
  overflow: hidden;
  position: relative;
}

.cut-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.cut-card span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 900;
}

.gallery-section {
  padding-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18, 19, 23, 0.08);
}

.gallery-grid img,
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  display: block;
  object-fit: cover;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(12, 40, 114, 0.12), rgba(217, 35, 50, 0.18)),
    repeating-linear-gradient(45deg, rgba(18, 19, 23, 0.04) 0 10px, transparent 10px 20px);
  color: rgba(12, 40, 114, 0.7);
  font-size: 34px;
  font-weight: 900;
}

.gallery-grid h3 {
  margin: 22px 22px 8px;
  font-size: 22px;
}

.gallery-grid p {
  color: var(--text-muted);
  margin: 0 22px 24px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 24px;
}

.visit-card,
.hours-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(18, 19, 23, 0.08);
}

.visit-card {
  padding: 42px;
}

.visit-card .contact-actions {
  margin-top: 28px;
}

.hours-card {
  padding: 34px;
}

.hours-card h3 {
  margin-bottom: 24px;
  font-size: 28px;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.hours-card dt {
  font-weight: 900;
}

.hours-card dd {
  color: var(--text-muted);
  text-align: right;
}

.location-photo-card {
  grid-column: 1 / -1;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(18, 19, 23, 0.08);
  overflow: hidden;
  position: relative;
}

.location-photo-card img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 38%;
}

.location-photo-card::after {
  background: linear-gradient(180deg, transparent, rgba(10, 14, 24, 0.76));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.location-photo-card figcaption {
  bottom: 24px;
  color: var(--surface);
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 1;
}

.location-photo-card span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.location-photo-card strong {
  display: block;
  font-size: 40px;
  line-height: 1.05;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.76);
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
}

footer a {
  color: var(--accent-red-on-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 24, 39, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
  }

  .language-toggle {
    margin: 10px 12px 8px;
  }

  .hero-grid,
  .split-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
    padding-top: 76px;
  }

  h1 {
    font-size: 62px;
  }

  .section-heading h2,
  .section-copy h2,
  .visit-card h2 {
    font-size: 44px;
  }

  .service-grid,
  .barber-grid {
    grid-template-columns: 1fr;
  }

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

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

  .image-panel {
    min-height: 360px;
  }

  .image-panel img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 18px;
  }

  .logo span:last-child {
    max-width: 190px;
  }

  h1 {
    font-size: 46px;
  }

  .section-heading h2,
  .section-copy h2,
  .visit-card h2 {
    font-size: 36px;
  }

  .location-photo-card strong {
    font-size: 28px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .section-copy p,
  .visit-card p {
    font-size: 16px;
  }

  .section,
  .visit-section {
    padding: 72px 18px;
  }

  .split-section {
    padding: 0 18px 72px;
  }

  .service-card,
  .visit-card,
  .hours-card {
    padding: 24px;
  }

  .service-card {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cuts-grid {
    grid-template-columns: 1fr;
  }

  .hours-card div {
    display: block;
  }

  .hours-card dd {
    margin-top: 4px;
    text-align: left;
  }

  .location-photo-card img {
    height: 340px;
  }
}
