@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap");
:root {
  color-scheme: dark;
  --bg: #080b10;
  --surface: #10151d;
  --surface2: #151c26;
  --line: #242b35;
  --muted: #9ba6b5;
  --cyan: #35dcf4;
  --blue: #1665f5;
  --text: #f2f5f9;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
a,
button {
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
}
h3 {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}
strong {
  font-weight: 600;
}
header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
  background: var(--bg);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: 0.05em;
}
.brand-bottom {
  display: block;
  letter-spacing: 0.18em;
}
.brand-dot {
  color: var(--cyan);
}
.monogram {
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.12em;
  border-right: 1px solid #42464e;
  padding-right: 16px;
}
.monogram span {
  font-size: 1rem;
  color: var(--cyan);
  vertical-align: top;
  margin-left: 4px;
}
header nav {
  display: flex;
  gap: 28px;
  font-size: 0.875rem;
}
header nav a {
  color: #b9c0cb;
}
header nav a:hover {
  color: var(--cyan);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--blue);
  border: 1px solid transparent;
  color: white;
  border-radius: 5px;
  padding: 15px 23px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
}
.btn:hover {
  background: #287aff;
  transform: translateY(-2px);
}
.btn span {
  font-size: 1.2rem;
}
.btn.small {
  padding: 10px 17px;
  font-size: 0.8rem;
  gap: 16px;
}
.btn.ghost {
  background: transparent;
  border-color: #364150;
}
.btn.ghost:hover {
  background: #1b2530;
}
.btn.light {
  background: white;
  color: #09295a;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.4rem;
}
.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 65px 7% 75px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, #080b10 3%, #080b10e6 32%, #080b1020 77%),
    linear-gradient(0deg, #080b10 0%, transparent 30%),
    url("/assets/hero-staging.png");
  background-position:
    center,
    center,
    center 44%;
  background-size: cover;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, #006dff20 100%);
}
.hero-content {
  position: relative;
  max-width: 700px;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cyan {
  color: var(--cyan);
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8c9d9;
  margin-bottom: 24px;
  font-size: 0.7rem;
}
.hero-kicker span {
  height: 6px;
  width: 6px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.hero h1 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(5rem, 8vw, 8.5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 27px;
}
.hero h1 > span {
  color: var(--cyan);
}
.hero p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #bac2ce;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.hero-proof {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 36px;
}
.mini-avatars {
  display: flex;
  padding-left: 8px;
}
.mini-avatars b {
  background: #1b3145;
  border: 2px solid #080b10;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  font-size: 0.65rem;
}
.mini-avatars b:nth-child(2) {
  background: #30445e;
}
.mini-avatars b:nth-child(3) {
  background: #4b4f60;
}
.stars {
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 3px;
}
.hero-proof small {
  font-size: 0.7rem;
}
.hero-stamp {
  position: absolute;
  right: 7%;
  bottom: 105px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-top: 1px solid #8f9da750;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.hero-stamp b {
  font-size: 3.8rem;
  color: var(--cyan);
  line-height: 1;
}
.hero-index {
  position: absolute;
  bottom: 25px;
  right: 7%;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  color: #a5adba;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 7%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  gap: 24px;
}
.benefits > div {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}
.benefits > div:last-child {
  border: 0;
}
.benefits > div > span {
  font-size: 1.6rem;
  color: var(--cyan);
}
.benefits strong {
  font-size: 0.9rem;
}
.benefits p {
  font-size: 0.78rem;
  margin: 4px 0 0;
}
.section {
  padding: 80px 7%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.section-heading h2 {
  margin: 10px 0 0;
}
.section-heading h3 {
  margin: 0;
}
.text-link {
  font-size: 0.85rem;
  white-space: nowrap;
  color: #cfdae7;
}
.text-link:hover {
  color: var(--cyan);
}
.grid {
  display: grid;
  gap: 22px;
}
.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card {
  background: linear-gradient(130deg, #141b25, #0e131b);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.service-card:hover {
  border-color: #31728c;
  transform: translateY(-4px);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
  gap: 10px;
}
.card-top .eyebrow {
  font-size: 0.63rem;
  color: var(--muted);
}
.service-icon {
  height: 42px;
  width: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: #122b37;
  border: 1px solid #1d4253;
  border-radius: 8px;
  font-size: 1.5rem;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.service-card p {
  font-size: 0.85rem;
  min-height: 68px;
}
.card-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.card-bottom strong {
  font-size: 1.25rem;
}
.card-bottom .muted {
  font-size: 0.75rem;
}
.round-link {
  border: 1px solid #35404d;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1.2rem;
}
.round-link:hover {
  background: var(--blue);
}
.team-section {
  padding-top: 15px;
}
.barber-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.barber-art {
  background:
    radial-gradient(ellipse at 70% 100%, var(--barber-color), transparent 75%),
    #0f151f;
  height: 230px;
  position: relative;
  overflow: hidden;
}
.barber-number {
  position: absolute;
  top: 20px;
  left: 24px;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #a5bfce;
}
.barber-initials {
  position: absolute;
  bottom: -35px;
  right: 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 1;
  font-size: 220px;
  font-weight: 800;
  color: #ffffff0d;
  letter-spacing: -0.06em;
}
.barber-alias {
  position: absolute;
  left: 24px;
  bottom: 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.barber-info {
  padding: 25px;
}
.barber-info h3 {
  margin: 10px 0;
}
.barber-info p {
  font-size: 0.85rem;
}
.barber-info .eyebrow {
  font-size: 0.63rem;
}
.final-cta {
  margin: 10px 7% 70px;
  padding: 45px;
  background: linear-gradient(110deg, #144aaf, #073677);
  border: 1px solid #3c76cd;
  border-radius: 8px;
  position: relative;
}
.final-cta h2 {
  margin: 10px 0 25px;
  font-size: 3rem;
}
.final-cta .eyebrow {
  color: #bedafa;
}
footer {
  margin: 0 5%;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 0.75rem;
  color: #acb6c4;
}
footer .brand {
  font-size: 0.8rem;
}
.muted {
  color: var(--muted);
}
.page {
  max-width: 1400px;
  margin: auto;
  padding: 60px 6% 90px;
  min-height: 70vh;
}
.page-title {
  margin-bottom: 35px;
}
.page-title h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 12px 0 18px;
}
.page-title p {
  font-size: 0.95rem;
  max-width: 700px;
}
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.chip {
  border: 1px solid #303a48;
  background: transparent;
  color: #c4cdd9;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 0.8rem;
}
.chip:hover {
  border-color: var(--cyan);
}
.chip.active {
  background: #143249;
  border-color: #28738e;
  color: var(--cyan);
}
.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 28px;
  border-radius: 8px;
  min-width: 0;
}
.narrow {
  max-width: 850px;
}
.steps {
  list-style: none;
  display: flex;
  padding: 0;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 40px;
}
.steps li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.steps li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.steps .current {
  color: white;
}
.steps .current > span {
  background: var(--blue);
  border-color: var(--blue);
}
.steps .done {
  color: var(--cyan);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 25px;
}
.booking-panel h2 {
  font-size: 1.8rem;
}
.choices {
  display: grid;
  gap: 12px;
}
.choice {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  padding: 18px;
  background: #111923;
  border: 1px solid #303a48;
  border-radius: 6px;
  color: white;
}
.choice > span:nth-child(2) {
  flex: 1;
}
.choice strong {
  display: block;
  font-size: 0.95rem;
}
.choice small {
  margin-top: 5px;
}
.choice b {
  font-size: 0.9rem;
}
.choice.selected {
  border-color: var(--cyan);
  background: #123041;
}
.choice:hover {
  border-color: #497c94;
}
.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.booking-summary {
  align-self: start;
  padding: 32px;
  background: radial-gradient(at top right, #123243, #10151d 65%);
}
.booking-summary h3 {
  font-size: 2rem;
  margin: 20px 0 30px;
}
.summary-line {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.9;
}
.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 25px 0;
}
.total strong {
  font-size: 1.7rem;
  color: var(--cyan);
}
.booking-summary p {
  font-size: 0.75rem;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.time-grid button {
  padding: 18px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.85rem;
  margin-bottom: 22px;
  color: #c9d3df;
}
input,
select,
textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #35404e;
  border-radius: 5px;
  padding: 12px;
  color: white;
  background: #0b1119;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.check-label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.check-label input {
  width: 18px;
  height: 18px;
}
.notice {
  background: #102735;
  border: 1px solid #214155;
  border-radius: 6px;
  padding: 14px;
  font-size: 0.85rem;
  color: #a8cddd;
}
.review > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.review strong {
  overflow-wrap: anywhere;
  text-align: right;
}
.review span {
  color: var(--muted);
}
.success-panel {
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.success-panel h1 {
  font-size: 3rem;
  margin: 20px 0;
}
.success-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  background: #133e3e;
  color: var(--cyan);
  width: 65px;
  height: 65px;
  font-size: 2rem;
  border-radius: 50%;
}
.success-panel .btn {
  margin: 10px;
}
.success-panel .muted {
  font-size: 0.8rem;
  margin-top: 22px;
}
.avatar {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: #173348;
  border: 1px solid #2b5267;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #93e6ff;
  font-size: 0.8rem;
}
.avatar.large {
  width: 65px;
  height: 65px;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.admin-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 80vh;
}
.sidebar {
  padding: 35px 20px;
  border-right: 1px solid var(--line);
  position: relative;
}
.sidebar > .eyebrow {
  font-size: 0.65rem;
  color: #7e8da2;
}
.sidebar h3 {
  font-size: 1rem;
  margin-top: 12px;
}
.workspace-badge {
  font-size: 0.65rem;
  border: 1px solid #274055;
  border-radius: 4px;
  padding: 5px 8px;
  color: #7abce9;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 35px;
}
.sidebar nav a {
  font-size: 0.85rem;
  color: #aab8ca;
  padding: 11px 13px;
  display: flex;
  gap: 12px;
  border-radius: 5px;
  border: 1px solid transparent;
}
.sidebar nav a.active {
  background: #122c42;
  border-color: #1b4562;
  color: #74d7ff;
}
.sidebar nav a:hover {
  background: #152335;
}
.sidebar-bottom {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
}
.sidebar-bottom small {
  font-size: 0.6rem;
}
.admin-main {
  padding: 25px 35px 60px;
  min-width: 0;
  background: linear-gradient(130deg, #0e1521, #080b10 50%);
}
.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding: 0 0 20px;
  margin-bottom: 35px;
}
.admin-top .muted {
  margin-left: 10px;
}
.date-label {
  color: var(--muted);
}
.admin-main .page-title h1 {
  font-size: 2.4rem;
}
.admin-main .page-title .eyebrow {
  font-size: 0.65rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.stats.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat {
  border: 1px solid var(--line);
  background: linear-gradient(130deg, #15202e, #10151d);
  border-radius: 8px;
  padding: 21px;
}
.stat > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #bac7d8;
  font-size: 0.75rem;
}
.stat i {
  font-style: normal;
  color: var(--cyan);
}
.stat > strong {
  display: block;
  font-size: clamp(1.7rem, 2.3vw, 2.7rem);
  margin: 14px 0 8px;
  letter-spacing: -0.04em;
}
.stat small {
  font-size: 0.65rem;
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.quick-link {
  font-size: 0.78rem;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101822;
}
.quick-link span {
  float: right;
  color: var(--cyan);
}
.quick-link:hover {
  border-color: var(--cyan);
}
.table-wrap {
  overflow-x: auto;
  width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.8rem;
  white-space: nowrap;
}
th {
  font-size: 0.7rem;
  color: #93a1b3;
  font-weight: 500;
  padding: 15px 12px;
  border-bottom: 1px solid #303948;
}
td {
  padding: 19px 12px;
  border-bottom: 1px solid #232c39;
}
tr:last-child td {
  border: 0;
}
td small {
  margin-top: 4px;
  font-size: 0.7rem;
}
td select {
  font-size: 0.75rem;
  padding: 7px;
  width: auto;
  max-width: 140px;
}
.badge {
  display: inline-block;
  color: #7bbdff;
  border: 1px solid #25486a;
  background: #142840;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.7rem;
  white-space: nowrap;
}
.badge.green {
  color: #7ad9b2;
  border-color: #275748;
  background: #123127;
}
.badge.red {
  color: #f9a6af;
  border-color: #603942;
  background: #341e28;
}
.badge.vip {
  color: #d1b7ff;
  border-color: #50436e;
  background: #2a233c;
}
.empty {
  padding: 35px;
  text-align: center;
  color: var(--muted);
}
.toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.toolbar > .btn {
  flex-shrink: 0;
}
.inline-label {
  max-width: 350px;
}
.search-label {
  max-width: 380px;
}
.cash-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.cash-row:last-child {
  border: 0;
}
.cash-row > div:first-child {
  flex: 1;
  min-width: 160px;
}
.row-actions {
  display: flex;
  gap: 8px;
}
.cash-row small {
  margin-top: 5px;
}
.chart {
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  justify-content: space-around;
  padding-top: 25px;
}
.chart > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 0.7rem;
  color: #96dfff;
}
.bar {
  background: linear-gradient(0deg, #134ca8, #36d6f8);
  width: 100%;
  max-width: 42px;
  border-radius: 4px 4px 0 0;
  min-height: 2px;
}
.chart small {
  font-size: 0.7rem;
}
.metric-row {
  margin: 22px 0;
}
.metric-row > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.track {
  background: #1c2937;
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.track > span {
  height: 100%;
  background: linear-gradient(90deg, #1d64f1, #39d8f4);
  display: block;
}
.spaced {
  margin-top: 25px;
}
.rank {
  display: flex;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: 0.85rem;
}
.rank:last-child {
  border: 0;
}
.rank > strong {
  flex: 1;
}
.rank > span:last-child {
  color: var(--muted);
}
dialog {
  background: #111923;
  color: white;
  border: 1px solid #36475c;
  border-radius: 10px;
  padding: 35px;
  width: min(650px, 92vw);
  max-height: 85vh;
  overflow: auto;
}
dialog::backdrop {
  background: #01060ce0;
  backdrop-filter: blur(4px);
}
dialog h2 {
  font-size: 1.8rem;
  margin-right: 25px;
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 1.7rem;
  color: #b5c3d6;
  border: 0;
  background: none;
}
.danger {
  color: #f79da8;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: #1b3544;
  border: 1px solid #41788d;
  padding: 14px 24px;
  border-radius: 7px;
  color: white;
  z-index: 20;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  max-width: 90vw;
  width: max-content;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 9.2rem;
  }
  .hero-photo {
    background-position:
      center,
      center,
      right center;
  }
}
@media (max-width: 1100px) {
  header {
    padding: 0 4%;
    gap: 15px;
  }
  header nav {
    gap: 18px;
  }
  .header-actions {
    gap: 15px;
  }
  .admin-layout {
    grid-template-columns: 205px minmax(0, 1fr);
  }
  .sidebar {
    padding: 30px 12px;
  }
  .admin-main {
    padding: 25px 20px 50px;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefits {
    gap: 15px;
  }
  .benefits > div {
    gap: 10px;
  }
  .hero {
    min-height: 640px;
  }
  .hero h1 {
    font-size: 7rem;
  }
  .hero-stamp {
    right: 5%;
  }
  .service-card {
    padding: 22px;
  }
  .admin-main .grid.two {
    grid-template-columns: 1fr;
  }
  .card-top .eyebrow {
    font-size: 0.6rem;
  }
}
@media (max-width: 760px) {
  header {
    height: 78px;
    padding: 0 5%;
  }
  .brand {
    font-size: 0.75rem;
    gap: 8px;
  }
  .monogram {
    font-size: 1.7rem;
    padding-right: 12px;
  }
  header nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 25px;
    background: #101923;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 20px;
  }
  .menu-open nav {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .account-link {
    display: none;
  }
  .header-actions {
    gap: 13px;
  }
  .header-actions .btn {
    font-size: 0.75rem;
    padding: 9px 12px;
    gap: 10px;
  }
  .hero {
    min-height: 710px;
    align-items: flex-start;
    padding: 300px 6% 75px;
  }
  .hero-photo {
    background-position:
      center,
      center,
      65% top;
    background-image:
      linear-gradient(90deg, #080b1030, #080b1000),
      linear-gradient(0deg, #080b10 0%, transparent 55%), url("/assets/hero-staging.png");
    background-size: 100% 390px, 100% 390px, auto 390px;
    background-repeat: no-repeat;
    background-position: top, top, 65% top;
  }
  .hero h1 {
    font-size: 6.3rem;
  }
  .hero-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }
  .hero p {
    font-size: 0.85rem;
    max-width: 330px;
  }
  .hero-buttons {
    gap: 10px;
  }
  .hero-buttons .btn {
    font-size: 0.8rem;
    padding: 13px 15px;
    gap: 18px;
  }
  .hero-stamp {
    display: none;
  }
  .hero-index {
    left: 6%;
    right: auto;
    font-size: 0.55rem;
  }
  .benefits {
    margin: 0 6%;
    grid-template-columns: 1fr;
    padding: 15px 0;
    gap: 0;
  }
  .benefits > div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .benefits > div > span {
    width: 30px;
    text-align: center;
  }
  .section {
    padding: 55px 6%;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .section-heading h2 {
    font-size: 2rem;
  }
  .three,
  .two {
    grid-template-columns: 1fr;
  }
  .service-card p {
    min-height: 0;
  }
  .card-top {
    margin-bottom: 25px;
  }
  .service-card {
    padding: 25px;
  }
  .team-section {
    padding-top: 0;
  }
  .barber-art {
    height: 200px;
  }
  .barber-initials {
    font-size: 210px;
    right: 25px;
  }
  .final-cta {
    margin: 0 6% 45px;
    padding: 30px;
  }
  .final-cta h2 {
    font-size: 2.4rem;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0;
    gap: 14px;
  }
  .page {
    padding: 40px 5% 60px;
  }
  .page-title h1 {
    font-size: 2.6rem;
  }
  .page-title .eyebrow {
    font-size: 0.65rem;
  }
  .steps {
    gap: 8px;
    overflow: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  .steps li {
    flex-direction: column;
    min-width: 50px;
    font-size: 0.65rem;
    gap: 7px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-panel {
    padding: 22px;
  }
  .booking-summary {
    order: 2;
  }
  .booking-summary h3 {
    font-size: 1.7rem;
  }
  .choice {
    padding: 14px 10px;
    gap: 10px;
  }
  .choice strong {
    font-size: 0.85rem;
  }
  .choice b {
    font-size: 0.8rem;
  }
  .choice small {
    font-size: 0.7rem;
  }
  .choice .service-icon {
    width: 32px;
    height: 35px;
    font-size: 1.2rem;
  }
  .booking-actions .btn {
    padding: 12px 18px;
    gap: 10px;
  }
  .booking-panel h2 {
    font-size: 1.65rem;
  }
  .panel {
    padding: 20px;
  }
  .success-panel {
    padding: 25px;
  }
  .success-panel h1 {
    font-size: 2.3rem;
  }
  .admin-layout {
    display: block;
  }
  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px 5%;
  }
  .sidebar > .eyebrow,
  .sidebar > h3,
  .workspace-badge,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    margin: 0;
    gap: 8px;
  }
  .sidebar nav a {
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .admin-main {
    padding: 20px 5% 45px;
  }
  .admin-top {
    font-size: 0.65rem;
    margin-bottom: 25px;
  }
  .admin-top > span:first-child > .muted {
    display: none;
  }
  .admin-main .page-title h1 {
    font-size: 2rem;
  }
  .admin-main .page-title p {
    font-size: 0.85rem;
  }
  .stats,
  .stats.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .stat {
    padding: 17px 14px;
  }
  .stat > div {
    font-size: 0.7rem;
  }
  .stat > strong {
    font-size: 1.85rem;
  }
  .stat small {
    font-size: 0.6rem;
  }
  .stats.three .stat:last-child {
    grid-column: 1/-1;
  }
  .toolbar {
    flex-direction: column;
  }
  .toolbar .filters {
    margin-bottom: 0;
  }
  .cash-row {
    gap: 15px;
  }
  .cash-row .row-actions {
    width: 100%;
  }
  .cash-row > strong {
    margin-left: auto;
  }
  .quick-links {
    gap: 10px;
  }
  .quick-link {
    padding: 12px;
    font-size: 0.72rem;
  }
  .chart {
    gap: 10px;
  }
  .review {
    font-size: 0.8rem;
  }
  .review > div {
    flex-direction: column;
    gap: 5px;
  }
  .review strong {
    text-align: left;
  }
  .rank {
    gap: 12px;
    font-size: 0.8rem;
  }
  dialog {
    padding: 26px;
  }
  .grid.two:has(label) {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.mobile-account {
  display: none;
}
@media (max-width: 760px) {
  .mobile-account {
    display: block;
  }
  .hero h1 {
    font-size: clamp(4.6rem, 20vw, 6.3rem);
  }
}

