:root {
  --black: #0a0a0a;
  --ink: #111;
  --white: #ffffff;
  --cream: #f5f5f3;
  --gray: #8a8a8a;
  --line: rgba(255, 255, 255, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

h1, h2, h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h3 { font-size: 1.5rem; letter-spacing: 0.04em; }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  /* keep clear of notch / rounded corners in standalone PWA mode */
  padding-left: max(2rem, env(safe-area-inset-left));
  padding-right: max(2rem, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--white);
}
.logo__img {
  height: 80px;
  width: auto;
  display: block;
}
.logo__img--footer { height: 150px; }

.nav__links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.6; }

.nav__socials {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.nav__social {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav__social:hover { opacity: 0.6; }
.nav__social svg { width: 22px; height: 22px; }

.nav__toggle {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--white);
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn--solid { background: var(--white); color: var(--black); }
.btn--solid:hover { background: transparent; color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); }

.section--dark .btn--solid { background: var(--white); color: var(--black); }
.section--dark .btn--solid:hover { background: transparent; color: var(--white); }

.section .btn,
.section .btn--ghost {
  border-color: var(--black);
  color: var(--black);
}
.section .btn--solid { background: var(--black); color: var(--white); }
.section .btn--solid:hover { background: transparent; color: var(--black); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
    url('images/hero.jpeg') center 25%/cover;
  padding: 8rem 2rem 4rem;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  pointer-events: none;
}
.hero__content { position: relative; max-width: 900px; }
.hero h1 { margin: 1rem 0; }
.hero .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero__tag {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 1.5rem auto 2.5rem;
  color: rgba(255,255,255,0.8);
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* SECTIONS */
.section {
  padding: 7rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.section--dark {
  background: var(--black);
  color: var(--white);
  max-width: 100%;
}
.section--dark .section__head h2 { color: var(--white); }
.section__head {
  text-align: center;
  margin-bottom: 4rem;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--black);
  border: 1px solid var(--black);
}
.service {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
}
.service:hover {
  background: var(--black);
  color: var(--white);
}
.service h3 { margin-bottom: 0.75rem; }
.service p { font-size: 0.95rem; color: inherit; opacity: 0.8; margin-bottom: 1.5rem; }
.service .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  display: block;
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  opacity: 0.9;
}

/* ABOUT */
.about {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__text h2 { margin-bottom: 1.5rem; }
.about__text p { margin-bottom: 1rem; color: rgba(255,255,255,0.75); }
.about__image {
  aspect-ratio: 4/5;
  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.35)),
    url('images/about.jpeg') center/cover;
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.1);
}
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stats strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
}
.stats span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.stats__yelp {
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.stats__yelp:hover { opacity: 0.7; transform: translateY(-2px); }
.stats__yelp strong { color: var(--white); }

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s, filter 0.4s;
  cursor: pointer;
}
/* Desktop (mouse): stylish grayscale that reveals color on hover.
   Touch devices have no hover, so they keep full color always. */
@media (hover: hover) and (pointer: fine) {
  .gallery__item { filter: grayscale(1) contrast(1.05); }
  .gallery__item:hover {
    transform: scale(0.98);
    filter: grayscale(0.3) contrast(1.1);
  }
}
.g1 { background-image: url('images/cut-1.jpeg'); }
.g2 { background-image: url('images/cut-2.jpeg'); }
.g3 { background-image: url('images/cut-3.jpeg'); }
.g4 { background-image: url('images/cut-4.jpeg'); }
.g5 { background-image: url('images/cut-5.jpeg'); }

/* VISIT */
.visit__grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}
.visit__info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.visit__addr {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.75);
}
.hours {
  list-style: none;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--line);
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.hours li span:first-child {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}
.hours li span:last-child { color: var(--gray); }

.visit__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.visit .btn--solid {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.visit .btn--solid:hover { background: transparent; color: var(--white); }

.visit__map {
  min-height: 400px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.85);
}

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
  padding: 3rem 2rem;
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.footer p { color: var(--gray); font-size: 0.9rem; }
.footer__copy { font-size: 0.75rem !important; letter-spacing: 0.1em; }

.social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.social__link {
  color: var(--white);
  display: inline-flex;
  transition: opacity 0.2s, transform 0.2s;
}
.social__link:hover { opacity: 0.65; transform: translateY(-2px); }
.social__link svg { width: 26px; height: 26px; }

/* RESPONSIVE */
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; margin-left: auto; }
  .nav__inner .btn { display: none; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats { flex-wrap: wrap; gap: 1.5rem; }
  .section { padding: 5rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }
  .stats { gap: 1.25rem; }
  .stats > div { flex: 1 1 40%; }
  .visit__info h3 { font-size: 1.6rem; }
  .footer { padding: 2.5rem 1.25rem; }
}
