:root {
  --bg: #090707;
  --surface: rgba(16, 16, 16, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --surface-strong: #111111;
  --text: #f7f3ee;
  --muted: #b9b3a7;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  --radius: 24px;
}

body.light-theme {
  --bg: #f5efe6;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1f1712;
  --muted: #675f58;
  --gold: #b78a18;
  --gold-soft: rgba(183, 138, 24, 0.12);
  --white: #ffffff;
  --border: rgba(31, 23, 18, 0.09);
  --shadow: 0 24px 60px rgba(75, 54, 24, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 32%),
    var(--bg);
  color: var(--text);
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

body.light-theme {
  background:
    radial-gradient(circle at top, rgba(183, 138, 24, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf7f1, #f1e7da);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

svg {
  display: block;
}

#progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  z-index: 1200;
  background: linear-gradient(90deg, var(--gold), #f6d575);
}

.section {
  padding: 80px 5%;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro h2,
.about-content h2,
.gallery-header h2,
.contact-copy h2,
.barbers-note h3,
.barber-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-intro p,
.about-content p,
.gallery-header p,
.contact-copy p,
.barber-copy p,
.barbers-note p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.05rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.has-motion .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

body.has-motion .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  position: sticky;
  top: 1rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: calc(100% - 2.5rem);
  margin: 1rem 1.25rem 0;
  padding: 14px 1.25rem 14px 1.5rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--surface) 92%, transparent),
    color-mix(in srgb, var(--surface-soft) 84%, transparent)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 999px;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f1d277, var(--gold));
  color: #111111;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow:
    0 14px 26px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tag {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: 10px;
  width: 64%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--surface-soft) 92%, transparent),
    rgba(212, 175, 55, 0.08)
  );
  color: var(--text);
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--gold-soft) 70%, var(--surface-soft));
}

.theme-toggle__icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.theme-toggle__text {
  font-size: 0.92rem;
  font-weight: 600;
}

.theme-toggle:hover .theme-toggle__icon {
  transform: scale(1.04);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background-image:
    linear-gradient(180deg, rgba(9, 7, 7, 0.58), rgba(9, 7, 7, 0.82)),
    url("img/salonblack.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

body.light-theme .hero {
  background-image:
    linear-gradient(180deg, rgba(53, 35, 18, 0.42), rgba(53, 35, 18, 0.62)),
    url("img/salonblack.jpg");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(212, 175, 55, 0.14),
    transparent 28%
  );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.section-label,
.gold-subtitle,
.gold-accent {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(247, 243, 238, 0.88);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 1.9rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn,
.btn-primary {
  background: var(--gold);
  color: #111111;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background: color-mix(in srgb, var(--surface-soft) 86%, transparent);
  border: 1px solid rgba(212, 175, 55, 0.7);
  color: var(--gold);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

body.light-theme .btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(31, 23, 18, 0.1);
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.services,
.barbers,
.testimonials {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01));
}

.service-grid,
.gallery-grid,
.menu-grid,
.about-stats,
.stats,
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card,
.menu-item,
.barber-profile,
.booking-form,
.testimonial-card,
.contact-copy,
.footer-column,
.barbers-note {
  border-radius: var(--radius);
}

.service-card,
.menu-item,
.barber-profile,
.booking-section,
.stat-block,
.testimonial-card,
.contact-copy,
.barbers-note {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover,
.menu-item:hover,
.barber-profile:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-copy {
  padding: 1.75rem;
}

.service-copy h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.service-copy p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.service-price,
.price {
  color: var(--gold);
  font-weight: 700;
}

.service-menu {
  background: linear-gradient(180deg, rgba(14, 13, 13, 0.95), var(--bg));
}

body.light-theme .service-menu {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), #efe2d1);
}

.menu-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-column {
  display: grid;
  gap: 1.5rem;
}

.menu-item {
  padding: 1.75rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.item-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.line {
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
}

.menu-item p {
  color: var(--muted);
  line-height: 1.8;
}

.menu-item.highlight {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.35);
}

.menu-cta {
  margin-top: 2.25rem;
  text-align: center;
}

.gallery {
  padding-top: 70px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.barber-profile {
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.barber-profile img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.barber-copy {
  padding: 1.6rem;
}

.barber-copy h3 {
  font-size: 1.5rem;
}

.barber-copy p {
  margin-bottom: 1rem;
}

.barber-tag {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.barber-profile--featured {
  display: flex;
  align-items: center;
  align-self: center;
  height: fit-content;
  background:
    linear-gradient(
      180deg,
      rgba(212, 175, 55, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    var(--surface-soft);
}

.barber-highlights {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.barber-highlights li {
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.2rem;
  position: relative;
}

.barber-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.barbers-note {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 2rem 2.2rem;
  text-align: center;
}

.booking-section {
  backdrop-filter: blur(20px);
}

.booking-copy {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-form {
  display: grid;
  gap: 1.4rem;
  max-width: 840px;
  margin: 0 auto;
}

.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-option__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

body.light-theme .service-option {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 23, 18, 0.12);
}

.service-option::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.45);
  flex-shrink: 0;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.service-option:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
}

.service-option__title {
  flex: 1;
  font-weight: 600;
}

.service-option__price {
  color: var(--gold);
  font-weight: 700;
}

.service-option__input:checked + .service-option {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.service-option__input:checked + .service-option::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(17, 17, 17, 0.9);
}

body.light-theme .service-option__input:checked + .service-option::before {
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  border-radius: 16px;
}

body.light-theme .form-group input,
body.light-theme .form-group select {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(31, 23, 18, 0.12);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

body.light-theme .form-group input::placeholder {
  color: rgba(31, 23, 18, 0.45);
}

.about-luxury {
  background: rgba(255, 255, 255, 0.02);
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-content {
  max-width: 600px;
}

.about-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat-item,
.stat-block {
  padding: 1.6rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

body.light-theme .stat-number {
  color: var(--text);
}

.stat-label,
.stat-block p {
  color: var(--muted);
  letter-spacing: 0.06em;
}

.luxury-gallery .slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 1rem 3rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slider-window {
  overflow: hidden;
  border-radius: 24px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  aspect-ratio: 12 / 5;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.slider__btn--left {
  left: 1rem;
}

.slider__btn--right {
  right: 1rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dots__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
}

body.light-theme .dots__dot {
  background: rgba(31, 23, 18, 0.18);
}

.dots__dot--active {
  background: var(--gold);
}

.stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.testimonials-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-card p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text);
}

.testimonial-author {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.contact {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.02)
  );
  border-top: 1px solid var(--border);
}

.contact-copy {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}

.contact-copy .btn {
  margin-top: 1.75rem;
}

.luxury-footer {
  padding: 0 5%;
  background: #050505;
  color: #a0a0a0;
}

body.light-theme .luxury-footer {
  background: #eadbc7;
  color: #6b6053;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo,
.footer-column h3 {
  font-family: "Playfair Display", serif;
  color: var(--white);
}

body.light-theme .footer-logo,
body.light-theme .footer-column h3 {
  color: #1f1712;
}

.footer-logo {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  margin-top: 0.35rem;
  color: inherit;
  opacity: 0.75;
}

.footer-column p,
.footer-column a,
.footer-column li {
  color: inherit;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.footer-column li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-link {
  display: inline-block;
  margin-top: 0.8rem;
}

.social-links {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

body.light-theme .social-links a {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(31, 23, 18, 0.08);
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.35);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: inherit;
}

body.light-theme .footer-bottom {
  border-top-color: rgba(31, 23, 18, 0.08);
}

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .barbers-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .navbar {
    width: calc(100% - 2rem);
    padding: 14px 1rem 14px 1.2rem;
  }

  .menu-grid,
  .about-container,
  .stats,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .barbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .barber-profile--featured {
    grid-column: span 2;
    height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .navbar {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
    margin-top: 0.75rem;
    padding: 0.9rem 1rem;
    gap: 0.75rem;
    border-radius: 28px;
  }

  .nav-links {
    position: absolute;
    inset: calc(100% + 0.85rem) 0 auto 0;
    background: color-mix(in srgb, var(--surface) 98%, transparent);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem;
    gap: 1rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-links a {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  body.light-theme .nav-links a {
    background: rgba(31, 23, 18, 0.04);
  }

  .service-grid,
  .gallery-grid,
  .stats,
  .about-stats,
  .barbers-grid,
  .testimonials-grid,
  .booking-service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .barber-profile--featured {
    grid-column: auto;
  }

  .theme-toggle {
    padding: 0.75rem 0.9rem;
  }
  .slider__btn {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    width: calc(100% - 1rem);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tag {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .section {
    padding: 60px 1.25rem;
  }

  .theme-toggle__text {
    display: none;
  }

  .contact-copy,
  .testimonial-card,
  .barbers-note,
  .booking-section,
  .barber-copy,
  .service-copy,
  .menu-item {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .slider__btn {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
  }

  .footer-column li,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
