:root {
  color-scheme: dark;
  --background: #121414;
  --surface-lowest: #0c0f0f;
  --surface-low: #1a1c1c;
  --surface: #1e2020;
  --surface-high: #282a2b;
  --surface-highest: #333535;
  --text: #e2e2e2;
  --muted: #bfd8c6;
  --muted-dark: #7f9286;
  --line: #36523d;
  --line-soft: #333535;
  --green: #30d158;
  --green-deep: #0b3d20;
  --green-solid: #27c451;
  --error: #ffb4ab;
  --container: 1280px;
  --gutter: 24px;
}

[data-theme="light"] {
  color-scheme: light;
  --background: #f4f5f4;
  --surface-lowest: #ffffff;
  --surface-low: #eef0ee;
  --surface: #e8ebe8;
  --surface-high: #dde0dd;
  --surface-highest: #cdd1cd;
  --text: #0f1210;
  --muted: #2d5238;
  --muted-dark: #4a6e54;
  --line: #5aad72;
  --line-soft: #c8d4ca;
  --green: #1a9e3e;
  --green-deep: #d6f5df;
  --green-solid: #188c38;
}

* {
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body > main {
  flex: 1 0 auto;
}


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

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

h1,
h2,
h3,
.brand {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 6.9rem);
  line-height: 0.95;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.section-border {
  border-bottom: 1px solid var(--line-soft);
}

.anchor-target {
  position: relative;
  top: -72px;
  display: block;
  height: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(18, 20, 20, 0.96);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 15, 15, 0.92);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a:not(.trimly),
.site-footer nav a,
.eyebrow,
.trimly,
.button-outline,
.scroll-cue,
.info-row h3,
.parking-box h3,
.cta-button {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:not(.trimly),
.site-footer nav a {
  position: relative;
  color: var(--muted);
  transition: color 160ms ease;
}

.nav-links a:not(.trimly)::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-solid);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #ffffff;
}

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

.trimly,
.button-outline,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--green);
  background: var(--surface-lowest);
  color: var(--text);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.trimly:hover,
.trimly:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--green-solid);
  background: var(--green-solid);
  color: var(--surface-lowest);
  outline: 2px solid rgba(48, 209, 88, 0.32);
  outline-offset: 3px;
  box-shadow: 0 0 0 1px rgba(48, 209, 88, 0.4), 0 0 24px rgba(39, 196, 81, 0.36);
}

.trimly:hover .calendar,
.trimly:focus-visible .calendar {
  border-color: var(--surface-lowest);
}

.trimly:hover .calendar::before,
.trimly:focus-visible .calendar::before {
  background: var(--surface-lowest);
}

.trimly-small {
  gap: 8px;
  padding: 0 18px;
}

.trimly-large,
.button-outline {
  width: min(100%, 674px);
  min-height: 64px;
}

.trimly-large {
  gap: 8px;
}

.trimly-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
  border-radius: 6px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  height: 92vh;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.4) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 20, 20, 0.96) 0%, rgba(18, 20, 20, 0.75) 38%, rgba(18, 20, 20, 0.25) 100%),
    linear-gradient(0deg, rgba(18, 20, 20, 0.5), transparent 45%);
}


.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 32px;
  padding-left: 24px;
  border-left: 4px solid var(--green);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: grid;
  max-width: 674px;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(226, 226, 226, 0.55);
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 48px;
  background: var(--green);
  animation: pulse-line 1.6s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
}

.eyebrow.accent {
  color: var(--green);
}

.gallery-section {
  background: var(--surface-low);
}

.barber-profile {
  background: var(--surface-lowest);
}

.pricing-section {
  background: var(--background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: start;
}

.pricing-grid .section-heading {
  display: block;
  margin-bottom: 0;
}

.pricing-grid .section-heading > p {
  max-width: 460px;
  margin-top: 22px;
  text-align: left;
}

.pricing-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.pricing-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-list dt,
.pricing-list dd {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-list dd {
  margin: 0;
  color: var(--green);
  font-size: 1.28rem;
  text-align: right;
}

.barber-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.barber-portrait {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.barber-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(12, 15, 15, 0.48), transparent 52%),
    linear-gradient(90deg, rgba(48, 209, 88, 0.1), transparent 32%);
  pointer-events: none;
}

.barber-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.78) contrast(1.08);
}

.barber-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.barber-stats {
  display: grid;
  max-width: 620px;
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
}

.barber-stats div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.barber-stats dt,
.barber-stats dd {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.barber-stats dd {
  margin: 0;
  color: var(--green);
  text-align: right;
}

.barber-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.profile-social-icon {
  display: inline-flex;
  width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  background: var(--surface-lowest);
  color: var(--text);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.profile-social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.profile-social-icon:hover,
.profile-social-icon:focus-visible {
  border-color: var(--green-solid);
  background: var(--green-solid);
  color: var(--surface-lowest);
  outline: 2px solid rgba(48, 209, 88, 0.32);
  outline-offset: 3px;
  box-shadow: 0 0 0 1px rgba(48, 209, 88, 0.4), 0 0 24px rgba(39, 196, 81, 0.36);
}

.button-compact {
  width: auto;
  min-height: 44px;
  padding: 0 22px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

.section-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.gallery-card,
.standard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-high);
}

.gallery-card {
  aspect-ratio: 4 / 5;
}

.standard-card {
  min-height: 430px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.78) contrast(1.06);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
}

.gallery-card {
  cursor: pointer;
}

.gallery-card:hover img {
  transform: scale(1.05);
  filter: saturate(0.92) brightness(0.9) contrast(1.08);
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 15, 15, 0.34), transparent 58%);
  pointer-events: none;
}

.gallery-card p {
  position: absolute;
  left: 30px;
  bottom: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.standard-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.standard-card p {
  margin: 18px 0 44px;
  color: var(--muted);
  line-height: 1.65;
}

.scissor-icon {
  color: var(--green);
  font-size: 3.4rem;
  line-height: 1;
  margin-bottom: 28px;
}

.standard-card dl {
  margin: auto 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.standard-card div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.standard-card dd {
  margin: 0;
  color: var(--green);
}

.reviews-section {
  background: var(--surface-lowest);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--green);
  flex: 0 0 17px;
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-name {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
}

.review-success,
.review-error {
  margin-bottom: 32px;
  padding: 18px 24px;
  border: 1px solid var(--green);
  background: var(--green-deep);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review-error {
  border-color: var(--error);
  background: rgba(255, 180, 171, 0.08);
  color: var(--error);
}

.review-form-wrap {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.review-form {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.review-form.is-open {
  display: flex;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.review-field input,
.review-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--surface-high);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color 160ms ease;
}

.review-field input:focus,
.review-field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.review-field input::placeholder,
.review-field textarea::placeholder {
  color: var(--muted-dark);
}

.review-captcha {
  min-height: 65px;
}

.star-pick {
  display: flex;
  gap: 6px;
  padding: 8px 0;
}

.star-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--surface-highest);
  cursor: pointer;
  transition: color 120ms ease;
}

.star-btn.is-active {
  color: var(--green);
}

.location {
  background: var(--background);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 42px;
  margin-top: 34px;
}

.info-row,
.parking-box {
  display: flex;
  gap: 22px;
}

.info-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface-high);
  color: var(--green);
  font-weight: 800;
}

.info-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-row p,
.parking-box p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.location .info-row p,
.location .info-row p * {
  user-select: text;
}

.selectable-link {
  color: var(--muted);
  transition: color 160ms ease;
}

.selectable-link:hover,
.selectable-link:focus-visible {
  color: var(--green);
  outline: none;
}

.parking-box {
  position: relative;
  max-width: 560px;
  padding: 36px 28px 28px;
  border: 1px solid rgba(48, 209, 88, 0.34);
  background: var(--surface-lowest);
}

.parking-box .tag {
  position: absolute;
  top: -12px;
  left: 28px;
  padding: 5px 14px;
  background: var(--green);
  color: var(--green-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.parking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.parking-actions a,
.map-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.parking-actions a:hover,
.parking-actions a:focus-visible,
.map-button:hover,
.map-button:focus-visible {
  border-color: var(--green-solid);
  background: var(--green-solid);
  color: var(--surface-lowest);
  outline: 2px solid rgba(48, 209, 88, 0.32);
  outline-offset: 3px;
  box-shadow: 0 0 18px rgba(39, 196, 81, 0.42);
}

.map-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  background: transparent;
}

.map-frame {
  width: 100%;
  aspect-ratio: 1;
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--surface);
}


.map-pin-anchor {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 26px;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.map-pin--studio {
  background: var(--green);
  color: var(--green-deep);
}

.map-pin--parking {
  background: var(--surface-highest);
  color: var(--green);
  border: 1px solid var(--green);
}

.map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 15, 15, 0.96);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  overscroll-behavior: contain;
  touch-action: pan-y;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lb-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(88vw, 1100px);
  max-height: 88dvh;
}

.lb-img {
  display: block;
  max-width: 100%;
  max-height: 88dvh;
  object-fit: contain;
  border: 1px solid var(--line);
  transition: opacity 130ms ease;
}

.lb-img.lb-fading {
  opacity: 0;
}

.lb-btn {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(12, 15, 15, 0.82);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.lb-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lb-btn:hover,
.lb-btn:focus-visible {
  border-color: var(--green-solid);
  background: var(--green-solid);
  color: var(--surface-lowest);
  outline: 2px solid rgba(48, 209, 88, 0.32);
  outline-offset: 3px;
}

.lb-close {
  top: 20px;
  right: 20px;
}

.lb-prev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.lb-next {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.cta {
  padding: 92px 0;
  background: var(--green);
  color: var(--green-deep);
  text-align: center;
}

.cta p {
  max-width: 680px;
  margin: 22px auto 46px;
  line-height: 1.7;
}

.cta-button {
  gap: 16px;
  min-height: 84px;
  padding: 0 34px;
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: var(--text);
  box-shadow: 0 24px 40px rgba(11, 61, 32, 0.28);
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1.18rem;
  text-transform: none;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
  background: var(--surface-lowest);
}

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

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-top nav {
  display: flex;
  gap: 28px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon,
.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.social-icon {
  width: 34px;
  height: 34px;
}

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

.social-icon:hover,
.social-icon:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--green-solid);
  background: var(--green-solid);
  color: var(--surface-lowest);
  outline: 2px solid rgba(48, 209, 88, 0.32);
  outline-offset: 3px;
  box-shadow: 0 0 18px rgba(39, 196, 81, 0.42);
  transform: translateY(-1px);
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(54, 82, 61, 0.5);
  color: var(--muted-dark);
  font-size: 0.75rem;
}

.footer-bottom > span:first-child {
  justify-self: start;
}

.footer-bottom > .creator-credit {
  justify-self: center;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.creator-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.creator-credit img {
  width: 68px;
  height: auto;
  opacity: 0.9;
}

.creator-credit .heart-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 0 0 -20px;
  object-fit: contain;
  vertical-align: -2px;
}

.creator-credit:hover,
.creator-credit:focus-visible {
  color: #ffffff;
  opacity: 1;
  outline: 2px solid rgba(48, 209, 88, 0.32);
  outline-offset: 6px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 28px;
}

.admin-page {
  padding: 152px 0 96px;
  background:
    linear-gradient(180deg, rgba(48, 209, 88, 0.08), transparent 340px),
    var(--background);
}

.admin-auth-body .site-header,
.admin-auth-body .site-footer {
  display: none;
}

.admin-auth-body .admin-page {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  padding: max(28px, env(safe-area-inset-top)) 0 max(28px, env(safe-area-inset-bottom));
}

.admin-shell {
  width: min(520px, calc(100% - 32px));
  margin: 0 auto;
}

.admin-shell-wide {
  width: min(var(--container), calc(100% - 32px));
}

.admin-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: var(--gutter);
  margin-bottom: var(--gutter);
}

.admin-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.admin-login-card {
  margin-top: 34px;
}

.admin-auth-body .admin-login-card {
  margin-top: 0;
}

.admin-login-brand {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-login-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.admin-panel-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.admin-card-head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(54, 82, 61, 0.6);
}

.admin-card-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.admin-card h2 {
  font-size: 1.45rem;
}

.admin-form,
.admin-inline-upload {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-inline-upload {
  min-width: min(440px, 100%);
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-form label,
.admin-inline-upload label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-form label span,
.admin-inline-upload label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.admin-form input,
.admin-inline-upload input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--surface-high);
  color: var(--text);
  font: inherit;
  user-select: text;
}

.admin-form input:focus,
.admin-inline-upload input:focus {
  border-color: var(--green);
  outline: none;
}

.admin-flashes {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-flash {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--green);
  background: var(--green-deep);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-flash--error {
  border-color: var(--error);
  background: rgba(255, 180, 171, 0.08);
  color: var(--error);
}

.admin-muted {
  margin: 0;
  color: var(--muted);
}

.admin-schedule-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.admin-schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(54, 82, 61, 0.6);
  background: var(--surface-high);
}

.admin-schedule-item div {
  display: grid;
  gap: 5px;
}

.admin-schedule-item strong {
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.admin-schedule-item span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.admin-schedule-item button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 180, 171, 0.72);
  background: transparent;
  color: var(--error);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.admin-schedule-item button:hover,
.admin-schedule-item button:focus-visible {
  background: var(--error);
  color: var(--surface-lowest);
  outline: 2px solid rgba(255, 180, 171, 0.28);
  outline-offset: 3px;
}

.admin-preview {
  overflow: hidden;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  background: var(--surface-high);
}

.admin-preview-square {
  aspect-ratio: 1;
}

.admin-preview img,
.admin-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-high);
}

.admin-gallery-item form {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.admin-gallery-item button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 180, 171, 0.72);
  background: rgba(12, 15, 15, 0.88);
  color: var(--error);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.admin-gallery-item button:hover,
.admin-gallery-item button:focus-visible {
  background: var(--error);
  color: var(--surface-lowest);
  outline: 2px solid rgba(255, 180, 171, 0.28);
  outline-offset: 3px;
}

.legal-page {
  padding: 152px 0 96px;
  background:
    linear-gradient(180deg, rgba(48, 209, 88, 0.08), transparent 320px),
    var(--background);
}

.legal-hero {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-grid {
  display: grid;
  max-width: 900px;
  gap: 30px;
  padding-top: 42px;
}

.legal-card {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(54, 82, 61, 0.5);
}

.legal-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card h2 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1.35rem;
}

.legal-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-card a {
  color: var(--text);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes marker {
  from {
    opacity: 0.8;
    transform: scale(0.6);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (max-width: 920px) {
  .nav-links > a:not(.social-icon):not(.trimly) {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .section-heading,
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom > span:first-child,
  .footer-bottom > .creator-credit,
  .footer-bottom > span:last-child {
    justify-self: start;
  }

  .section-heading > p {
    text-align: left;
  }

  .gallery-grid,
  .reviews-grid,
  .barber-grid,
  .pricing-grid,
  .location-grid,
  .legal-grid,
  .admin-grid,
  .review-form-row {
    grid-template-columns: 1fr;
  }

  .admin-card-head-row,
  .admin-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .standard-card {
    min-height: 390px;
  }

  .map-panel {
    position: relative;
    top: auto;
  }

  .barber-grid {
    gap: 42px;
  }

  .pricing-grid {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, var(--container));
  }

  .nav-shell {
    height: 64px;
  }

  .brand {
    font-size: 1rem;
  }

  .nav-links {
    gap: 8px;
  }

  .site-header .trimly-small {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .site-header .trimly-small span:not(.trimly-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 620px;
    height: 88vh;
  }

  .hero-copy {
    padding-left: 18px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .admin-page {
    padding: 96px 0 56px;
  }

  .admin-auth-body .admin-page {
    min-height: 100vh;
    min-height: 100svh;
    padding: max(18px, env(safe-area-inset-top)) 0 max(18px, env(safe-area-inset-bottom));
  }

  .admin-shell {
    width: min(100% - 24px, 420px);
  }

  .admin-auth-body .admin-shell {
    width: min(100% - 28px, 390px);
  }

  .admin-card {
    padding: 22px;
  }

  .admin-auth-body .admin-card {
    padding: 24px 20px;
  }

  .admin-login-card {
    margin-top: 0;
  }

  .admin-login-title {
    font-size: 2rem;
  }

  .admin-form {
    gap: 16px;
  }

  .admin-form input,
  .admin-inline-upload input {
    min-height: 48px;
    font-size: 1rem;
  }

  .admin-form .trimly-small,
  .admin-form-actions .button-outline {
    width: 100%;
    min-height: 48px;
  }

  .standard-card {
    padding: 34px;
  }

  .parking-box {
    flex-direction: column;
  }

  .map-actions {
    grid-template-columns: 1fr;
  }

  .cta-button {
    flex-direction: column;
    width: 100%;
    padding: 22px;
  }

  .footer-top nav {
    flex-wrap: wrap;
  }

  .lightbox {
    padding: 72px 12px 86px;
  }

  .lb-stage {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 158px);
  }

  .lb-img {
    max-height: calc(100dvh - 158px);
  }

  .lb-btn {
    width: 46px;
    height: 46px;
  }

  .lb-close {
    top: 14px;
    right: 14px;
  }

  .lb-prev,
  .lb-next {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .lb-prev {
    left: calc(50% - 58px);
  }

  .lb-next {
    right: calc(50% - 58px);
  }
}

@media (max-width: 380px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, var(--container));
  }

  .nav-links {
    gap: 6px;
  }

  .social-icon,
  .site-header .trimly-small {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .brand {
    font-size: 0.95rem;
  }
}
