:root {
  --walnut: #1a1008;
  --walnut-mid: #241608;
  --walnut-light: #2e1c0a;
  --brass: #c9a35c;
  --brass-bright: #e8b84a;
  --brass-dim: #7a5a18;
  --parchment: #f5ede0;
  --parchment-dim: rgba(245, 237, 224, 0.55);
  --muted: rgba(245, 237, 224, 0.3);
  --line: rgba(201, 163, 92, 0.15);
  --serif: "Playfair Display", Georgia, serif;
  --mono: "DM Mono", monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --walnut: #130b05;
    --walnut-mid: #1c1006;
    --walnut-light: #281707;
    --brass: #d1a54d;
    --brass-bright: #f1bf4a;
    --brass-dim: #8b6317;
    --line: rgba(209, 165, 77, 0.18);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--walnut);
  color: var(--parchment);
  font-family: var(--serif);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

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

.demo-banner {
  background: var(--brass);
  color: var(--walnut);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.demo-banner a {
  color: var(--walnut);
  font-weight: 700;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 16, 8, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(201, 163, 92, 0.25);
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 48px;
}

.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--parchment);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--parchment);
}

.button {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.button-primary {
  background: var(--brass);
  color: var(--walnut);
  padding: 14px 32px;
}

.button-primary:hover {
  background: var(--brass-bright);
  transform: translateY(-1px);
}

.button-ghost {
  background: transparent;
  color: var(--parchment-dim);
  border: 1px solid var(--line);
  padding: 14px 32px;
}

.button-ghost:hover {
  border-color: var(--brass);
  color: var(--parchment);
}

.nav-cta {
  background: var(--brass);
  color: var(--walnut);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
}

.nav-cta:hover {
  background: var(--brass-bright);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 64px 96px;
  overflow: hidden;
  background:
    repeating-linear-gradient(91deg, transparent 0, transparent 60px, rgba(255, 255, 255, 0.012) 60px, rgba(255, 255, 255, 0.012) 61px),
    repeating-linear-gradient(89deg, transparent 0, transparent 120px, rgba(0, 0, 0, 0.04) 120px, rgba(0, 0, 0, 0.04) 121px),
    linear-gradient(160deg, var(--walnut-light), var(--walnut), var(--walnut-mid));
}

.hero-ornament {
  position: absolute;
  top: 10%;
  right: 6%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 92, 0.1);
  pointer-events: none;
}

.hero-ornament::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 92, 0.07);
}

.hero-ornament::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 120px;
  color: rgba(201, 163, 92, 0.06);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--parchment);
  margin-bottom: 8px;
  max-width: 100%;
}

.hero-emphasis em {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--brass-bright);
  display: block;
  margin-bottom: 28px;
}

.hero-copy {
  font-size: 14px;
  line-height: 1.9;
  color: var(--parchment-dim);
  max-width: 44ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0;
}

.scroll-indicator {
  position: absolute;
  right: 48px;
  bottom: 80px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(201, 163, 92, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line-fill {
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--brass);
  animation: scrollFill 2.2s ease-in-out infinite 1s;
}

.scroll-text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

@keyframes scrollFill {
  0% {
    top: -100%;
  }

  100% {
    top: 200%;
  }
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--walnut-mid);
  overflow: hidden;
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-track p {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: rgba(201, 163, 92, 0.18);
  padding-right: 48px;
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-shell {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-shell > h2,
.about-copy > h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 48px;
}

.about.section-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-copy p:not(.section-eyebrow) {
  font-size: 14px;
  line-height: 2;
  color: var(--parchment-dim);
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.stat-card {
  background: var(--walnut-mid);
  padding: 32px 24px;
  text-align: center;
}

.stat-card h3 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--brass-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.services-track {
  display: flex;
  overflow-x: auto;
  gap: 2px;
  padding-bottom: 4px;
  scrollbar-width: none;
  cursor: grab;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--walnut-mid);
  border-top: 2px solid var(--brass);
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--walnut-light);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 12px;
}

.service-duration {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.service-price {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--brass);
  line-height: 1;
}

.services-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 16px;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.team-card {
  background: var(--walnut-mid);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.team-card:hover {
  background: var(--walnut-light);
}

.team-initials {
  position: absolute;
  top: -12px;
  right: 12px;
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 600;
  color: rgba(201, 163, 92, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.team-card hr {
  width: 32px;
  height: 2px;
  background: var(--brass);
  border: none;
  margin: 0 0 20px;
}

.team-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 6px;
}

.team-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.team-card p:not(.team-role):not(.team-experience) {
  font-size: 13px;
  line-height: 1.8;
  color: var(--parchment-dim);
  margin-bottom: 0;
}

.team-experience {
  margin-top: 28px;
}

.team-experience strong {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201, 163, 92, 0.3);
  display: block;
  line-height: 1;
}

.team-experience span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.testimonials {
  background: var(--walnut-mid);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 0;
  margin: 0;
}

.testimonial-card {
  background: var(--walnut-mid);
  padding: 40px 36px;
  position: relative;
}

.testimonial-card::before {
  content: "\"";
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(201, 163, 92, 0.1);
  line-height: 0.8;
  display: block;
  margin-bottom: 8px;
}

.testimonial-stars {
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.8);
  margin-bottom: 20px;
  border: none;
  padding: 0;
}

.testimonial-card figcaption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hours {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-top: 1px solid var(--line);
}

.hours-visit {
  background: var(--brass);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-visit h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 20px;
}

.hours-visit address {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.9;
  color: var(--walnut);
  font-style: normal;
  margin-bottom: 16px;
}

.hours-visit a {
  color: var(--walnut);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.open-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--walnut);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--walnut);
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hours-table-wrap {
  padding: 0;
  display: flex;
  align-items: center;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.hours-table tr:hover {
  background: rgba(201, 163, 92, 0.04);
}

.hours-table tr.is-today {
  background: rgba(201, 163, 92, 0.08);
}

.hours-table tr.is-today th {
  color: var(--brass);
}

.hours-table th,
.hours-table td {
  padding: 20px 48px;
  text-align: left;
}

.hours-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.hours-table td {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--parchment);
}

.hours-closed {
  color: rgba(245, 237, 224, 0.2);
  font-style: italic;
}

.booking {
  padding: 100px 48px;
  border-top: 1px solid var(--line);
}

.booking-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 48px;
  line-height: 1.1;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2px;
  background: var(--line);
  margin-top: 48px;
}

.booking-calendar-pane {
  background: var(--walnut-mid);
  padding: 36px 32px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--brass-bright);
  margin-bottom: 0;
  font-style: normal;
}

.calendar-nav {
  background: rgba(201, 163, 92, 0.08);
  border: 1px solid var(--line);
  color: var(--brass);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.calendar-nav:hover {
  background: rgba(201, 163, 92, 0.2);
  border-color: var(--brass);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}

.calendar-weekdays span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 4px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day {
  text-align: center;
}

.calendar-day button {
  width: 100%;
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid transparent;
  color: var(--parchment-dim);
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.calendar-day button:hover:not(:disabled) {
  background: rgba(201, 163, 92, 0.1);
  border-color: rgba(201, 163, 92, 0.2);
}

.calendar-day.is-disabled button {
  color: rgba(245, 237, 224, 0.18);
  cursor: default;
}

.calendar-day.is-today button::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
}

.calendar-day.is-selected button {
  background: var(--brass);
  color: var(--walnut);
  border-color: var(--brass);
  font-weight: 600;
}

.calendar-day.is-selected.is-today button::after {
  background: var(--walnut);
}

.calendar-day.is-outside {
  opacity: 0.3;
}

.time-slots {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: none;
}

.time-slots h3 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.slot-button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--parchment-dim);
  font-family: var(--mono);
  font-size: 11px;
  padding: 9px 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.slot-button:hover:not(.is-taken):not(:disabled) {
  background: rgba(201, 163, 92, 0.1);
  border-color: rgba(201, 163, 92, 0.3);
  color: var(--brass);
}

.slot-button.is-taken {
  color: rgba(245, 237, 224, 0.18);
  text-decoration: line-through;
  cursor: default;
  border-color: rgba(255, 255, 255, 0.03);
}

.slot-button.is-selected {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--walnut);
  font-weight: 600;
}

.booking-choices {
  background: var(--walnut);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.booking-step h2 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-style: normal;
}

.booking-step + .booking-step {
  margin-top: 0;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-option {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  padding: 14px 16px;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  transition: all 0.2s ease;
  text-align: left;
}

.service-option strong {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--parchment);
  font-weight: 400;
}

.service-option span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}

.service-option.is-selected {
  border-color: rgba(201, 163, 92, 0.3);
  border-left-color: var(--brass);
  background: rgba(201, 163, 92, 0.08);
}

.service-option.is-selected strong {
  color: var(--brass-bright);
}

.service-option:hover:not(.is-selected) {
  background: rgba(255, 255, 255, 0.05);
}

.barber-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.barber-button {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 16px 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.barber-button strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--brass-bright);
  display: block;
  margin-bottom: 6px;
}

.barber-button span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.barber-button.is-selected {
  border-color: var(--brass);
  background: rgba(201, 163, 92, 0.1);
}

.barber-button:hover:not(.is-selected) {
  background: rgba(255, 255, 255, 0.06);
}

.booking-phone {
  display: none;
}

.booking-phone.is-visible {
  display: block;
}

.booking-phone label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.booking-phone input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--parchment);
  font-family: var(--serif);
  font-size: 16px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.booking-phone input:focus {
  border-color: rgba(201, 163, 92, 0.5);
}

.booking-phone input[aria-invalid="true"] {
  border-color: rgba(232, 106, 74, 0.72);
}

.booking-phone input::placeholder {
  color: rgba(245, 237, 224, 0.2);
}

.booking-summary {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.6;
  min-height: 36px;
}

.confirm-button {
  width: 100%;
  padding: 16px;
}

.confirm-button:disabled {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 237, 224, 0.25);
  cursor: not-allowed;
  transform: none;
}

.booking-success {
  display: none;
  background: rgba(201, 163, 92, 0.08);
  border: 1px solid rgba(201, 163, 92, 0.25);
  color: var(--brass-bright);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 20px;
  text-align: center;
  line-height: 1.8;
}

.booking-success.is-visible {
  display: block;
}

.site-footer {
  background: var(--walnut-mid);
  border-top: 1px solid var(--line);
  padding: 48px 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--parchment);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--parchment);
}

.footer-grid address {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-style: normal;
  line-height: 1.9;
}

.footer-grid address a {
  color: var(--brass);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--brass);
}

@media (max-width: 767px) {
  .demo-banner {
    font-size: 10px;
    padding: 8px 16px;
    white-space: normal;
    text-align: center;
  }

  .site-header .nav-shell {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 0 24px 64px;
  }

  .hero-ornament,
  .scroll-indicator {
    display: none;
  }

  .section-shell {
    padding: 64px 24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-track {
    gap: 8px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 40px 24px 0;
  }

  .hours-table th,
  .hours-table td,
  .hours-visit,
  .booking,
  .booking-calendar-pane,
  .booking-choices {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hours-visit,
  .booking-calendar-pane,
  .booking-choices {
    padding-top: 32px;
    padding-bottom: 32px;
  }

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