:root {
  --black: #070707;
  --ink: #101010;
  --panel: #171717;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #d4af37;
  --gold-bright: #f0d37b;
  --white: #ffffff;
  --muted: #c8c8c8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  background: var(--black);
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 40px);
  width: 100%;
  height: 150px;
  padding: 8px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: 292px;
  height: 134px;
  overflow: hidden;
  line-height: 0;
}

.brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 292px;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.46));
  transform: translateY(-2px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: clamp(18px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 168px clamp(20px, 5vw, 72px) 64px;
  overflow: hidden;
  background-image: url("assets/hero-barber.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  content: "";
  background: linear-gradient(180deg, transparent, var(--black));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(circle at 75% 20%, rgba(201, 162, 74, 0.16), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: start;
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.65rem, 6.4vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.hero-area {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
}

.hero-copy {
  width: min(570px, 100%);
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.instagram-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.booking-group {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.booking-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
}

.location-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 22px 20px;
  border-top: 1px solid rgba(240, 211, 123, 0.22);
  border-bottom: 1px solid rgba(240, 211, 123, 0.22);
  color: var(--gold-bright);
  background: linear-gradient(90deg, rgba(201, 162, 74, 0.1), rgba(255, 255, 255, 0.03), rgba(201, 162, 74, 0.1));
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.location-strip span + span::before {
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.5);
  content: "•";
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 34px rgba(201, 162, 74, 0.25);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto 38px;
}

.section-heading h2 {
  max-width: 760px;
}

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

.service-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.service-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  border-radius: 6px;
  object-fit: cover;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-bright);
  font-weight: 800;
}

.service-card p {
  min-height: 78px;
  color: var(--muted);
}

.service-card strong {
  display: block;
  margin-top: auto;
  color: var(--gold-bright);
  font-size: 2.8rem;
  line-height: 1;
}

.featured-card {
  border-color: rgba(240, 211, 123, 0.42);
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.18), rgba(255, 255, 255, 0.04));
}

.about-section {
  background:
    linear-gradient(90deg, rgba(201, 162, 74, 0.16), transparent 44%),
    #101010;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.about-panel p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.instagram-panel,
.contact-content,
.booking-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.instagram-panel {
  justify-content: space-between;
  padding: 28px;
}

.ig-handle span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
}

.ig-handle p,
.contact-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 40px;
}

.contact-content {
  max-width: 860px;
  padding: clamp(28px, 5vw, 54px);
}

.contact-content p {
  margin-bottom: 28px;
}

.qr-section {
  padding-top: 48px;
  padding-bottom: 32px;
}

.booking-card {
  display: grid;
  justify-items: center;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 56px);
  border-color: rgba(212, 175, 55, 0.42);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.035)),
    #080808;
  box-shadow: var(--shadow);
}

.booking-card h2 {
  margin-bottom: 10px;
}

.booking-card p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.qr-code {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
  border: 8px solid var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.site-footer img {
  display: block;
  width: 92px;
  height: 48px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 106px;
    padding: 6px 16px;
  }

  .brand {
    width: 213px;
    height: 96px;
    overflow: hidden;
  }

  .brand img {
    max-width: 213px;
    max-height: 139px;
    transform: translate(-58px, 2px);
  }

  .nav-toggle {
    display: block;
    position: fixed;
    top: 35px;
    right: 20px;
    z-index: 50;
    flex: 0 0 auto;
    width: 37px;
    height: 37px;
    border-color: rgba(212, 175, 55, 0.8);
    color: var(--white);
    background: rgba(0, 0, 0, 0.72);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  .nav-toggle span {
    width: 16px;
    margin-block: 3px;
  }

  .site-nav {
    position: fixed;
    top: 106px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 34px;
    background-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.58));
  }

  h1 {
    max-width: 620px;
    font-size: clamp(2.35rem, 8vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 56px;
  }

  .section {
    padding: 72px 20px;
  }

  .location-strip {
    display: grid;
    gap: 4px;
  }

  .location-strip span + span::before {
    content: "";
    margin-right: 0;
  }

  .section-heading,
  .about-panel {
    display: block;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-icon {
    margin-bottom: 22px;
  }

  .service-card p {
    min-height: 0;
  }

  .instagram-panel {
    align-items: flex-start;
  }

  .booking-card .btn {
    order: 3;
    width: 100%;
    min-height: 56px;
  }

  .qr-code {
    order: 4;
    width: min(190px, 76vw);
    margin-top: 4px;
  }

}

@media (max-width: 460px) {
  .brand {
    width: 180px;
    height: 82px;
  }

  .brand img {
    max-width: 180px;
    max-height: 117px;
    transform: translate(-46px, 6px);
  }

  .nav-toggle {
    top: 35px;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.2rem, 9.4vw, 2.75rem);
    line-height: 0.95;
  }

  .hero-area {
    font-size: 0.96rem;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .instagram-panel .btn,
  .contact-content .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-group {
    justify-items: stretch;
  }

  .booking-card .btn {
    width: 100%;
  }

  .btn {
    padding-inline: 18px;
  }
}

@media (max-width: 500px) {
  .nav-toggle {
    right: clamp(20px, calc(100vw - 370px), 60px);
  }
}
