/* ═════════════════════════════════════════════
   LAYLOW CUTZ — v5 simplified
   charcoal #26292e · cream #f2ead9 · barber red #b23a35
   ═════════════════════════════════════════════ */

:root {
  --ink: #17191c;
  --bg: #26292e;
  --panel: #1e2126;
  --cream: #f2ead9;
  --cream-dim: #b8b1a2;
  --muted: #7e7a71;
  --red: #b23a35;
  --red-bright: #d3453e;
  --line: rgba(242, 234, 217, 0.1);
  --display: 'Bebas Neue', sans-serif;
  --body: 'Manrope', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--cream); }

img { display: block; max-width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.container-s { width: min(760px, 92vw); margin: 0 auto; text-align: center; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px min(4vw, 48px);
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(23, 25, 28, 0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 12px min(4vw, 48px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--cream-dim); text-decoration: none;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--cream); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block;
  font-family: var(--display); font-size: 1rem; letter-spacing: 0.14em;
  color: var(--cream); text-decoration: none;
  background: var(--red);
  padding: 12px 26px;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-big { padding: 17px 42px; font-size: 1.15rem; }
.btn-ghost {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(242, 234, 217, 0.4);
}
.btn-ghost:hover { background: transparent; box-shadow: inset 0 0 0 1.5px var(--cream); }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.85) contrast(1.08) brightness(0.5);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 45%, rgba(23,25,28,0.7), rgba(23,25,28,0.3) 55%, transparent),
    linear-gradient(180deg, rgba(23,25,28,0.5), transparent 30%, transparent 65%, var(--bg));
}
.hero-inner {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding: 120px 20px 80px;
}
.hero-mark img { width: min(620px, 82vw); height: auto; }
.hero-cutz {
  font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.6em; text-indent: 0.6em;
  color: transparent; -webkit-text-stroke: 1.5px var(--red-bright);
  margin-top: 16px;
}
.hero-tag {
  color: var(--cream-dim); font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  margin-top: 26px; max-width: 54ch;
}
.hero-cta { margin-top: 36px; }
.hero-note { margin-top: 18px; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ═══ SECTIONS ═══ */
.sec { padding: clamp(80px, 10vw, 130px) 0; }
.label {
  font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.45em;
  color: var(--red-bright); margin-bottom: 10px;
}
.h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1;
  color: var(--cream); margin-bottom: 12px;
}

/* fade-in on scroll */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; }

/* ═══ SERVICES ═══ */
.services { background: var(--panel); border-block: 1px solid var(--line); }
.rows { margin-top: clamp(30px, 4vw, 48px); text-align: left; }
.row {
  display: flex; align-items: baseline; gap: 18px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--cream);
}
.row:first-child { border-top: 1px solid var(--line); }
.row-name { font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: 0.04em; line-height: 1.1; transition: color 0.3s; }
.row:hover .row-name { color: var(--red-bright); }
.row-name small {
  display: block; font-family: var(--body); font-size: 0.8rem; font-weight: 500;
  color: var(--muted); margin-top: 4px; letter-spacing: 0;
}
.row-dots { flex: 1; border-bottom: 1.5px dotted rgba(242, 234, 217, 0.2); transform: translateY(-6px); }
.row-price { font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

.member {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 36px; padding: 22px 28px;
  background: var(--red);
  text-decoration: none; color: var(--cream); text-align: left;
  transition: background 0.3s, transform 0.3s;
}
.member:hover { background: var(--red-bright); transform: translateY(-2px); }
.member b { font-family: var(--display); font-weight: 400; font-size: 1.3rem; letter-spacing: 0.06em; display: block; }
.member span { font-size: 0.85rem; color: rgba(242, 234, 217, 0.85); }
.member em { font-family: var(--display); font-style: normal; font-size: 1.3rem; white-space: nowrap; }

/* ═══ WORK ═══ */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: clamp(30px, 4vw, 48px);
}
.grid a { display: block; overflow: hidden; aspect-ratio: 1; }
.grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s;
}
.grid a:hover img { opacity: 0.85; }

.ig {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: clamp(30px, 4vw, 44px);
}
.ig > img { width: 52px; height: 52px; border-radius: 50%; }
.ig-meta { text-align: left; line-height: 1.35; }
.ig-meta a {
  font-family: var(--display); font-size: 1.15rem; letter-spacing: 0.04em;
  color: var(--cream); text-decoration: none;
}
.ig-meta a:hover { color: var(--red-bright); }
.ig-meta span { display: block; font-size: 0.78rem; color: var(--muted); }
.ig .btn-ghost { padding: 9px 20px; font-size: 0.9rem; }

/* ═══ REVIEWS ═══ */
.reviews { background: var(--panel); border-block: 1px solid var(--line); }
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(30px, 4vw, 48px);
}
.quotes blockquote { border-top: 2px solid var(--red); padding-top: 20px; }
.quotes p { color: var(--cream-dim); font-size: 0.93rem; }
.quotes footer {
  margin-top: 14px; font-family: var(--display);
  letter-spacing: 0.12em; font-size: 0.95rem; color: var(--cream);
}

/* ═══ CONTACT ═══ */
.contact-sub { color: var(--cream-dim); margin: 6px 0 30px; }
.contact-info { list-style: none; margin-top: 38px; }
.contact-info li { font-size: 0.88rem; color: var(--muted); padding: 4px 0; }
.contact-info a { color: var(--cream-dim); text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: var(--red-bright); }

/* ═══ FOOTER ═══ */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding: 30px 0; }
.footer-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-in img { height: 34px; width: auto; }
.footer-in span { font-size: 0.78rem; color: var(--muted); }
.footer-in a { color: var(--cream-dim); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.08em; }
.footer-in a:hover { color: var(--red-bright); }

/* ═══ MOTION SAFETY ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .fade { opacity: 1 !important; transform: none !important; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .br-d { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .quotes { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .member { flex-direction: column; align-items: flex-start; gap: 8px; }
  .row-dots { display: none; }
  .row { justify-content: space-between; }
  .footer-in { flex-direction: column; text-align: center; }
}
