:root {
  --paper: #f8f4ee;
  --ink: #1f2527;
  --muted: #6b777c;
  --line: rgba(31, 37, 39, 0.12);
  --accent: #b96c3a;
  --dark: #152027;
  --radius: 22px;
  --northline-header-height-active: 78px;
  --northline-section-pad-desktop: clamp(70px, 8svh, 112px);
  --northline-section-pad-short: 58px;
  --northline-section-pad-mobile: 58px;
  --northline-section-pad-mobile-tight: 54px;
  --northline-book-pad-desktop: clamp(56px, 7svh, 96px);
  --northline-rail-gap: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  scroll-padding-top: calc(var(--northline-header-height-active) + 16px);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.demo-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 244, 238, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.demo-nav {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-button,
.demo-pill {
  display: inline-flex;
  padding: 12px 17px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
}

.demo-pill {
  background: var(--dark);
  color: #fff;
  white-space: nowrap;
}

.demo-hero {
  padding: 76px 0 56px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.67rem;
  margin: 0 0 15px;
}

.demo-hero h1 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
  margin: 0 0 20px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.demo-button.primary {
  background: var(--dark);
  color: #fff;
}

.demo-button.secondary {
  border: 1px solid var(--line);
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin: 0 0 14px;
}

.section-heading p {
  color: var(--muted);
}

.demo-footer {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--muted);
}

body.barber {
  --paper: #edf0ef;
  --ink: #172226;
  --muted: #68767a;
  --line: rgba(30, 52, 58, 0.13);
  --accent: #8b5c3c;
  --dark: #1c2b31;
}

.barber .service-tile {
  padding: 22px;
  border-top: 3px solid var(--accent);
  background: #fff;
  border-radius: 0 0 18px 18px;
  min-height: 194px;
}

.barber .service-tile strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  display: block;
  margin-bottom: 7px;
}

.barber .service-tile span {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .demo-links a:not(.demo-pill) {
    display: none;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 65px 0;
  }

  .demo-hero {
    padding-top: 50px;
  }

  .demo-hero h1 {
    font-size: clamp(3.15rem, 15vw, 3.75rem);
    letter-spacing: -0.075em;
  }
}

section[id] {
  scroll-margin-top: 94px;
}

@media (max-width: 360px) {
  .demo-hero h1 {
    font-size: 3.05rem;
    overflow-wrap: anywhere;
  }

  .container {
    width: min(calc(100% - 20px), 1180px);
  }

  .demo-nav {
    min-height: 66px;
    gap: 10px;
  }

  .demo-pill {
    padding: 9px 11px;
    font-size: 0.68rem;
    line-height: 1;
    flex: 0 0 auto;
  }
}

.demo-button,
.demo-nav .demo-pill {
  transition: transform 0.22s,
    box-shadow 0.22s,
    background 0.22s,
    border-color 0.22s;
}

.demo-button:hover,
.demo-nav .demo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(21, 32, 39, 0.14);
}

.section-heading.tight {
  margin-bottom: 24px;
}

.section-heading.tight p {
  margin-bottom: 0;
}

.price {
  display: block;
  margin-top: 14px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.demo-modal.is-open {
  display: grid;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 22, 0.64);
  backdrop-filter: blur(7px);
}

.demo-modal-card {
  position: relative;
  width: min(100%, 540px);
  border-radius: 24px;
  background: var(--paper);
  padding: 30px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.demo-modal-card h2 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 0 0 13px;
}

.demo-modal-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: 0 0;
  color: var(--muted);
  font-size: 1.65rem;
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

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

.barber-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.barber-card h3 {
  font-family: Manrope, Inter, Arial, sans-serif;
  margin: 0 0 4px;
}

.barber-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.booking-options {
  display: grid;
  gap: 10px;
}

.booking-option {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.booking-option span {
  color: rgba(255, 255, 255, 0.63);
}

@media (max-width: 820px) {
  .barber-team {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .barber-team {
    grid-template-columns: 1fr;
  }
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 999;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  color: #152027;
  font-size: 0.74rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.skip-link:focus {
  transform: none;
}

.demo-modal-card:focus {
  outline: 0;
}

.demo-modal-card[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
:after,
:before {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.demo-modal-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

body.northline {
  --paper: #f1f0eb;
  --ink: #17242a;
  --line: rgba(27, 50, 57, 0.14);
  --dark: #18272d;
  --dark-soft: #22363d;
  --cream: #f7f3ec;
  background: var(--paper);
  --northline-header-height: 78px;
  --northline-header-height: var(--northline-header-height-active);
}

.northline .container {
  width: min(calc(100% - 42px), 1220px);
}

.northline .demo-header {
  background: rgba(241, 240, 235, 0.9);
  border-bottom-color: rgba(27, 50, 57, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.64);
}

.northline .demo-nav {
  position: relative;
}

.northline-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.northline-logo-mark-image {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

.northline-logo-mark-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.northline-wordmark {
  display: grid;
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.northline-wordmark small {
  margin-top: 5px;
  color: var(--accent);
}

.northline .demo-links {
  color: #314147;
}

.northline .demo-links > a:not(.demo-pill) {
  position: relative;
  padding: 29px 0 26px;
}

.northline .demo-links > a:not(.demo-pill):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s;
}

.northline .demo-links > a.is-active:after,
.northline .demo-links > a:not(.demo-pill):hover:after {
  transform: scaleX(1);
}

.northline .demo-pill {
  background: var(--dark);
  padding: 12px 17px;
}

.northline-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.barber-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  padding: 10px;
}

.barber-nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--dark);
  transition: transform 0.2s,
    opacity 0.2s;
}

.barber-nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.barber-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.barber-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 701px) {
  .northline .northline-hero {
    padding: 34px 0 58px;
    background: linear-gradient(180deg, #f5f4ef 0, #eef0ed 100%);
  }
}

@media (min-width: 701px) {
  .northline-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 701px) {
  .northline-hero-copy {
    padding: 24px 0 28px;
  }
}

@media (min-width: 701px) {
  .northline .northline-hero h1 {
    max-width: 650px;
    font-size: clamp(4.3rem, 6.3vw, 6.45rem);
    line-height: 0.91;
    margin-bottom: 0;
  }
}

@media (min-width: 701px) {
  .northline .northline-hero h1 span {
    display: block;
  }
}

.northline .actions {
  align-items: center;
}

.northline .demo-button {
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.northline .demo-button.secondary {
  background: rgba(255, 255, 255, 0.42);
}

@media (min-width: 701px) {
  .northline-hero-image {
    position: relative;
    min-height: 560px;
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    background: var(--dark);
    box-shadow: 0 28px 70px rgba(24, 39, 45, 0.22);
  }
}

@media (min-width: 701px) {
  .northline-hero-image img,
.northline-hero-image picture {
    display: block;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 701px) {
  .northline-hero-image img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 701px) {
  .northline-hero-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(9, 17, 20, 0.58));
  }
}

.northline-photo-card figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 701px) {
  .northline-hero-image figcaption {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.91);
    font-weight: 800;
    text-transform: uppercase;
  }
}

.northline-photo-card figcaption:before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

@media (min-width: 701px) {
  .northline-hero-image figcaption:before {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 1px;
    background: var(--accent);
  }
}

.northline .section {
  padding: 92px 0;
}

.northline-section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.northline-section-heading-row .section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.northline .section-heading h2,
.northline-book-copy h2,
.northline-visit-copy h2 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(2.65rem, 4.7vw, 4.9rem);
  letter-spacing: -0.085em;
  line-height: 0.96;
  margin: 0 0 16px;
}

.northline .section-heading p {
  max-width: 690px;
  margin-bottom: 0;
  line-height: 1.68;
}

.northline .service-tile a,
.northline-barber-copy a,
.northline-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.northline .service-tile a span,
.northline-barber-copy a span,
.northline-text-link span {
  font-size: 1rem;
  transition: transform 0.2s;
}

.northline .service-tile a:hover span,
.northline-barber-copy a:hover span,
.northline-text-link:hover span {
  transform: translateX(4px);
}

.northline .northline-service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.northline .service-tile {
  display: flex;
  min-height: 255px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(27, 50, 57, 0.1);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 39, 45, 0.045);
  transition: transform 0.22s,
    box-shadow 0.22s;
}

.northline .service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 19px 35px rgba(24, 39, 45, 0.095);
}

.northline .service-tile strong {
  font-size: 1.04rem;
  letter-spacing: -0.035em;
}

.northline .service-tile span {
  font-size: 0.81rem;
  line-height: 1.62;
}

.northline .service-tile .price {
  margin-top: auto;
  padding-top: 12px;
  font-size: 1.6rem;
}

.northline .service-tile a {
  margin-top: 8px;
  font-size: 0.63rem;
}

.northline-service-duration {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.northline-menu-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (min-width: 681px) {
  .northline-shop-section .northline-section-heading-row {
    margin-bottom: 28px;
  }
}

.northline-shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(280px, 0.72fr);
  gap: 16px;
  min-height: 650px;
}

.northline-photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--dark);
  box-shadow: 0 18px 43px rgba(24, 39, 45, 0.14);
}

.northline-photo-card img,
.northline-photo-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.northline-photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 63%, rgba(9, 17, 20, 0.58));
}

.northline-shop-side {
  display: grid;
  grid-template-rows: 1.2fr auto;
  gap: 16px;
}

.northline-shave-photo {
  min-height: 430px;
}

.northline-shave-photo img {
  object-position: center 34%;
}

.northline-shop-note .eyebrow {
  margin-bottom: 11px;
}

.northline-shop-note h3 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.52rem;
  letter-spacing: -0.07em;
  line-height: 1.02;
  margin: 0 0 10px;
}

.northline-shop-note p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.62;
}

.northline .barber-card {
  padding: 0;
  transition: transform 0.22s,
    box-shadow 0.22s;
}

.northline .barber-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 37px rgba(24, 39, 45, 0.105);
}

.northline-barber-photo {
  height: 395px;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.northline-barber-photo img,
.northline-barber-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.northline-barber-photo img {
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s;
}

.northline .barber-card:hover .northline-barber-photo img {
  transform: scale(1.025);
}

.northline-barber-copy {
  padding: 19px 19px 20px;
}

.northline-barber-days {
  margin: 0 0 7px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.northline .barber-card h3 {
  font-size: 1.22rem;
  letter-spacing: -0.05em;
}

.northline .barber-card p {
  line-height: 1.6;
}

.northline-barber-copy a {
  margin-top: 15px;
  font-size: 0.63rem;
}

.northline-book-section {
  padding: 60px 0 !important;
  background: #e4e8e5;
}

.northline-book-panel {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 38px;
  align-items: center;
  padding: 46px;
  color: #fff;
}

.northline-book-copy h2 {
  max-width: 640px;
  font-size: clamp(2.55rem, 4vw, 4.45rem);
}

.northline-book-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.93rem;
  line-height: 1.72;
}

.northline-light-button {
  background: var(--cream);
  color: var(--dark);
}

.northline .booking-options {
  gap: 11px;
}

.northline .booking-option {
  font-size: 0.79rem;
}

.northline .booking-option strong {
  color: #fff;
}

.northline-visit-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.northline-location-stack {
  gap: 13px;
}

.northline-footer {
  background: #17262c;
  border: 0;
  color: rgba(255, 255, 255, 0.68);
}

.northline-footer-grid {
  display: grid;
}

.northline-footer .northline-logo-mark-image {
  flex-basis: 46px;
  width: 46px;
  height: 46px;
}

.northline-footer .northline-wordmark {
  color: #fff;
}

.northline-footer p {
  max-width: 470px;
  margin: 14px 0 0;
  font-size: 0.77rem;
  line-height: 1.65;
}

.northline-footer-grid strong {
  color: #fff;
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: 0.03em;
}

.northline-footer-grid a:hover {
  color: #fff;
}

.northline-disclosure {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1050px) {
  .northline .container {
    width: min(calc(100% - 34px), 1220px);
  }

  .northline-shop-grid {
    min-height: 590px;
  }

  .northline-barber-photo {
    height: 350px;
  }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .northline-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 32px;
  }

  .northline .northline-hero h1 {
    font-size: clamp(4rem, 6vw, 5.2rem);
  }

  .northline-hero-image {
    min-height: 510px;
  }
}

@media (max-width: 900px) {
  .northline-mobile-actions {
    display: flex;
  }

  .barber-nav-toggle {
    display: block;
  }

  .northline .barber-links {
    border-bottom: 1px solid var(--line);
  }

  .northline .barber-links > a:not(.demo-pill) {
    display: block;
  }

  .northline .barber-links > a:not(.demo-pill):after {
    display: none;
  }

  .northline-desktop-book {
    display: none !important;
  }

  .northline .northline-service-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .northline .northline-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .northline .barber-card:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .northline .barber-card:last-child .northline-barber-photo {
    height: 100%;
  }

  .northline .barber-card:last-child .northline-barber-copy {
    align-self: center;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .northline .northline-hero {
    padding-top: 24px;
  }
}

@media (max-width: 680px) {
  .northline .container {
    width: min(calc(100% - 24px), 1220px);
  }

  .northline .section {
    padding: 70px 0;
  }

  .northline-section-heading-row {
    display: block;
  }

  .northline-section-heading-row .northline-text-link {
    margin-top: 15px;
  }

  .northline .section-heading p {
    font-size: 0.88rem;
  }

  .northline .northline-service-row {
    grid-template-columns: 1fr;
  }

  .northline .service-tile {
    min-height: 0;
    padding: 21px;
  }

  .northline .service-tile .price {
    margin-top: 16px;
  }

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

  .northline .barber-card:last-child {
    display: block;
    grid-column: auto;
  }

  .northline .barber-card:last-child .northline-barber-photo,
.northline-barber-photo {
    height: 400px;
  }

  .northline .barber-card p {
    min-height: 0;
  }

  .northline-book-section {
    padding: 36px 0 !important;
  }

  .northline-book-copy .actions {
    display: grid;
    justify-items: start;
  }

  .northline .booking-option {
    display: grid;
  }

  .northline .booking-option strong {
    text-align: left;
  }

  .northline-footer-grid > div:last-child {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .northline .container {
    width: min(calc(100% - 20px), 1220px);
  }

  .northline-logo {
    gap: 8px;
  }

  .northline-wordmark {
    font-size: 0.69rem;
    letter-spacing: 0.08em;
  }

  .northline-wordmark small {
    margin-top: 4px;
    font-size: 0.45rem;
    letter-spacing: 0.16em;
  }

  .northline-logo-mark-image {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .northline .northline-quick-book {
    padding: 9px 10px;
    font-size: 0.61rem;
  }

  .barber-nav-toggle {
    padding: 8px;
  }

  .northline-photo-card figcaption {
    left: 13px;
    right: 13px;
    bottom: 12px;
    font-size: 0.54rem;
    line-height: 1.45;
  }

  .northline .barber-card:last-child .northline-barber-photo,
.northline-barber-photo {
    height: 350px;
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .northline .northline-hero {
    padding-top: 25px;
    padding-bottom: 36px;
  }

  .northline-hero-grid {
    gap: 34px;
  }

  .northline-hero-copy {
    padding: 4px 0 10px;
  }

  .northline .northline-hero h1 {
    font-size: clamp(3.9rem, 5.45vw, 5rem);
    margin-bottom: 15px;
  }

  .northline .actions {
    margin-top: 19px;
  }

  .northline-hero-image {
    min-height: 435px;
    max-height: calc(100vh - 146px);
  }
}

@media (min-width: 1500px) and (min-height: 900px) {
  .northline-hero-grid {
    gap: 62px;
  }

  .northline .section {
    padding: 112px 0;
  }

  .northline-shop-grid {
    min-height: 720px;
  }
}

.northline .service-tile {
  flex-direction: column;
}

@media (min-width: 901px) and (min-height: 721px) {
  .northline .northline-hero h1 {
    font-size: clamp(4.35rem, 5.25vw, 5.25rem);
  }
}

@media (min-width: 901px) {
  .northline .northline-hero,
.northline main > .section {
    min-height: calc(100vh - var(--northline-header-height));
    min-height: calc(100svh - var(--northline-header-height));
    display: flex;
    align-items: center;
  }

  .northline .northline-hero {
    padding-top: clamp(24px, 3.6svh, 44px);
    padding-bottom: clamp(34px, 5.2svh, 62px);
  }

  .northline .section {
    padding-top: clamp(70px, 8svh, 112px);
    padding-bottom: clamp(70px, 8svh, 112px);
  }

  .northline-book-section {
    padding-top: clamp(56px, 7svh, 96px) !important;
    padding-bottom: clamp(56px, 7svh, 96px) !important;
  }

  .northline-book-landing,
.northline-gallery-landing,
.northline-services-landing,
.northline-shop-landing,
.northline-team-landing,
.northline-visit-landing {
    width: 100%;
  }

  .northline .service-tile {
    min-height: 282px;
    padding: 27px 24px 22px;
  }

  .northline-menu-note {
    margin-top: 23px;
  }

  .northline-book-panel {
    min-height: 470px;
  }
}

@media (min-width: 1500px) and (min-height: 900px) {
  .northline .northline-hero {
    padding-top: clamp(38px, 4.2svh, 54px);
    padding-bottom: clamp(52px, 6svh, 74px);
  }

  .northline-hero-image {
    min-height: clamp(650px, 67svh, 720px);
  }

  .northline .service-tile {
    min-height: 312px;
    padding: 31px 27px 25px;
  }

  .northline-service-duration {
    margin-bottom: 22px;
  }

  .northline .service-tile strong {
    font-size: 1.13rem;
  }

  .northline .service-tile span {
    font-size: 0.85rem;
    line-height: 1.68;
  }

  .northline .service-tile .price {
    padding-top: 16px;
    font-size: 1.72rem;
  }

  .northline .northline-services-section .northline-section-heading-row {
    margin-bottom: 42px;
  }

  .northline-menu-note {
    margin-top: 26px;
  }

  .northline-book-panel {
    min-height: 520px;
    padding: 54px;
  }

  .northline-exterior-photo {
    min-height: 445px;
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .northline .northline-hero,
.northline main > .section {
    min-height: calc(100vh - var(--northline-header-height));
    min-height: calc(100svh - var(--northline-header-height));
  }

  .northline .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .northline-book-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  .northline .service-tile {
    min-height: 248px;
    padding: 22px 20px 19px;
  }

  .northline-book-panel {
    min-height: 0;
  }

  .northline-services-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .northline-services-section .northline-section-heading-row {
    margin-bottom: 22px;
  }

  .northline-services-section .section-heading h2 {
    font-size: clamp(3.15rem, 4.65vw, 3.95rem);
    margin-bottom: 10px;
  }

  .northline-services-section .section-heading p {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .northline-services-section .service-tile {
    min-height: 206px;
    padding: 17px 18px 15px;
  }

  .northline-services-section .northline-service-duration {
    margin-bottom: 11px;
    font-size: 0.58rem;
  }

  .northline-services-section .service-tile strong {
    font-size: 0.95rem;
  }

  .northline-services-section .service-tile span {
    font-size: 0.75rem;
    line-height: 1.52;
  }

  .northline-services-section .service-tile .price {
    padding-top: 8px;
    font-size: 1.42rem;
  }

  .northline-services-section .service-tile a {
    margin-top: 4px;
    font-size: 0.57rem;
  }

  .northline-services-section .northline-menu-note {
    margin-top: 12px;
    font-size: 0.7rem;
  }
}

.northline-text-button {
  border: 0;
  background: 0 0;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.northline .booking-option {
  position: relative;
  display: grid;
  width: 100%;
  border: 1px solid transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform 0.18s,
    border-color 0.18s,
    background 0.18s;
}

.northline .booking-option:focus-visible,
.northline .booking-option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.115);
  outline: 0;
}

.northline .booking-option em {
  font-size: 0.57rem;
  text-transform: uppercase;
}

.northline-gallery-item {
  min-height: 0;
  border-radius: 18px;
}

.northline-gallery-item:after {
  background: linear-gradient(180deg, transparent 52%, rgba(9, 17, 20, 0.68));
}

.northline-service-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.northline-service-menu-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.northline-service-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 21, 0.74);
  backdrop-filter: blur(9px);
  opacity: 0;
  transition: opacity 0.24s;
}

.northline-service-menu-modal.is-open .northline-service-menu-backdrop {
  opacity: 1;
}

.northline-service-menu-card {
  position: relative;
  width: min(100%, 1080px);
  max-height: min(900px, calc(100svh - 34px));
  overflow: auto;
  padding: clamp(27px, 4vw, 48px);
  border: 1px solid rgba(27, 50, 57, 0.13);
  border-radius: 24px;
  background: #f8f7f2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  scrollbar-color: rgba(155, 104, 72, 0.5) transparent;
  scrollbar-width: thin;
  transform: translateY(14px) scale(0.987);
  transition: transform 0.27s;
}

.northline-service-menu-modal.is-open .northline-service-menu-card {
  transform: none;
}

.northline-service-menu-close {
  position: absolute;
  top: 15px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 50, 57, 0.07);
  color: #67777a;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.northline-service-menu-close:hover {
  background: rgba(27, 50, 57, 0.12);
  color: var(--ink);
}

.northline-service-menu-heading {
  max-width: 760px;
  padding-right: 34px;
}

.northline-service-menu-heading h2 {
  margin: 0 0 12px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(3.1rem, 5vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.9;
}

.northline-service-menu-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.northline-full-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin-top: 29px;
  padding-top: 25px;
  border-top: 1px solid rgba(27, 50, 57, 0.12);
}

.northline-full-menu-grid h3 {
  margin: 0 0 11px;
  color: var(--accent);
  font-size: 0.63rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.northline-full-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 13px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(27, 50, 57, 0.1);
}

.northline-full-menu-item span,
.northline-full-menu-item strong {
  display: block;
}

.northline-full-menu-item strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.045em;
}

.northline-full-menu-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.northline-full-menu-item b {
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1rem;
}

.northline-full-menu-item button {
  grid-column: 1/-1;
  justify-self: start;
  margin-top: 4px;
  color: var(--accent-deep);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.northline-menu-policy {
  display: grid;
  gap: 0;
}

.northline-menu-policy p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(27, 50, 57, 0.1);
}

.northline-menu-policy strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: -0.025em;
}

.northline-menu-policy span {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.5;
}

.northline-service-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 50, 57, 0.12);
}

.northline-service-menu-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.northline-service-menu-footer a {
  color: var(--accent-deep);
  font-weight: 800;
}

.northline .demo-modal {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.northline .demo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.northline .demo-modal-backdrop {
  opacity: 0;
  transition: opacity 0.24s;
}

.northline .demo-modal.is-open .demo-modal-backdrop {
  opacity: 1;
}

.northline-booking-modal-card {
  width: min(100%, 820px);
  max-height: min(900px, calc(100svh - 32px));
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(27, 50, 57, 0.13);
  border-radius: 24px;
  background: #f8f7f2;
  scrollbar-color: rgba(155, 104, 72, 0.5) transparent;
  scrollbar-width: thin;
  transform: translateY(14px) scale(0.987);
  transition: transform 0.27s;
}

.northline .demo-modal.is-open .northline-booking-modal-card {
  transform: none;
}

.northline .demo-modal-close {
  top: 11px;
  right: 11px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: rgba(27, 50, 57, 0.06);
}

.northline .demo-modal-close:hover {
  background: rgba(27, 50, 57, 0.11);
  color: var(--ink);
}

.northline-booking-modal-heading {
  max-width: 700px;
  padding-right: 30px;
}

.northline-booking-modal-heading h2 {
  margin: 0 0 10px;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(2.65rem, 4.8vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.9;
}

.northline-booking-modal-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.northline-booking-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
}

.northline-booking-progress li {
  display: grid;
  gap: 5px;
  justify-items: center;
  color: #94a0a1;
  text-align: center;
}

.northline-booking-progress span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(27, 50, 57, 0.15);
  border-radius: 50%;
  background: #fff;
  font-size: 0.67rem;
  font-weight: 800;
}

.northline-booking-progress em {
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.northline-booking-progress .is-active,
.northline-booking-progress .is-complete {
  color: var(--accent-deep);
}

.northline-booking-progress .is-active span {
  border-color: rgba(155, 104, 72, 0.55);
  box-shadow: 0 0 0 4px rgba(155, 104, 72, 0.1);
}

.northline-booking-progress .is-complete span {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.northline-booking-stage {
  min-height: 270px;
  padding-top: 1px;
}

.northline-booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.northline-booking-choice {
  display: grid;
  gap: 5px;
  min-height: 125px;
  padding: 14px;
  border: 1px solid rgba(27, 50, 57, 0.13);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform 0.18s,
    border-color 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}

.northline-booking-choice:focus-visible,
.northline-booking-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 104, 72, 0.48);
  outline: 0;
  box-shadow: 0 9px 20px rgba(24, 39, 45, 0.08);
}

.northline-booking-choice.is-selected {
  border-color: rgba(155, 104, 72, 0.66);
  background: #fffaf4;
  box-shadow: 0 0 0 4px rgba(155, 104, 72, 0.1);
}

.northline-booking-choice span {
  color: var(--accent);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.northline-booking-choice strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.northline-booking-choice small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.northline-booking-choice b {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.82rem;
}

.northline-barber-choice {
  min-height: 118px;
}

.northline-barber-choice b {
  color: var(--accent-deep);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.northline-modal-menu-link {
  margin-top: 13px;
  padding: 0;
  border: 0;
  background: 0 0;
  color: var(--accent-deep);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.northline-calendar {
  padding: 14px;
  border: 1px solid rgba(27, 50, 57, 0.12);
  border-radius: 16px;
  background: #fff;
}

.northline-calendar-toolbar {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 8px;
  align-items: center;
  margin-bottom: 13px;
  text-align: center;
}

.northline-calendar-toolbar button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  border: 1px solid rgba(27, 50, 57, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--accent-deep);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
}

.northline-calendar-toolbar strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.93rem;
  letter-spacing: -0.03em;
}

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

.northline-calendar-weekdays {
  margin-bottom: 6px;
  color: #879294;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.northline-calendar-day,
.northline-calendar-empty {
  min-height: 38px;
}

.northline-calendar-day {
  border: 1px solid transparent;
  border-radius: 9px;
  background: #f8f8f5;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
}

.northline-calendar-day:focus-visible,
.northline-calendar-day:hover:not(:disabled) {
  border-color: rgba(155, 104, 72, 0.5);
  outline: 0;
  background: #fff9f3;
}

.northline-calendar-day:disabled {
  color: #c4cbca;
  cursor: not-allowed;
  background: #f2f2ef;
}

.northline-calendar-day.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.northline-calendar p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.northline-time-intro {
  display: grid;
  gap: 4px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 50, 57, 0.1);
}

.northline-time-intro strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.northline-time-intro span {
  color: var(--muted);
  font-size: 0.7rem;
}

.northline-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.northline-time-button {
  padding: 13px 8px;
  border: 1px solid rgba(27, 50, 57, 0.13);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 0.18s,
    border-color 0.18s,
    background 0.18s;
}

.northline-time-button:focus-visible,
.northline-time-button:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 104, 72, 0.48);
  outline: 0;
  background: #fff9f3;
}

.northline-time-button.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.northline-review-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.northline-review-card div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(27, 50, 57, 0.12);
  border-radius: 13px;
  background: #fff;
}

.northline-review-card span {
  color: var(--accent);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.northline-review-card strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.northline-review-card small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.northline-confirmation-card {
  display: grid;
  justify-items: start;
  gap: 9px;
  padding: 22px;
  border: 1px solid rgba(155, 104, 72, 0.2);
  border-radius: 16px;
  background: #fffaf4;
}

.northline-confirmation-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.northline-confirmation-card h3 {
  margin: 2px 0 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.07em;
}

.northline-confirmation-card p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.6;
}

.northline-confirmation-card div {
  display: grid;
  gap: 3px;
  margin-top: 5px;
  padding-top: 11px;
  border-top: 1px solid rgba(155, 104, 72, 0.16);
}

.northline-confirmation-card div span {
  color: var(--muted);
  font-size: 0.72rem;
}

.northline-booking-preview-note {
  margin: 15px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 50, 57, 0.1);
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.northline-booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.northline-booking-actions .demo-button {
  cursor: pointer;
}

.northline-booking-actions .demo-button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .northline-full-menu-grid {
    grid-template-columns: 1fr;
  }

  .northline-service-menu-footer {
    display: grid;
    gap: 14px;
  }

  .northline-service-menu-footer .demo-button {
    justify-self: start;
  }

  .northline .barber-links > a:not(.demo-pill):focus-visible {
    outline-offset: 1px;
  }
}

@media (max-width: 680px) {
  .northline-photo-card figcaption:before {
    flex-basis: 20px;
    width: 20px;
  }

  .northline-gallery-item {
    min-height: 265px;
  }

  .northline-service-menu-modal {
    padding: 8px;
  }

  .northline-service-menu-card {
    max-height: calc(100svh - 16px);
    padding: 24px 18px;
    border-radius: 18px;
  }

  .northline-full-menu-grid {
    gap: 22px;
    margin-top: 22px;
    padding-top: 20px;
  }

  .northline-booking-progress {
    gap: 3px;
  }

  .northline-booking-progress em {
    font-size: 0.48rem;
    letter-spacing: 0.07em;
  }

  .northline-booking-progress span {
    width: 23px;
    height: 23px;
    font-size: 0.59rem;
  }

  .northline-booking-choice-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .northline-booking-choice {
    min-height: 0;
    padding: 12px;
  }

  .northline-calendar {
    padding: 10px;
  }

  .northline-time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .northline-review-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .northline .demo-modal,
.northline .demo-modal-backdrop,
.northline-booking-modal-card,
.northline-service-menu-backdrop,
.northline-service-menu-card,
.northline-service-menu-modal {
    transition: none !important;
    transform: none !important;
  }
}

.northline .demo-header {
  transition: background 0.26s,
    border-color 0.26s,
    box-shadow 0.26s;
}

.northline .demo-header.is-scrolled {
  background: rgba(241, 240, 235, 0.97);
  border-bottom-color: rgba(27, 50, 57, 0.16);
  box-shadow: 0 10px 28px rgba(24, 39, 45, 0.085);
}

.northline .northline-logo,
.northline .northline-logo-mark-image,
.northline .northline-wordmark {
  transition: transform 0.22s,
    color 0.22s,
    background 0.22s,
    border-color 0.22s;
}

.northline .northline-logo:focus-visible .northline-logo-mark-image,
.northline .northline-logo:hover .northline-logo-mark-image {
  transform: translateY(-1px) scale(1.02);
}

.northline .demo-links > a:not(.demo-pill):focus-visible:after {
  transform: scaleX(1);
}

.northline .demo-links .demo-pill {
  transition: transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.northline .demo-links .demo-pill:focus-visible,
.northline .demo-links .demo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(24, 39, 45, 0.2);
  background: #21353c;
}

.northline .demo-links .demo-pill.is-active {
  box-shadow: 0 0 0 3px rgba(155, 104, 72, 0.22),
    0 10px 22px rgba(24, 39, 45, 0.17);
  background: #21353c;
}

.northline .demo-button {
  transition: transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.northline .demo-button:focus-visible,
.northline .demo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(24, 39, 45, 0.16);
}

.northline .demo-button.primary:focus-visible,
.northline .demo-button.primary:hover {
  background: #22373e;
}

.northline .demo-button.secondary:focus-visible,
.northline .demo-button.secondary:hover {
  border-color: rgba(155, 104, 72, 0.42);
  background: rgba(255, 255, 255, 0.76);
}

.northline .northline-light-button:focus-visible,
.northline .northline-light-button:hover {
  background: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.19);
}

.northline .service-tile a:focus-visible span,
.northline-barber-copy a:focus-visible span,
.northline-text-link:focus-visible span {
  transform: translateX(4px);
}

.northline .barber-card:focus-within,
.northline .service-tile:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 20px 37px rgba(24, 39, 45, 0.105);
}

.northline .service-tile a,
.northline-barber-copy a,
.northline-text-button {
  min-height: 36px;
  align-items: center;
}

.northline-photo-card img {
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.55s;
}

.northline-shop-note {
  transition: transform 0.24s,
    box-shadow 0.24s,
    border-color 0.24s;
}

.northline-shop-note:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 104, 72, 0.22);
  box-shadow: 0 17px 34px rgba(24, 39, 45, 0.09);
}

.northline .demo-modal-close,
.northline-calendar-toolbar button,
.northline-full-menu-item button,
.northline-modal-menu-link,
.northline-service-menu-close {
  transition: transform 0.18s,
    background 0.18s,
    border-color 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}

.northline-full-menu-item button:focus-visible,
.northline-full-menu-item button:hover,
.northline-modal-menu-link:focus-visible,
.northline-modal-menu-link:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.northline-calendar-toolbar button:focus-visible,
.northline-calendar-toolbar button:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 104, 72, 0.48);
  outline: 0;
  background: #fff9f3;
  box-shadow: 0 6px 14px rgba(24, 39, 45, 0.07);
}

.northline .demo-modal-close:focus-visible,
.northline .demo-modal-close:hover,
.northline-service-menu-close:focus-visible,
.northline-service-menu-close:hover {
  transform: rotate(4deg);
  outline: rgba(155, 104, 72, 0.5) solid 3px;
  outline-offset: 3px;
}

@media (hover: hover) {
  .northline-photo-card:hover img {
    transform: scale(1.027);
    filter: saturate(1.025) contrast(1.015);
  }

  .northline-gallery-item:hover img {
    transform: scale(1.045);
  }
}

.northline-reveal-ready .northline-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.66s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.66s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--northline-reveal-delay, 0ms);
}

.northline-reveal-ready .northline-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.northline-reveal-ready .northline-reveal-soft {
  transform: translateY(14px);
}

.northline-gallery-item.northline-reveal {
  transform: translateY(17px) scale(0.987);
}

.northline-gallery-item.northline-reveal.is-revealed {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .northline-gallery-item.northline-reveal,
.northline-reveal-ready .northline-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.northline .demo-modal,
.northline-service-menu-modal {
  transition: opacity 0.24s,
    visibility 0s linear 0.24s;
}

.northline .demo-modal.is-open,
.northline-service-menu-modal.is-open {
  transition-delay: 0s;
}

@media (min-width: 701px) {
  .northline .northline-hero h1 span + span {
    margin-top: 0.13em;
  }
}

@media (min-width: 701px) {
  .northline .northline-hero-copy > .actions {
    margin-top: 26px;
  }
}

.northline-disclosure a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(155, 104, 72, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s,
    text-decoration-color 0.18s;
}

.northline-disclosure a:focus-visible,
.northline-disclosure a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

@media (max-width: 680px) {
  .northline .demo-button {
    min-height: 45px;
    padding: 12px 17px;
  }

  .northline .service-tile a,
.northline-barber-copy a,
.northline-text-button {
    min-height: 44px;
  }

  .northline-full-menu-item button {
    padding: 6px 0;
  }

  .northline-calendar-toolbar button {
    min-height: 40px;
  }

  .northline-calendar-day,
.northline-calendar-empty {
    min-height: 39px;
  }

  .northline-time-button {
    min-height: 44px;
  }
}

@media (min-width: 901px) {
  .northline .northline-hero {
    padding-block: clamp(34px, 4.4svh, 56px);
  }
}

@media (min-width: 1500px) and (min-height: 900px) {
  .northline .northline-hero {
    padding-block: clamp(46px, 5.1svh, 64px);
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .northline .northline-hero h1 span + span {
    margin-top: 0.11em;
  }

  .northline .northline-hero-copy > .actions {
    margin-top: 19px;
  }

  .northline .northline-hero {
    padding-block: clamp(22px, 3.3svh, 30px);
  }
}

.northline-book-panel {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  box-shadow: 0 19px 46px rgba(24, 39, 45, 0.145);
}

.northline-book-options-heading {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.northline .booking-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.northline-book-options-heading {
  grid-column: 1 / -1;
}

.northline-book-options-heading {
  order: -2;
}

.northline .booking-option.is-earliest {
  order: -1;
  grid-column: 1 / -1;
  min-height: 120px;
  padding: 21px 22px 19px 25px;
}

.northline .booking-option.is-earliest strong {
  font-size: clamp(1.32rem, 2.15vw, 1.7rem);
  line-height: 1.12;
}

.northline .booking-option.is-earliest em {
  color: rgba(255, 255, 255, 0.72);
}

.northline .booking-option {
  overflow: hidden;
  padding: 16px 17px 15px 20px;
  border-color: rgba(255, 255, 255, 0.085);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.northline .booking-option:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.52;
  transition: opacity 0.18s,
    width 0.18s;
}

.northline .booking-option:focus-visible:before,
.northline .booking-option:hover:before {
  width: 3px;
  opacity: 0.9;
}

.northline .booking-option.is-earliest {
  border-color: rgba(155, 104, 72, 0.34);
  background: linear-gradient(
    90deg,
    rgba(155, 104, 72, 0.16),
    rgba(255, 255, 255, 0.065)
  );
}

.northline .booking-option.is-earliest:before {
  width: 3px;
  opacity: 1;
}

.northline .booking-option strong {
  text-align: left;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.035em;
}

.northline .booking-option em {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 680px) {
  .northline-book-panel {
    border-radius: 18px;
  }

  .northline-book-copy h2 {
    font-size: clamp(2.36rem, 11.25vw, 3.32rem);
    line-height: 0.96;
  }

  .northline-book-copy > p:not(.eyebrow) {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .northline-book-copy .actions {
    margin-top: 18px;
  }

  .northline-book-options-heading {
    margin-bottom: 1px;
  }

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

  .northline .booking-option {
    gap: 4px;
  }

  .northline .booking-option.is-earliest {
    grid-column: auto;
    min-height: 108px;
    padding: 17px 17px 16px 20px;
  }

  .northline .booking-option.is-earliest strong {
    font-size: 1.22rem;
  }
}

@media (min-width: 901px) {
  .northline-book-copy > .eyebrow,
.northline-book-options-heading {
    font-size: 0.67rem;
    letter-spacing: 0.16em;
    line-height: 1.55;
  }
}

@media (min-width: 1500px) and (min-height: 900px) {
  .northline-visit-section {
    padding-top: clamp(92px, 10svh, 138px) !important;
    padding-bottom: clamp(92px, 10svh, 138px) !important;
  }
}

@media (max-width: 680px) {
}

.northline-footer-grid {
  gap: clamp(34px, 4.2vw, 68px);
  align-items: start;
}

.northline-footer-brand p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
}

.northline-footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 7px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  line-height: 1.55;
}

.northline-footer-grid > div:last-child {
  display: grid;
  gap: 7px;
  text-align: left;
  font-size: 0.72rem;
}

.northline-footer-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 4px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 800;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.northline-footer-heading > span {
  width: 22px;
  height: 1px;
  background: var(--accent);
  background: #c58d65;
}

.northline-footer-column > a {
  transition: color 0.18s,
    transform 0.18s;
}

.northline-footer-column > a:focus-visible,
.northline-footer-column > a:hover {
  color: #fff;
  transform: translateX(2px);
}

.northline-footer-book {
  margin-top: 5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.northline-footer-book span {
  display: inline-block;
  margin-left: 3px;
  transition: transform 0.18s;
}

.northline-footer-book:focus-visible span,
.northline-footer-book:hover span {
  transform: translateX(3px);
}

.northline-disclosure {
  text-align: center;
}

@media (min-width: 1500px) and (min-height: 900px) {
  .northline-footer {
    padding-top: 64px;
  }

  .northline-footer-grid {
    padding-bottom: 37px;
  }
}

@media (max-width: 900px) {
  .northline-footer {
    padding-top: 45px;
  }

  .northline-footer-grid {
    padding-bottom: 27px;
  }
}

@media (max-width: 680px) {
  .northline-footer-brand p {
    margin-top: 13px;
    font-size: 0.74rem;
  }

  .northline-footer-explore {
    flex-wrap: wrap;
  }

  .northline-footer-explore .northline-footer-heading {
    flex: 0 0 100%;
    margin-bottom: 1px !important;
  }

  .northline-footer-column,
.northline-footer-grid > div:last-child {
    font-size: 0.71rem;
  }
}

@media (max-width: 390px) {
  .northline-footer-grid {
    gap: 20px;
  }

  .northline-footer-explore {
    column-gap: 15px;
  }

  .northline-footer-heading {
    font-size: 0.56rem !important;
  }

  .northline-footer-heading > span {
    width: 19px;
  }
}

.northline-book-loading {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.6;
}

.northline-booking-modal-topbar,
.northline-service-menu-topbar {
  position: relative;
}

.northline-calendar-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none !important;
  box-shadow: none !important;
}

.northline-time-button {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.northline-time-button span {
  font: inherit;
}

.northline-time-button small {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  line-height: 1.25;
}

.northline-time-button.is-selected small {
  color: rgba(255, 255, 255, 0.82);
}

.northline-booking-empty {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(155, 104, 72, 0.2);
  border-radius: 14px;
  background: #fffaf4;
}

.northline-booking-empty strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.northline-booking-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.6;
}

.northline-preview-toast {
  position: fixed;
  z-index: 180;
  right: 18px;
  bottom: 18px;
  width: min(370px, calc(100vw - 36px));
  padding: 13px 15px;
  border: 1px solid rgba(155, 104, 72, 0.34);
  border-radius: 13px;
  background: #fffaf4;
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(8, 18, 21, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s,
    transform 0.2s;
}

.northline-preview-toast.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 680px) {
  .northline-booking-modal-topbar,
.northline-service-menu-topbar {
    position: sticky;
    top: -24px;
    z-index: 3;
    margin: -24px -18px 16px;
    padding: 24px 56px 12px 18px;
    border-bottom: 1px solid rgba(27, 50, 57, 0.08);
    background: rgba(248, 247, 242, 0.97);
    backdrop-filter: blur(12px);
  }

  .northline .demo-modal-close,
.northline-service-menu-close {
    top: 16px;
    right: 14px;
  }

  .northline-booking-modal-heading,
.northline-service-menu-heading {
    padding-right: 0;
  }

  .northline-service-menu-heading h2 {
    font-size: 2.85rem;
  }

  .northline-service-choice-grid {
    grid-template-columns: 1fr;
  }

  .northline-preview-toast {
    right: 11px;
    bottom: 11px;
    width: calc(100vw - 22px);
    font-size: 0.69rem;
  }
}

@media (min-width: 391px) and (max-width: 430px) {
  .northline .container {
    width: min(calc(100% - 22px), 1220px);
  }

  .northline-wordmark {
    font-size: 0.72rem;
    letter-spacing: 0.085em;
  }

  .northline .northline-quick-book {
    padding: 9px 11px;
    font-size: 0.62rem;
  }

  .northline-interior-photo {
    min-height: 292px;
  }

  .northline-shave-photo {
    min-height: 350px;
  }
}

@media (max-width: 680px) {
  .northline-gallery-section,
.northline-services-section,
.northline-team-section {
    padding-block: var(--northline-section-pad-mobile) !important;
  }

  .northline-gallery-section .northline-section-heading-row,
.northline-services-section .northline-section-heading-row,
.northline-team-section .northline-section-heading-row {
    margin-bottom: 20px;
  }

  .northline-mobile-track {
    --northline-rail-card: min(84vw, 360px);
    --northline-rail-edge: max(
        0px,
        calc((100% - var(--northline-rail-card)) / 2)
      );
    display: flex !important;
    grid-template-columns: none !important;
    gap: var(--northline-rail-gap) !important;
    width: auto;
    margin-inline: 0;
    padding: 3px var(--northline-rail-edge) 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: auto;
    scroll-padding-inline: var(--northline-rail-edge);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  .northline-mobile-track::-webkit-scrollbar {
    display: none;
  }

  .northline-mobile-track:focus-visible {
    outline: rgba(155, 104, 72, 0.62) solid 2px;
    outline-offset: 5px;
    border-radius: 14px;
  }

  .northline-service-row.northline-mobile-track {
    --northline-rail-card: min(84vw, 360px);
  }

  .northline-service-row.northline-mobile-track .service-tile {
    flex: 0 0 var(--northline-rail-card);
    min-height: 246px;
    padding: 21px 20px 19px;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }

  .northline-service-row.northline-mobile-track .service-tile:hover {
    transform: none;
  }

  .northline-service-row.northline-mobile-track .service-tile .price {
    margin-top: auto;
    padding-top: 14px;
  }

  .northline-services-section .northline-menu-note {
    line-height: 1.55;
  }

  .northline-team-grid.northline-mobile-track {
    --northline-rail-card: min(82vw, 342px);
    scroll-snap-type: x proximity;
  }

  .northline-team-grid.northline-mobile-track .barber-card {
    flex: 0 0 var(--northline-rail-card);
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }

  .northline-team-grid.northline-mobile-track .barber-card:hover {
    transform: none;
  }

  .northline-team-grid.northline-mobile-track
    .barber-card:last-child
    .northline-barber-photo,
.northline-team-grid.northline-mobile-track .northline-barber-photo {
    height: 296px;
  }

  .northline-team-grid.northline-mobile-track .northline-barber-copy {
    padding: 15px 17px 17px;
  }

  .northline-team-grid.northline-mobile-track .northline-barber-days {
    margin-bottom: 5px;
  }

  .northline-team-grid.northline-mobile-track .barber-card h3 {
    font-size: 1.16rem;
  }

  .northline-team-grid.northline-mobile-track .barber-card p {
    min-height: 0;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .northline-mobile-track-meta {
    display: grid;
    grid-template-columns: auto minmax(24px, 1fr) auto;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .northline-mobile-track-meta:before {
    content: "";
    grid-column: 2;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(155, 104, 72, 0.13));
  }

  .northline-mobile-track-meta > span:first-of-type {
    grid-column: 1;
    grid-row: 1;
  }

  .northline-mobile-track-meta strong {
    grid-column: 3;
    grid-row: 1;
    color: var(--accent-deep);
    font-size: 0.61rem;
    font-variant-numeric: tabular-nums;
  }

  .northline .northline-quick-book {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .barber-nav-toggle {
    width: 44px;
    height: 44px;
  }

  .northline .barber-links > a:not(.demo-pill) {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .northline-disclosure {
    font-size: 0.66rem;
    line-height: 1.72;
  }
}

@media (max-width: 390px) {
  .northline .northline-quick-book {
    min-height: 44px;
    padding-inline: 11px;
  }

  .barber-nav-toggle {
    width: 44px;
    height: 44px;
  }

  .northline-team-grid.northline-mobile-track
    .barber-card:last-child
    .northline-barber-photo,
.northline-team-grid.northline-mobile-track .northline-barber-photo {
    height: 278px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .northline-preview-toast {
    transition: none;
  }

  .northline-mobile-track {
    scroll-behavior: auto !important;
  }
}

.northline-wordmark small {
  color: var(--accent-deep);
}

.northline .northline-service-feature {
  grid-row: 1/4;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 50, 57, 0.1);
  border-top: 0;
  border-radius: 22px;
  background: #fff;
}

.northline-service-feature-image {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
}

.northline-service-feature-image img,
.northline-service-feature-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.northline-service-feature-image img {
  object-fit: cover;
  object-position: center;
}

.northline-service-feature-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 17, 20, 0.02) 48%,
    rgba(9, 17, 20, 0.58) 100%
  );
}

.northline-service-feature-image figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.northline-service-feature-image figcaption:before {
  content: "";
  width: 24px;
  height: 1px;
  background: #c58d65;
}

.northline-service-feature-copy {
  display: flex;
  flex-direction: column;
  padding: 31px 29px 26px;
}

.northline-service-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.northline .northline-service-title-row strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.northline .northline-service-title-row .price {
  margin: 0;
  padding: 0;
  font-size: 1.72rem;
  line-height: 1;
}

.northline .northline-service-feature-copy > span {
  color: var(--muted);
}

.northline-service-includes {
  display: grid;
  gap: 7px;
  margin: 20px 0 17px;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.northline-service-includes li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.northline-service-includes li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.northline .northline-service-feature-copy > a {
  margin-top: auto;
}

.northline .northline-service-compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px 16px;
  border: 1px solid rgba(27, 50, 57, 0.1);
  border-left: 3px solid var(--accent);
  border-top-width: 1px;
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.88);
}

.northline-service-compact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 7px;
}

.northline .northline-service-compact .northline-service-duration {
  margin: 0;
}

.northline .northline-service-compact .price {
  margin: 0;
  padding: 0;
  font-size: 1.22rem;
}

.northline .northline-service-compact strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.02rem;
}

.northline .northline-service-compact > span {
  margin-top: 3px;
  color: var(--muted);
}

.northline .northline-service-compact > a {
  min-height: 32px;
  margin-top: 6px;
  font-size: 0.57rem;
}

.northline .service-tile a,
.northline-barber-copy a,
.northline-disclosure a,
.northline-footer-column a,
.northline-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.northline-footer-column a {
  margin-block: -5px;
  padding-block: 5px;
}

.northline-footer .northline-wordmark small {
  color: #c58d65;
}

.northline-footer-book {
  color: #e4ba95;
}

.northline-disclosure {
  color: rgba(255, 255, 255, 0.66);
}

@media (min-width: 901px) and (max-height: 720px) {
  .northline-service-feature-copy {
    padding: 21px 22px 18px;
  }

  .northline-service-includes {
    gap: 4px;
    margin: 12px 0 10px;
    padding-top: 11px;
  }

  .northline .northline-service-compact {
    padding: 12px 16px 10px;
  }

  .northline .northline-service-compact > span {
    font-size: 0.68rem;
  }
}

@media (max-width: 900px) and (min-width: 681px) {
  .northline .northline-service-feature {
    grid-template-columns: 1fr;
  }

  .northline-service-feature-image {
    min-height: 225px;
  }

  .northline-service-feature-copy {
    padding: 22px;
  }
}

@media (max-width: 680px) {
  .northline .northline-service-feature {
    border-top: 0;
    border-radius: 18px;
  }

  .northline-service-feature-image figcaption {
    left: 14px;
    bottom: 12px;
    font-size: 0.54rem;
  }

  .northline-service-title-row {
    margin-bottom: 8px;
  }

  .northline .northline-service-title-row strong {
    font-size: 1.38rem;
  }

  .northline .northline-service-title-row .price {
    font-size: 1.45rem;
  }

  .northline .northline-service-feature-copy > span {
    line-height: 1.5;
  }

  .northline .northline-service-feature-copy > a {
    margin-top: auto;
  }

  .northline .northline-service-compact .price {
    font-size: 1.55rem;
  }

  .northline .northline-service-compact strong {
    font-size: 1.12rem;
  }

  .northline .northline-service-compact > span {
    line-height: 1.58;
  }

  .northline-shop-section,
.northline-visit-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .northline-shop-section .northline-section-heading-row,
.northline-visit-section .northline-visit-copy > .eyebrow {
    margin-bottom: 13px;
  }

  .northline-shop-grid,
.northline-shop-side {
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .northline-service-feature-image {
    flex-basis: 122px;
    min-height: 122px;
  }

  .northline-shop-section,
.northline-visit-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
}

@media (min-width: 901px) {
  .northline .northline-service-compact {
    padding: 12px 16px 10px;
  }

  .northline-service-compact-top {
    margin-bottom: 5px;
  }

  .northline .northline-service-compact > span {
    margin-top: 2px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .northline .northline-service-compact > a {
    margin-top: 3px;
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  :root {
    --northline-section-pad-desktop: var(--northline-section-pad-short);
    --northline-book-pad-desktop: 42px;
  }
}

@media (max-width: 680px) {
  .northline-shave-photo img,
.northline-shave-photo picture {
    height: 100%;
  }
}

.northline-nav-backdrop {
  display: none;
}

@media (max-width: 900px) {
  body.northline-nav-open {
    overflow: hidden;
  }

  .northline .demo-header {
    z-index: 60;
  }

  .northline-nav-backdrop {
    position: fixed;
    z-index: 48;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: rgba(5, 12, 15, 0.66);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s,
        visibility 0s linear 0.22s;
  }

  .northline-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .northline .barber-links {
    position: fixed;
    z-index: 55;
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0 0 24px 24px;
    background: #17262c;
    color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 50px rgba(6, 14, 17, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.22s,
        transform 0.22s,
        visibility 0s linear 0.22s;
  }

  .northline .barber-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }

  .northline .barber-links > a:not(.demo-pill) {
    position: relative;
    min-height: 54px;
    padding: 15px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0;
    color: inherit;
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.13em;
  }

  .northline .barber-links > a:not(.demo-pill).is-active,
.northline .barber-links > a:not(.demo-pill):focus-visible,
.northline .barber-links > a:not(.demo-pill):hover {
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
  }

  .barber-nav-toggle {
    background: #fff;
  }
}

@media (max-width: 680px) {

  .northline .demo-modal {
    padding: 8px;
  }

  .northline-booking-modal-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100svh - 16px);
    max-height: none;
    overflow: hidden;
    padding: 0;
    border-radius: 20px;
  }

  .northline-booking-modal-topbar {
    position: relative;
    top: auto;
    z-index: 4;
    flex: 0 0 auto;
    margin: 0;
    padding: 22px 58px 14px 18px;
    border-bottom: 1px solid rgba(27, 50, 57, 0.08);
    background: #f8f7f2;
    backdrop-filter: none;
  }

  .northline .demo-modal-close {
    top: 15px;
    right: 13px;
  }

  .northline-booking-modal-heading h2 {
    font-size: clamp(2.1rem, 10.8vw, 2.7rem);
  }

  .northline-booking-modal-heading > p:not(.eyebrow) {
    font-size: 0.73rem;
    line-height: 1.5;
  }

  .northline-booking-progress {
    z-index: 3;
    flex: 0 0 auto;
    margin: 0;
    padding: 11px 15px 10px;
    border-bottom: 1px solid rgba(27, 50, 57, 0.08);
    background: #f8f7f2;
  }

  .northline-booking-progress em {
    display: none;
  }

  .northline-booking-stage {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 16px 18px 28px;
    scrollbar-width: thin;
    scrollbar-color: rgba(143, 93, 62, 0.42) transparent;
  }

  .northline-booking-preview-note {
    flex: 0 0 auto;
    margin: 0;
    padding: 9px 18px 7px;
    border-top: 1px solid rgba(27, 50, 57, 0.08);
    background: #f8f7f2;
    font-size: 0.6rem;
  }

  .northline-booking-actions {
    z-index: 4;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    margin: 0;
    padding: 10px 18px calc(12px + env(safe-area-inset-bottom));
    border-top: 0;
    background: #f8f7f2;
    box-shadow: 0 -12px 26px rgba(23, 36, 42, 0.08);
  }

  .northline-booking-actions .demo-button {
    flex: 1 1 0;
    justify-content: center;
    min-height: 48px;
  }

  .northline-booking-choice-grid {
    padding-bottom: 2px;
  }
}

@media (max-width: 390px) {

  .northline-booking-modal-topbar {
    padding-left: 15px;
  }

  .northline-booking-actions,
.northline-booking-preview-note,
.northline-booking-stage {
    padding-inline: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .northline .barber-links,
.northline-nav-backdrop {
    transition: none !important;
  }
}

.northline section[id] {
  scroll-margin-top: calc(var(--northline-header-height-active) + 16px);
}

.northline .demo-nav {
  min-height: var(--northline-header-height-active);
}

@media (min-width: 901px) {
  .northline .section {
    padding-block: var(--northline-section-pad-desktop);
  }

  .northline-book-section {
    padding-block: var(--northline-book-pad-desktop) !important;
  }
}

@media (max-width: 900px) {
  :root {
    --northline-header-height-active: 72px;
  }

  .northline-nav-backdrop {
    inset: var(--northline-header-height-active) 0 0;
  }

  .northline .barber-links {
    top: var(--northline-header-height-active);
  }
}

.northline-shop-note {
  padding: 24px 4px 4px 22px;
  border: 0;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  background: 0 0;
  box-shadow: none;
}

@media (hover: hover) {

  .northline-shop-note:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  .northline-gallery-section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .northline-shop-section,
.northline-visit-section {
    padding-block: 42px !important;
  }

  .northline-shop-grid {
    gap: 10px;
  }

  .northline-shop-side {
    display: block;
  }

  .northline-shop-note {
    position: relative;
    z-index: 2;
    border-left: 2px solid var(--accent);
    background: rgba(241, 240, 235, 0.97);
  }

  .northline-shop-note .eyebrow {
    margin-bottom: 8px;
  }

  .northline-shop-note h3 {
    max-width: 290px;
    font-size: 1.36rem;
    line-height: 1.04;
  }
}

@media (max-width: 390px) {
  .northline-shop-section,
.northline-visit-section {
    padding-block: 38px !important;
  }

  .northline-interior-photo {
    min-height: 205px;
  }

  .northline-shave-photo {
    height: 238px;
    min-height: 238px;
  }

  .northline-shop-note {
    margin-top: -50px;
    padding: 18px 16px 17px 19px;
  }
}

.northline-gallery-section {
  min-height: auto !important;
  padding-block: clamp(64px, 7svh, 88px) !important;
}

.northline-booking-choice,
.northline-time-button,
.northline-calendar-day {
  position: relative;
}

.northline-booking-choice.is-selected::after,
.northline-time-button.is-selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(88, 55, 35, 0.22);
}

.northline-booking-choice:active,
.northline-time-button:active,
.northline-calendar-day:not([disabled]):active,
.northline-full-menu-item button:active,
.northline .demo-button:not([disabled]):active {
  transform: scale(0.985);
}

.northline-full-menu-item button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(155, 104, 72, 0.34);
  border-radius: 999px;
  background: rgba(155, 104, 72, 0.055);
}

.northline-full-menu-item button:focus-visible,
.northline-full-menu-item button:hover {
  transform: translateY(-1px);
  border-color: rgba(155, 104, 72, 0.62);
  background: #fff9f3;
}

@media (max-width: 680px) {
  .northline-gallery-section {
    padding-block: 40px !important;
  }

  .northline-gallery-section .northline-section-heading-row {
    margin-bottom: 16px;
  }

  .northline-full-menu-item button {
    min-height: 44px;
    padding-inline: 15px;
  }
}

@media (max-width: 390px) {
  .northline-gallery-section {
    padding-block: 38px !important;
  }
}

.northline {
  --northline-card-radius: 22px;
  --northline-type-caption: 0.68rem;
  --northline-type-body-small: 0.78rem;
  --northline-touch-target: 46px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.northline-wordmark {
  font-size: 0.98rem;
  letter-spacing: 0.115em;
}

.northline-wordmark small {
  font-size: 0.62rem;
  letter-spacing: 0.19em;
}

.northline .demo-links {
  gap: clamp(20px, 2vw, 26px);
  font-size: 0.78rem;
}

.northline .demo-pill,
.northline .demo-button {
  min-height: var(--northline-touch-target);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 701px) {
  .northline .northline-hero h1 {
    letter-spacing: -0.087em;
  }
}

.northline-photo-card figcaption,
.northline-service-feature-image figcaption {
  font-size: var(--northline-type-caption);
  letter-spacing: 0.11em;
}

@media (min-width: 701px) {
  .northline-hero-image figcaption {
    font-size: var(--northline-type-caption);
    letter-spacing: 0.11em;
  }
}

.northline .northline-service-feature-copy > span {
  font-size: 0.8rem;
  line-height: 1.62;
}

.northline .northline-service-compact > span {
  font-size: 0.75rem;
  line-height: 1.55;
}

.northline-service-includes li {
  font-size: 0.74rem;
}

.northline-team-section {
  overflow: hidden;
}

.northline .northline-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(340px, 0.74fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: clamp(560px, 65svh, 680px);
}

.northline .barber-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 50, 57, 0.09);
  border-radius: var(--northline-card-radius);
  background: #fff;
  box-shadow: 0 15px 34px rgba(24, 39, 45, 0.065);
}

.northline .barber-card.is-featured {
  grid-row: 1 / 3;
  min-height: 100%;
  border: 0;
  background: var(--dark);
  box-shadow: 0 24px 54px rgba(24, 39, 45, 0.16);
}

.northline .barber-card:not(.is-featured) {
  display: grid;
  grid-template-columns: minmax(148px, 0.43fr) minmax(0, 0.57fr);
  min-height: 0;
}

.northline .barber-card.is-featured .northline-barber-photo {
  position: absolute;
  inset: 0;
  height: 100%;
}

.northline .barber-card.is-featured .northline-barber-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 17, 20, 0.02) 38%, rgba(9, 17, 20, 0.92) 100%);
}

.northline .barber-card.is-featured .northline-barber-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 650px;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
}

.northline .barber-card.is-featured h3 {
  color: #fff;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  line-height: 0.98;
}

.northline .barber-card.is-featured .northline-barber-days {
  color: #d9a57d;
}

.northline .barber-card.is-featured .northline-barber-copy a {
  color: #fff;
}

.northline .barber-card:not(.is-featured) .northline-barber-photo {
  height: 100%;
  min-height: 0;
}

.northline .barber-card:not(.is-featured) .northline-barber-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.4vw, 30px);
}

.northline .barber-card:not(.is-featured) h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
}

.northline-barber-days {
  font-size: 0.68rem !important;
  letter-spacing: 0.09em;
}

.northline .barber-card p {
  min-height: 0;
}

.northline-location-stack {
  position: relative;
  display: block;
  min-height: clamp(500px, 60svh, 620px);
}

.northline-exterior-photo {
  min-height: 100%;
  height: 100%;
  border-radius: var(--northline-card-radius);
  box-shadow: 0 24px 58px rgba(24, 39, 45, 0.15);
}

.northline-footer-column,
.northline-footer-grid > div:last-child {
  font-size: 0.76rem;
}

.northline-footer-heading {
  font-size: 0.66rem !important;
}

.northline-footer-book {
  font-size: 0.7rem;
}

.northline-disclosure {
  font-size: 0.75rem;
}

.northline-mobile-track-meta,
.northline-mobile-track-meta strong,
.northline-booking-progress em,
.northline-booking-choice span,
.northline .booking-option em {
  font-size: 0.68rem;
  letter-spacing: 0.085em;
}

@media (min-width: 681px) and (max-width: 1050px) {
  .northline .northline-team-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.92fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: clamp(650px, 72svh, 720px);
    height: clamp(650px, 72svh, 720px);
    gap: 14px;
  }

  .northline .barber-card.is-featured {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 0;
  }

  .northline .barber-card.is-featured .northline-barber-copy {
    padding: 30px 27px;
  }

  .northline .barber-card.is-featured h3 {
    font-size: clamp(2.35rem, 5vw, 3.25rem);
  }

  .northline .barber-card:not(.is-featured) {
    position: relative;
    display: block;
    grid-column: 2;
    min-height: 0;
    border: 0;
    background: var(--dark);
    box-shadow: 0 18px 38px rgba(24, 39, 45, 0.14);
  }

  .northline .barber-card:nth-child(2) {
    grid-row: 1;
  }

  .northline .barber-card:nth-child(3) {
    grid-row: 2;
  }

  .northline .barber-card:not(.is-featured) .northline-barber-photo {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .northline .barber-card:not(.is-featured) .northline-barber-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 17, 20, 0.05) 24%, rgba(9, 17, 20, 0.94) 100%);
  }

  .northline .barber-card:not(.is-featured) .northline-barber-copy {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 21px 20px 19px;
    color: #fff;
  }

  .northline .barber-card:not(.is-featured) h3 {
    color: #fff;
    font-size: clamp(1.55rem, 3.4vw, 2rem);
    line-height: 1;
  }

  .northline .barber-card:not(.is-featured) .northline-barber-days {
    color: #d9a57d;
  }

  .northline .barber-card:not(.is-featured) .northline-barber-copy a {
    margin-top: 9px;
    color: #fff;
    font-size: 0.68rem;
  }

  .northline-location-stack {
    min-height: 540px;
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .northline .northline-service-feature-copy > span,
.northline .northline-service-compact > span,
.northline-service-includes li {
    font-size: 0.75rem;
  }

  .northline .northline-service-compact {
    padding-block: 15px 13px;
  }
}

@media (max-width: 680px) {
  .northline .northline-service-feature-copy > span {
    font-size: 0.78rem;
  }

  .northline .northline-service-compact > span {
    font-size: 0.79rem;
  }

  .northline-wordmark {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .northline-wordmark small {
    font-size: 0.56rem;
    letter-spacing: 0.17em;
  }

  .northline-logo-mark-image {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .northline .northline-team-grid.northline-mobile-track {
    --northline-rail-card: min(87vw, 356px);
    min-height: 0;
    height: auto;
  }

  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured) {
    position: relative;
    display: block;
    flex: 0 0 var(--northline-rail-card);
    width: var(--northline-rail-card);
    height: min(540px, 69svh);
    min-height: 480px;
    overflow: hidden;
    border: 0;
    background: var(--dark);
    box-shadow: 0 18px 38px rgba(24, 39, 45, 0.15);
  }

  .northline-team-grid.northline-mobile-track .barber-card .northline-barber-photo,
.northline-team-grid.northline-mobile-track .barber-card:last-child .northline-barber-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .northline-team-grid.northline-mobile-track .barber-card .northline-barber-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 17, 20, 0.01) 30%, rgba(9, 17, 20, 0.95) 100%);
  }

  .northline-team-grid.northline-mobile-track .barber-card .northline-barber-copy {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    color: #fff;
  }

  .northline-team-grid.northline-mobile-track .barber-card h3,
.northline-team-grid.northline-mobile-track .barber-card.is-featured h3 {
    color: #fff;
    line-height: 1;
  }

  .northline-team-grid.northline-mobile-track .northline-barber-days {
    color: #d9a57d;
    font-size: 0.68rem !important;
  }

  .northline-team-grid.northline-mobile-track .northline-barber-copy a {
    margin-top: 13px;
    color: #fff;
    font-size: 0.72rem;
  }

  .northline-mobile-track-meta {
    margin-bottom: 10px;
  }

  .northline-location-stack {
    min-height: 0;
  }

  .northline-footer-brand,
.northline-footer-column,
.northline-footer-grid > div:last-child {
    min-width: 0;
    width: 100%;
  }

  .northline-footer-brand p,
.northline-footer-column,
.northline-footer-grid > div:last-child,
.northline-disclosure {
    font-size: 0.76rem;
  }

  .northline-footer-heading {
    font-size: 0.66rem !important;
  }

  .northline .booking-option.is-secondary em,
.northline-booking-preview-note {
    font-size: 0.7rem;
  }
}

@media (max-width: 390px) {
  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured) {
    height: min(510px, 67svh);
    min-height: 455px;
  }

  .northline-team-grid.northline-mobile-track .barber-card .northline-barber-copy {
    padding: 21px 19px 19px;
  }

  .northline-exterior-photo {
    height: 245px;
    min-height: 245px;
  }
}

@media (max-width: 900px) {
  :root {
    --northline-gutter: clamp(14px, 3.2vw, 26px);
    --northline-copy: 38rem;
    --northline-wide: 48rem;
  }

  html,
body.northline {
    overflow-x: clip;
  }

  .northline .container {
    width: min(calc(100% - (var(--northline-gutter) * 2)), 820px);
    margin-inline: auto;
  }

  .northline .section {
    padding-block: var(--northline-section-space);
  }

  .northline .demo-nav {
    position: relative;
    justify-content: center;
    min-height: 72px;
  }

  .northline .northline-nav > .northline-logo {
    justify-content: center;
    margin-inline: auto;
  }

  .northline .northline-mobile-actions {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .northline .northline-quick-book {
    display: none !important;
  }

  .northline .barber-links {
    justify-items: center;
    padding: 14px var(--northline-gutter) 20px;
    text-align: center;
  }

  .northline .barber-links > a:not(.demo-pill) {
    justify-content: center;
    width: min(100%, 330px);
    padding-inline: 18px;
    text-align: center;
  }

  .northline .eyebrow,
.northline .section-heading,
.northline .section-heading p,
.northline .northline-menu-note,
.northline .northline-disclosure {
    margin-inline: auto;
    text-align: center;
  }

  .northline-section-heading-row {
    display: grid;
    justify-items: center;
    gap: 0;
    margin-bottom: clamp(25px, 4vw, 34px);
    text-align: center;
  }

  .northline-section-heading-row .section-heading {
    width: min(100%, var(--northline-wide));
    max-width: var(--northline-wide);
    margin-inline: auto;
  }

  .northline .section-heading h2,
.northline-book-copy h2,
.northline-visit-copy h2 {
    width: min(100%, 13ch);
    margin-inline: auto;
    font-size: clamp(2.45rem, 7.4vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: -0.078em;
    text-align: center;
    text-wrap: balance;
  }

  .northline .section-heading p,
.northline-book-copy > p:not(.eyebrow),
.northline-visit-copy > p:not(.eyebrow) {
    width: min(100%, var(--northline-copy));
    margin-inline: auto;
    text-align: center;
    text-wrap: pretty;
  }

  .northline-section-heading-row .northline-text-link,
.northline .northline-text-link,
.northline .service-tile a,
.northline-barber-copy a {
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }

  .northline .actions,
.northline-book-copy .actions,
.northline-visit-copy .actions {
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .northline-photo-card figcaption,
.northline-service-feature-image figcaption {
    justify-content: center;
    text-align: center;
  }

  .northline-photo-card figcaption::after,
.northline-service-feature-image figcaption::after {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  .northline-services-section .northline-menu-note {
    max-width: 35rem;
  }

  .northline .northline-service-feature-copy,
.northline .northline-service-compact {
    align-items: center;
    text-align: center;
  }

  .northline-service-title-row,
.northline-service-compact-top {
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px 16px;
    width: 100%;
    text-align: center;
  }

  .northline .northline-service-feature-copy > span,
.northline .northline-service-compact > span {
    max-width: 31rem;
    margin-inline: auto;
    text-align: center;
    text-wrap: pretty;
  }

  .northline-service-includes {
    width: min(100%, 28rem);
    margin-inline: auto;
    text-align: left;
  }

  .northline .northline-service-feature-copy > a,
.northline .northline-service-compact > a {
    justify-content: center;
    margin-inline: auto;
  }

  .northline-shop-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-height: 0;
    gap: 14px;
  }

  .northline-interior-photo {
    width: min(100%, 760px);
    min-height: clamp(330px, 59vw, 500px);
    margin-inline: auto;
  }

  .northline-shop-side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
    width: min(100%, 760px);
    margin-inline: auto;
    gap: 14px;
  }

  .northline-shave-photo {
    min-height: clamp(350px, 58vw, 455px);
  }

  .northline-shop-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: clamp(24px, 4vw, 36px);
    border: 0;
    border-top: 2px solid var(--accent);
    border-radius: 18px;
    background: rgba(241, 240, 235, 0.98);
    box-shadow: 0 15px 34px rgba(24, 39, 45, 0.09);
    text-align: center;
  }

  .northline-shop-note h3,
.northline-shop-note p:last-child {
    margin-inline: auto;
    text-align: center;
    text-wrap: pretty;
  }

  .northline-shop-note h3 {
    max-width: 18ch;
  }

  .northline-shop-note p:last-child {
    max-width: 32rem;
  }

  .northline-team-grid.northline-mobile-track,
.northline .northline-team-grid.northline-mobile-track {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    margin-inline: auto;
    padding: 3px max(0px, calc((100% - 620px) / 2)) 15px;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    display: block;
    flex: 0 0 var(--northline-team-card);
    grid-column: auto;
    width: var(--northline-team-card);
    height: clamp(520px, 78svh, 650px);
    min-height: 520px;
    scroll-snap-align: center;
  }

  .northline-team-grid.northline-mobile-track .northline-barber-photo,
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child .northline-barber-photo {
    height: 100%;
  }

  .northline-team-grid.northline-mobile-track .barber-card .northline-barber-copy {
    display: grid;
    justify-items: center;
    padding: 27px 24px 24px;
    text-align: center;
  }

  .northline-team-grid.northline-mobile-track .barber-card h3,
.northline-team-grid.northline-mobile-track .barber-card p {
    margin-inline: auto;
    text-align: center;
    text-wrap: pretty;
  }

  .northline-mobile-track-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin: 2px auto 15px;
    text-align: center;
  }

  .northline-mobile-track-meta::before {
    grid-column: auto;
    width: 24px;
    flex: 0 0 24px;
  }

  .northline-mobile-track-meta > span:first-of-type,
.northline-mobile-track-meta strong {
    grid-column: auto;
    grid-row: auto;
  }

  .northline-gallery-section {
    padding-block: clamp(56px, 7vw, 76px);
  }

  .northline-book-section {
    padding-block: clamp(36px, 5.5vw, 52px) !important;
  }

  .northline-book-panel {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(24px, 4vw, 34px);
    padding: clamp(28px, 5vw, 44px);
    border-radius: 24px;
    text-align: center;
  }

  .northline-book-copy {
    display: grid;
    justify-items: center;
    width: min(100%, 650px);
    text-align: center;
  }

  .northline-book-copy .actions {
    display: flex;
    flex-direction: column;
  }

  .northline .booking-options {
    width: min(100%, 620px);
    margin-inline: auto;
    text-align: center;
  }

  .northline-book-options-heading {
    text-align: center;
  }

  .northline .booking-option,
.northline .booking-option strong,
.northline .booking-option em {
    justify-items: center;
    text-align: center;
  }

  .northline .booking-option {
    padding-inline: 18px;
  }

  .northline-visit-section {
    padding-block: clamp(54px, 7vw, 72px) !important;
  }

  .northline-visit-copy {
    display: grid;
    justify-items: center;
    width: min(100%, 680px);
    text-align: center;
  }

  .northline-location-stack {
    justify-items: center;
    width: min(100%, 740px);
    gap: 11px;
  }

  .northline-exterior-photo {
    width: 100%;
    min-height: 0;
    height: clamp(280px, 54vw, 430px);
  }

  .northline-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 26px;
    text-align: center;
  }

  .northline-footer-brand,
.northline-footer-column,
.northline-footer-grid > div:last-child {
    justify-items: center;
    text-align: center;
  }

  .northline-footer-brand {
    display: grid;
  }

  .northline-footer-logo {
    justify-content: center;
    margin-inline: auto;
  }

  .northline-footer-brand p {
    max-width: 31rem;
    margin-inline: auto;
    text-align: center;
  }

  .northline-footer-explore {
    display: flex;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .northline-footer-heading {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .northline-footer-heading::after {
    content: "";
    width: 22px;
    height: 1px;
    background: #c58d65;
  }

  .northline-footer-column > a,
.northline-footer-column > span,
.northline-footer-book {
    text-align: center;
  }

  .northline-service-menu-heading,
.northline-service-menu-footer,
.northline-booking-modal-heading,
.northline-booking-stage {
    text-align: center;
  }

  .northline-service-menu-heading > p,
.northline-service-menu-heading h2,
.northline-service-menu-footer p,
.northline-booking-modal-heading > p,
.northline-booking-modal-heading h2 {
    margin-inline: auto;
    text-align: center;
  }

  .northline-service-menu-footer {
    justify-items: center;
  }

  .northline-service-menu-footer .demo-button {
    justify-content: center;
    margin-inline: auto;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .northline-hero-image figcaption {
    justify-content: center;
    text-align: center;
  }

  .northline-hero-image figcaption::after {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  .northline .northline-hero {
    padding-block: clamp(26px, 5vw, 42px) clamp(42px, 7vw, 62px);
  }

  .northline-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(27px, 4vw, 38px);
  }

  .northline-hero-copy {
    display: grid;
    justify-items: center;
    width: min(100%, 720px);
    padding: 4px 0 0;
    text-align: center;
  }

  .northline .northline-hero h1 {
    width: 100%;
    margin: 0 auto 20px;
    font-size: clamp(3.35rem, 10.4vw, 5.45rem);
    line-height: 0.94;
    text-align: center;
    text-wrap: balance;
  }

  .northline .northline-hero h1 span,
.northline .northline-hero h1 span:last-child {
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    white-space: normal;
    font-size: 1em;
    letter-spacing: inherit;
  }

  .northline .northline-hero-copy > .actions {
    justify-content: center;
  }

  .northline-hero-image {
    width: min(100%, 760px);
    min-height: clamp(360px, 65vw, 540px);
    margin-inline: auto;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .northline .northline-service-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 360px;
  }

  .northline-service-feature-image {
    min-height: 360px;
  }

  .northline-service-feature-copy {
    justify-content: center;
    padding: 28px;
  }

  .northline .northline-service-compact {
    min-height: 220px;
    padding: 22px 18px;
    border-top: 3px solid var(--accent);
    border-left-width: 1px;
    border-radius: 0 0 16px 16px;
  }

  .northline .northline-service-compact > a {
    margin-top: auto;
  }

  .northline-services-section .northline-mobile-track-meta {
    display: none;
  }
}

@media (max-width: 680px) {
  .northline .section-heading h2,
.northline-book-copy h2,
.northline-visit-copy h2 {
    font-size: clamp(2.25rem, 11.2vw, 3.25rem);
  }

  .northline .actions,
.northline-visit-copy .actions {
    flex-wrap: wrap;
  }

  .northline-service-row.northline-mobile-track {
    display: flex !important;
    width: 100%;
    margin-inline: 0;
    padding: 3px 0 15px;
    gap: 14px !important;
    overflow-x: auto;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
  }

  .northline .northline-service-feature {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .northline-service-feature-image {
    flex: 0 0 138px;
  }

  .northline-service-feature-copy {
    flex: 1;
  }

  .northline .northline-service-compact {
    justify-content: flex-start;
    border-top: 3px solid var(--accent);
    border-left-width: 1px;
    border-radius: 0 0 18px 18px;
  }

  .northline .northline-service-compact > a {
    margin-top: auto;
  }

  .northline-shop-side {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .northline-shop-note {
    width: min(calc(100% - 24px), 500px);
    margin: -50px auto 0;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 18px 34px rgba(24, 39, 45, 0.13);
    backdrop-filter: blur(8px);
  }

  .northline-team-grid.northline-mobile-track,
.northline .northline-team-grid.northline-mobile-track {
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .northline-book-copy .actions {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .northline .section-heading h2,
.northline-book-copy h2,
.northline-visit-copy h2 {
    font-size: clamp(2.18rem, 11.3vw, 2.8rem);
  }

  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    height: min(535px, 70svh);
    min-height: 460px;
  }

  .northline-shop-note {
    width: min(calc(100% - 18px), 500px);
  }
}

@media (max-width: 900px) {
  .northline-team-grid.northline-mobile-track,
.northline .northline-team-grid.northline-mobile-track {
    --northline-team-card: 100%;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .northline-location-stack {
    display: grid;
    justify-items: center;
    gap: 0;
  }
}

@media (max-width: 680px) {
  .northline-shop-section {
    padding-block: 50px !important;
  }
}

:root {
  --northline-utility-size: 13px;
  --northline-compact-copy: 0.84rem;
  --northline-control-height: 46px;
  --northline-soft-border: rgba(27, 50, 57, 0.12);
}

.northline .northline-text-link,
.northline .northline-text-button,
.northline .northline-barber-copy a,
.northline .northline-team-book,
.northline .northline-footer-column > a,
.northline .northline-disclosure a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
}

.northline .barber-nav-toggle {
  width: var(--northline-control-height);
  height: var(--northline-control-height);
  padding: 11px;
}

.northline .northline-service-duration,
.northline .northline-barber-days,
.northline .northline-book-service-meta,
.northline .booking-option em,
.northline .northline-book-more,
.northline .northline-footer-column,
.northline .northline-footer-grid > div:last-child,
.northline .northline-footer-heading,
.northline .northline-footer-book,
.northline .northline-disclosure,
.northline .northline-full-menu-item button {
  font-size: var(--northline-utility-size);
}

.northline .northline-service-duration,
.northline .northline-footer-heading {
  letter-spacing: 0.11em;
}

.northline .northline-service-compact > span,
.northline .northline-service-feature-copy > span,
.northline .northline-barber-summary {
  font-size: var(--northline-compact-copy);
  line-height: 1.55;
}

.northline .northline-full-menu-item button {
  min-width: 64px;
  min-height: 44px;
  padding: 9px 13px;
}

.northline .demo-button {
  font-size: 13px !important;
}

.northline .northline-text-link,
.northline .northline-text-button,
.northline .northline-barber-copy a,
.northline .northline-team-book {
  font-size: 12.5px !important;
}

.northline .northline-barber-days,
.northline .northline-book-options-heading,
.northline .booking-option em {
  font-size: 12.5px !important;
}

.northline .northline-book-service-meta,
.northline .northline-menu-note,
.northline .northline-service-includes li {
  font-size: 13px !important;
}

.northline .booking-option em {
  letter-spacing: 0.055em;
}

.northline-services-section .northline-menu-note {
  max-width: 34rem;
  margin-top: 2px;
}

.northline-mobile-track-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 360px);
  margin: 5px auto 10px;
  color: var(--muted);
}

.northline-mobile-track-meta::before {
  display: none;
}

.northline-track-label {
  color: var(--accent-deep);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.northline-track-progress {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 5px;
  max-width: 170px;
}

.northline-track-progress i {
  display: block;
  flex: 1 1 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(27, 50, 57, 0.16);
  transition: background-color 180ms ease, transform 180ms ease;
}

.northline-track-progress i.is-past {
  background: rgba(155, 104, 72, 0.42);
}

.northline-track-progress i.is-active {
  background: var(--accent);
  transform: scaleY(1.8);
}

.northline-mobile-track-meta strong {
  min-width: 43px;
  color: var(--ink);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.northline-track-separator {
  color: rgba(27, 50, 57, 0.35);
  padding-inline: 2px;
}

.northline-barber-summary {
  max-width: 31rem;
}

.northline-team-book {
  margin: 2px auto 0;
}

.northline .booking-option {
  gap: 4px;
}

.northline-book-service-meta {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.northline .booking-option em {
  margin-top: 2px;
  font-style: normal;
  font-weight: 800;
}

.northline-book-more {
  display: none;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.5;
}

.northline-book-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(circle at 34% 0%, rgba(184, 126, 86, 0.16), transparent 34%),
    linear-gradient(145deg, #132229 0%, #1d3139 54%, #243b43 100%);
}

.northline-book-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 16px;
  pointer-events: none;
}

.northline-book-copy,
.northline .booking-options {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.northline-footer {
  padding: 42px 0 18px;
  border-top: 3px solid #a86f4c;
}

.northline-footer-grid {
  grid-template-columns: minmax(0, 1.62fr) minmax(126px, 0.5fr) minmax(220px, 0.72fr);
  padding-bottom: 22px;
}

.northline-footer-brand p {
  max-width: 430px;
  margin-top: 11px;
  font-size: 0.82rem;
}

.northline-footer-heading {
  letter-spacing: 0.13em;
}

.northline-disclosure {
  padding-top: 14px;
  line-height: 1.58;
}

.northline-disclosure::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 auto 13px;
  background: linear-gradient(90deg, transparent, #c58d65, transparent);
}

@media (min-width: 901px) {
  .northline .barber-links > a:not(.demo-pill) {
    font-size: 12.5px;
  }

  .northline-services-section .northline-mobile-track-meta,
.northline-team-section .northline-mobile-track-meta {
    display: none;
  }

  .northline-team-book {
    display: inline-flex;
    justify-self: end;
    width: fit-content !important;
    margin: 8px 0 0 auto !important;
  }

  .northline-book-copy h2,
.northline-visit-copy h2 {
    font-size: clamp(3.15rem, 4.35vw, 4.75rem);
  }

  .northline-book-panel {
    grid-template-columns: minmax(250px, 0.82fr) minmax(190px, 0.5fr) minmax(360px, 1.12fr);
    gap: clamp(20px, 2vw, 30px);
    align-items: stretch;
    padding: clamp(30px, 3vw, 42px);
  }

  .northline-book-copy {
    align-self: center;
  }

  .northline .booking-options {
    align-self: center;
  }
}

.northline-nav-book {
  display: none;
}

@media (max-width: 900px) {
  .northline .barber-links .northline-nav-book {
    display: inline-flex;
    width: min(100%, 250px);
    min-height: 48px;
    margin: 12px auto 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid rgba(210, 157, 118, 0.52);
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
  }

  .northline .barber-links .northline-nav-book span {
    color: #d6a078;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  :root {
    --northline-section-space: clamp(48px, 7vw, 62px);
  }

  .northline-team-section .northline-section-heading-row,
.northline-team-section .section-heading {
    width: 100%;
    justify-self: center;
  }

  .northline-team-section .section-heading h2,
.northline-team-section .section-heading > p {
    margin-inline: auto;
    text-align: center;
  }

  .northline-team-book {
    justify-content: center;
    margin-inline: auto;
  }
}

@media (min-width: 760px) and (max-width: 900px) {
  :root {
    --northline-section-space: 58px;
    --northline-copy: 34rem;
  }

  .northline .section-heading h2 {
    font-size: clamp(3.1rem, 7.2vw, 3.8rem);
  }

  .northline-book-copy h2,
.northline-visit-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.7rem, 6vw, 3.35rem);
  }

  .northline .northline-service-feature {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 330px;
  }

  .northline-service-feature-image {
    min-height: 330px;
  }

  .northline-service-feature-copy {
    padding: 24px 26px;
  }

  .northline .northline-service-compact {
    min-height: 190px;
    padding: 20px 17px;
    border-top: 3px solid var(--accent);
    border-left-width: 1px;
    border-radius: 0 0 16px 16px;
  }

  .northline-services-section .northline-mobile-track-meta {
    display: none;
  }

  .northline-shop-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
    align-items: stretch;
    gap: 14px;
  }

  .northline-interior-photo {
    width: 100%;
    height: 100%;
    min-height: 520px;
  }

  .northline-shop-side {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1.04fr) minmax(0, 0.96fr);
    width: 100%;
    gap: 14px;
  }

  .northline-shave-photo {
    min-height: 0;
  }

  .northline-shop-note {
    padding: 22px;
  }

  .northline-team-grid.northline-mobile-track,
.northline .northline-team-grid.northline-mobile-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 445px;
    gap: 12px;
    height: 445px !important;
    min-height: 445px !important;
    align-content: start;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    position: relative;
    grid-column: auto !important;
    grid-row: auto !important;
    width: auto;
    max-width: none;
    height: 445px;
    min-height: 445px;
    margin: 0;
    transform: none !important;
  }

  .northline-team-grid.northline-mobile-track .barber-card .northline-barber-copy {
    padding: 20px 16px 16px;
  }

  .northline-team-grid.northline-mobile-track .barber-card h3 {
    font-size: clamp(1.45rem, 3.25vw, 1.85rem);
  }

  .northline-team-grid.northline-mobile-track .northline-barber-summary {
    font-size: 0.77rem;
    line-height: 1.45;
  }

  .northline-team-section .northline-mobile-track-meta {
    display: none;
  }

  .northline-team-book {
    margin-top: 14px;
  }

  .northline-book-panel {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: stretch;
    gap: 20px 24px;
    padding: 28px;
    text-align: left;
  }

  .northline-book-copy,
.northline .booking-options {
    grid-row: 2;
  }

  .northline-book-copy {
    justify-items: start;
    text-align: left;
  }

  .northline-book-copy .eyebrow,
.northline-book-copy h2,
.northline-book-copy > p {
    margin-inline: 0;
    text-align: left;
  }

  .northline-book-copy .actions {
    align-items: flex-start;
    width: auto;
  }

  .northline .booking-options {
    width: 100%;
  }

  .northline-visit-copy {
    justify-items: start;
    width: 100%;
    text-align: left;
  }

  .northline-visit-copy .eyebrow,
.northline-visit-copy h2,
.northline-visit-copy > p {
    margin-inline: 0;
    text-align: left;
  }

  .northline-visit-copy .actions {
    justify-content: flex-start;
  }

  .northline-location-stack {
    width: 100%;
  }

  .northline-exterior-photo {
    height: 430px;
  }
}

@media (min-width: 681px) and (max-width: 759px) {
  .northline .section {
    padding-block: 52px;
  }

  .northline-book-section {
    padding-block: 30px !important;
  }

  .northline-gallery-section {
    padding-block: 48px;
  }

  .northline-book-panel {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 22px;
    padding: 28px;
  }

  .northline-book-copy,
.northline .booking-options {
    grid-row: 2;
  }

  .northline .northline-service-feature {
    min-height: 320px;
  }

  .northline-service-feature-image {
    min-height: 320px;
  }

  .northline .northline-service-compact {
    min-height: 185px;
  }

  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    height: 540px;
    min-height: 540px;
  }
}

@media (min-width: 901px) and (max-height: 790px) {
  :root {
    --northline-section-pad-desktop: 42px;
    --northline-book-pad-desktop: 34px;
  }

  .northline .section:not(.northline-hero) {
    padding-block: 42px;
  }

  .northline-section-heading-row {
    margin-bottom: 23px;
  }

  .northline .section-heading h2 {
    font-size: clamp(2.55rem, 3.7vw, 3.55rem);
  }

  .northline .section-heading > p,
.northline-visit-copy > p:not(.eyebrow) {
    line-height: 1.55;
  }

  .northline .northline-service-feature {
    min-height: 360px;
  }

  .northline-service-feature-image {
    min-height: 172px;
  }

  .northline-service-feature-copy {
    padding: 18px 21px 19px;
  }

  .northline .northline-service-compact {
    min-height: 108px;
    padding: 15px 18px 14px;
  }

  .northline-shop-grid {
    gap: 18px;
  }

  .northline-shop-grid {
    align-items: stretch;
    min-height: 410px;
    height: 410px;
  }

  .northline-interior-photo {
    min-height: 410px;
    height: 410px;
  }

  .northline-shop-side {
    grid-template-rows: 190px minmax(0, 1fr);
    min-height: 410px;
    gap: 14px;
  }

  .northline-shave-photo {
    min-height: 190px;
    height: 190px;
  }

  .northline-shop-note {
    min-height: 0;
    padding: 15px 4px 0 18px;
  }

  .northline-shop-note h3 {
    margin-bottom: 8px;
    font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  }

  .northline-shop-note p:last-child {
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .northline .northline-team-grid {
    min-height: 545px;
    height: 545px;
  }

  .northline .barber-card.is-featured,
.northline .barber-card:not(.is-featured) {
    min-height: 0;
  }

  .northline .barber-card.is-featured .northline-barber-photo {
    min-height: 315px;
  }

  .northline-team-book {
    margin-top: 5px !important;
  }

  .northline-book-panel {
    min-height: 0;
    padding: 28px;
    gap: 22px;
  }

  .northline-book-copy h2,
.northline-visit-copy h2 {
    font-size: clamp(2.65rem, 3.7vw, 3.65rem);
  }

  .northline .booking-option.is-earliest {
    min-height: 108px;
    padding: 17px 19px 16px 22px;
  }

  .northline-exterior-photo {
    min-height: 365px;
    height: 365px;
  }
}

@media (max-width: 680px) {
  :root {
    --northline-gutter: clamp(13px, 4vw, 16px);
    --northline-section-space: clamp(44px, 11.5vw, 54px);
  }

  .northline-section-heading-row {
    margin-bottom: clamp(20px, 5.5vw, 25px);
  }

  .northline .northline-services-section {
    padding-block: 40px;
  }

  .northline .northline-shop-section {
    padding-block: 38px;
  }

  .northline .northline-team-section {
    padding-block: 40px;
  }

  .northline .section-heading h2 {
    font-size: clamp(2.22rem, 10.8vw, 2.92rem);
  }

  .northline-book-copy h2,
.northline-visit-copy h2 {
    width: min(100%, 12ch);
    font-size: clamp(2.08rem, 9.8vw, 2.68rem);
    line-height: 1;
  }

  .northline .section-heading p,
.northline-book-copy > p:not(.eyebrow),
.northline-visit-copy > p:not(.eyebrow) {
    line-height: 1.55;
  }

  .northline-service-feature-copy {
    padding: 14px 17px 16px;
  }

  .northline .northline-service-compact {
    padding: 20px 19px 18px;
  }

  .northline-service-includes {
    display: none;
  }

  .northline-services-section .northline-menu-note {
    max-width: 25rem;
    margin-top: 0;
    font-size: 0.78rem;
  }

  .northline-mobile-track-meta {
    width: min(100%, 315px);
    margin: 3px auto 7px;
  }

  .northline-interior-photo {
    height: clamp(205px, 53vw, 238px);
    min-height: 205px;
  }

  .northline-shave-photo {
    height: clamp(222px, 57vw, 255px);
    min-height: 222px;
  }

  .northline-shop-note {
    margin-top: -50px;
    padding: 17px 17px 15px;
  }

  .northline-shop-note p:last-child {
    font-size: 0.82rem;
    line-height: 1.52;
  }

  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    height: min(440px, 59svh);
    min-height: 400px;
  }

  .northline-team-grid.northline-mobile-track .barber-card .northline-barber-copy {
    padding: 18px 19px 16px;
  }

  .northline-team-grid.northline-mobile-track .barber-card h3,
.northline-team-grid.northline-mobile-track .barber-card.is-featured h3 {
    font-size: clamp(1.72rem, 7.2vw, 2rem);
  }

  .northline-team-grid.northline-mobile-track .northline-barber-summary {
    max-width: 24rem;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .northline-team-book {
    margin-top: -1px;
  }

  .northline-book-panel::after {
    border-radius: 13px;
  }

  .northline-book-copy {
    grid-row: 2;
  }

  .northline .booking-options {
    grid-row: 3;
  }

  .northline-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
  }

  .northline-footer-brand {
    grid-column: 1 / -1;
    justify-items: center;
  }

  .northline-footer-brand p {
    max-width: 22rem;
    margin: 6px auto 0;
    line-height: 1.5;
    text-align: center;
  }

  .northline-footer-column,
.northline-footer-grid > div:last-child {
    align-content: start;
    justify-items: center;
    gap: 1px;
    text-align: center;
  }

  .northline-footer-heading {
    justify-content: center;
    width: 100%;
    margin-bottom: 4px;
    text-align: center;
  }

  .northline-footer-heading > span {
    display: none;
  }

  .northline-footer-column > a,
.northline-footer-column > span,
.northline-footer-book {
    text-align: center;
  }

  .northline-footer-explore a + a::before {
    position: absolute;
    top: 50%;
    left: -7px;
    color: rgba(255, 255, 255, 0.42);
    transform: translateY(-50%);
  }

  .northline-disclosure {
    max-width: 29rem;
  }
}

@media (max-width: 369px) {
  .northline-track-label {
    display: none;
  }

  .northline-track-progress {
    max-width: 180px;
  }
}

@media (max-height: 740px) and (max-width: 680px) {
  .northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    height: 410px;
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .northline-track-progress i {
    transition: none;
  }
}

:root {
  --northline-v691-phone-section-space: 42px;
  --northline-v691-phone-tight-space: 30px;
  --northline-v691-panel-inset: 14px;
}

.northline .northline-logo,
.northline .northline-full-menu-item button,
.northline .northline-service-menu-close,
.northline .demo-modal-close {
  min-height: 44px;
}

.northline-location-stack {
  isolation: isolate;
}

.northline-exterior-photo {
  position: relative;
  z-index: 1;
}

.northline-exterior-photo figcaption {
  z-index: 1;
}

@media (min-width: 1100px) and (min-height: 760px) {
  .northline-booking-modal-card {
    width: min(1100px, calc(100vw - 48px));
    max-height: calc(100svh - 32px);
    padding: 26px 32px 24px;
  }

  .northline-booking-modal-heading h2 {
    margin-bottom: 7px;
    font-size: clamp(3.45rem, 4.35vw, 4rem);
  }

  .northline-booking-modal-heading > p:not(.eyebrow) {
    line-height: 1.5;
  }

  .northline-booking-progress {
    margin: 15px 0 13px;
  }

  .northline-booking-stage {
    min-height: 0;
  }

  .northline-booking-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .northline-booking-choice {
    min-height: 106px;
    padding: 12px 14px;
  }

  .northline-booking-choice small {
    line-height: 1.35;
  }

  .northline-booking-preview-note,
.northline-booking-actions {
    margin-top: 11px;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .northline-exterior-photo figcaption {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 680px) {
  .northline .northline-services-section,
.northline .northline-shop-section,
.northline .northline-team-section {
    padding-block: var(--northline-v691-phone-section-space) !important;
  }

  .northline .northline-gallery-section {
    padding-block: 31px !important;
  }

  .northline .northline-book-section {
    padding-block: 14px !important;
  }

  .northline .northline-visit-section {
    padding-block: 25px !important;
  }

  .northline-book-panel {
    gap: 10px !important;
    padding: var(--northline-v691-panel-inset) !important;
  }

  .northline-book-panel::after {
    inset: 8px !important;
  }

  .northline-book-copy h2 {
    margin-bottom: 13px !important;
  }

  .northline-book-copy > p:not(.eyebrow) {
    margin-bottom: 14px !important;
  }

  .northline-book-copy .actions {
    gap: 1px !important;
  }

  .northline .booking-options {
    gap: 7px !important;
  }

  .northline .booking-option {
    min-height: 96px !important;
    padding: 11px 14px !important;
  }

  .northline-book-more {
    display: block !important;
    margin-top: 0 !important;
  }

  .northline-visit-copy > p:not(.eyebrow) {
    margin-bottom: 0;
  }

  .northline-visit-copy .actions {
    gap: 7px !important;
    margin-top: 14px !important;
  }

  .northline-exterior-photo {
    height: clamp(174px, 48vw, 198px) !important;
    min-height: 174px !important;
  }

  .northline-footer {
    padding: 23px 0 13px !important;
  }

  .northline-footer-grid {
    gap: 13px 14px !important;
    padding-bottom: 13px !important;
  }

  .northline-footer-explore {
    display: grid !important;
    grid-template-columns: repeat(3, auto);
    align-content: flex-start;
    align-items: center;
    justify-content: center;
    column-gap: 6px !important;
    row-gap: 0 !important;
  }

  .northline-footer-explore .northline-footer-heading {
    grid-column: 1 / -1;
  }

  .northline-footer-explore > a {
    min-height: 44px !important;
    padding: 10px 0 !important;
  }

  .northline-footer-explore a + a::before {
    content: none !important;
  }

  .northline-footer-book {
    margin-top: 0 !important;
  }

  .northline-disclosure {
    padding-top: 10px !important;
  }
}

@media (max-width: 359px) {
  .northline-footer-explore {
    grid-template-columns: repeat(2, auto);
  }

  .northline-footer-explore .northline-footer-heading,
.northline-footer-explore > a:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1100px) and (max-height: 800px) {
  .northline-booking-modal-card {
    padding: 18px 26px 16px;
  }

  .northline-booking-modal-heading h2 {
    margin-bottom: 4px;
    font-size: clamp(2.85rem, 3.7vw, 3.2rem);
  }

  .northline-booking-modal-heading > p:not(.eyebrow) {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .northline-booking-progress {
    margin: 9px 0 8px;
  }

  .northline-booking-progress span {
    width: 22px;
    height: 22px;
  }

  .northline-booking-progress em {
    font-size: 0.5rem;
  }

  .northline-booking-choice {
    gap: 3px;
    min-height: 86px;
    padding: 9px 12px;
  }

  .northline-booking-choice strong {
    font-size: 0.92rem;
  }

  .northline-booking-choice small {
    font-size: 0.62rem;
    line-height: 1.28;
  }

  .northline-booking-choice b {
    font-size: 0.76rem;
  }

  .northline-modal-menu-link,
.northline-booking-preview-note,
.northline-booking-actions {
    margin-top: 8px;
  }
}

body.northline {
  --muted: #52656a;
  --accent: #805135;
  --accent-deep: #693f29;
}

.barber-header .northline-logo-mark-image {
  position: relative;
}

.barber-header .northline-logo-mark-image img {
  position: absolute;
  inset: 0;
  transition: opacity 220ms ease;
}

.barber-header .northline-logo-mark-light {
  opacity: 0;
}

@media (min-width: 901px) {
  .northline .northline-hero h1 {
    max-width: 690px;
    letter-spacing: -0.073em;
    line-height: 0.92;
  }

  .northline .northline-hero h1 span {
    white-space: nowrap;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .northline .northline-hero h1 {
    max-width: 780px;
    letter-spacing: -0.071em;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }

  body.northline section[id] {
    scroll-margin-top: 82px;
  }

  body.northline .barber-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    border-bottom-color: rgba(27, 50, 57, 0.1);
    background: rgba(241, 240, 235, 0.97);
    box-shadow: 0 9px 28px rgba(18, 31, 36, 0.08);
    backdrop-filter: blur(18px);
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) {
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(9, 16, 19, 0.72) 0%, rgba(9, 16, 19, 0.27) 72%, transparent 100%);
    box-shadow: none;
    backdrop-filter: none;
  }

  body.northline .barber-header .demo-nav {
    min-height: 72px;
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) .northline-logo-mark-dark {
    opacity: 0;
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) .northline-logo-mark-light {
    opacity: 1;
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) .northline-wordmark {
    color: #fffaf4;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) .northline-wordmark small {
    color: #d8aa88;
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) .northline-quick-book {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fffaf4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) .barber-nav-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(9, 17, 20, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
  }

  body.northline:not(.northline-nav-open) .barber-header:not(.is-scrolled) .barber-nav-toggle span {
    background: #fffaf4;
  }

  body.northline .northline-hero {
    position: relative;
    display: flex;
    min-height: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background: #10191d;
    isolation: isolate;
  }

  body.northline .northline-hero > .container {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
  }

  body.northline .northline-hero-grid {
    position: relative;
    display: block;
    min-height: 100svh;
    gap: 0;
  }

  body.northline .northline-hero-copy {
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: flex;
    width: min(100%, 430px);
    min-height: 100svh;
    max-width: 430px;
    margin-inline: auto;
    padding: 34px 17px clamp(78px, 22vw, 96px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    transform: none;
    translate: none;
    transition: none;
    animation: none;
    will-change: auto;
  }

  body.northline .northline-hero h1 {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    color: #fffaf5;
    font-size: clamp(3.02rem, 13.35vw, 3.78rem);
    line-height: 0.93;
    letter-spacing: -0.066em;
    text-align: center;
    text-shadow: 0 9px 30px rgba(0, 0, 0, 0.28);
    text-wrap: balance;
  }

  body.northline .northline-hero h1 span,
body.northline .northline-hero h1 span:last-child {
    display: block;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    color: inherit;
    font-size: 1em;
    letter-spacing: inherit;
    white-space: nowrap;
  }

  body.northline .northline-hero h1 span + span {
    margin-top: 0.14em;
  }

  body.northline .northline-hero-copy > .actions {
    display: flex;
    width: min(100%, 340px);
    margin: 24px auto 0;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 9px;
  }

  body.northline .northline-hero-copy .demo-button {
    min-width: 0;
    min-height: 46px;
    padding: 12px 14px;
    flex: 1 1 0;
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.035em;
  }

  body.northline .northline-hero-copy .demo-button.primary {
    border: 1px solid rgba(255, 250, 245, 0.88);
    background: #f5efe7;
    color: #17242a;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  }

  body.northline .northline-hero-copy .demo-button.secondary {
    border-color: rgba(255, 255, 255, 0.31);
    background: rgba(18, 27, 31, 0.5);
    color: #fffaf4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
  }

  body.northline .northline-hero-image {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    min-height: 0;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #10191d;
    box-shadow: none;
    transform: none;
  }

  body.northline .northline-hero-image picture,
body.northline .northline-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
  }

  body.northline .northline-hero-image img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center center;
    transform: none;
    transition: none;
  }

  body.northline .northline-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 14, 17, 0.46) 0%, rgba(8, 14, 17, 0.08) 27%, rgba(8, 14, 17, 0.17) 47%, rgba(8, 14, 17, 0.74) 73%, rgba(8, 14, 17, 0.93) 100%),
        radial-gradient(circle at 50% 17%, rgba(255, 246, 236, 0.08), transparent 33%);
  }

  body.northline .northline-hero-image figcaption {
    display: none;
  }

  body.northline .northline-services-section {
    border-top: 1px solid rgba(255, 255, 255, 0.62);
  }

  body.northline .northline-team-book {
    margin-top: 11px;
  }
}

@media (max-width: 360px) {
  body.northline .northline-hero-copy {
    box-sizing: border-box;
    padding-inline: 13px;
  }

  body.northline .northline-hero h1 {
    font-size: clamp(2.68rem, 13vw, 3rem);
  }

  body.northline .northline-hero-copy > .actions {
    gap: 7px;
  }

  body.northline .northline-hero-copy .demo-button {
    padding-inline: 9px;
    font-size: 0.61rem;
  }
}

@media (max-width: 680px) {
  .northline-service-row.northline-mobile-track,
.northline .northline-team-grid.northline-mobile-track {
    --northline-rail-gap: 10px;
    --northline-rail-card: min(74vw, 310px);
    padding-inline: max(0px, calc((100% - var(--northline-rail-card)) / 2));
    scroll-padding-inline: max(0px, calc((100% - var(--northline-rail-card)) / 2));
  }

  .northline-team-grid.northline-mobile-track,
.northline .northline-team-grid.northline-mobile-track {
    --northline-team-card: var(--northline-rail-card);
  }

  .northline-service-row.northline-mobile-track .service-tile,
.northline-team-grid.northline-mobile-track .barber-card,
.northline-team-grid.northline-mobile-track .barber-card.is-featured,
.northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    flex-basis: var(--northline-rail-card);
    width: var(--northline-rail-card);
  }

  .northline-service-feature-image {
    flex-basis: 112px;
    min-height: 112px;
  }

  .northline-shop-section .section-heading h2 {
    max-width: 10.8ch;
    font-size: clamp(2.04rem, 9.7vw, 2.62rem);
    line-height: 1.01;
  }

  .northline-shop-section .northline-section-heading-row {
    margin-bottom: 16px;
  }

  .northline-shop-section .section-heading > p {
    max-width: 24rem;
  }

  .northline-team-section .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.1rem, 9.9vw, 2.68rem);
    line-height: 1;
  }

  .northline-team-section .northline-section-heading-row {
    margin-bottom: 28px;
  }

  .northline-team-section .section-heading > p {
    max-width: 25rem;
  }

  .northline-visit-copy h2 {
    max-width: 12.6ch;
    font-size: clamp(1.98rem, 9.25vw, 2.5rem);
    line-height: 1.02;
  }

  .northline-visit-copy > p:not(.eyebrow) {
    max-width: 22rem;
    margin-inline: auto;
  }
}

@media (max-width: 369px) {
  .northline-service-row.northline-mobile-track,
.northline .northline-team-grid.northline-mobile-track {
    --northline-rail-card: min(76vw, 278px);
  }
}

@media (max-width: 680px) {
  .northline-reveal-ready .northline-mobile-track > .service-tile,
.northline-reveal-ready .northline-mobile-track > .barber-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

.northline-anchor-alias {
  display: block;
  width: 1px;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.northline-inside-section {
  overflow: clip;
}

.northline-inside-heading-row .section-heading {
  max-width: 760px;
}

.northline-inside-grid {
  align-items: stretch;
}

.northline-consultation-photo img {
  object-position: 52% center;
}

.northline-inside-note {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 237, 0.96)),
    #f7f4ed;
}

.northline-book-visit-section {
  position: relative;
  overflow: clip;
  padding-block: clamp(64px, 7.4vw, 104px);
  background: radial-gradient(circle at 86% 6%, rgba(171, 112, 73, 0.1), transparent 28%),
    linear-gradient(180deg, #f4f2ec 0%, #eeece5 100%);
}

.northline-book-visit-landing {
  display: grid;
  gap: clamp(26px, 3.5vw, 46px);
}

.northline-book-visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 2.8vw, 34px);
  align-items: stretch;
}

.northline-final-book-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1.18fr) !important;
  gap: clamp(22px, 2.5vw, 34px) !important;
  align-items: center !important;
  min-height: 100%;
  padding: clamp(28px, 3.25vw, 44px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 28px 62px rgba(17, 31, 36, 0.16);
}

.northline-final-book-panel::after {
  inset: 15px !important;
  border-radius: 14px !important;
}

.northline-final-book-panel .northline-book-copy {
  align-self: center;
}

.northline-final-book-panel .northline-book-copy h3 {
  max-width: 8.8ch;
  margin: 0 0 15px;
  color: #fffaf4;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(2.05rem, 3.2vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.northline-final-book-panel .northline-book-copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 20px;
}

.northline-final-book-panel .booking-options {
  align-self: center;
  min-width: 0;
}

.northline-final-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px;
  margin: 0;
}

.northline-final-actions .demo-button {
  white-space: nowrap;
}

@media (min-width: 1001px) {
  .northline-book-visit-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  }

  .northline-final-book-panel {
    grid-template-columns: 1fr !important;
    align-content: center !important;
  }

  .northline-final-book-panel .northline-book-copy h3 {
    max-width: 9.5ch;
  }
}

@media (min-width: 1220px) {
  .northline-book-visit-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  }

  .northline-final-book-panel {
    grid-template-columns: minmax(220px, 0.78fr) minmax(330px, 1.22fr) !important;
  }
}

@media (max-width: 900px) {

  .northline-final-actions {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .northline .northline-inside-section {
    padding-block: 42px !important;
  }

  .northline-inside-heading-row {
    margin-bottom: 20px !important;
  }

  .northline-inside-heading-row .section-heading h2 {
    max-width: 10.6ch;
    font-size: clamp(2.08rem, 9.8vw, 2.64rem);
    line-height: 1;
  }

  .northline-inside-heading-row .section-heading > p:not(.eyebrow) {
    max-width: 22rem;
    margin-inline: auto;
  }

  .northline-consultation-photo {
    height: clamp(286px, 76vw, 326px) !important;
    min-height: 286px !important;
  }

  .northline-consultation-photo img {
    object-position: center 44%;
  }

  .northline .northline-book-visit-section {
    padding-block: 42px !important;
  }

  .northline-book-visit-landing {
    gap: 24px;
  }

  .northline-book-visit-grid {
    gap: 20px;
  }

  .northline-final-book-panel {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
    border-radius: 18px;
  }

  .northline-final-book-panel::after {
    inset: 8px !important;
    border-radius: 12px !important;
  }

  .northline-final-book-panel .northline-book-copy {
    text-align: center;
  }

  .northline-final-book-panel .northline-book-copy h3 {
    max-width: 10ch;
    margin: 0 auto 12px;
    font-size: clamp(1.92rem, 9vw, 2.42rem);
  }

  .northline-final-book-panel .northline-book-copy > p:not(.eyebrow) {
    max-width: 21rem;
    margin: 0 auto 14px !important;
  }

  .northline-final-book-panel .northline-book-copy .actions {
    align-items: center;
  }

  .northline-final-book-panel .booking-options {
    gap: 7px !important;
  }

  .northline-final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .northline-final-actions .demo-button {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }
}

@media (max-width: 369px) {
  .northline-final-actions {
    grid-template-columns: 1fr;
  }
}

body.northline .northline-services-ledger-heading .section-heading {
  margin: 0;
  text-align: left;
}

body.northline .northline-services-ledger-heading .eyebrow {
  margin-bottom: 17px;
}

body.northline .northline-services-ledger-layout {
  display: grid;
}

body.northline .northline-services-ledger-visual {
  position: relative;
  margin: 0;
}

body.northline .northline-services-ledger-visual img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}

body.northline .northline-services-ledger-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.northline .northline-services-ledger-visual figcaption {
  position: absolute;
  z-index: 2;
  display: grid;
  color: #fffaf4;
}

body.northline .northline-services-ledger-visual figcaption span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.northline .northline-services-ledger-visual figcaption span::before {
  content: "";
  width: 28px;
  height: 1px;
}

body.northline .northline-services-ledger-visual figcaption strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  letter-spacing: -0.045em;
}

body.northline .northline-service-ledger-item {
  position: relative;
  display: grid;
  align-items: center;
  color: var(--ink);
  isolation: isolate;
}

body.northline .northline-service-ledger-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0;
  transform: scaleY(0.92);
  transition: opacity 240ms ease, transform 340ms cubic-bezier(.2,.7,.2,1);
}

body.northline .northline-service-ledger-item:hover::before,
body.northline .northline-service-ledger-item:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

body.northline .northline-service-ledger-item:focus-visible {
  outline: 2px solid rgba(185, 108, 58, 0.75);
  outline-offset: 4px;
}

body.northline .northline-service-ledger-number {
  align-self: start;
}

body.northline .northline-service-ledger-copy {
  display: grid;
  min-width: 0;
}

body.northline .northline-service-ledger-copy strong {
  font-family: Manrope, Inter, Arial, sans-serif;
}

body.northline .northline-service-ledger-label {
  font-weight: 800;
  text-transform: uppercase;
}

body.northline .northline-service-ledger-meta {
  display: grid;
  justify-items: end;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.northline .northline-service-ledger-meta span {
  font-weight: 700;
  text-transform: uppercase;
}

body.northline .northline-service-ledger-meta strong {
  padding: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  line-height: 1;
}

body.northline .northline-service-ledger-arrow {
  transform: translate(-4px, 4px);
  opacity: 0;
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.7,.2,1);
}

body.northline .northline-service-ledger-item:hover .northline-service-ledger-arrow,
body.northline .northline-service-ledger-item:focus-visible .northline-service-ledger-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

body.northline .northline-services-ledger-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

body.northline .northline-services-ledger-footer > p {
  margin: 0;
}

body.northline .northline-services-ledger-footer > p strong {
  color: var(--ink);
  font-weight: 700;
}

body.northline .northline-services-ledger-actions {
  display: flex;
  align-items: center;
}

body.northline .northline-services-ledger-actions .northline-text-button {
  white-space: nowrap;
}

body.northline .northline-services-ledger-actions .demo-button {
  justify-content: center;
}

@media (max-width: 980px) {
  body.northline .northline-service-ledger-item {
    grid-template-columns: 32px minmax(0, 1fr) 76px 18px;
    gap: 14px;
    min-height: 142px;
  }
}

@media (max-width: 760px) {
  body.northline .northline-services-ledger-heading {
    display: block;
  }

  body.northline .northline-services-ledger-heading .section-heading {
    max-width: 100%;
    margin-inline: auto;
  }

  body.northline .northline-services-ledger-heading .eyebrow {
    margin-bottom: 15px;
  }

  body.northline .northline-services-ledger-heading h2 {
    line-height: 0.97;
    letter-spacing: -0.06em;
  }

  body.northline .northline-services-ledger-heading .section-heading > p:last-child {
    line-height: 1.62;
  }

  body.northline .northline-services-ledger-layout {
    display: block;
  }

  body.northline .northline-services-ledger-visual img {
    object-position: center 48%;
  }

  body.northline .northline-services-ledger-visual figcaption span {
    font-size: 0.61rem;
  }

  body.northline .northline-service-ledger {
    margin-top: 34px;
  }

  body.northline .northline-service-ledger-item {
    grid-template-areas: "number copy meta"
        "number copy meta";
  }

  body.northline .northline-service-ledger-number {
    grid-area: number;
  }

  body.northline .northline-service-ledger-copy {
    grid-area: copy;
  }

  body.northline .northline-service-ledger-meta {
    grid-area: meta;
    align-self: start;
  }
}

@media (max-width: 390px) {
  body.northline .northline-service-ledger-item {
    padding-block: 22px 23px;
  }

  body.northline .northline-service-ledger-copy > span:last-child {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-services-ledger-visual img,
body.northline .northline-service-ledger-item::before,
body.northline .northline-service-ledger-arrow {
    transition: none;
  }
}

body.northline .northline-services-ledger-section {
  --northline-services-silver: #98a3ad;
  --northline-services-silver-deep: #75818c;
  --northline-services-line: rgba(85, 95, 103, 0.15);
  --northline-services-copper: #b96c3a;
  --northline-services-cream: #f4eee6;
  position: relative;
  overflow: clip;
  padding-block: clamp(84px, 9svh, 128px);
  border-top: 1px solid rgba(36, 43, 48, 0.08);
  border-bottom: 1px solid rgba(36, 43, 48, 0.08);
  background: linear-gradient(180deg, rgba(250, 251, 251, 0.76) 0%, rgba(244, 246, 247, 0.67) 34%, rgba(238, 242, 243, 0.80) 100%),
    url("../assets/northline/silver-marble-gold-line.webp") 52% center / cover no-repeat;
}

body.northline .northline-services-ledger-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    repeating-linear-gradient(180deg, rgba(121, 133, 143, 0.03) 0, rgba(121, 133, 143, 0.03) 1px, transparent 1px, transparent 96px);
  opacity: 0.38;
}

body.northline .northline-services-ledger {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1180px);
  backdrop-filter: saturate(1.02);
}

body.northline .northline-services-ledger-heading {
  display: block;
  margin-bottom: clamp(30px, 4vw, 46px);
}

body.northline .northline-services-ledger-heading .section-heading {
  max-width: 720px;
  margin: 0;
  text-align: left;
}

body.northline .northline-services-ledger-heading .eyebrow {
  margin-bottom: 17px;
  color: var(--northline-services-silver-deep);
}

body.northline .northline-services-ledger-heading h2 {
  max-width: 10.5ch;
  margin: 0;
  color: #1f2527;
  font-size: clamp(3.15rem, 5vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

body.northline .northline-services-ledger-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: stretch;
}

body.northline .northline-services-ledger-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(101, 111, 120, 0.11);
  border-radius: 28px;
  background: #cad1d5;
  box-shadow: 0 24px 74px rgba(22, 30, 35, 0.08);
}

body.northline .northline-services-ledger-visual picture,
body.northline .northline-services-ledger-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

body.northline .northline-services-ledger-visual img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: grayscale(1) saturate(0.1) contrast(1.03) brightness(0.92);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 800ms ease;
}

body.northline .northline-services-ledger-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 16, 19, 0.03) 0%, rgba(10, 16, 19, 0.18) 48%, rgba(10, 16, 19, 0.65) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 28%);
}

body.northline .northline-services-ledger-visual:hover img {
  transform: scale(1.04);
  filter: grayscale(0.94) saturate(0.18) contrast(1.04) brightness(0.94);
}

body.northline .northline-services-ledger-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: grid;
  gap: 0;
  color: #fffaf4;
}

body.northline .northline-services-ledger-visual figcaption strong {
  max-width: 14ch;
  color: #f5f7f9;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(1.46rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
body.northline .northline-signature-selection {
  align-self: stretch;
  padding: 16px 24px 8px;
  overflow: hidden;
  border: 1px solid rgba(112, 122, 131, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 74px rgba(22, 30, 35, 0.10);
  backdrop-filter: blur(14px);
}

body.northline .northline-signature-selection .northline-service-ledger-item {
  position: relative;
  display: grid;
  align-items: center;
  color: var(--ink);
  isolation: isolate;
}

body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured) {
  grid-template-columns: minmax(0, 1fr) 88px 16px;
  gap: 18px;
  min-height: 84px;
  padding: 14px 4px 14px 14px;
  border-bottom: 1px solid rgba(85, 95, 103, 0.13);
}

body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  bottom: 19px;
  width: 2px;
  border-radius: 2px;
  background: var(--northline-services-copper);
  opacity: 0;
  transform: scaleY(0.55);
  transform-origin: center;
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.7,.2,1);
}

body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured):hover::before,
body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured):focus-visible::before {
  opacity: 0.8;
  transform: scaleY(1);
}

body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured):hover .northline-service-ledger-copy,
body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured):focus-visible .northline-service-ledger-copy {
  transform: translateX(4px);
}

body.northline .northline-signature-selection .northline-service-ledger-item:last-child {
  border-bottom: 0;
}

body.northline .northline-signature-selection .is-featured {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "copy meta" "action action";
  gap: 24px 22px;
  min-height: 206px;
  margin-bottom: 8px;
  padding: 30px 28px 25px;
  overflow: hidden;
  border-radius: 21px;
  background:
    radial-gradient(circle at 96% 0%, rgba(185, 108, 58, 0.22), transparent 32%),
    linear-gradient(145deg, #233037 0%, #18242a 58%, #142027 100%);
  box-shadow: 0 18px 38px rgba(21, 31, 36, 0.18);
  color: #f8f4ee;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease;
}

body.northline .northline-signature-selection .is-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: inherit;
}

body.northline .northline-signature-selection .is-featured:hover,
body.northline .northline-signature-selection .is-featured:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(21, 31, 36, 0.23);
}

body.northline .northline-signature-selection .is-featured .northline-service-ledger-copy {
  grid-area: copy;
  align-self: start;
  gap: 8px;
}

body.northline .northline-signature-selection .northline-service-ledger-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}

body.northline .northline-signature-selection .northline-service-ledger-copy strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(1.26rem, 1.8vw, 1.58rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

body.northline .northline-signature-selection .northline-service-ledger-copy > span:last-child {
  color: #657079;
  font-size: 0.72rem;
  line-height: 1.42;
  letter-spacing: 0.005em;
}

body.northline .northline-signature-selection .is-featured .northline-service-ledger-copy strong {
  color: #fffaf4;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

body.northline .northline-signature-selection .is-featured .northline-service-ledger-copy > span:last-child {
  max-width: 26rem;
  color: rgba(245, 240, 233, 0.72);
  font-size: 0.82rem;
  line-height: 1.48;
}

body.northline .northline-signature-selection .northline-service-ledger-label {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d69061;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.northline .northline-signature-selection .northline-service-ledger-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

body.northline .northline-signature-selection .northline-service-ledger-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.northline .northline-signature-selection .northline-service-ledger-meta span {
  color: #69767f;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.northline .northline-signature-selection .northline-service-ledger-meta strong {
  padding: 0;
  color: #1f2527;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.24rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

body.northline .northline-signature-selection .is-featured .northline-service-ledger-meta {
  grid-area: meta;
  align-self: start;
  gap: 10px;
}

body.northline .northline-signature-selection .is-featured .northline-service-ledger-meta span {
  color: rgba(246, 241, 234, 0.58);
}

body.northline .northline-signature-selection .is-featured .northline-service-ledger-meta strong {
  color: #fffaf4;
  font-size: 1.72rem;
}

body.northline .northline-service-feature-action {
  grid-area: action;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 244, 0.88);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.northline .northline-service-feature-action span {
  color: #d69061;
  font-size: 0.92rem;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1);
}

body.northline .northline-signature-selection .is-featured:hover .northline-service-feature-action span,
body.northline .northline-signature-selection .is-featured:focus-visible .northline-service-feature-action span {
  transform: translate(3px, -3px);
}

body.northline .northline-service-supporting-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 17px 18px 8px 14px;
  color: #818c93;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.northline .northline-service-supporting-heading span:last-child {
  padding-right: 16px;
}

body.northline .northline-service-ledger-arrow {
  align-self: center;
  color: #8d98a2;
  font-size: 0.82rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.7,.2,1);
}

body.northline .northline-signature-selection .northline-service-ledger-item:hover .northline-service-ledger-arrow,
body.northline .northline-signature-selection .northline-service-ledger-item:focus-visible .northline-service-ledger-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

body.northline .northline-signature-selection .northline-service-ledger-item:focus-visible {
  outline: 2px solid rgba(185, 108, 58, 0.75);
  outline-offset: 3px;
}

body.northline .northline-services-ledger-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: clamp(26px, 3vw, 36px);
  padding-top: 20px;
  border-top: 1px solid rgba(84, 95, 103, 0.12);
}

body.northline .northline-services-ledger-footer > p {
  max-width: 28rem;
  margin: 0;
  color: #59666d;
  font-size: 0.8rem;
  line-height: 1.5;
}

body.northline .northline-services-ledger-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.northline .northline-services-ledger-actions .northline-text-button {
  color: #263136;
  white-space: nowrap;
}

body.northline .northline-services-ledger-actions .demo-button {
  min-width: 154px;
  min-height: 52px;
  justify-content: center;
}

@media (max-width: 1100px) {
  body.northline .northline-services-ledger-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  body.northline .northline-services-ledger-visual {
    order: -1;
    min-height: 380px;
  }

  body.northline .northline-signature-selection {
    padding-inline: 22px;
  }
}

@media (max-width: 760px) {
  body.northline .northline-services-ledger-section {
    padding-block: 54px 60px;
    background-position: 56% center;
  }

  body.northline .northline-services-ledger {
    width: min(calc(100% - 32px), 620px);
  }

  body.northline .northline-services-ledger-heading {
    margin-bottom: 24px;
  }

  body.northline .northline-services-ledger-heading .section-heading {
    text-align: center;
  }

  body.northline .northline-services-ledger-heading h2 {
    max-width: 9ch;
    margin-inline: auto;
    font-size: clamp(2.34rem, 10.8vw, 3.14rem);
  }

  body.northline .northline-services-ledger-layout {
    gap: 20px;
  }

  body.northline .northline-services-ledger-visual {
    height: clamp(224px, 61vw, 286px);
    min-height: 0;
    border-radius: 24px;
  }

  body.northline .northline-services-ledger-visual figcaption {
    left: 20px;
    right: 20px;
    bottom: 19px;
  }

  body.northline .northline-services-ledger-visual figcaption strong {
    max-width: 13ch;
    font-size: clamp(1.22rem, 5.7vw, 1.62rem);
  }

  body.northline .northline-signature-selection {
    padding: 12px 14px 5px;
    border-radius: 24px;
  }

  body.northline .northline-signature-selection .is-featured {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 12px;
    min-height: 184px;
    padding: 25px 22px 21px;
    border-radius: 19px;
  }

  body.northline .northline-signature-selection .is-featured .northline-service-ledger-copy {
    gap: 7px;
  }

  body.northline .northline-signature-selection .is-featured .northline-service-ledger-copy strong {
    font-size: clamp(1.72rem, 8vw, 2.12rem);
  }

  body.northline .northline-signature-selection .is-featured .northline-service-ledger-copy > span:last-child {
    max-width: 13.5rem;
    font-size: 0.73rem;
    line-height: 1.42;
  }

  body.northline .northline-signature-selection .is-featured .northline-service-ledger-meta strong {
    font-size: 1.42rem;
  }

  body.northline .northline-service-feature-action {
    padding-top: 15px;
    font-size: 0.6rem;
  }

  body.northline .northline-service-supporting-heading {
    padding: 15px 12px 7px 10px;
  }

  body.northline .northline-service-supporting-heading span:last-child {
    padding-right: 0;
  }

  body.northline .northline-signature-selection {
    margin-top: 20px;
  }

  body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured) {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: none;
    gap: 10px;
    min-height: 78px;
    padding: 12px 8px 12px 10px;
  }

  body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured) .northline-service-ledger-copy,
  body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured) .northline-service-ledger-meta {
    grid-area: auto;
  }

  body.northline .northline-signature-selection .northline-service-ledger-copy strong {
    font-size: clamp(1.08rem, 4.8vw, 1.24rem);
  }

  body.northline .northline-signature-selection .northline-service-ledger-copy > span:last-child {
    max-width: 15rem;
    font-size: 0.68rem;
    line-height: 1.32;
  }

  body.northline .northline-signature-selection .northline-service-ledger-meta {
    gap: 6px;
  }

  body.northline .northline-signature-selection .northline-service-ledger-meta span {
    font-size: 0.53rem;
  }

  body.northline .northline-signature-selection .northline-service-ledger-meta strong {
    font-size: 1rem;
  }

  body.northline .northline-service-ledger-arrow {
    display: none;
  }

  body.northline .northline-services-ledger-footer {
    display: block;
    margin-top: 21px;
    padding-top: 18px;
    text-align: center;
  }

  body.northline .northline-services-ledger-footer > p {
    max-width: 24rem;
    margin-inline: auto;
    font-size: 0.78rem;
  }

  body.northline .northline-services-ledger-actions {
    flex-direction: column-reverse;
    gap: 6px;
    margin-top: 17px;
  }

  body.northline .northline-services-ledger-actions .demo-button {
    width: min(100%, 310px);
  }
}

@media (max-width: 390px) {
  body.northline .northline-services-ledger-section {
    padding-block: 50px 56px;
  }

  body.northline .northline-signature-selection {
    padding-inline: 11px;
  }

  body.northline .northline-signature-selection .is-featured {
    padding-inline: 19px;
  }

  body.northline .northline-signature-selection .is-featured .northline-service-ledger-copy > span:last-child {
    max-width: 11.5rem;
  }

  body.northline .northline-service-supporting-heading {
    font-size: 0.51rem;
  }

  body.northline .northline-signature-selection .northline-service-ledger-copy > span:last-child {
    max-width: 12.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-services-ledger-section::before {
    display: none;
  }

  body.northline .northline-services-ledger-visual img,
  body.northline .northline-signature-selection .northline-service-ledger-item,
  body.northline .northline-service-ledger-copy,
  body.northline .northline-service-ledger-arrow,
  body.northline .northline-service-feature-action span {
    transition: none;
  }
}

body.northline .northline-inside-note {
  border: 1px solid rgba(38, 61, 68, 0.08);
}

body.northline .northline-final-book-panel .booking-option {
  min-height: 154px;
}

body.northline .northline-final-place-copy {
  min-width: 0;
}

body.northline .northline-final-actions {
  grid-template-columns: repeat(2, minmax(132px, max-content));
  justify-self: end;
}

@media (min-width: 1001px) and (max-width: 1219px) {
  body.northline .northline-final-book-panel {
    grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.2fr) !important;
  }
}

@media (max-width: 900px) {
  body.northline .northline-final-book-panel {
    grid-template-columns: minmax(210px, 0.82fr) minmax(290px, 1.18fr) !important;
  }
}

@media (max-width: 760px) {
  body.northline .northline-inside-side {
    position: relative;
    display: block;
  }

  body.northline .northline-consultation-photo {
    height: clamp(344px, 91vw, 410px) !important;
    min-height: 344px !important;
  }

  body.northline .northline-consultation-photo figcaption {
    top: 17px;
    bottom: auto;
  }

  body.northline .northline-inside-note {
    position: absolute;
    z-index: 3;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    margin: 0;
    padding: 16px 17px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(18, 31, 36, 0.84);
    box-shadow: 0 17px 34px rgba(9, 17, 20, 0.22);
    backdrop-filter: blur(14px) saturate(1.08);
  }

  body.northline .northline-inside-note:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 17px 34px rgba(9, 17, 20, 0.22);
  }

  body.northline .northline-inside-note .eyebrow {
    margin-bottom: 7px;
    color: #d5aa8d;
  }

  body.northline .northline-inside-note h3 {
    max-width: 18ch;
    margin-bottom: 7px;
    color: #fffaf4;
    font-size: clamp(1.27rem, 6vw, 1.58rem);
    line-height: 1.02;
  }

  body.northline .northline-inside-note p:last-child {
    max-width: 31rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.73rem;
    line-height: 1.48;
  }

  body.northline .northline-final-book-panel .booking-option {
    min-height: 112px !important;
  }

  body.northline .northline-final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
  }

  body.northline .northline-final-actions .demo-button {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }
}

@media (max-width: 369px) {
  body.northline .northline-inside-note {
    left: 11px;
    right: 11px;
    bottom: 11px;
    padding: 14px 14px 13px;
  }

  body.northline .northline-inside-note h3 {
    font-size: 1.22rem;
  }

  body.northline .northline-inside-note p:last-child {
    font-size: 0.69rem;
  }

  body.northline .northline-final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.northline .northline-final-actions .demo-button {
    min-height: 44px;
    font-size: 0.64rem;
  }
}

body.northline .barber-card.is-featured .northline-barber-photo::after {
  background: linear-gradient(
    180deg,
    rgba(9, 17, 20, 0.015) 30%,
    rgba(9, 17, 20, 0.48) 66%,
    rgba(9, 17, 20, 0.96) 100%
  );
}

body.northline .barber-card.is-featured .northline-barber-summary,
body.northline .northline-team-grid.northline-mobile-track .northline-barber-summary {
  color: rgba(255, 250, 244, 0.82);
}

@media (min-width: 681px) and (max-width: 1050px) {
  body.northline .northline-team-grid.northline-mobile-track,
body.northline .northline-team-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    height: clamp(590px, 72svh, 680px) !important;
    min-height: 590px !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  body.northline .northline-team-grid.northline-mobile-track .barber-card,
body.northline .northline-team-grid .barber-card {
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }

  body.northline .northline-team-grid .barber-card.is-featured {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) {
    position: relative !important;
    display: block !important;
    grid-column: 2 !important;
    overflow: hidden !important;
    border: 0 !important;
    background: var(--dark) !important;
    box-shadow: 0 18px 38px rgba(24, 39, 45, 0.14) !important;
  }

  body.northline .northline-team-grid .barber-card:nth-child(2) {
    grid-row: 1 !important;
  }

  body.northline .northline-team-grid .barber-card:nth-child(3) {
    grid-row: 2 !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-photo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(9, 17, 20, 0.02) 20%,
        rgba(9, 17, 20, 0.42) 58%,
        rgba(9, 17, 20, 0.96) 100%
      );
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-copy {
    position: absolute !important;
    z-index: 2 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    padding: 21px 20px 18px !important;
    color: #fffaf4 !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) h3 {
    color: #fffaf4 !important;
    font-size: clamp(1.58rem, 3.8vw, 2.05rem) !important;
    line-height: 1 !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-days {
    color: #d9a57d !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-summary {
    max-width: 27rem;
    color: rgba(255, 250, 244, 0.8) !important;
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-copy a {
    margin-top: 9px !important;
    color: #fffaf4 !important;
  }

  body.northline .northline-team-grid.northline-mobile-track .barber-card.northline-barber-card--marcus {
    --northline-barber-object-position: 50% 0%;
    --northline-team-overlay-mid: rgba(9, 17, 20, 0.42);
    --northline-team-overlay-end: rgba(9, 17, 20, 0.97);
  }

  body.northline .northline-team-grid.northline-mobile-track .barber-card.northline-barber-card--andre {
    --northline-barber-object-position: 61% 0%;
    --northline-team-overlay-mid: rgba(9, 17, 20, 0.36);
    --northline-team-overlay-end: rgba(9, 17, 20, 0.94);
  }

  body.northline .northline-team-grid.northline-mobile-track .barber-card.northline-barber-card--eli {
    --northline-barber-object-position: 50% 3%;
    --northline-team-overlay-mid: rgba(9, 17, 20, 0.44);
    --northline-team-overlay-end: rgba(9, 17, 20, 0.98);
  }

  body.northline .northline-team-section .northline-mobile-track-meta {
    display: none !important;
  }
}

body.northline .northline-book-visit-section {
  padding-block: clamp(62px, 7vw, 96px);
}

body.northline .northline-book-visit-landing {
  gap: clamp(26px, 3vw, 38px);
}

body.northline .northline-book-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

body.northline .northline-final-book-panel {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr !important;
  align-content: center !important;
  align-items: center !important;
  gap: clamp(26px, 3vw, 38px) !important;
  min-height: 560px;
  padding: clamp(32px, 3.2vw, 46px) !important;
  border-radius: 22px;
}

body.northline .northline-final-book-panel::after {
  inset: 14px !important;
}

body.northline .northline-final-book-panel .northline-book-copy {
  align-self: end;
}

body.northline .northline-final-book-panel .northline-book-copy h3 {
  max-width: 9ch;
  font-size: clamp(2.45rem, 3.45vw, 3.8rem);
}

body.northline .northline-final-book-panel .northline-book-copy > p:not(.eyebrow) {
  max-width: 29rem;
  margin-bottom: 18px;
}

body.northline .northline-final-book-panel .booking-options {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 0;
  min-width: 0;
}

body.northline .northline-final-book-panel .northline-book-options-heading {
  margin: 0 0 8px;
  color: #d8a27b;
  font-size: 0.68rem !important;
  letter-spacing: 0.14em;
}

body.northline .northline-final-book-panel .booking-option,
body.northline .northline-final-book-panel .booking-option.is-earliest {
  position: relative;
  min-height: 118px !important;
  padding: 18px 3px 17px !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.northline .northline-final-book-panel .booking-option::before {
  display: none !important;
}

body.northline .northline-final-book-panel .booking-option:hover,
body.northline .northline-final-book-panel .booking-option:focus-visible {
  transform: none !important;
  border-color: rgba(216, 162, 123, 0.62) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

body.northline .northline-final-book-panel .booking-option strong {
  font-size: clamp(1.34rem, 1.8vw, 1.72rem) !important;
}

body.northline .northline-final-book-panel .northline-book-more {
  display: block;
  max-width: none;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: left;
}

body.northline .northline-final-location-card {
  display: grid;
  grid-template-rows: minmax(260px, 0.92fr) auto;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(38, 61, 68, 0.11);
  border-radius: 22px;
  background: #f9f7f2;
  box-shadow: 0 24px 58px rgba(24, 39, 45, 0.12);
}

body.northline .northline-final-exterior-photo {
  position: relative;
  min-height: 0 !important;
  height: 100% !important;
  max-height: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.northline .northline-final-exterior-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 23, 0.02) 54%, rgba(10, 20, 23, 0.52) 100%);
  pointer-events: none;
}

body.northline .northline-final-exterior-photo img {
  object-position: center 56%;
}

body.northline .northline-final-exterior-photo figcaption {
  z-index: 2;
}

body.northline .northline-final-location-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: clamp(22px, 2.25vw, 30px);
}

body.northline .northline-final-place-copy .eyebrow {
  margin-bottom: 8px;
}

body.northline .northline-final-place-copy h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(1.65rem, 2.1vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1;
}

body.northline .northline-final-place-copy > p:last-child {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.58;
}

body.northline .northline-final-place-copy > p:last-child span {
  margin-inline: 0.34em;
  color: var(--accent);
}

body.northline .northline-final-hours {
  padding-top: 15px;
  border-top: 1px solid rgba(38, 61, 68, 0.12);
}

body.northline .northline-final-hours > .eyebrow {
  margin-bottom: 10px;
}

body.northline .northline-final-hours-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

body.northline .northline-final-hours-grid > div {
  display: grid;
  gap: 3px;
  padding: 0 11px;
  border-right: 1px solid rgba(38, 61, 68, 0.11);
}

body.northline .northline-final-hours-grid > div:first-child {
  padding-left: 0;
}

body.northline .northline-final-hours-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

body.northline .northline-final-hours-grid span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.northline .northline-final-hours-grid strong {
  color: var(--dark);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

body.northline .northline-final-location-content .northline-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0;
  padding-top: 1px;
}

body.northline .northline-final-location-content .northline-final-actions .demo-button {
  width: 100%;
  min-width: 0;
}

@media (max-width: 1100px) {
  body.northline .northline-book-visit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.northline .northline-final-book-panel {
    grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1.22fr) !important;
    grid-template-rows: auto !important;
    min-height: 0;
  }

  body.northline .northline-final-book-panel .northline-book-copy {
    align-self: center;
  }

  body.northline .northline-final-location-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(370px, 1.08fr);
    grid-template-rows: minmax(390px, auto);
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit-section {
    padding-block: 42px !important;
  }

  body.northline .northline-book-visit-landing {
    gap: 22px;
  }

  body.northline .northline-book-visit-grid {
    gap: 17px;
  }

  body.northline .northline-final-book-panel {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 18px !important;
    min-height: 0;
    padding: 20px !important;
  }

  body.northline .northline-final-book-panel::after {
    inset: 9px !important;
  }

  body.northline .northline-final-book-panel .northline-book-copy {
    text-align: center;
  }

  body.northline .northline-final-book-panel .northline-book-copy h3 {
    max-width: 10ch;
    margin: 0 auto 11px;
    font-size: clamp(1.95rem, 9.1vw, 2.45rem);
  }

  body.northline .northline-final-book-panel .northline-book-copy > p:not(.eyebrow) {
    max-width: 21rem;
    margin: 0 auto 14px !important;
  }

  body.northline .northline-final-book-panel .northline-book-copy .actions {
    align-items: center;
  }

  body.northline .northline-final-book-panel .northline-book-options-heading {
    margin-bottom: 5px;
  }

  body.northline .northline-final-book-panel .booking-option,
body.northline .northline-final-book-panel .booking-option.is-earliest {
    min-height: 98px !important;
    padding: 14px 2px 13px !important;
  }

  body.northline .northline-final-book-panel .booking-option strong {
    font-size: clamp(1.18rem, 5.6vw, 1.46rem) !important;
  }

  body.northline .northline-final-book-panel .northline-book-more {
    margin-top: 8px;
    font-size: 0.66rem;
    line-height: 1.42;
    text-align: center;
  }

  body.northline .northline-final-location-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 18px;
  }

  body.northline .northline-final-location-content {
    text-align: center;
  }

  body.northline .northline-final-place-copy > p:last-child {
    margin-inline: auto;
  }

  body.northline .northline-final-hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  body.northline .northline-final-hours-grid > div {
    padding: 8px 10px;
    border-right: 1px solid rgba(38, 61, 68, 0.11);
    border-bottom: 1px solid rgba(38, 61, 68, 0.11);
  }

  body.northline .northline-final-hours-grid > div:nth-child(2n) {
    border-right: 0;
  }

  body.northline .northline-final-hours-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body.northline .northline-final-hours-grid > div:first-child,
body.northline .northline-final-hours-grid > div:last-child {
    padding-inline: 10px;
  }
}

@media (max-width: 369px) {
  body.northline .northline-final-book-panel {
    padding: 17px !important;
  }

  body.northline .northline-final-location-content {
    padding: 17px 15px;
  }

  body.northline .northline-final-place-copy > p:last-child span {
    margin-inline: 0.2em;
  }

  body.northline .northline-final-location-content .northline-final-actions .demo-button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.64rem !important;
  }
}

@media (min-width: 1051px) {
  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-summary {
    color: #5d686d !important;
  }
}

@media (max-width: 760px) {
  body.northline .northline-final-location-card {
    --northline-visit-photo-height: clamp(205px, 55vw, 238px);
    position: relative;
    grid-template-rows: var(--northline-visit-photo-height) auto;
  }

  body.northline .northline-final-exterior-photo::after {
    background: linear-gradient(
        180deg,
        rgba(10, 20, 23, 0.02) 30%,
        rgba(10, 20, 23, 0.22) 55%,
        rgba(10, 20, 23, 0.92) 100%
      );
  }

  body.northline .northline-final-exterior-photo figcaption {
    top: 15px;
    bottom: auto;
  }

  body.northline .northline-final-location-content {
    gap: 13px;
    padding: 15px 17px 17px;
  }

  body.northline .northline-final-place-copy {
    position: absolute;
    z-index: 3;
    top: calc(var(--northline-visit-photo-height) - 104px);
    left: 22px;
    right: 22px;
    text-align: left;
  }

  body.northline .northline-final-place-copy .eyebrow {
    margin-bottom: 5px;
    color: #d9a57d;
  }

  body.northline .northline-final-place-copy h3 {
    margin-bottom: 5px;
    color: #fffaf4;
    font-size: clamp(1.44rem, 6.8vw, 1.78rem);
  }

  body.northline .northline-final-place-copy > p:last-child {
    max-width: 30rem;
    margin: 0;
    color: rgba(255, 250, 244, 0.76);
    font-size: 0.68rem;
    line-height: 1.4;
  }

  body.northline .northline-final-place-copy > p:last-child span {
    color: #d9a57d;
  }

  body.northline .northline-final-hours {
    padding-top: 0;
    border-top: 0;
  }

  body.northline .northline-final-hours > .eyebrow {
    margin-bottom: 6px;
  }

  body.northline .northline-final-hours-grid > div {
    padding-block: 6px;
  }

  body.northline .northline-final-location-content .northline-final-actions {
    margin-top: 1px;
  }
}

@media (max-width: 369px) {
  body.northline .northline-final-location-card {
    --northline-visit-photo-height: 198px;
  }

  body.northline .northline-final-place-copy {
    top: calc(var(--northline-visit-photo-height) - 108px);
    left: 18px;
    right: 18px;
  }

  body.northline .northline-final-place-copy h3 {
    font-size: 1.38rem;
  }

  body.northline .northline-final-place-copy > p:last-child {
    font-size: 0.64rem;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.northline .northline-final-location-card {
    grid-template-rows: 450px;
    min-height: 450px;
  }

  body.northline .northline-final-location-content {
    align-content: center;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  body.northline .northline-hero {
    display: flex;
    min-height: calc(100svh - var(--northline-header-height-active));
    padding: 0;
    overflow: hidden;
    background: #f1eee8;
  }

  body.northline .northline-hero > .container {
    width: 100%;
    max-width: none;
    min-height: inherit;
    margin: 0;
  }

  body.northline .northline-hero-grid {
    display: grid;
    grid-template-columns: minmax(305px, 0.86fr) minmax(0, 1.14fr);
    min-height: inherit;
    gap: 0;
    align-items: stretch;
  }

  body.northline .northline-hero-copy {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: inherit;
    padding: clamp(56px, 7vw, 82px) clamp(28px, 4.4vw, 46px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  body.northline .northline-hero h1 {
    width: auto;
    max-width: 7.9ch;
    margin: 0;
    color: #17242a;
    font-size: clamp(3.15rem, 6.4vw, 4.25rem);
    line-height: 0.93;
    letter-spacing: -0.071em;
    text-align: left;
    text-shadow: none;
  }

  body.northline .northline-hero h1 span,
body.northline .northline-hero h1 span:last-child {
    display: block;
    width: auto;
    max-width: none;
    margin: 0;
    color: inherit;
    white-space: normal;
  }

  body.northline .northline-hero h1 span + span {
    margin-top: 0.16em;
  }

  body.northline .northline-hero-copy > .actions {
    width: auto;
    margin: clamp(28px, 4vw, 38px) 0 0;
    justify-content: flex-start;
    gap: 10px;
  }

  body.northline .northline-hero-copy .demo-button {
    min-height: 48px;
    padding-inline: 17px;
    flex: 0 0 auto;
    font-size: 0.7rem;
  }

  body.northline .northline-hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    min-height: inherit;
    max-width: none;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  body.northline .northline-hero-image picture,
body.northline .northline-hero-image img {
    width: 100%;
    height: 100%;
  }

  body.northline .northline-hero-image img {
    object-fit: cover;
    object-position: 54% center;
  }

  body.northline .northline-hero-image::after {
    background: linear-gradient(90deg, rgba(10, 18, 21, 0.12), transparent 26%),
        linear-gradient(180deg, transparent 64%, rgba(10, 18, 21, 0.34) 100%);
  }

  body.northline .northline-hero-image figcaption {
    display: flex;
    right: 22px;
    bottom: 22px;
    left: auto;
    color: #fffaf4;
  }
}

@media (min-width: 1101px) {
  body.northline .northline-final-book-panel,
body.northline .northline-final-location-card {
    min-height: 520px;
  }

  body.northline .northline-final-book-panel {
    grid-template-rows: auto auto !important;
    gap: clamp(20px, 2vw, 28px) !important;
    padding: clamp(30px, 2.8vw, 40px) !important;
  }

  body.northline .northline-final-book-panel .northline-book-copy,
body.northline .northline-final-book-panel .booking-options {
    align-self: center;
  }

  body.northline .northline-final-book-panel .booking-option,
body.northline .northline-final-book-panel .booking-option.is-earliest {
    min-height: 104px !important;
    padding-block: 15px !important;
  }

  body.northline .northline-final-location-card {
    grid-template-rows: minmax(238px, 0.82fr) auto;
  }

  body.northline .northline-final-location-content {
    gap: 15px;
    padding: clamp(22px, 2vw, 27px);
  }
}

body.northline .northline-footer-action > p:not(.northline-footer-heading) {
  max-width: 19rem;
  margin: 0;
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.76rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  body.northline .northline-footer {
    padding: 25px 0 13px;
  }

  body.northline .northline-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    padding-bottom: 16px;
  }

  body.northline .northline-footer-brand,
body.northline .northline-footer-explore,
body.northline .northline-footer-action {
    grid-column: 1;
    justify-items: center;
    text-align: center;
  }

  body.northline .northline-footer-brand p {
    max-width: 19rem;
    margin-top: 7px;
    font-size: 0.74rem;
  }

  body.northline .northline-footer-explore {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 18px;
  }

  body.northline .northline-footer-explore .northline-footer-heading {
    flex: 0 0 100%;
    margin-bottom: 1px;
  }

  body.northline .northline-footer-explore > a {
    width: auto;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }

  body.northline .northline-footer-explore a + a::before {
    display: none;
  }

  body.northline .northline-footer-action {
    gap: 7px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.northline .northline-footer-action > p:not(.northline-footer-heading) {
    max-width: 17rem;
    font-size: 0.72rem;
  }

  body.northline .northline-footer-book {
    min-height: 42px;
    margin-top: 2px;
    padding: 9px 16px;
    border: 1px solid rgba(216, 162, 123, 0.42);
    border-radius: 999px;
  }

  body.northline .northline-disclosure {
    padding-top: 12px;
    font-size: 0.62rem;
    line-height: 1.45;
  }
}
body.northline .northline-services-ledger-footer.is-actions-only {
  grid-template-columns: minmax(0, 1fr);
}

body.northline .northline-services-ledger-footer.is-actions-only .northline-services-ledger-actions {
  justify-content: flex-end;
}

body.northline .northline-inside-heading-row .eyebrow {
  margin-bottom: clamp(12px, 1vw, 16px);
}

@media (max-width: 760px) {
  body.northline .northline-services-ledger-footer.is-actions-only .northline-services-ledger-actions {
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  body.northline .northline-inside-heading-row {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    justify-items: stretch;
    text-align: center;
  }

  body.northline .northline-inside-heading-row .section-heading {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  body.northline .northline-inside-heading-row .eyebrow,
  body.northline .northline-inside-heading-row h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.northline-barber-days-short {
  display: none;
}

.northline-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 680px) {
  body.northline .northline-team-section,
  body.northline .northline-team-grid.northline-mobile-track {
    --northline-team-card-gap: 12px;
    --northline-team-card-peek: 32px;
    --northline-team-card: min(
      calc(100vw - (2 * (var(--northline-team-card-peek) + var(--northline-team-card-gap)))),
      334px
    );
    --northline-rail-card: var(--northline-team-card);
    --northline-rail-gap: var(--northline-team-card-gap);
  }

  body.northline .northline-team-section {
    padding-top: clamp(34px, 9vw, 40px) !important;
    padding-bottom: clamp(40px, 10.5vw, 48px) !important;
  }

  body.northline .northline-team-section .northline-section-heading-row {
    justify-content: center !important;
    margin-bottom: clamp(25px, 6.5vw, 28px) !important;
  }

  body.northline .northline-team-section .section-heading {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    align-items: center !important;
    text-align: center !important;
  }

  body.northline .northline-team-section .section-heading::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin: 0 auto 13px;
    background: var(--accent);
    opacity: 0.9;
  }

  body.northline .northline-team-section .section-heading h2 {
    width: min(100%, 13ch);
    max-width: 13ch;
    margin: 0 auto;
    font-size: clamp(2.22rem, 10.2vw, 2.68rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    text-align: center !important;
    text-wrap: balance;
  }

  body.northline .northline-team-section .section-heading .eyebrow,
  body.northline .northline-team-section .section-heading > p:not(.eyebrow),
  body.northline .northline-team-section .northline-team-book {
    display: none !important;
  }

  body.northline .northline-team-grid.northline-mobile-track {
    --northline-rail-edge: max(0px, calc((100% - var(--northline-team-card)) / 2));
    min-height: 0;
    height: auto;
    gap: var(--northline-team-card-gap) !important;
    padding-inline: var(--northline-rail-edge);
    scroll-padding-inline: var(--northline-rail-edge);
    scroll-snap-type: x mandatory;
  }

  body.northline .northline-team-grid.northline-mobile-track .barber-card,
  body.northline .northline-team-grid.northline-mobile-track .barber-card.is-featured,
  body.northline .northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
  body.northline .northline-team-grid.northline-mobile-track .barber-card:last-child,
  body.northline .northline-team-grid.northline-mobile-track .barber-card:hover,
  body.northline .northline-team-grid.northline-mobile-track .barber-card:focus-within {
    --northline-barber-object-position: 50% 0%;
    --northline-team-overlay-mid: rgba(9, 17, 20, 0.42);
    --northline-team-overlay-end: rgba(9, 17, 20, 0.97);
    position: relative;
    display: block;
    flex: 0 0 var(--northline-team-card);
    width: var(--northline-team-card);
    height: clamp(430px, calc(var(--northline-team-card) * 1.42), 474px) !important;
    min-height: 0 !important;
    overflow: hidden;
    border: 0;
    border-radius: 14px !important;
    background: var(--dark);
    box-shadow: none !important;
    transform: none !important;
    scroll-snap-align: center;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-photo,
  body.northline .northline-team-grid.northline-mobile-track .barber-card:last-child .northline-barber-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    border-radius: inherit;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-photo img {
    object-position: var(--northline-barber-object-position) !important;
  }

  body.northline .northline-team-grid.northline-mobile-track .barber-card .northline-barber-photo::after,
  body.northline .barber-card.is-featured .northline-barber-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      180deg,
      rgba(9, 17, 20, 0.01) 42%,
      var(--northline-team-overlay-mid) 72%,
      var(--northline-team-overlay-end) 100%
    ) !important;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-copy {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 22px 22px !important;
    color: #fff;
    text-align: left;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-days,
  body.northline .northline-team-grid.northline-mobile-track h3,
  body.northline .northline-team-grid.northline-mobile-track .northline-barber-summary,
  body.northline .northline-team-grid.northline-mobile-track .northline-barber-copy a {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-days {
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
    color: #d9a57d;
    font-size: 0.68rem !important;
    line-height: 1.25;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-days-full {
    display: none;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-days-short {
    display: inline;
  }

  body.northline .northline-team-grid.northline-mobile-track h3 {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    line-height: 0.96;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-summary {
    width: min(100%, 24ch);
    max-width: 24ch;
    min-height: 0;
    margin-top: 11px;
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-copy a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    margin-top: 15px !important;
    padding-block: 9px;
    justify-content: flex-start;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-team-link-line {
    display: inline-block;
    width: 20px;
    height: 1px;
    flex: 0 0 20px;
    background: var(--accent);
    opacity: 0.92;
    transition: width 180ms ease, flex-basis 180ms ease, opacity 180ms ease;
  }

  body.northline .northline-team-grid.northline-mobile-track .northline-barber-copy a:hover .northline-team-link-line,
  body.northline .northline-team-grid.northline-mobile-track .northline-barber-copy a:focus-visible .northline-team-link-line {
    width: 24px;
    flex-basis: 24px;
    opacity: 1;
  }

  body.northline .northline-team-section .northline-mobile-track-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(100%, var(--northline-team-card));
    margin: 16px auto 0;
  }

  body.northline .northline-team-section .northline-track-progress {
    flex: 0 0 clamp(150px, 42vw, 165px);
    max-width: 165px;
    gap: 6px;
  }

  body.northline .northline-team-section .northline-track-progress i {
    height: 1px;
    border-radius: 999px;
    background: rgba(27, 50, 57, 0.16);
  }

  body.northline .northline-team-section .northline-track-progress i.is-past {
    background: rgba(155, 104, 72, 0.34);
  }

  body.northline .northline-team-section .northline-track-progress i.is-active {
    height: 2px;
    background: var(--accent);
    transform: none;
  }

  body.northline .northline-team-section .northline-mobile-track-meta strong {
    min-width: 40px;
    color: var(--accent-deep);
    text-align: right;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 680px) and (max-height: 700px) {
  body.northline .northline-team-grid.northline-mobile-track .barber-card,
  body.northline .northline-team-grid.northline-mobile-track .barber-card.is-featured,
  body.northline .northline-team-grid.northline-mobile-track .barber-card:not(.is-featured),
  body.northline .northline-team-grid.northline-mobile-track .barber-card:last-child {
    height: clamp(406px, 64svh, 432px) !important;
    min-height: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-team-grid.northline-mobile-track .northline-team-link-line {
    transition: none;
  }
}

body.northline .northline-inside-heading-row .section-heading h2 span {
  display: block;
}

body.northline .northline-inside-side-module {
  height: 100%;
}

body.northline .northline-team-link-line {
  display: inline-block;
  width: 20px;
  height: 1px;
  flex: 0 0 20px;
  background: var(--accent);
  opacity: 0.92;
}

@media (min-width: 761px) {
  body.northline .northline-hero {
    padding: clamp(22px, 3vw, 38px) 0 clamp(30px, 3.8vw, 50px);
    overflow: visible;
    background: linear-gradient(180deg, #111a1e 0%, #10191d 100%);
  }

  body.northline .northline-hero > .container {
    width: min(calc(100% - 48px), 1360px);
    max-width: 1360px;
    margin: 0 auto;
  }

  body.northline .northline-hero-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(520px, 1.08fr);
    align-items: center;
    min-height: clamp(620px, 78svh, 720px);
    gap: clamp(34px, 4.2vw, 68px);
  }

  body.northline .northline-hero-copy {
    width: auto;
    max-width: 520px;
    min-height: 0;
    margin: 0;
    padding: clamp(84px, 10svh, 118px) 0 clamp(40px, 5svh, 62px);
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  body.northline .northline-hero h1 {
    max-width: 8.8ch;
    margin: 0;
    font-size: clamp(4rem, 5.6vw, 6.15rem);
    line-height: 0.92;
    letter-spacing: -0.073em;
    text-align: left;
    text-wrap: balance;
  }

  body.northline .northline-hero h1 span,
  body.northline .northline-hero h1 span:last-child {
    margin-inline: 0;
    white-space: normal;
  }

  body.northline .northline-hero-copy > .actions {
    width: auto;
    margin: 28px 0 0;
    gap: 18px;
    align-items: center;
    justify-content: flex-start;
  }

  body.northline .northline-hero-copy .demo-button.primary {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 13px 20px;
    border-color: rgba(255, 250, 245, 0.88);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }

  body.northline .northline-hero-copy .demo-button.secondary.northline-hero-secondary-link {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fffaf4;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.065em;
    text-transform: uppercase;
  }

  body.northline .northline-hero-copy .demo-button.secondary.northline-hero-secondary-link::after {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--accent);
    opacity: 0.94;
    transition: width 180ms ease, opacity 180ms ease;
  }

  body.northline .northline-hero-copy .demo-button.secondary.northline-hero-secondary-link:hover,
  body.northline .northline-hero-copy .demo-button.secondary.northline-hero-secondary-link:focus-visible {
    color: #fffaf4;
    transform: none;
    box-shadow: none;
    background: transparent;
  }

  body.northline .northline-hero-copy .demo-button.secondary.northline-hero-secondary-link:hover::after,
  body.northline .northline-hero-copy .demo-button.secondary.northline-hero-secondary-link:focus-visible::after {
    width: 26px;
    opacity: 1;
  }

  body.northline .northline-hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 720px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
    background: #10191d;
    box-shadow: 0 18px 42px rgba(15, 24, 29, 0.2);
    aspect-ratio: 1.06 / 1;
  }

  body.northline .northline-hero-image img {
    position: absolute;
    inset: 0;
    object-position: center 34%;
  }

  body.northline .northline-hero-image::after {
    background: linear-gradient(180deg, rgba(8, 14, 17, 0.14) 0%, rgba(8, 14, 17, 0.08) 28%, rgba(8, 14, 17, 0.14) 48%, rgba(8, 14, 17, 0.52) 74%, rgba(8, 14, 17, 0.78) 100%),
      radial-gradient(circle at 50% 16%, rgba(255, 246, 236, 0.05), transparent 32%);
  }

  body.northline .northline-hero-image figcaption {
    display: block;
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 18px;
    color: rgba(255, 250, 244, 0.92);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }
  body.northline .northline-services-ledger-section {
    padding-block: clamp(72px, 8.2svh, 106px);
    background: linear-gradient(180deg, rgba(252, 252, 251, 0.88) 0%, rgba(246, 247, 247, 0.82) 36%, rgba(240, 242, 243, 0.88) 100%),
      url("../assets/northline/silver-marble-gold-line.webp") 56% center / cover no-repeat;
  }

  body.northline .northline-services-ledger-section::before {
    opacity: 0.18;
  }

  body.northline .northline-services-ledger-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
    grid-template-areas:
      "heading ledger"
      "visual ledger";
    gap: clamp(24px, 3vw, 40px) clamp(28px, 3.4vw, 44px);
    align-items: start;
  }

  body.northline .northline-services-ledger-heading--inline {
    grid-area: heading;
    align-self: end;
    margin: 0;
  }

  body.northline .northline-services-ledger-heading--inline .section-heading {
    max-width: 580px;
  }

  body.northline .northline-services-ledger-visual {
    grid-area: visual;
    min-height: 400px;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(22, 30, 35, 0.08);
  }

  body.northline .northline-services-ledger-visual figcaption {
    left: 22px;
    right: 22px;
    bottom: 20px;
  }

  body.northline .northline-services-ledger-visual figcaption strong {
    max-width: 13ch;
  }

  body.northline .northline-signature-selection {
    grid-area: ledger;
    padding: 12px 20px 6px;
    border: 1px solid rgba(112, 122, 131, 0.12);
    border-radius: 14px;
    background: rgba(248, 246, 242, 0.84);
    box-shadow: 0 12px 28px rgba(22, 30, 35, 0.06);
    backdrop-filter: none;
  }

  body.northline .northline-signature-selection .northline-service-ledger-item {
    border-radius: 12px;
  }

  body.northline .northline-signature-selection .northline-service-ledger-item.is-featured {
    border-radius: 14px;
  }

  body.northline .northline-signature-selection .northline-service-ledger-item:not(.is-featured) {
    background: transparent;
    box-shadow: none;
  }

  body.northline .northline-service-supporting-heading {
    padding-top: 16px;
  }

  body.northline .northline-services-ledger-footer {
    margin-top: clamp(18px, 2.2vw, 26px);
    padding-top: clamp(18px, 2.1vw, 24px);
  }
  body.northline .northline-inside-section {
    overflow: visible;
  }

  body.northline .northline-inside-heading-row {
    margin-bottom: clamp(18px, 2vw, 24px);
  }

  body.northline .northline-inside-heading-row .section-heading {
    max-width: 700px;
  }

  body.northline .northline-inside-heading-row .section-heading h2 {
    max-width: 11.2ch;
    font-size: clamp(3.05rem, 4.6vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
  }

  body.northline .northline-inside-heading-row .section-heading h2 span + span {
    margin-top: 0.06em;
  }

  body.northline .northline-inside-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
    gap: clamp(18px, 2.2vw, 26px);
    align-items: stretch;
    min-height: clamp(460px, calc(100svh - 230px), 650px);
  }

  body.northline .northline-inside-primary {
    min-height: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(24, 39, 45, 0.11);
  }

  body.northline .northline-inside-primary img {
    object-position: center 52%;
  }

  body.northline .northline-inside-side {
    display: block;
    min-height: 0;
  }

  body.northline .northline-inside-side-module {
    display: grid;
    grid-template-rows: minmax(250px, 0.92fr) auto;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(38, 61, 68, 0.1);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(249, 247, 242, 0.98), rgba(244, 240, 234, 0.96));
    box-shadow: 0 16px 36px rgba(24, 39, 45, 0.08);
  }

  body.northline .northline-consultation-photo {
    min-height: 0 !important;
    height: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  body.northline .northline-consultation-photo img {
    object-position: 52% 42%;
  }

  body.northline .northline-inside-note {
    position: relative;
    width: auto;
    margin: 0;
    padding: 22px 24px 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.northline .northline-inside-note::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin: 0 0 12px;
    background: var(--accent);
    opacity: 0.95;
  }

  body.northline .northline-inside-note .eyebrow {
    margin-bottom: 8px;
  }

  body.northline .northline-inside-note h3 {
    max-width: 12ch;
    margin-bottom: 8px;
  }

  body.northline .northline-inside-note p:last-child {
    max-width: 26rem;
  }
  body.northline .northline-team-section {
    padding-top: clamp(68px, 7.2vw, 94px);
    padding-bottom: clamp(72px, 7.6vw, 100px);
  }

  body.northline .northline-team-section .northline-section-heading-row {
    justify-content: center;
    margin-bottom: clamp(24px, 2.8vw, 32px);
  }

  body.northline .northline-team-section .section-heading {
    width: 100%;
    max-width: 24rem;
    align-items: center;
    text-align: center;
  }

  body.northline .northline-team-section .section-heading::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin: 0 auto 14px;
    background: var(--accent);
    opacity: 0.9;
  }

  body.northline .northline-team-section .section-heading h2 {
    max-width: 11ch;
    margin: 0 auto;
    font-size: clamp(3rem, 4.6vw, 4.3rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    text-align: center;
  }

  body.northline .northline-team-section .section-heading > p:not(.eyebrow),
  body.northline .northline-team-book,
  body.northline .northline-team-section .northline-mobile-track-meta {
    display: none !important;
  }

  body.northline .northline-team-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    min-height: clamp(590px, 67svh, 700px) !important;
    height: clamp(590px, 67svh, 700px) !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  body.northline .northline-team-grid .barber-card,
  body.northline .northline-team-grid .barber-card.is-featured,
  body.northline .northline-team-grid .barber-card:not(.is-featured) {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    width: auto !important;
    max-width: none !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: var(--dark) !important;
    box-shadow: 0 16px 34px rgba(24, 39, 45, 0.12) !important;
    transform: none !important;
  }

  body.northline .northline-team-grid .barber-card.is-featured {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  body.northline .northline-team-grid .barber-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  body.northline .northline-team-grid .barber-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  body.northline .northline-team-grid .barber-card .northline-barber-photo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  body.northline .northline-team-grid .barber-card .northline-barber-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.northline .northline-team-grid .northline-barber-card--marcus {
    --northline-barber-object-position: 50% 0%;
    --northline-team-overlay-mid: rgba(9, 17, 20, 0.42);
    --northline-team-overlay-end: rgba(9, 17, 20, 0.97);
  }

  body.northline .northline-team-grid .northline-barber-card--andre {
    --northline-barber-object-position: 61% 0%;
    --northline-team-overlay-mid: rgba(9, 17, 20, 0.38);
    --northline-team-overlay-end: rgba(9, 17, 20, 0.94);
  }

  body.northline .northline-team-grid .northline-barber-card--eli {
    --northline-barber-object-position: 50% 3%;
    --northline-team-overlay-mid: rgba(9, 17, 20, 0.44);
    --northline-team-overlay-end: rgba(9, 17, 20, 0.98);
  }

  body.northline .northline-team-grid .barber-card .northline-barber-photo img {
    object-position: var(--northline-barber-object-position, 50% 0%) !important;
  }

  body.northline .northline-team-grid .barber-card .northline-barber-photo::after,
  body.northline .northline-team-grid .barber-card.is-featured .northline-barber-photo::after,
  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 17, 20, 0.015) 28%, var(--northline-team-overlay-mid, rgba(9,17,20,0.42)) 62%, var(--northline-team-overlay-end, rgba(9,17,20,0.97)) 100%) !important;
  }

  body.northline .northline-team-grid .barber-card .northline-barber-copy,
  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-copy,
  body.northline .northline-team-grid .barber-card.is-featured .northline-barber-copy {
    position: absolute !important;
    z-index: 2 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    max-width: none !important;
    padding: 24px 24px 22px !important;
    color: #fffaf4 !important;
    text-align: left !important;
  }

  body.northline .northline-team-grid .barber-card.is-featured .northline-barber-copy {
    max-width: 620px !important;
    padding: clamp(26px, 3.2vw, 42px) !important;
  }

  body.northline .northline-team-grid .northline-barber-days,
  body.northline .northline-team-grid h3,
  body.northline .northline-team-grid .northline-barber-summary,
  body.northline .northline-team-grid .northline-barber-copy a {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.northline .northline-team-grid .northline-barber-days {
    margin-bottom: 8px;
    color: #d9a57d !important;
  }

  body.northline .northline-team-grid .barber-card.is-featured h3 {
    font-size: clamp(2.5rem, 3.9vw, 4rem) !important;
    line-height: 0.98 !important;
    color: #fffaf4 !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) h3 {
    font-size: clamp(1.7rem, 2.1vw, 2.15rem) !important;
    line-height: 0.98 !important;
    color: #fffaf4 !important;
  }

  body.northline .northline-team-grid .barber-card.is-featured .northline-barber-summary {
    max-width: 26ch;
    margin-top: 12px;
    color: rgba(255, 250, 244, 0.82) !important;
  }

  body.northline .northline-team-grid .barber-card:not(.is-featured) .northline-barber-summary {
    max-width: 24ch;
    margin-top: 10px;
    color: rgba(255, 250, 244, 0.82) !important;
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  body.northline .northline-team-grid .barber-card .northline-barber-copy a {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    margin-top: 12px !important;
    color: #fffaf4 !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
  }

  body.northline .northline-team-grid .barber-card .northline-barber-copy a:hover .northline-team-link-line,
  body.northline .northline-team-grid .barber-card .northline-barber-copy a:focus-visible .northline-team-link-line {
    width: 24px;
    flex-basis: 24px;
    opacity: 1;
  }
}

@media (min-width: 761px) and (max-height: 800px) {
  body.northline .northline-hero-grid {
    min-height: clamp(560px, 74svh, 640px);
  }

  body.northline .northline-services-ledger-section {
    padding-block: 64px 78px;
  }

  body.northline .northline-services-ledger-visual {
    min-height: 350px;
  }

  body.northline .northline-signature-selection .northline-service-ledger-item.is-featured {
    min-height: 190px;
  }

  body.northline .northline-inside-heading-row .section-heading h2 {
    font-size: clamp(2.75rem, 4.2vw, 4rem);
  }

  body.northline .northline-inside-grid {
    min-height: clamp(420px, calc(100svh - 250px), 540px);
  }

  body.northline .northline-team-grid {
    min-height: clamp(540px, 63svh, 630px) !important;
    height: clamp(540px, 63svh, 630px) !important;
  }
}

@media (min-width: 761px) {
  body.northline .northline-hero {
    box-sizing: border-box;
    height: calc(100svh - var(--northline-header-height-active) - 1px);
    min-height: min(540px, calc(100svh - var(--northline-header-height-active) - 1px));
    max-height: none;
    padding: clamp(16px, 2.2svh, 26px) 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 17% 48%, rgba(55, 79, 85, 0.18), transparent 38%),
      linear-gradient(180deg, #111a1e 0%, #10191d 100%);
  }

  body.northline .northline-hero > .container {
    width: min(calc(100% - 48px), 1360px);
    max-width: 1360px;
    height: 100%;
    margin: 0 auto;
  }

  body.northline .northline-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    gap: clamp(34px, 4vw, 62px);
  }

  body.northline .northline-hero-copy {
    width: 100%;
    max-width: 570px;
    min-height: 0;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  body.northline .northline-hero h1 {
    width: max-content;
    max-width: none;
    margin: 0;
    color: #fffaf4 !important;
    font-size: clamp(3.65rem, 4.65vw, 5.25rem);
    line-height: 0.94;
    letter-spacing: -0.067em;
    text-align: left;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-wrap: nowrap;
  }

  body.northline .northline-hero h1 span,
  body.northline .northline-hero h1 span:last-child {
    display: block;
    width: max-content;
    max-width: none;
    margin-inline: 0;
    color: inherit !important;
    white-space: nowrap;
  }

  body.northline .northline-hero h1 span + span {
    margin-top: 0.12em;
  }

  body.northline .northline-hero-copy > .actions {
    margin-top: 26px;
  }

  body.northline .northline-hero-image {
    position: relative;
    inset: auto;
    align-self: center;
    justify-self: stretch;
    width: 100%;
    height: auto;
    max-height: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: #10191d;
    box-shadow: 0 14px 30px rgba(5, 12, 15, 0.22);
  }

  body.northline .northline-hero-image picture,
  body.northline .northline-hero-image img {
    width: 100%;
    height: 100%;
  }

  body.northline .northline-hero-image img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center 38%;
  }

  body.northline .northline-hero-image::after {
    background:
      linear-gradient(180deg, rgba(8, 14, 17, 0.1) 0%, rgba(8, 14, 17, 0.04) 32%, rgba(8, 14, 17, 0.12) 57%, rgba(8, 14, 17, 0.5) 100%),
      radial-gradient(circle at 50% 16%, rgba(255, 246, 236, 0.045), transparent 32%);
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.northline .northline-hero > .container {
    width: min(calc(100% - 36px), 1040px);
  }

  body.northline .northline-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(26px, 3.2vw, 38px);
  }

  body.northline .northline-hero h1 {
    font-size: clamp(3.05rem, 5.15vw, 3.55rem);
  }

  body.northline .northline-hero-copy > .actions {
    gap: 14px;
    margin-top: 22px;
  }

  body.northline .northline-hero-copy .demo-button.primary {
    min-height: 46px;
    padding-inline: 17px;
  }

  body.northline .northline-hero-image {
    aspect-ratio: 1.04 / 1;
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  body.northline .northline-hero {
    min-height: 0;
    padding-block: 14px;
  }

  body.northline .northline-hero h1 {
    font-size: clamp(3.25rem, 4.35vw, 4.35rem);
  }

  body.northline .northline-hero-copy > .actions {
    margin-top: 22px;
  }
}

@media (min-width: 1600px) {
  body.northline .northline-hero > .container {
    max-width: 1328px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-hero-copy .demo-button.secondary.northline-hero-secondary-link::after {
    transition: none;
  }
}
NORTHLINE V7/**/.22 — CONTINUOUS BOOK + VISIT CLOSING
   A single architectural frame at every viewport,
with a quieter live-opening
   strip and a more editorial location-information band.
   ========================================================================== */

body.northline .northline-book-visit {
  position: relative;
  padding-block: clamp(60px, 6.4vw, 90px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 244, 238, 0.96)),
    #f4f2ec;
}

body.northline .northline-book-visit .northline-final-book-panel > .booking-options,
body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy,
body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
  grid-area: auto;
  grid-row: auto;
  grid-column: auto;
}

body.northline .northline-book-visit .booking-option em span {
  display: inline-block;
  margin-left: 6px;
}

body.northline .northline-book-visit .northline-final-exterior-photo picture {
  position: absolute;
  inset: 0;
  min-width: 100%;
  min-height: 100%;
}

body.northline .northline-book-visit .northline-call-action:focus-visible span,
body.northline .northline-book-visit .northline-call-action:hover span {
  transform: translateX(3px);
}

@media (min-width: 1101px) and (max-height: 780px) {
  body.northline .northline-book-visit .northline-book-visit-landing {
    gap: 24px;
  }

  body.northline .northline-book-visit .northline-book-visit-grid {
    min-height: 492px;
  }

  body.northline .northline-book-visit .northline-book-copy .eyebrow {
    margin-bottom: 10px;
  }

  body.northline .northline-book-visit .booking-option::before {
    inset-block: 13px;
  }

  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-rows: 270px auto;
  }

  body.northline .northline-book-visit .northline-final-exterior-photo img {
    object-position: center 45%;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    gap: 12px 24px;
    padding: 18px 25px 20px;
  }

  body.northline .northline-book-visit .northline-final-place-copy h3 {
    font-size: clamp(1.5rem, 1.75vw, 1.9rem);
  }

  body.northline .northline-book-visit .northline-final-hours-grid > div {
    padding-block: 5px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-book-visit-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy {
    grid-area: copy;
    align-self: center;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .booking-options {
    grid-area: options;
    align-self: end;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
    grid-area: secondary;
    align-self: start;
  }

  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 1.02fr);
    grid-template-rows: 392px;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "place"
      "details"
      "hours"
      "actions";
    gap: 14px;
    align-content: center;
    padding: 26px 30px;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-book-visit-landing {
    gap: 24px;
  }

  body.northline .northline-book-visit .northline-final-exterior-photo::after {
    background: linear-gradient(
      180deg,
      rgba(10, 20, 23, 0.02) 28%,
      rgba(10, 20, 23, 0.22) 57%,
      rgba(10, 20, 23, 0.88) 100%
    );
  }

  body.northline .northline-book-visit .northline-final-place-copy .eyebrow {
    margin-bottom: 5px;
    color: #d9a57d;
  }

  body.northline .northline-book-visit .northline-hours-heading {
    margin-bottom: 6px;
  }

  body.northline .northline-book-visit .northline-final-hours-grid > div {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    padding-block: 8px;
  }
}

@media (max-width: 369px) {
  body.northline .northline-book-visit .northline-final-location-card {
    --northline-v723-photo-height: 218px;
  }

  body.northline .northline-book-visit .northline-final-actions .northline-directions-action {
    min-width: 0;
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-book-visit .northline-book-secondary-action::after,
  body.northline .northline-book-visit .northline-call-action span {
    transition: none;
  }
}

body.northline .northline-book-visit {
  padding-block: clamp(48px, 5.2vw, 72px);
}

@media (min-width: 1101px) and (max-height: 780px) {
  body.northline .northline-book-visit {
    padding-block: 34px 38px;
  }

  body.northline .northline-book-visit .northline-final-book-panel {
    padding: 30px 36px;
    gap: 16px;
    padding-block: 26px;
  }

  body.northline .northline-book-visit .northline-book-copy h3 {
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 2.55vw, 2.85rem);
  }

  body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option.is-earliest {
    min-height: 116px;
    padding-block: 13px;
  }

  body.northline .northline-book-visit .booking-option em {
    margin-top: 3px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-final-book-panel {
    grid-template-columns: minmax(235px, 0.86fr) minmax(320px, 1.14fr);
    grid-template-rows: auto auto;
    grid-template-areas: "copy options"
      "copy secondary";
    padding: 34px 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 162, 123, 0.35);
    gap: 12px 38px;
  }

  body.northline .northline-book-visit .northline-book-copy {
    width: 100%;
  }

  body.northline .northline-book-visit .northline-book-copy h3 {
    max-width: 8.4ch;
    font-size: clamp(2.18rem, 4.4vw, 3rem);
  }

  body.northline .northline-book-visit .booking-options {
    width: 100%;
  }

  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option.is-earliest {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "top"
      "time"
      "meta"
      "action";
    min-height: 132px;
  }

  body.northline .northline-book-visit .northline-book-secondary-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit {
    padding-block: 38px 44px;
  }

  body.northline .northline-book-visit .northline-book-copy {
    width: 100%;
  }

  body.northline .northline-book-visit .booking-options {
    width: 100%;
  }
}

body.northline .northline-book-visit .booking-option strong {
  grid-area: time;
  color: #fffaf4;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: left;
  align-self: end;
  font-size: clamp(1.58rem, 1.9vw, 1.92rem);
}

@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .booking-option strong {
    font-size: clamp(1.48rem, 2.15vw, 1.72rem);
  }

  body.northline .northline-book-visit .booking-option em {
    width: 170px;
    min-width: 170px;
    padding-inline: 12px;
    font-size: 0.61rem;
    line-height: 1.2;
  }
}

@media (min-width: 921px) and (max-height: 780px) {
  body.northline .northline-book-visit {
    padding-block: 28px 32px;
  }

  body.northline .northline-book-visit .northline-book-copy .eyebrow {
    margin-bottom: 9px;
  }

  body.northline .northline-book-visit .booking-option::before {
    inset-block: 12px;
  }

  body.northline .northline-book-visit .booking-option em {
    min-height: 46px;
  }
}

@media (min-width: 921px) and (max-height: 680px) {
  body.northline .northline-book-visit {
    padding-block: 20px 24px;
  }
}

@media (max-width: 920px) {
  body.northline .northline-book-visit .booking-option::before {
    inset-block: 17px;
  }

  body.northline .northline-book-visit .booking-option:focus-visible em,
  body.northline .northline-book-visit .booking-option:hover em {
    border-color: rgba(225, 174, 135, 0.72) !important;
    background: transparent !important;
  }
}

@media (min-width: 761px) and (max-width: 920px) {
  body.northline .northline-book-visit .northline-final-location-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "details"
      "hours"
      "actions";
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .booking-option::before {
    display: block;
    inset-block: 15px;
  }

  body.northline .northline-book-visit .booking-option strong {
    font-size: clamp(1.48rem, 6.8vw, 1.78rem);
  }

  body.northline .northline-book-visit .northline-visit-details li::before {
    display: none;
  }

  body.northline .northline-book-visit .northline-final-hours {
    border-top: 1px solid rgba(38, 61, 68, 0.12);
    padding-top: 14px;
  }
}

@media (max-width: 369px) {
  body.northline .northline-book-visit .northline-final-place-copy {
    top: auto;
    right: 17px;
    bottom: 17px;
    left: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-book-visit .booking-option em {
    transition: none;
  }
}

body.northline .northline-book-visit .northline-final-book-panel::after {
  display: none;
}

body.northline .northline-book-visit .booking-options {
  display: grid;
  align-self: auto;
  align-content: start;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  min-width: 0;
  margin-inline: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

body.northline .northline-book-visit .northline-book-options-heading strong {
  color: #172529;
  font: inherit;
  letter-spacing: 0.1em;
}

body.northline .northline-book-visit .booking-option::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #d9a57d;
  opacity: 0.78;
  inset: 15px auto 15px 0;
  display: none;
}

body.northline .northline-book-visit .booking-option:hover {
  transform: none !important;
  border-color: #a56440 !important;
  background: rgba(165, 100, 64, 0.035) !important;
}

body.northline .northline-book-visit .booking-option:focus-visible {
  transform: none !important;
  border-color: #a56440 !important;
  background: rgba(165, 100, 64, 0.035) !important;
  outline: 2px solid #9b5d3a;
  outline-offset: 5px;
}

body.northline .northline-book-visit .northline-opening-primary {
  grid-area: primary;
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
}

body.northline .northline-book-visit .booking-option strong.northline-opening-time,
body.northline .northline-book-visit .northline-opening-time {
  margin: 0;
  color: #142226;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(2.05rem, 2.75vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-align: left;
}

body.northline .northline-book-visit .northline-book-service-meta i {
  margin-inline: 0.34em;
  color: #a56440;
  font-style: normal;
}

body.northline .northline-book-visit .booking-option em > span:last-child {
  flex: 0 0 auto;
  margin: 0;
  color: #a56440;
  font-size: 1rem;
  transition: transform 180ms ease;
}

body.northline .northline-book-visit .booking-option:focus-visible em,
body.northline .northline-book-visit .booking-option:hover em {
  border-color: rgba(225, 174, 135, 0.78) !important;
  border: 0;
  background: transparent !important;
}

body.northline .northline-book-visit .booking-option:focus-visible em > span:last-child,
body.northline .northline-book-visit .booking-option:hover em > span:last-child {
  transform: translateX(3px) !important;
}

body.northline .northline-book-visit .northline-book-secondary-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

body.northline .northline-book-visit .northline-book-secondary-action::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform-origin: left;
  transition: transform 180ms ease;
  right: 34%;
  background: linear-gradient(90deg, rgba(216, 162, 123, 0.55), rgba(216, 162, 123, 0.05));
  display: none;
}

body.northline .northline-book-visit .northline-book-secondary-action span:last-child {
  margin-left: 11px;
  color: #a56440;
  transition: transform 180ms ease;
}

body.northline .northline-book-visit .northline-book-secondary-action:focus-visible span:last-child,
body.northline .northline-book-visit .northline-book-secondary-action:hover span:last-child {
  transform: translateX(3px);
}

body.northline .northline-book-visit .northline-book-secondary-action:focus-visible {
  outline: 2px solid #9b5d3a;
  outline-offset: 5px;
}

body.northline .northline-book-visit .northline-final-location-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  display: grid;
  grid-template-rows: minmax(292px, 0.98fr) auto;
  min-width: 0;
  min-height: 594px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.northline .northline-book-visit .northline-final-exterior-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9, 18, 21, 0.01) 34%, rgba(9, 18, 21, 0.18) 61%, rgba(9, 18, 21, 0.9) 100%),
    linear-gradient(90deg, rgba(9, 18, 21, 0.18), transparent 48%);
  display: none;
}

body.northline .northline-book-visit .northline-final-hours {
  min-width: 0;
  grid-area: hours;
  align-self: stretch;
  padding: 0;
  border: 0;
}

body.northline .northline-book-visit .northline-final-hours-grid {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

body.northline .northline-book-visit .northline-final-hours-grid > div:last-child {
  border-bottom: 1px solid rgba(36, 48, 51, 0.12);
}

body.northline .northline-book-visit .northline-visit-practical {
  grid-area: visiting;
  align-self: stretch;
}

body.northline .northline-book-visit .northline-visit-details {
  grid-area: details;
  align-self: stretch;
  align-content: center;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.northline .northline-book-visit .northline-visit-details li:last-child {
  border-bottom: 1px solid rgba(36, 48, 51, 0.12);
}

body.northline .northline-book-visit .northline-visit-details li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 1px;
  background: #b3744d;
  top: 1.05rem;
  display: none;
}

body.northline .northline-book-visit .northline-final-actions {
  align-self: end;
  padding: 0;
  grid-area: actions;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 38px);
  margin: 0;
  padding-top: 2px;
}

body.northline .northline-book-visit .northline-directions-action::after {
  content: "↗";
  color: #a56440;
  font-size: 0.92rem;
}

body.northline .northline-book-visit .northline-call-action span {
  margin-left: 8px;
  transition: transform 180ms ease;
  color: #a56440;
}

body.northline .northline-book-visit .northline-call-action:hover,
body.northline .northline-book-visit .northline-directions-action:hover {
  color: #8e5031;
  transform: none;
}

body.northline .northline-book-visit .northline-call-action:focus-visible,
body.northline .northline-book-visit .northline-directions-action:focus-visible {
  color: #8e5031;
  transform: none;
  outline: 2px solid #9b5d3a;
  outline-offset: 5px;
}

@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-final-book-panel > .booking-options,
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy,
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
    grid-area: auto;
    align-self: auto;
  }

  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option.is-earliest {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "primary action"
      "meta action";
    min-height: 126px;
    gap: 7px 16px;
  }

  body.northline .northline-book-visit .booking-option strong.northline-opening-time,
  body.northline .northline-book-visit .northline-opening-time {
    font-size: clamp(1.8rem, 3vw, 2.15rem);
  }

  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 260px auto;
    min-height: 540px;
  }
}

@media (min-width: 921px) and (max-height: 780px) {
  body.northline section#book.northline-book-visit {
    padding-block: 28px 34px;
  }

  body.northline .northline-book-visit .northline-book-visit-grid {
    min-height: 510px;
  }

  body.northline .northline-book-visit .northline-final-book-panel {
    min-height: 510px;
    gap: 27px;
    padding-block: 32px;
  }

  body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
    font-size: 0.79rem;
    line-height: 1.5;
  }

  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option.is-earliest {
    min-height: 118px;
    padding-block: 15px;
  }

  body.northline .northline-book-visit .northline-final-location-card {
    min-height: 510px;
    grid-template-rows: 244px auto;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    gap: 12px 24px;
    padding-block: 18px 19px;
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    padding-bottom: 13px;
  }
}

@media (min-width: 921px) and (max-height: 680px) {
  body.northline section#book.northline-book-visit {
    padding-block: 20px 24px;
  }

  body.northline .northline-book-visit .northline-book-visit-grid {
    min-height: 454px;
  }

  body.northline .northline-book-visit .northline-final-book-panel {
    padding-block: 20px;
    min-height: 454px;
    gap: 20px;
    padding: 24px 30px;
  }

  body.northline .northline-book-visit .northline-book-copy .eyebrow {
    margin-bottom: 10px;
  }

  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option.is-earliest {
    min-height: 102px;
    padding-block: 12px;
  }

  body.northline .northline-book-visit .northline-opening-primary {
    gap: 4px;
  }

  body.northline .northline-book-visit .northline-final-location-card {
    min-height: 454px;
    grid-template-rows: 214px auto;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    gap: 8px 20px;
    padding: 13px 20px 15px;
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    padding-bottom: 9px;
  }

  body.northline .northline-book-visit .northline-final-hours-grid > div,
  body.northline .northline-book-visit .northline-visit-details li {
    padding-block: 4px;
  }
}

@media (max-width: 920px) {
  body.northline section#book.northline-book-visit {
    padding-block: 42px 50px;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .booking-options,
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy,
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
    grid-area: auto;
    align-self: auto;
  }

  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option.is-earliest {
    gap: 6px;
    justify-items: stretch;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "primary action"
      "meta action";
    min-height: 132px;
    padding: 18px 2px;
  }

  body.northline .northline-book-visit .booking-option strong,
  body.northline .northline-book-visit .northline-book-service-meta {
    text-align: left;
  }

  body.northline .northline-book-visit .booking-option em {
    margin-top: 7px;
    border-top: 1px solid rgba(225, 174, 135, 0.42);
    width: auto;
    min-width: 92px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: right;
  }

  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: clamp(280px, 46vw, 350px) auto;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-opening-primary {
    gap: 6px;
  }

  body.northline .northline-book-visit .booking-option strong.northline-opening-time,
  body.northline .northline-book-visit .northline-opening-time {
    font-size: clamp(2rem, 10vw, 2.48rem);
  }

  body.northline .northline-book-visit .booking-option:focus-visible em,
  body.northline .northline-book-visit .booking-option:hover em {
    border-top: 1px solid rgba(36, 48, 51, 0.12);
  }

  body.northline .northline-book-visit .northline-final-location-card {
    --northline-v723-photo-height: clamp(225px, 61vw, 258px);
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #f8f5ef;
    box-shadow: none;
    grid-template-rows: clamp(230px, 64vw, 275px) auto;
  }

  body.northline .northline-book-visit .northline-final-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option em > span:last-child,
  body.northline .northline-book-visit .northline-book-secondary-action span:last-child {
    transition: none;
  }
}

body.northline .northline-book-visit .booking-option em > span:first-child {
  color: #172529;
}

body.northline .northline-book-visit .northline-final-actions .northline-directions-action {
  width: auto;
  min-height: 44px;
  min-width: 0;
  padding-inline: 0;
  border-radius: 0;
}

body.northline .northline-book-visit .northline-final-actions .northline-call-action {
  min-width: 0;
  padding-inline: 0;
  border-radius: 0;
}

@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-final-book-panel {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas: none;
    gap: 30px;
    min-height: 540px;
    padding: 34px 31px;
    border-bottom: 0;
    border-right: 1px solid rgba(112, 122, 131, 0.11);
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-final-actions .northline-directions-action {
    width: 100%;
    padding-inline: 0;
    border-radius: 0;
    text-align: left;
    border-top-color: rgba(85, 95, 103, 0.14);
  }

  body.northline .northline-book-visit .northline-final-actions .northline-call-action {
    padding-inline: 0;
    border-radius: 0;
    text-align: left;
    border-top-color: rgba(85, 95, 103, 0.14);
    border-bottom-color: rgba(85, 95, 103, 0.14);
  }
}

body.northline section#book.northline-book-visit {
  padding-block: clamp(50px, 6vw, 82px);
  scroll-margin-top: 0;
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: #f1f0eb;
}

body.northline .northline-book-visit .northline-book-visit-landing {
  gap: 0;
  position: relative;
  z-index: 1;
}

body.northline .northline-book-visit .northline-final-exterior-photo {
  width: 100%;
  container-type: inline-size;
  position: relative;
  min-height: 0;
  height: 100%;
  max-height: none;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(112, 122, 131, 0.11);
  background: rgba(202, 209, 213, 0.88);
  border-bottom-color: rgba(85, 95, 103, 0.13);
}

body.northline .northline-book-visit .booking-option.is-earliest {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "primary action"
    "meta action";
  gap: 8px 24px;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  min-height: 142px;
  padding: 20px 2px 19px;
  border: 0;
  border-top: 1px solid rgba(36, 48, 51, 0.28);
  border-bottom: 1px solid rgba(36, 48, 51, 0.28);
  border-radius: 0;
  background: transparent;
  color: #172529;
  box-shadow: none;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, padding 180ms ease;
  border-top-color: rgba(85, 95, 103, 0.13);
  border-bottom-color: rgba(85, 95, 103, 0.13);
}

body.northline .northline-book-visit .northline-final-hours-grid > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 7px 0;
  border: 0;
  border-top: 1px solid rgba(36, 48, 51, 0.12);
  border-color: rgba(85, 95, 103, 0.12);
}

body.northline .demo-modal .demo-modal-close,
body.northline .demo-modal .northline-booking-actions .demo-button,
body.northline .demo-modal .northline-booking-choice,
body.northline .demo-modal .northline-calendar-day,
body.northline .demo-modal .northline-calendar-toolbar button,
body.northline .demo-modal .northline-modal-menu-link,
body.northline .demo-modal .northline-time-button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(165, 100, 64, 0.12);
}

body.northline .northline-book-visit .booking-option:hover:not(:focus-visible) {
  transform: none !important;
  border-top-color: rgba(85, 95, 103, 0.13) !important;
  border-bottom-color: rgba(85, 95, 103, 0.13) !important;
  background: transparent !important;
}

body.northline .northline-book-visit .booking-option:hover:not(:focus-visible) em > span:last-child,
body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible) span:last-child {
  transform: none !important;
}

body.northline .northline-book-visit .northline-call-action:hover:not(:focus-visible),
body.northline .northline-book-visit .northline-directions-action:hover:not(:focus-visible) {
  color: #172529;
}

body.northline .demo-modal .demo-modal-close:hover:not(:focus-visible) {
  transform: none;
  outline: 0;
  background: rgba(27, 50, 57, 0.06);
  color: var(--muted);
}

body.northline .demo-modal .northline-booking-choice:hover:not(:focus-visible):not(.is-selected) {
  transform: none;
  border-color: rgba(27, 50, 57, 0.13);
  background: #fff;
  box-shadow: none;
}

body.northline .demo-modal .northline-booking-choice.is-selected:hover:not(:focus-visible) {
  transform: none;
  border-color: rgba(155, 104, 72, 0.66);
  background: #fffaf4;
  box-shadow: 0 0 0 4px rgba(155, 104, 72, 0.1);
}

body.northline .demo-modal .northline-modal-menu-link:hover:not(:focus-visible) {
  transform: none;
  color: var(--accent-deep);
}

body.northline .demo-modal .northline-calendar-toolbar button:hover:not(:focus-visible) {
  transform: none;
  border-color: rgba(27, 50, 57, 0.12);
  background: #fff;
  box-shadow: none;
}

body.northline .demo-modal .northline-calendar-day:hover:not(:disabled):not(:focus-visible):not(.is-selected) {
  border-color: transparent;
  background: #f8f8f5;
}

body.northline .demo-modal .northline-time-button:hover:not(:focus-visible):not(.is-selected) {
  transform: none;
  border-color: rgba(27, 50, 57, 0.13);
  background: #fff;
}

body.northline .demo-modal .northline-booking-actions .demo-button:hover:not(:focus-visible) {
  transform: none;
  box-shadow: none;
}

body.northline .demo-modal .northline-booking-actions .demo-button.primary:hover:not(:focus-visible) {
  background: var(--dark);
}

body.northline .demo-modal .northline-booking-actions .demo-button.secondary:hover:not(:focus-visible) {
  border-color: var(--line);
  background: transparent;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .northline-book-visit .booking-option:hover:not(:focus-visible) {
    background: rgba(165, 100, 64, 0.035) !important;
  }

  body.northline .northline-book-visit .booking-option:hover:not(:focus-visible) em > span:last-child,
  body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible) span:last-child {
    transform: translateX(3px) !important;
  }

  body.northline .northline-book-visit .northline-call-action:hover:not(:focus-visible),
  body.northline .northline-book-visit .northline-directions-action:hover:not(:focus-visible) {
    color: #8e5031;
  }

  body.northline .demo-modal .demo-modal-close:hover:not(:focus-visible) {
    transform: rotate(4deg);
    outline: rgba(155, 104, 72, 0.5) solid 3px;
    outline-offset: 3px;
    background: rgba(27, 50, 57, 0.11);
    color: var(--ink);
  }

  body.northline .demo-modal .northline-booking-choice:hover:not(:focus-visible):not(.is-selected) {
    transform: translateY(-2px);
    border-color: rgba(155, 104, 72, 0.48);
    background: #fff;
    box-shadow: 0 9px 20px rgba(24, 39, 45, 0.08);
  }

  body.northline .demo-modal .northline-booking-choice.is-selected:hover:not(:focus-visible) {
    transform: translateY(-2px);
  }

  body.northline .demo-modal .northline-modal-menu-link:hover:not(:focus-visible) {
    transform: translateX(3px);
    color: var(--accent);
  }

  body.northline .demo-modal .northline-calendar-toolbar button:hover:not(:focus-visible) {
    transform: translateY(-1px);
    border-color: rgba(155, 104, 72, 0.48);
    background: #fff9f3;
    box-shadow: 0 6px 14px rgba(24, 39, 45, 0.07);
  }

  body.northline .demo-modal .northline-calendar-day:hover:not(:disabled):not(:focus-visible):not(.is-selected) {
    border-color: rgba(155, 104, 72, 0.5);
    background: #fff9f3;
  }

  body.northline .demo-modal .northline-time-button:hover:not(:focus-visible):not(.is-selected) {
    transform: translateY(-1px);
    border-color: rgba(155, 104, 72, 0.48);
    background: #fff9f3;
  }

  body.northline .demo-modal .northline-booking-actions .demo-button:hover:not(:focus-visible) {
    transform: translateY(-2px);
    box-shadow: 0 11px 24px rgba(24, 39, 45, 0.16);
  }

  body.northline .demo-modal .northline-booking-actions .demo-button.primary:hover:not(:focus-visible) {
    background: #22373e;
  }

  body.northline .demo-modal .northline-booking-actions .demo-button.secondary:hover:not(:focus-visible) {
    border-color: rgba(155, 104, 72, 0.42);
    background: rgba(255, 255, 255, 0.76);
  }
}

@media (hover: none) and (pointer: coarse) {
  body.northline .northline-book-visit .booking-option:active {
    background: rgba(165, 100, 64, 0.035) !important;
  }

  body.northline .northline-book-visit .booking-option:active em > span:last-child {
    transform: translateX(1px) !important;
  }

  body.northline .northline-book-visit .northline-book-secondary-action:active,
  body.northline .northline-book-visit .northline-call-action:active,
  body.northline .northline-book-visit .northline-directions-action:active {
    opacity: 0.72;
  }
}

body.northline section#book.northline-book-visit::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 13% 7%, rgba(255, 255, 255, 0.54), transparent 39%),
    radial-gradient(circle at 87% 78%, rgba(93, 106, 111, 0.045), transparent 43%),
    repeating-linear-gradient(
      180deg,
      rgba(91, 103, 107, 0.022) 0,
      rgba(91, 103, 107, 0.022) 1px,
      transparent 1px,
      transparent 98px
    );
  opacity: 0.62;
}

body.northline .northline-book-visit .northline-book-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 0;
  min-height: 594px;
  overflow: hidden;
  border: 1px solid rgba(112, 122, 131, 0.11);
  border-radius: 28px;
  border-color: rgba(100, 111, 118, 0.14);
  background: rgba(250, 249, 246, 0.84);
  box-shadow: 0 22px 64px rgba(22, 30, 35, 0.085);
  backdrop-filter: blur(12px) saturate(1.01);
  -webkit-backdrop-filter: blur(12px) saturate(1.01);
}

body.northline .northline-book-visit .northline-final-book-panel {
  justify-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: space-between;
  align-items: stretch;
  gap: clamp(34px, 4vw, 54px);
  min-width: 0;
  min-height: 594px;
  padding: clamp(40px, 4.2vw, 58px) clamp(36px, 4.1vw, 56px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #172529;
  box-shadow: none;
  border-right: 1px solid rgba(112, 122, 131, 0.11);
  border-right-color: rgba(85, 95, 103, 0.125);
}

body.northline .northline-book-visit .northline-book-copy {
  align-self: auto;
  margin-inline: auto;
  width: 100%;
  margin: 0;
  justify-items: start;
  text-align: left;
  max-width: 33rem;
}

body.northline .northline-book-visit .northline-book-copy h3 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 800;
  margin: 0 0 20px;
  color: #142226;
  text-align: left;
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.82rem, 3.42vw, 3.82rem);
  letter-spacing: -0.061em;
  line-height: 0.95;
  text-wrap: initial;
}

body.northline .northline-book-visit .northline-book-copy h3 span {
  display: block;
  white-space: nowrap;
}

body.northline .northline-book-visit .northline-book-copy h3 span + span {
  margin-top: 0.1em;
}

body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
  margin-inline: auto;
  margin: 0;
  text-align: left;
  max-width: 28rem;
  color: #55666b;
  font-size: 0.875rem;
  line-height: 1.64;
}

body.northline .northline-book-visit .northline-hours-heading .eyebrow {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.145em;
}

body.northline .northline-book-visit .northline-book-copy .eyebrow {
  margin-bottom: 13px;
  margin: 0 0 15px;
  color: #9b5d3a;
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.145em;
}

body.northline .northline-book-visit .northline-final-place-copy .eyebrow {
  margin-bottom: 6px;
  margin: 0 0 8px;
  color: #9b5d3a;
  font-size: 0.68rem;
  letter-spacing: 0.145em;
}

body.northline .northline-book-visit .northline-visit-practical > .eyebrow {
  margin: 0 0 10px;
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.145em;
}

body.northline .northline-book-visit .northline-book-options-heading {
  margin-bottom: 9px;
  flex-wrap: wrap;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 0 0 11px;
  color: #65747a;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

body.northline .northline-book-visit .northline-opening-date {
  color: #66757a;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
}

body.northline .northline-book-visit .northline-book-service-meta {
  grid-area: meta;
  align-self: start;
  font-style: normal;
  line-height: 1.45;
  text-align: left;
  color: #56676c;
  font-size: 0.76rem;
}

body.northline .northline-book-visit .booking-option em {
  align-self: auto;
  margin-top: 7px;
  transition: background-color 180ms ease, border-color 180ms ease;
  grid-area: action;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  min-width: 92px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #172529;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
  font-size: 0.7rem;
}

body.northline .northline-book-visit .booking-option {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "primary action"
    "meta action";
  gap: 8px 24px;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  min-height: 142px;
  padding: 20px 2px 19px;
  border: 0;
  border-top: 1px solid rgba(36, 48, 51, 0.28);
  border-bottom: 1px solid rgba(36, 48, 51, 0.28);
  border-radius: 0;
  background: transparent;
  color: #172529;
  box-shadow: none;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, padding 180ms ease;
  border-top-color: rgba(85, 95, 103, 0.13);
  border-bottom-color: rgba(85, 95, 103, 0.13);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(165, 100, 64, 0.12);
  cursor: pointer;
}

body.northline .northline-book-visit .northline-book-secondary-action {
  font: inherit;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  width: auto;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(165, 100, 64, 0.12);
  font-size: 0.7rem;
  color: #46595f;
}

body.northline .northline-book-visit .northline-final-exterior-photo img {
  position: absolute;
  inset: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.88) contrast(1.025);
}

body.northline .northline-book-visit .northline-final-location-content {
  min-width: 0;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  grid-template-areas: "place place"
    "hours visiting"
    "actions actions";
  align-content: center;
  padding: clamp(25px, 2.8vw, 36px) clamp(28px, 3.2vw, 42px) clamp(24px, 2.5vw, 32px);
  gap: 21px clamp(30px, 3vw, 44px);
}

body.northline .northline-book-visit .northline-final-place-copy {
  min-width: 0;
  z-index: 2;
  top: auto;
  right: clamp(22px, 4.5cqw, 32px);
  bottom: clamp(21px, 4.5cqw, 31px);
  left: clamp(22px, 4.5cqw, 32px);
  grid-area: place;
  position: static;
  max-width: none;
  margin: 0;
  border-bottom: 1px solid rgba(36, 48, 51, 0.18);
  color: #172529;
  font-style: normal;
  border-color: rgba(85, 95, 103, 0.12);
  padding-bottom: 19px;
}

body.northline .northline-book-visit .northline-final-place-copy h3 {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 800;
  max-width: none;
  margin: 0 0 7px;
  color: #142226;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
  margin-bottom: 8px;
  font-size: clamp(1.78rem, 2.08vw, 2.22rem);
}

body.northline .northline-book-visit .northline-final-place-copy > p:last-child {
  margin: 0;
  color: #617176;
  line-height: 1.45;
  font-size: 0.79rem;
}

body.northline .northline-book-visit .northline-hours-heading {
  margin-bottom: 7px;
  margin: 0 0 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

body.northline .northline-book-visit .northline-hours-closed {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.3;
  color: #67767b;
  flex: 0 0 auto;
  font-size: 0.7rem;
}

body.northline .northline-book-visit .northline-final-hours-grid dt {
  color: #607075;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

body.northline .northline-book-visit .northline-final-hours-grid dd {
  font-variant-numeric: tabular-nums;
  text-align: right;
  margin: 0;
  color: #1f3035;
  font-weight: 700;
  line-height: 1.45;
  font-size: 0.78rem;
}

body.northline .northline-book-visit .northline-visit-details li {
  padding-left: 16px;
  position: static;
  padding: 7px 0;
  border: 0;
  border-top: 1px solid rgba(36, 48, 51, 0.12);
  line-height: 1.45;
  border-color: rgba(85, 95, 103, 0.12);
  color: #4d5f64;
  font-size: 0.77rem;
}

body.northline .northline-book-visit .northline-call-action,
body.northline .northline-book-visit .northline-directions-action {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #172529;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: none;
  border-color: rgba(85, 95, 103, 0.12);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(165, 100, 64, 0.12);
  font-size: 0.7rem;
  letter-spacing: 0.085em;
}

@media (min-width: 1101px) {
  body.northline .northline-book-visit .northline-book-visit-landing {
    width: min(calc(100% - clamp(72px, 6vw, 104px)), 1280px);
    max-width: 1280px;
  }

  body.northline .northline-book-visit .northline-book-visit-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  body.northline .northline-book-visit .northline-final-book-panel {
    padding-inline: clamp(44px, 4.1vw, 58px);
  }
}

@media (min-width: 1600px) {
  body.northline .northline-book-visit .northline-book-copy h3 {
    font-size: 3.92rem;
  }
}

@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-book-visit-grid {
    min-height: 540px;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  }

  body.northline .northline-book-visit .northline-book-copy h3 {
    max-width: none;
    font-size: clamp(2.42rem, 4.25vw, 2.95rem);
  }

  body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
    font-size: 0.82rem;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    grid-template-areas: "place place"
      "hours visiting"
      "actions actions";
    padding: 22px 24px 21px;
    gap: 15px 25px;
  }
}

@media (min-width: 921px) and (max-height: 780px) {
  body.northline .northline-book-visit .northline-book-copy h3 {
    margin-bottom: 13px;
    font-size: clamp(2.32rem, 2.72vw, 2.95rem);
  }
}

@media (min-width: 921px) and (max-height: 680px) {
  body.northline .northline-book-visit .northline-book-copy h3 {
    margin-bottom: 9px;
    font-size: clamp(2.08rem, 2.38vw, 2.58rem);
  }

  body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
    line-height: 1.42;
    font-size: 0.8rem;
  }
}

@media (max-width: 920px) {
  body.northline .northline-book-visit .northline-book-visit-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    border-radius: 26px;
  }

  body.northline .northline-book-visit .northline-final-book-panel {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas: none;
    min-height: 0;
    padding: 40px clamp(30px, 6vw, 46px) 36px;
    border-bottom: 1px solid rgba(112, 122, 131, 0.11);
    border-right: 0;
    border-bottom-color: rgba(85, 95, 103, 0.13);
    gap: 32px;
    padding-top: 42px;
    padding-bottom: 38px;
  }

  body.northline .northline-book-visit .northline-book-copy h3 {
    max-width: none;
    font-size: clamp(2.46rem, 7.2vw, 3.28rem);
  }

  body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
    font-size: 0.86rem;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "place place"
      "hours visiting"
      "actions actions";
    gap: 22px 34px;
  }
}

@media (max-width: 760px) {
  body.northline section#book.northline-book-visit {
    padding-block: 38px 46px;
  }

  body.northline section#book.northline-book-visit::before {
    background: radial-gradient(circle at 17% 5%, rgba(255, 255, 255, 0.52), transparent 38%),
      radial-gradient(circle at 84% 84%, rgba(93, 106, 111, 0.04), transparent 44%),
      repeating-linear-gradient(
        180deg,
        rgba(91, 103, 107, 0.019) 0,
        rgba(91, 103, 107, 0.019) 1px,
        transparent 1px,
        transparent 88px
      );
  }

  body.northline .northline-book-visit .northline-book-visit-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(31, 52, 59, 0.13);
    background: #f8f5ef;
    border-radius: 24px;
    box-shadow: 0 18px 52px rgba(22, 30, 35, 0.075);
  }

  body.northline .northline-book-visit .northline-final-book-panel {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    border: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 162, 123, 0.35);
    border-radius: 0;
    box-shadow: none;
    gap: 30px;
    padding: 37px 22px 34px;
  }

  body.northline .northline-book-visit .northline-book-copy .eyebrow {
    margin-bottom: 12px;
  }

  body.northline .northline-book-visit .northline-book-copy h3 {
    margin: 0 0 12px;
    max-width: 10.8ch;
    margin-bottom: 16px;
    font-size: clamp(2.18rem, 10vw, 2.62rem);
    line-height: 0.95;
  }

  body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
    max-width: 22rem;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  body.northline .northline-book-visit .northline-book-options-heading {
    margin-bottom: 6px;
    gap: 0.28rem;
    padding-bottom: 10px;
    font-size: 0.68rem;
  }

  body.northline .northline-book-visit .booking-option,
  body.northline .northline-book-visit .booking-option.is-earliest {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "primary"
      "meta"
      "action";
    gap: 7px;
    min-height: 164px;
    padding: 19px 0 14px;
  }

  body.northline .northline-book-visit .northline-opening-date {
    font-size: 0.69rem;
  }

  body.northline .northline-book-visit .northline-book-service-meta {
    font-size: 0.77rem;
  }

  body.northline .northline-book-visit .booking-option em {
    align-self: auto;
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    margin-top: 7px;
    padding-top: 10px;
    border-top: 1px solid rgba(36, 48, 51, 0.12);
    text-align: left;
    font-size: 0.7rem;
  }

  body.northline .northline-book-visit .northline-book-secondary-action {
    width: auto;
    justify-content: flex-start;
    font-size: 0.69rem;
  }

  body.northline .northline-book-visit .northline-final-exterior-photo img {
    object-position: center 53%;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "place"
      "hours"
      "visiting"
      "actions";
    gap: 21px;
    padding: 27px 22px 29px;
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    position: absolute;
    z-index: 3;
    color: #fffaf4;
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding-bottom: 17px;
  }

  body.northline .northline-book-visit .northline-final-place-copy h3 {
    margin-bottom: 5px;
    color: #fffaf4;
    line-height: 1;
    font-size: clamp(1.7rem, 7.4vw, 2rem);
  }

  body.northline .northline-book-visit .northline-final-place-copy > p:last-child {
    color: rgba(255, 250, 244, 0.78);
    font-size: 0.78rem;
  }

  body.northline .northline-book-visit .northline-visit-details li {
    padding-left: 0;
    line-height: 1.48;
    padding: 8px 0;
    font-size: 0.78rem;
  }

  body.northline .northline-book-visit .northline-final-hours-grid dd {
    font-size: 0.78rem;
  }

  body.northline .northline-book-visit .northline-final-hours-grid dt,
  body.northline .northline-book-visit .northline-hours-closed {
    font-size: 0.69rem;
  }

  body.northline .northline-book-visit .northline-call-action {
    padding-inline: 2px;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(36, 48, 51, 0.14);
    border-bottom: 1px solid rgba(36, 48, 51, 0.14);
    font-size: 0.69rem;
  }

  body.northline .northline-book-visit .northline-directions-action {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid rgba(36, 48, 51, 0.14);
    font-size: 0.69rem;
  }
}

@media (max-width: 369px) {
  body.northline .northline-book-visit .northline-final-book-panel,
  body.northline .northline-book-visit .northline-final-location-content {
    padding-inline: 20px;
  }

  body.northline .northline-book-visit .northline-book-copy h3 {
    font-size: clamp(2.02rem, 10.2vw, 2.26rem);
  }

  body.northline .northline-book-visit .northline-book-copy > p:not(.eyebrow) {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline section#book.northline-book-visit::before {
    background: radial-gradient(circle at 13% 7%, rgba(255, 255, 255, 0.54), transparent 39%),
      radial-gradient(circle at 87% 78%, rgba(93, 106, 111, 0.045), transparent 43%);
  }
}

@media (max-width: 369px) {
  body.northline .northline-book-visit .northline-hours-heading {
    flex-wrap: nowrap;
    gap: 10px;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
}

body.northline .northline-book-visit .northline-hours-heading > .eyebrow {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  margin: 0;
  text-align: left;
}

@media (min-width: 921px) and (max-height: 780px) {
  body.northline .northline-book-visit .northline-final-exterior-photo img {
    object-position: center 40%;
  }
}

@media (min-width: 921px) and (max-height: 680px) {
  body.northline .northline-book-visit .northline-final-exterior-photo img {
    object-position: center 36%;
  }
}

body.northline .northline-book-visit .booking-option.is-earliest {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "opening-header opening-header"
    "primary action"
    "meta action";
  grid-template-rows: auto minmax(0, 1fr) auto;
  column-gap: clamp(22px, 2.4vw, 34px);
  row-gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 190px;
  padding: clamp(21px, 2.1vw, 27px) clamp(20px, 2.25vw, 28px) clamp(20px, 2vw, 25px);
  border: 1px solid rgba(243, 238, 230, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 94% 8%, rgba(216, 162, 123, 0.09), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 36%),
    linear-gradient(155deg, #1a2a2f 0%, #111d21 100%) !important;
  color: #f6f1e9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 17px 38px rgba(15, 25, 29, 0.16);
  text-align: left;
  transform: translateZ(0);
  transition:
    transform 190ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 190ms ease,
    box-shadow 190ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.northline .northline-book-visit .booking-option.is-earliest::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 16%;
  left: 16%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.76;
}

body.northline .northline-book-visit .booking-option.is-earliest > * {
  position: relative;
  z-index: 1;
}

body.northline .northline-book-visit .northline-opening-header {
  grid-area: opening-header;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244, 239, 231, 0.11);
}

body.northline .northline-book-visit .northline-opening-label,
body.northline .northline-book-visit .northline-opening-date {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.145em;
  text-transform: uppercase;
}

body.northline .northline-book-visit .northline-opening-label {
  color: rgba(239, 241, 238, 0.72);
}

body.northline .northline-book-visit .northline-opening-date {
  color: #dda879;
  white-space: nowrap;
}

body.northline .northline-book-visit .northline-opening-primary {
  grid-area: primary;
  display: grid;
  align-content: end;
  gap: 8px;
  min-width: 0;
  padding-top: 5px;
}

body.northline .northline-book-visit .booking-option.is-earliest strong.northline-opening-time,
body.northline .northline-book-visit .booking-option.is-earliest .northline-opening-time {
  margin: 0;
  color: #faf6ef;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(2.65rem, 3.55vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.064em;
  line-height: 0.9;
  text-align: left;
  white-space: nowrap;
}

body.northline .northline-book-visit .northline-opening-barber {
  color: rgba(240, 242, 239, 0.88);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.012em;
}

body.northline .northline-book-visit .booking-option.is-earliest .northline-book-service-meta {
  grid-area: meta;
  align-self: end;
  color: rgba(211, 219, 218, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.006em;
}

body.northline .northline-book-visit .booking-option.is-earliest .northline-book-service-meta i {
  margin-inline: 0.34em;
  color: rgba(221, 168, 121, 0.88);
}

body.northline .northline-book-visit .booking-option.is-earliest em {
  grid-area: action;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 108px;
  min-height: 44px;
  margin: 0;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: #f3ede4 !important;
  color: #17262b;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(5, 11, 13, 0.18);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

body.northline .northline-book-visit .booking-option.is-earliest em > span:last-child {
  color: #a56440;
  font-size: 0.94rem;
  line-height: 1;
  transition: transform 180ms ease;
}

body.northline .northline-book-visit .booking-option.is-earliest:focus-visible {
  transform: none !important;
  border-color: rgba(231, 183, 145, 0.88) !important;
  background:
    radial-gradient(circle at 94% 8%, rgba(216, 162, 123, 0.12), transparent 31%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 36%),
    linear-gradient(155deg, #1a2a2f 0%, #111d21 100%) !important;
  outline: 2px solid #b8754e;
  outline-offset: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(15, 25, 29, 0.2);
}

body.northline .northline-book-visit .booking-option.is-earliest:focus-visible em {
  border-color: rgba(255, 255, 255, 0.55) !important;
  background: #fbf6ee !important;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .northline-book-visit .booking-option.is-earliest:hover:not(:focus-visible) {
    transform: translateY(-2px) !important;
    border-color: rgba(231, 183, 145, 0.34) !important;
    background:
      radial-gradient(circle at 94% 8%, rgba(216, 162, 123, 0.12), transparent 31%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.068), transparent 36%),
      linear-gradient(155deg, #1c2d32 0%, #122025 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.085),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18),
      0 21px 44px rgba(15, 25, 29, 0.21);
  }

  body.northline .northline-book-visit .booking-option.is-earliest:hover:not(:focus-visible) em {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: #fbf6ee !important;
    transform: translateY(-1px);
  }

  body.northline .northline-book-visit .booking-option.is-earliest:hover:not(:focus-visible) em > span:last-child {
    transform: translateX(3px) !important;
  }
}

@media (hover: none), (pointer: coarse) {
  body.northline .northline-book-visit .booking-option.is-earliest:hover:not(:focus-visible) {
    transform: none !important;
    border-color: rgba(243, 238, 230, 0.14) !important;
    background:
      radial-gradient(circle at 94% 8%, rgba(216, 162, 123, 0.09), transparent 31%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 36%),
      linear-gradient(155deg, #1a2a2f 0%, #111d21 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18),
      0 17px 38px rgba(15, 25, 29, 0.16);
  }

  body.northline .northline-book-visit .booking-option.is-earliest:hover:not(:focus-visible) em,
  body.northline .northline-book-visit .booking-option.is-earliest:active em {
    border-color: rgba(255, 255, 255, 0.44) !important;
    background: #f3ede4 !important;
    transform: none;
  }

  body.northline .northline-book-visit .booking-option.is-earliest:hover:not(:focus-visible) em > span:last-child {
    transform: none !important;
  }

  body.northline .northline-book-visit .booking-option.is-earliest:active {
    transform: scale(0.992) !important;
    border-color: rgba(231, 183, 145, 0.38) !important;
    background:
      radial-gradient(circle at 94% 8%, rgba(216, 162, 123, 0.12), transparent 31%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent 36%),
      linear-gradient(155deg, #1b2b30 0%, #122025 100%) !important;
  }

  body.northline .northline-book-visit .booking-option.is-earliest:active em > span:last-child {
    transform: translateX(1px) !important;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .booking-option.is-earliest {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "opening-header opening-header"
      "primary primary"
      "meta action";
    grid-template-rows: auto minmax(0, 1fr) auto;
    column-gap: 14px;
    row-gap: 11px;
    min-height: 196px;
    padding: 19px 19px 18px;
    border-radius: 18px;
  }

  body.northline .northline-book-visit .northline-opening-header {
    padding-bottom: 11px;
  }

  body.northline .northline-book-visit .booking-option.is-earliest strong.northline-opening-time,
  body.northline .northline-book-visit .booking-option.is-earliest .northline-opening-time {
    font-size: clamp(2.55rem, 12.2vw, 3.08rem);
  }

  body.northline .northline-book-visit .northline-opening-barber {
    font-size: 0.8rem;
  }

  body.northline .northline-book-visit .booking-option.is-earliest .northline-book-service-meta {
    align-self: center;
    font-size: 0.69rem;
  }

  body.northline .northline-book-visit .booking-option.is-earliest em {
    align-self: end;
    width: auto;
    min-width: 101px;
    min-height: 42px;
    margin: 0;
    padding: 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.44);
    font-size: 0.64rem;
  }
}

@media (max-width: 369px) {
  body.northline .northline-book-visit .booking-option.is-earliest {
    column-gap: 10px;
    padding-inline: 17px;
  }

  body.northline .northline-book-visit .booking-option.is-earliest .northline-book-service-meta {
    font-size: 0.66rem;
  }

  body.northline .northline-book-visit .booking-option.is-earliest em {
    min-width: 94px;
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-book-visit .booking-option.is-earliest,
  body.northline .northline-book-visit .booking-option.is-earliest em,
  body.northline .northline-book-visit .booking-option.is-earliest em > span:last-child {
    transition: none;
  }
}
body.northline .northline-book-visit .northline-final-book-panel .booking-option.is-earliest {
  order: 0;
  grid-area: auto;
  justify-content: normal;
  min-height: 190px !important;
  padding: clamp(21px, 2.1vw, 27px) clamp(20px, 2.25vw, 28px) clamp(20px, 2vw, 25px) !important;
  border: 1px solid rgba(243, 238, 230, 0.14) !important;
  border-radius: 20px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 17px 38px rgba(15, 25, 29, 0.16) !important;
}

body.northline .northline-book-visit .northline-final-book-panel .booking-option.is-earliest strong.northline-opening-time {
  grid-area: auto !important;
  align-self: auto;
  font-size: clamp(2.65rem, 3.55vw, 3.65rem) !important;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .northline-book-visit .northline-final-book-panel .booking-option.is-earliest:hover:not(:focus-visible) {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.085),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18),
      0 21px 44px rgba(15, 25, 29, 0.21) !important;
  }
}

@media (hover: none), (pointer: coarse) {
  body.northline .northline-book-visit .northline-final-book-panel .booking-option.is-earliest:hover:not(:focus-visible) {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      inset 0 -1px 0 rgba(0, 0, 0, 0.18),
      0 17px 38px rgba(15, 25, 29, 0.16) !important;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-final-book-panel .booking-option.is-earliest {
    min-height: 196px !important;
    padding: 19px 19px 18px !important;
    border-radius: 18px !important;
  }

  body.northline .northline-book-visit .northline-final-book-panel .booking-option.is-earliest strong.northline-opening-time {
    font-size: clamp(2.55rem, 12.2vw, 3.08rem) !important;
  }
}

@media (max-width: 369px) {
  body.northline .northline-book-visit .northline-final-book-panel .booking-option.is-earliest {
    padding-inline: 17px !important;
  }
}

body.northline .northline-book-visit .booking-option.is-earliest .northline-book-service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.38em;
  row-gap: 1px;
}

body.northline .northline-book-visit .booking-option.is-earliest .northline-opening-detail {
  white-space: nowrap;
}

body.northline .northline-book-visit .booking-option.is-earliest .northline-opening-detail::before {
  content: "·";
  margin-right: 0.38em;
  color: rgba(221, 168, 121, 0.88);
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .booking-option.is-earliest .northline-opening-detail::before {
    display: none;
  }
}

body.northline .northline-book-visit .booking-option.is-earliest em {
  gap: 0;
  min-width: 104px;
}

body.northline .northline-book-visit .booking-option.is-earliest em > span:last-child {
  color: inherit;
  font-size: inherit;
  transition: none;
}

body.northline .northline-book-visit .northline-book-secondary-actions,
body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
}

body.northline .northline-book-visit .northline-book-secondary-action {
  position: relative;
  display: inline-flex;
  width: auto;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 22px;
  border: 1px solid rgba(33, 52, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #263b41;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 7px 18px rgba(23, 38, 44, 0.055);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.095em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.northline .northline-book-visit .northline-book-secondary-action::after {
  display: none;
  content: none;
}

body.northline .northline-book-visit .northline-book-secondary-action:focus-visible {
  outline: 2px solid #9b5d3a;
  outline-offset: 4px;
  border-color: rgba(155, 93, 58, 0.52);
  background: rgba(255, 255, 255, 0.82);
}

@media (hover: hover) and (pointer: fine) {
  body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible) {
    transform: translateY(-1px);
    border-color: rgba(155, 93, 58, 0.38);
    background: rgba(255, 255, 255, 0.82);
    color: #17292f;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 10px 22px rgba(23, 38, 44, 0.085);
  }
}

@media (hover: none), (pointer: coarse) {
  body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible) {
    transform: none;
    border-color: rgba(33, 52, 58, 0.18);
    background: rgba(255, 255, 255, 0.58);
    color: #263b41;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 7px 18px rgba(23, 38, 44, 0.055);
  }

  body.northline .northline-book-visit .northline-book-secondary-action:active {
    transform: scale(0.985);
    border-color: rgba(155, 93, 58, 0.42);
    background: rgba(255, 255, 255, 0.76);
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .booking-option.is-earliest em {
    min-width: 96px;
  }

  body.northline .northline-book-visit .northline-book-secondary-action {
    min-height: 45px;
    padding-inline: 20px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-book-visit .northline-book-secondary-action {
    transition: none;
  }
}

body.northline .northline-book-visit .northline-final-location-card {
  grid-template-rows: minmax(330px, 1fr) auto;
}

body.northline .northline-book-visit .northline-final-exterior-photo {
  isolation: isolate;
  border-bottom-color: rgba(85, 95, 103, 0.12);
}

body.northline .northline-book-visit .northline-final-exterior-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 16, 19, 0.01) 33%, rgba(8, 16, 19, 0.12) 58%, rgba(8, 16, 19, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 16, 19, 0.2), transparent 58%);
}

body.northline .northline-book-visit .northline-final-place-copy {
  position: absolute;
  z-index: 3;
  top: auto;
  right: clamp(24px, 5cqw, 38px);
  bottom: clamp(24px, 5cqw, 38px);
  left: clamp(24px, 5cqw, 38px);
  max-width: 30rem;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fffaf4;
  font-style: normal;
  text-shadow: 0 2px 20px rgba(6, 13, 16, 0.24);
}

body.northline .northline-book-visit .northline-final-place-copy .eyebrow {
  margin: 0 0 9px;
  color: #e0aa80;
  font-size: 0.67rem;
  letter-spacing: 0.155em;
}

body.northline .northline-book-visit .northline-final-place-copy h3 {
  max-width: none;
  margin: 0 0 7px;
  color: #fffaf4;
  font-size: clamp(1.9rem, 2.35vw, 2.55rem);
  letter-spacing: -0.058em;
  line-height: 0.98;
  text-wrap: balance;
}

body.northline .northline-book-visit .northline-final-place-copy > p:last-child {
  margin: 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

body.northline .northline-book-visit .northline-final-location-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-content: normal;
  gap: clamp(20px, 2.2vw, 28px);
  padding: clamp(25px, 2.65vw, 34px) clamp(28px, 3.2vw, 42px) clamp(27px, 2.75vw, 35px);
  text-align: left;
}

body.northline .northline-book-visit .northline-final-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.4vw, 32px);
  margin: 0;
  padding: 0;
}

body.northline .northline-book-visit .northline-final-actions .northline-directions-action {
  display: inline-flex;
  width: auto;
  min-width: 166px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(13, 28, 33, 0.92);
  border-radius: 12px;
  background: #17272c;
  color: #fffaf4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 24px rgba(15, 27, 31, 0.13);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.115em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

body.northline .northline-book-visit .northline-directions-action::after {
  display: none;
  content: none;
}

body.northline .northline-book-visit .northline-final-actions .northline-call-action {
  display: inline-flex;
  width: auto;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4e6065;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease;
}

body.northline .northline-book-visit .northline-visit-summary {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-top: clamp(17px, 1.8vw, 22px);
  border-top: 1px solid rgba(85, 95, 103, 0.13);
}

body.northline .northline-book-visit .northline-visit-summary p {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  margin: 0;
  color: #52646a;
  line-height: 1.5;
}

body.northline .northline-book-visit .northline-visit-summary span {
  color: #9b5d3a;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.125em;
  text-transform: uppercase;
}

body.northline .northline-book-visit .northline-visit-summary strong {
  color: #46595f;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.005em;
}

body.northline .northline-book-visit .northline-final-actions .northline-directions-action:focus-visible,
body.northline .northline-book-visit .northline-final-actions .northline-call-action:focus-visible {
  outline: 2px solid #9b5d3a;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .northline-book-visit .northline-final-actions .northline-directions-action:hover:not(:focus-visible) {
    transform: translateY(-1px);
    border-color: #20383f;
    background: #20343a;
    color: #fffaf4;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 13px 27px rgba(15, 27, 31, 0.17);
  }

  body.northline .northline-book-visit .northline-final-actions .northline-call-action:hover:not(:focus-visible) {
    color: #8d5435;
  }
}

@media (min-width: 921px) and (max-height: 780px) {
  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-rows: minmax(272px, 1fr) auto;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    gap: 17px;
    padding-block: 20px 22px;
  }

  body.northline .northline-book-visit .northline-visit-summary {
    gap: 6px;
    padding-top: 15px;
  }
}

@media (min-width: 921px) and (max-height: 680px) {
  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-rows: minmax(238px, 1fr) auto;
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    right: 25px;
    bottom: 24px;
    left: 25px;
  }

  body.northline .northline-book-visit .northline-final-place-copy h3 {
    font-size: clamp(1.62rem, 2.05vw, 2.04rem);
  }

  body.northline .northline-book-visit .northline-final-location-content {
    gap: 12px;
    padding: 15px 21px 17px;
  }

  body.northline .northline-book-visit .northline-final-actions .northline-directions-action {
    min-height: 44px;
  }

  body.northline .northline-book-visit .northline-visit-summary {
    gap: 4px;
    padding-top: 11px;
  }
}

@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-rows: minmax(292px, 1fr) auto;
  }

  body.northline .northline-book-visit .northline-final-location-content {
    gap: 20px;
    padding: 24px 25px 26px;
  }

  body.northline .northline-book-visit .northline-visit-summary p {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 11px;
  }
}

@media (max-width: 920px) {
  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-rows: clamp(315px, 49vw, 390px) auto;
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    right: clamp(27px, 5vw, 42px);
    bottom: clamp(27px, 5vw, 42px);
    left: clamp(27px, 5vw, 42px);
  }

  body.northline .northline-book-visit .northline-final-location-content {
    gap: 24px;
    padding: 29px clamp(30px, 6vw, 46px) 32px;
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-final-location-card {
    grid-template-rows: clamp(250px, 68vw, 292px) auto;
  }

  body.northline .northline-book-visit .northline-final-exterior-photo img {
    object-position: center 52%;
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    right: 22px;
    bottom: 23px;
    left: 22px;
    padding: 0;
  }

  body.northline .northline-book-visit .northline-final-place-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 0.64rem;
  }

  body.northline .northline-book-visit .northline-final-place-copy h3 {
    margin-bottom: 6px;
    font-size: clamp(1.72rem, 8vw, 2.08rem);
  }

  body.northline .northline-book-visit .northline-final-location-content {
    display: flex;
    gap: 24px;
    padding: 27px 22px 30px;
  }

  body.northline .northline-book-visit .northline-final-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0;
  }

  body.northline .northline-book-visit .northline-final-actions .northline-directions-action {
    width: 100%;
    min-height: 51px;
    padding-inline: 22px;
    border: 1px solid rgba(13, 28, 33, 0.92);
    border-radius: 12px;
    text-align: center;
  }

  body.northline .northline-book-visit .northline-final-actions .northline-call-action {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    padding: 0;
    border: 0;
    color: #596b70;
    font-size: 0.66rem;
    text-align: center;
  }

  body.northline .northline-book-visit .northline-visit-summary {
    gap: 12px;
    padding-top: 20px;
  }

  body.northline .northline-book-visit .northline-visit-summary p {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  body.northline .northline-book-visit .northline-visit-summary span {
    font-size: 0.62rem;
  }

  body.northline .northline-book-visit .northline-visit-summary strong {
    font-size: 0.75rem;
    line-height: 1.55;
  }
}

@media (max-width: 369px) {
  body.northline .northline-book-visit .northline-final-location-content {
    padding-inline: 20px;
  }

  body.northline .northline-book-visit .northline-final-place-copy {
    right: 20px;
    left: 20px;
  }

  body.northline .northline-book-visit .northline-final-place-copy h3 {
    font-size: clamp(1.58rem, 8.2vw, 1.82rem);
  }
}

@media (hover: none), (pointer: coarse) {
  body.northline .northline-book-visit .northline-final-actions .northline-directions-action:hover:not(:focus-visible) {
    transform: none;
    border-color: rgba(13, 28, 33, 0.92);
    background: #17272c;
    color: #fffaf4;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 10px 24px rgba(15, 27, 31, 0.13);
  }

  body.northline .northline-book-visit .northline-final-actions .northline-call-action:hover:not(:focus-visible) {
    color: #4e6065;
  }

  body.northline .northline-book-visit .northline-final-actions .northline-directions-action:active {
    transform: scale(0.985);
    background: #20343a;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .northline-book-visit .northline-final-actions .northline-directions-action,
  body.northline .northline-book-visit .northline-final-actions .northline-call-action {
    transition: none;
  }
}

body.northline .northline-book-visit .northline-visit-summary {
  text-align: center;
}

body.northline .northline-book-visit .northline-visit-summary p {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 5px;
  text-align: center;
}

body.northline .northline-book-visit .northline-visit-summary strong {
  max-width: 38rem;
  text-wrap: balance;
}

@media (min-width: 921px) and (max-height: 680px) {
  body.northline .northline-book-visit .northline-visit-summary p {
    gap: 3px;
  }
}

body.northline .northline-book-visit .northline-book-secondary-action {
  min-height: 38px;
  padding-inline: 16px;
  border-color: rgba(33, 52, 58, 0.14);
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 4px 12px rgba(23, 38, 44, 0.04);
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.085em;
}

body.northline .northline-book-visit .northline-book-secondary-action::before {
  content: "";
  position: absolute;
  inset: -3px -4px;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible) {
    border-color: rgba(155, 93, 58, 0.3);
    background: rgba(255, 255, 255, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 7px 16px rgba(23, 38, 44, 0.065);
  }
}

@media (hover: none), (pointer: coarse) {
  body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible) {
    border-color: rgba(33, 52, 58, 0.14);
    background: rgba(255, 255, 255, 0.42);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      0 4px 12px rgba(23, 38, 44, 0.04);
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-book-secondary-action {
    min-height: 38px;
    padding-inline: 15px;
    font-size: 0.6rem;
  }
}
body.northline .northline-book-visit .northline-book-secondary-action {
  border-color: #1a2a2f;
}

body.northline .northline-book-visit .northline-book-secondary-action:focus-visible {
  border-color: #1a2a2f;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible) {
    border-color: #1a2a2f;
  }
}

@media (hover: none), (pointer: coarse) {
  body.northline .northline-book-visit .northline-book-secondary-action:hover:not(:focus-visible),
  body.northline .northline-book-visit .northline-book-secondary-action:active {
    border-color: #1a2a2f;
  }
}
@media (min-width: 1101px) {
  body.northline .northline-book-visit .northline-final-book-panel {
    --northline-secondary-breathing-room: clamp(34px, 4vw, 54px);
    grid-template-rows: auto auto minmax(calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room)), 1fr);
    align-content: stretch;
    gap: 0;
    padding-bottom: 0;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy {
    margin-bottom: clamp(34px, 4vw, 54px);
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
    align-self: stretch;
    min-height: calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room));
  }
}
@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-final-book-panel {
    --northline-secondary-breathing-room: 24px;
    grid-template-rows: auto minmax(calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room)), 1fr);
    row-gap: 0;
    padding-bottom: 0;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
    align-self: stretch;
    min-height: calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room));
  }
}

@media (max-width: 920px) {
  body.northline .northline-book-visit .northline-final-book-panel {
    --northline-secondary-breathing-room: 32px;
    grid-template-rows: auto auto minmax(calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room)), 1fr);
    align-content: stretch;
    gap: 0;
    padding-bottom: 0;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy {
    margin-bottom: 32px;
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-secondary-actions {
    align-self: stretch;
    min-height: calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room));
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-final-book-panel {
    --northline-secondary-breathing-room: 30px;
    grid-template-rows: auto auto minmax(calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room)), 1fr);
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy {
    margin-bottom: 30px;
  }
}

body.northline .northline-book-visit .northline-book-copy--headline-only .eyebrow,
body.northline .northline-book-visit .northline-book-copy--headline-only > p:not(.eyebrow) {
  display: none;
}

body.northline .northline-book-visit .northline-book-copy--headline-only h3 {
  margin-bottom: 0;
}

@media (min-width: 1101px) {
  body.northline .northline-book-visit .northline-final-book-panel {
    grid-template-rows: auto auto minmax(calc(38px + var(--northline-secondary-breathing-room) + var(--northline-secondary-breathing-room)), 1fr);
  }

  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy--headline-only {
    margin-bottom: var(--northline-secondary-breathing-room);
  }
}

@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy--headline-only {
    margin-bottom: var(--northline-secondary-breathing-room);
  }
}

@media (max-width: 920px) {
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy--headline-only {
    margin-bottom: var(--northline-secondary-breathing-room);
  }
}

body.northline .northline-book-visit .northline-book-copy--headline-only {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

body.northline .northline-book-visit .northline-book-copy--headline-only h3 {
  max-width: 9ch;
  text-align: center;
}

@media (min-width: 1101px) {
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy--headline-only {
    margin-top: var(--northline-secondary-breathing-room);
    margin-bottom: var(--northline-secondary-breathing-room);
  }
}

@media (min-width: 921px) and (max-width: 1100px) {
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy--headline-only {
    margin-top: var(--northline-secondary-breathing-room);
    margin-bottom: var(--northline-secondary-breathing-room);
  }
}

@media (max-width: 920px) {
  body.northline .northline-book-visit .northline-final-book-panel > .northline-book-copy--headline-only {
    margin-top: var(--northline-secondary-breathing-room);
    margin-bottom: var(--northline-secondary-breathing-room);
  }
}

@media (max-width: 760px) {
  body.northline .northline-book-visit .northline-book-copy--headline-only h3 {
    max-width: 10ch;
  }
}

body.northline .northline-services-ledger-heading {
  --northline-services-heading-breathing-room: clamp(30px, 4vw, 46px);
  margin-top: var(--northline-services-heading-breathing-room);
  margin-bottom: var(--northline-services-heading-breathing-room);
}

@media (max-width: 760px) {
  body.northline .northline-services-ledger-heading {
    --northline-services-heading-breathing-room: clamp(24px, 7vw, 34px);
    margin-top: var(--northline-services-heading-breathing-room);
    margin-bottom: var(--northline-services-heading-breathing-room);
  }
}
@media (min-width: 761px) {
  body.northline .northline-services-ledger-section {
    --northline-services-layout-row-gap: clamp(24px, 3vw, 40px);
  }

  body.northline .northline-services-ledger-layout {
    row-gap: var(--northline-services-layout-row-gap);
  }

  body.northline .northline-services-ledger-heading {
    margin-top: var(--northline-services-heading-breathing-room);
    margin-bottom: calc(
      var(--northline-services-heading-breathing-room) -
      var(--northline-services-layout-row-gap)
    );
  }
}
@media (max-width: 760px) {
  body.northline .northline-services-ledger-layout > .northline-service-ledger {
    margin-top: 0;
  }
}
@media (max-width: 760px) {
  body.northline .northline-services-ledger-heading h2 {
    transform: translateY(-1px);
  }
}
body.northline .northline-footer-credit {
  display: none;
}

@media (max-width: 760px) {
  body.northline .northline-footer {
    padding: 37px 0 calc(31px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(197, 141, 101, 0.66);
  }

  body.northline .northline-footer-grid {
    display: block;
    width: min(calc(100% - 40px), 1220px);
    padding: 0;
  }

  body.northline .northline-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  body.northline .northline-footer-logo {
    min-height: 52px;
    margin: 0 auto;
    padding: 3px 5px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  body.northline .northline-footer-logo:active .northline-logo-mark-image {
    transform: none;
  }

  body.northline .northline-footer-description,
  body.northline .northline-footer-explore,
  body.northline .northline-footer-action,
  body.northline .northline-disclosure {
    display: none !important;
  }

  body.northline .northline-footer-credit {
    display: block;
    max-width: none;
    margin: 19px 0 0 !important;
    color: rgba(255, 250, 244, 0.55);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.018em;
    line-height: 1.45;
  }

  body.northline .northline-footer-credit a {
    position: relative;
    display: inline-block;
    margin-left: 0.16em;
    padding: 2px 0;
    color: rgba(255, 250, 244, 0.93);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: rgba(197, 141, 101, 0.72);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.18s ease, opacity 0.18s ease, text-decoration-color 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  body.northline .northline-footer-credit a:hover {
    color: #fffaf4;
    text-decoration-color: #d8a27b;
  }

  body.northline .northline-footer-credit a:active {
    opacity: 0.7;
  }

  body.northline .northline-footer-logo:focus-visible,
  body.northline .northline-footer-credit a:focus-visible {
    outline: 2px solid rgba(216, 162, 123, 0.88);
    outline-offset: 5px;
  }
}
@media (max-width: 760px) {
  body.northline .northline-footer {
    padding: 42px 0 calc(34px + env(safe-area-inset-bottom, 0px));
    border-top: 0;
  }

  body.northline .northline-footer-grid {
    display: block;
    width: min(calc(100% - 40px), 420px);
    padding: 0;
  }

  body.northline .northline-footer-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  body.northline .northline-footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  body.northline .northline-footer .northline-logo-mark-image {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
  }

  body.northline .northline-footer .northline-wordmark {
    justify-items: center;
    gap: 0;
    color: rgba(255, 250, 244, 0.96);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
  }

  body.northline .northline-footer .northline-wordmark small {
    margin-top: 8px;
    color: rgba(197, 141, 101, 0.92);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    line-height: 1;
  }

  body.northline .northline-footer-logo:active .northline-logo-mark-image {
    transform: none;
  }

  body.northline .northline-footer-description,
  body.northline .northline-footer-explore,
  body.northline .northline-footer-action,
  body.northline .northline-disclosure {
    display: none !important;
  }

  body.northline .northline-footer-credit {
    display: block;
    max-width: none;
    margin: 23px 0 0 !important;
    padding-top: 18px;
    color: rgba(255, 250, 244, 0.56);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.035em;
    line-height: 1.5;
  }

  body.northline .northline-footer-credit::before {
    content: "";
    display: block;
    width: 34px;
    height: 1px;
    margin: 0 auto 18px;
    background: rgba(197, 141, 101, 0.72);
  }

  body.northline .northline-footer-credit a {
    display: inline;
    margin-left: 0.12em;
    padding: 0;
    color: rgba(255, 250, 244, 0.92);
    font-weight: 650;
    text-decoration: none;
    transition: color 0.18s ease, opacity 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  body.northline .northline-footer-credit a:hover {
    color: #fffaf4;
  }

  body.northline .northline-footer-credit a:active {
    opacity: 0.72;
  }

  body.northline .northline-footer-logo:focus-visible,
  body.northline .northline-footer-credit a:focus-visible {
    outline: 2px solid rgba(216, 162, 123, 0.88);
    outline-offset: 5px;
  }
}
@media (max-width: 760px) {
  body.northline .northline-footer {
    padding: 28px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }

  body.northline .northline-footer-logo {
    gap: 9px;
  }

  body.northline .northline-footer .northline-logo-mark-image {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  body.northline .northline-footer .northline-wordmark {
    font-size: 0.86rem;
    letter-spacing: 0.13em;
  }

  body.northline .northline-footer .northline-wordmark small {
    margin-top: 6px;
    font-size: 0.56rem;
    letter-spacing: 0.24em;
  }

  body.northline .northline-footer-credit {
    margin-top: 16px !important;
    padding-top: 14px;
    font-size: 0.66rem;
  }

  body.northline .northline-footer-credit::before {
    width: 30px;
    margin-bottom: 12px;
  }
}

body.northline .demo-modal .northline-booking-progress[hidden] {
  display: none !important;
}

body.northline .demo-modal .northline-booking-modal-card {
  width: min(100%, 780px);
  border-color: rgba(50, 61, 64, 0.13);
  background:
    radial-gradient(circle at 92% 4%, rgba(155, 104, 72, 0.055), transparent 31%),
    linear-gradient(180deg, #faf8f2 0%, #f7f5ef 100%);
  box-shadow: 0 30px 90px rgba(18, 29, 34, 0.2);
}

body.northline .demo-modal .northline-booking-modal-topbar {
  border-bottom-color: rgba(38, 51, 55, 0.09);
}

body.northline .demo-modal .northline-booking-modal-heading {
  max-width: 620px;
}

body.northline .demo-modal .northline-booking-modal-heading .eyebrow {
  margin-bottom: 9px;
  color: #8e5d3e;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}

body.northline .demo-modal .northline-booking-modal-heading h2 {
  margin-bottom: 9px;
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  letter-spacing: -0.075em;
  line-height: 0.96;
}

body.northline .demo-modal .northline-booking-modal-heading > p:not(.eyebrow) {
  max-width: 540px;
  color: #687579;
  font-size: 0.77rem;
  line-height: 1.55;
}

body.northline .demo-modal .northline-booking-progress {
  display: block;
  margin: 22px 0 20px;
  padding: 0;
}

body.northline .demo-modal .northline-booking-progress li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label next"
    "rail rail";
  gap: 8px 16px;
  align-items: end;
  color: #26363a;
  text-align: left;
}

body.northline .demo-modal .northline-booking-progress li > span {
  grid-area: label;
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

body.northline .demo-modal .northline-booking-progress li > span strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: -0.02em;
}

body.northline .demo-modal .northline-booking-progress li > span em {
  display: inline;
  color: #8d9799;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-booking-progress li > small {
  grid-area: next;
  color: #8d9799;
  font-size: 0.57rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-booking-progress li > i {
  grid-area: rail;
  display: block;
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(42, 57, 61, 0.12);
}

body.northline .demo-modal .northline-booking-progress li > i > b {
  display: block;
  width: var(--northline-booking-progress);
  height: 100%;
  border-radius: inherit;
  background: #9b6848;
  transition: width 220ms ease;
}

body.northline .demo-modal .northline-booking-stage {
  min-height: 280px;
}

body.northline .demo-modal .northline-editorial-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(45, 58, 62, 0.13);
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-choice {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  min-height: 0;
  padding: 16px 42px 16px 2px;
  border: 0;
  border-bottom: 1px solid rgba(45, 58, 62, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-choice::before {
  content: "";
  position: absolute;
  inset: 0 -10px;
  z-index: -1;
  border-radius: 12px;
  background: rgba(155, 104, 72, 0);
  transition: background 160ms ease;
}

body.northline .demo-modal .northline-choice-topline,
body.northline .demo-modal .northline-choice-main {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.northline .demo-modal .northline-choice-topline em {
  color: #8e5d3e;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-choice-topline b {
  margin: 0;
  color: #25363a;
  font-size: 0.72rem;
  font-weight: 800;
}

body.northline .demo-modal .northline-choice-main strong {
  font-size: 1.06rem;
  letter-spacing: -0.04em;
}

body.northline .demo-modal .northline-choice-main i {
  display: grid;
  position: absolute;
  top: 50%;
  right: 2px;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(43, 57, 61, 0.15);
  border-radius: 50%;
  color: transparent;
  font-size: 0.66rem;
  font-style: normal;
  transform: translateY(-50%);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

body.northline .demo-modal .northline-editorial-choice > small {
  max-width: 620px;
  color: #6d797c;
  font-size: 0.69rem;
  line-height: 1.48;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-choice.is-selected {
  border-color: rgba(45, 58, 62, 0.13);
  background: transparent;
  box-shadow: none;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-choice.is-selected::before {
  background: rgba(155, 104, 72, 0.07);
}

body.northline .demo-modal .northline-editorial-choice.is-selected .northline-choice-main i {
  border-color: #9b6848;
  background: #9b6848;
  color: #fff;
}

body.northline .demo-modal .northline-modal-menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 10px;
  color: #7f5238;
  font-size: 0.58rem;
  letter-spacing: 0.11em;
}

body.northline .demo-modal .northline-barber-choice-grid {
  gap: 0;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-barber {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 14px 2px;
  border: 0;
  border-bottom: 1px solid rgba(45, 58, 62, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-barber::before {
  content: "";
  position: absolute;
  inset: 4px -10px;
  z-index: -1;
  border-radius: 14px;
  background: rgba(155, 104, 72, 0);
  transition: background 160ms ease;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-barber.is-selected {
  border-color: rgba(45, 58, 62, 0.13);
  background: transparent;
  box-shadow: none;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-barber.is-selected::before {
  background: rgba(155, 104, 72, 0.07);
}

body.northline .demo-modal .northline-barber-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(43, 57, 61, 0.12);
  border-radius: 50%;
  background: #e6e4de;
}

body.northline .demo-modal .northline-barber-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.northline .demo-modal .northline-barber-avatar--first {
  background: #203239;
  color: #f8f5ed;
}

body.northline .demo-modal .northline-barber-avatar--first b {
  margin: 0;
  color: inherit;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.15rem;
}

body.northline .demo-modal .northline-barber-choice-copy {
  display: grid;
  gap: 3px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}

body.northline .demo-modal .northline-barber-choice-copy em {
  color: #8e5d3e;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-barber-choice-copy strong {
  color: #25363a;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

body.northline .demo-modal .northline-barber-choice-copy small {
  color: #6d797c;
  font-size: 0.68rem;
  line-height: 1.42;
}

body.northline .demo-modal .northline-barber-choice-copy b {
  margin: 2px 0 0;
  color: #4f6064;
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-choice-check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(43, 57, 61, 0.15);
  border-radius: 50%;
  color: transparent;
  font-size: 0.66rem;
  font-style: normal;
}

body.northline .demo-modal .northline-editorial-barber.is-selected .northline-choice-check {
  border-color: #9b6848;
  background: #9b6848;
  color: #fff;
}

body.northline .demo-modal .northline-date-picker {
  display: grid;
  gap: 14px;
}

body.northline .demo-modal .northline-date-intro {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(45, 58, 62, 0.11);
}

body.northline .demo-modal .northline-date-intro > span,
body.northline .demo-modal .northline-time-intro > span {
  color: #8e5d3e;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-date-intro strong {
  color: #56666a;
  font-size: 0.7rem;
  font-weight: 700;
}

body.northline .demo-modal .northline-date-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(64px, 1fr));
  gap: 7px;
  overflow-x: auto;
  padding: 2px 1px 7px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 93, 62, 0.35) transparent;
}

body.northline .demo-modal .northline-quick-date {
  display: grid;
  gap: 2px;
  place-items: center;
  min-height: 82px;
  padding: 9px 6px;
  border: 1px solid rgba(43, 57, 61, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: #26373b;
  cursor: pointer;
  scroll-snap-align: start;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

body.northline .demo-modal .northline-quick-date small,
body.northline .demo-modal .northline-quick-date span {
  color: #7b8789;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-quick-date strong {
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

body.northline .demo-modal .northline-quick-date.is-selected {
  border-color: #25383e;
  background: #25383e;
  color: #fff;
}

body.northline .demo-modal .northline-quick-date.is-selected small,
body.northline .demo-modal .northline-quick-date.is-selected span {
  color: rgba(255, 255, 255, 0.72);
}

body.northline .demo-modal .northline-calendar-toggle {
  justify-self: start;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7f5238;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-calendar {
  margin-top: 2px;
  padding: 15px;
  border-color: rgba(43, 57, 61, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

body.northline .demo-modal .northline-calendar-toolbar button {
  border-color: rgba(43, 57, 61, 0.11);
  background: transparent;
}

body.northline .demo-modal .northline-calendar-day {
  background: rgba(41, 55, 59, 0.04);
}

body.northline .demo-modal .northline-calendar-day:disabled {
  background: transparent;
}

body.northline .demo-modal .northline-calendar-day.is-selected {
  border-color: #9b6848;
  background: #9b6848;
}

body.northline .demo-modal .northline-time-intro {
  gap: 4px;
  margin-bottom: 14px;
}

body.northline .demo-modal .northline-time-intro > strong {
  font-size: 1.08rem;
}

body.northline .demo-modal .northline-time-intro > small {
  color: #6d797c;
  font-size: 0.66rem;
}

body.northline .demo-modal .northline-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.northline .demo-modal .northline-time-button {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 84px;
  padding: 13px 14px;
  border-color: rgba(43, 57, 61, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  transform: none;
}

body.northline .demo-modal .northline-time-button > span {
  color: inherit;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

body.northline .demo-modal .northline-time-button > small {
  color: #7b8789;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-time-button > em {
  overflow: hidden;
  color: #667579;
  font-size: 0.58rem;
  font-style: normal;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.northline .demo-modal .northline-time-button.is-selected {
  border-color: #25383e;
  background: #25383e;
  color: #fff;
}

body.northline .demo-modal .northline-time-button.is-selected > small,
body.northline .demo-modal .northline-time-button.is-selected > em {
  color: rgba(255, 255, 255, 0.7);
}

body.northline .demo-modal .northline-review-receipt {
  overflow: hidden;
  border: 1px solid rgba(43, 57, 61, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

body.northline .demo-modal .northline-receipt-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(43, 57, 61, 0.11);
}

body.northline .demo-modal .northline-receipt-heading span {
  color: #8e5d3e;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-receipt-heading strong {
  color: #536368;
  font-size: 0.68rem;
}

body.northline .demo-modal .northline-review-receipt dl {
  margin: 0;
  padding: 0 18px;
}

body.northline .demo-modal .northline-review-receipt dl > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(43, 57, 61, 0.1);
}

body.northline .demo-modal .northline-review-receipt dt {
  padding-top: 2px;
  color: #8e5d3e;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-review-receipt dd {
  display: grid;
  gap: 3px;
  margin: 0;
}

body.northline .demo-modal .northline-review-receipt dd strong {
  color: #26373b;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.035em;
}

body.northline .demo-modal .northline-review-receipt dd small {
  color: #707d80;
  font-size: 0.65rem;
  line-height: 1.42;
}

body.northline .demo-modal .northline-review-receipt > p {
  margin: 0;
  padding: 13px 18px 15px;
  color: #707d80;
  font-size: 0.62rem;
  line-height: 1.45;
}

body.northline .demo-modal .northline-confirmation-card {
  justify-items: center;
  gap: 8px;
  padding: 26px 22px;
  border-color: rgba(155, 104, 72, 0.17);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.74);
  text-align: center;
}

body.northline .demo-modal .northline-confirmation-kicker {
  margin-top: 4px;
  color: #8e5d3e !important;
  font-size: 0.56rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-confirmation-card h3 {
  margin: 0;
  font-size: 1.52rem;
}

body.northline .demo-modal .northline-confirmation-card > p:not(.northline-confirmation-kicker) {
  max-width: 470px;
}

body.northline .demo-modal .northline-confirmation-ticket {
  justify-items: center;
  width: min(100%, 430px);
  margin-top: 8px !important;
  padding-top: 13px !important;
}

body.northline .demo-modal .northline-booking-preview-note {
  display: flex;
  gap: 5px;
  align-items: baseline;
  margin-top: 13px;
  padding-top: 10px;
  color: #818c8e;
  font-size: 0.58rem;
}

body.northline .demo-modal .northline-booking-preview-note span {
  color: #6f7c7f;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-booking-actions {
  align-items: center;
}

body.northline .demo-modal .northline-booking-back-action {
  min-height: 44px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #5f6d70;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-booking-actions .demo-button.primary {
  min-height: 48px;
  padding-inline: 22px;
  background: #22353b;
}

body.northline .demo-modal .northline-booking-actions .northline-booking-finish {
  width: 100%;
  justify-content: center;
}

body.northline .demo-modal .northline-booking-choice,
body.northline .demo-modal .northline-quick-date,
body.northline .demo-modal .northline-time-button,
body.northline .demo-modal .northline-calendar-toggle,
body.northline .demo-modal .northline-booking-back-action {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
body.northline .demo-modal .northline-booking-choice:hover,
body.northline .demo-modal .northline-time-button:hover,
body.northline .demo-modal .northline-calendar-day:hover:not(:disabled),
body.northline .demo-modal .northline-quick-date:hover {
  transform: none;
  box-shadow: none;
}

body.northline .demo-modal .northline-booking-choice:focus-visible,
body.northline .demo-modal .northline-time-button:focus-visible,
body.northline .demo-modal .northline-quick-date:focus-visible,
body.northline .demo-modal .northline-calendar-toggle:focus-visible,
body.northline .demo-modal .northline-booking-back-action:focus-visible {
  outline: 2px solid rgba(155, 104, 72, 0.72);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .demo-modal .northline-booking-choice.northline-editorial-choice:hover:not(:focus-visible)::before,
  body.northline .demo-modal .northline-booking-choice.northline-editorial-barber:hover:not(:focus-visible)::before {
    background: rgba(155, 104, 72, 0.055);
  }

  body.northline .demo-modal .northline-quick-date:hover:not(:focus-visible):not(.is-selected),
  body.northline .demo-modal .northline-time-button:hover:not(:focus-visible):not(.is-selected) {
    border-color: rgba(155, 104, 72, 0.4);
    background: rgba(255, 250, 244, 0.9);
  }

  body.northline .demo-modal .northline-calendar-toggle:hover:not(:focus-visible),
  body.northline .demo-modal .northline-booking-back-action:hover:not(:focus-visible) {
    color: #9b6848;
  }
}

@media (hover: none) and (pointer: coarse) {
  body.northline .demo-modal .northline-booking-choice:active::before,
  body.northline .demo-modal .northline-quick-date:active,
  body.northline .demo-modal .northline-time-button:active {
    background: rgba(155, 104, 72, 0.08);
  }

  body.northline .demo-modal .northline-booking-choice.is-selected:active::before {
    background: rgba(155, 104, 72, 0.09);
  }
}

@media (max-width: 680px) {
  body.northline .demo-modal {
    padding: 7px;
  }

  body.northline .demo-modal .northline-booking-modal-card {
    height: calc(100svh - 14px);
    border-radius: 18px;
  }

  body.northline .demo-modal .northline-booking-modal-topbar {
    min-height: 130px;
    padding: 19px 54px 13px 18px;
    background: rgba(250, 248, 242, 0.96);
  }

  body.northline .demo-modal .demo-modal-close {
    top: 13px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  body.northline .demo-modal .northline-booking-modal-heading .eyebrow {
    margin-bottom: 7px;
    font-size: 0.51rem;
  }

  body.northline .demo-modal .northline-booking-modal-heading h2 {
    margin-bottom: 7px;
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    letter-spacing: -0.07em;
    line-height: 0.98;
  }

  body.northline .demo-modal .northline-booking-modal-heading > p:not(.eyebrow) {
    max-width: 290px;
    font-size: 0.66rem;
    line-height: 1.42;
  }

  body.northline .demo-modal .northline-booking-progress {
    min-height: 54px;
    margin: 0;
    padding: 10px 18px 9px;
    background: rgba(250, 248, 242, 0.96);
  }

  body.northline .demo-modal .northline-booking-progress li {
    gap: 7px 12px;
  }

  body.northline .demo-modal .northline-booking-progress li > span strong {
    font-size: 0.69rem;
  }

  body.northline .demo-modal .northline-booking-progress li > span em,
  body.northline .demo-modal .northline-booking-progress li > small {
    font-size: 0.49rem;
  }

  body.northline .demo-modal .northline-booking-stage {
    padding: 12px 18px 22px;
  }

  body.northline .demo-modal .northline-booking-choice.northline-editorial-choice {
    min-height: 88px;
    padding: 14px 38px 14px 1px;
  }

  body.northline .demo-modal .northline-choice-main strong {
    font-size: 1rem;
  }

  body.northline .demo-modal .northline-editorial-choice > small {
    font-size: 0.65rem;
  }

  body.northline .demo-modal .northline-booking-choice.northline-editorial-barber {
    grid-template-columns: 52px minmax(0, 1fr) 23px;
    gap: 12px;
    min-height: 84px;
    padding-block: 12px;
  }

  body.northline .demo-modal .northline-barber-avatar {
    width: 52px;
    height: 52px;
  }

  body.northline .demo-modal .northline-barber-choice-copy strong {
    font-size: 0.96rem;
  }

  body.northline .demo-modal .northline-barber-choice-copy small {
    font-size: 0.63rem;
  }

  body.northline .demo-modal .northline-date-rail {
    grid-template-columns: repeat(7, 68px);
    margin-right: -18px;
    padding-right: 18px;
  }

  body.northline .demo-modal .northline-quick-date {
    min-height: 78px;
  }

  body.northline .demo-modal .northline-calendar {
    padding: 11px;
  }

  body.northline .demo-modal .northline-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  body.northline .demo-modal .northline-time-button {
    min-height: 82px;
    padding: 12px;
  }

  body.northline .demo-modal .northline-review-receipt dl > div {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 13px;
    padding: 13px 0;
  }

  body.northline .demo-modal .northline-receipt-heading,
  body.northline .demo-modal .northline-review-receipt dl,
  body.northline .demo-modal .northline-review-receipt > p {
    padding-inline: 15px;
  }

  body.northline .demo-modal .northline-booking-preview-note {
    min-height: 24px;
    margin: 0;
    padding: 6px 18px 4px;
    border-top: 1px solid rgba(38, 51, 55, 0.08);
    background: rgba(250, 248, 242, 0.96);
    font-size: 0.5rem;
    line-height: 1.2;
  }

  body.northline .demo-modal .northline-booking-actions {
    min-height: 58px;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: auto;
    padding: 6px 18px max(6px, env(safe-area-inset-bottom));
    background: rgba(250, 248, 242, 0.985);
    box-shadow: 0 -10px 22px rgba(23, 36, 42, 0.06);
  }

  body.northline .demo-modal .northline-booking-actions .demo-button {
    flex: 1 1 auto;
    min-height: 48px;
    font-size: 0.66rem;
  }

  body.northline .demo-modal .northline-booking-actions .northline-booking-back-action {
    flex: 0 0 auto;
    min-width: 43px;
  }
}

@media (max-width: 390px) {
  body.northline .demo-modal .northline-booking-modal-topbar {
    min-height: 126px;
    padding-left: 15px;
  }

  body.northline .demo-modal .northline-booking-progress,
  body.northline .demo-modal .northline-booking-actions,
  body.northline .demo-modal .northline-booking-preview-note,
  body.northline .demo-modal .northline-booking-stage {
    padding-inline: 15px;
  }

  body.northline .demo-modal .northline-date-rail {
    margin-right: -15px;
    padding-right: 15px;
  }

  body.northline .demo-modal .northline-booking-actions {
    gap: 10px;
    padding-bottom: max(5px, env(safe-area-inset-bottom));
  }

  body.northline .demo-modal .northline-booking-actions .demo-button {
    padding-inline: 14px;
    font-size: 0.62rem;
  }
}

@media (max-width: 360px) {
  body.northline .demo-modal .northline-booking-modal-heading h2 {
    font-size: 1.85rem;
  }

  body.northline .demo-modal .northline-booking-progress li > small {
    display: none;
  }

  body.northline .demo-modal .northline-booking-progress li {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "rail";
  }

  body.northline .demo-modal .northline-time-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.northline .demo-modal .northline-time-button {
    padding-inline: 10px;
  }

  body.northline .demo-modal .northline-review-receipt dl > div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }
}
body.northline .demo-modal .northline-booking-choice.is-selected::after,
body.northline .demo-modal .northline-time-button.is-selected::after {
  display: none !important;
  content: none !important;
}

body.northline .demo-modal .northline-booking-choice.northline-editorial-choice:hover:not(:focus-visible),
body.northline .demo-modal .northline-booking-choice.northline-editorial-barber:hover:not(:focus-visible) {
  transform: none !important;
  border-color: rgba(45, 58, 62, 0.13) !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (hover: none) and (pointer: coarse) {
  body.northline .demo-modal .northline-booking-choice:active,
  body.northline .demo-modal .northline-time-button:active,
  body.northline .demo-modal .northline-calendar-day:not([disabled]):active {
    transform: none;
  }
}
@media (min-width: 681px) and (max-width: 820px) {
  body.northline .demo-modal {
    padding: 10px;
  }

  body.northline .demo-modal .northline-booking-modal-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100svh - 20px);
    max-height: none;
    overflow: hidden;
    padding: 0;
    border-radius: 22px;
  }

  body.northline .demo-modal .northline-booking-modal-topbar {
    position: relative;
    flex: 0 0 auto;
    min-height: 138px;
    margin: 0;
    padding: 22px 66px 15px 24px;
    border-bottom: 1px solid rgba(38, 51, 55, 0.08);
    background: rgba(250, 248, 242, 0.96);
  }

  body.northline .demo-modal .demo-modal-close {
    top: 17px;
    right: 17px;
  }

  body.northline .demo-modal .northline-booking-modal-heading h2 {
    font-size: 2.5rem;
  }

  body.northline .demo-modal .northline-booking-progress {
    z-index: 3;
    flex: 0 0 auto;
    min-height: 58px;
    margin: 0;
    padding: 11px 24px 10px;
    border-bottom: 1px solid rgba(38, 51, 55, 0.08);
    background: rgba(250, 248, 242, 0.96);
  }

  body.northline .demo-modal .northline-booking-stage {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 17px 24px 28px;
  }

  body.northline .demo-modal .northline-booking-preview-note {
    flex: 0 0 auto;
    min-height: 29px;
    margin: 0;
    padding: 8px 24px 7px;
    border-top: 1px solid rgba(38, 51, 55, 0.08);
    background: rgba(250, 248, 242, 0.96);
  }

  body.northline .demo-modal .northline-booking-actions {
    z-index: 4;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    gap: 16px;
    min-height: 70px;
    margin: 0;
    padding: 9px 24px 12px;
    background: rgba(250, 248, 242, 0.98);
    box-shadow: 0 -12px 26px rgba(23, 36, 42, 0.065);
  }

  body.northline .demo-modal .northline-booking-actions .demo-button {
    flex: 1 1 auto;
    justify-content: center;
  }

  body.northline .demo-modal .northline-booking-actions .northline-booking-back-action {
    flex: 0 0 auto;
  }
}
body.northline .demo-modal .northline-booking-modal-heading [hidden] {
  display: none !important;
}

body.northline .demo-modal .demo-modal-close {
  width: 34px;
  height: 34px;
  font-size: 1.08rem;
  line-height: 1;
}

body.northline .demo-modal .northline-booking-progress li,
body.northline .demo-modal .northline-booking-progress li > span {
  text-align: left;
}

body.northline .demo-modal .northline-booking-progress li > span {
  justify-self: start;
}

body.northline .demo-modal .northline-choice-topline {
  justify-content: flex-start;
}

body.northline .demo-modal .northline-choice-main {
  align-items: baseline;
}

body.northline .demo-modal .northline-choice-main .northline-service-price {
  flex: 0 0 auto;
  margin: 0 0 0 auto;
  color: #25363a;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 680px) {
  body.northline .demo-modal .demo-modal-close {
    top: 11px;
    right: 11px;
  }

  body.northline .demo-modal .northline-booking-modal-card[data-booking-step="service"] .northline-booking-modal-topbar {
    display: grid;
    place-items: center;
    min-height: 82px;
    padding: 17px 50px 14px;
  }

  body.northline .demo-modal .northline-booking-modal-card[data-booking-step="service"] .northline-booking-modal-heading {
    width: 100%;
    max-width: none;
    padding-right: 0;
    text-align: center;
  }

  body.northline .demo-modal .northline-booking-modal-card[data-booking-step="service"] .northline-booking-modal-heading h2 {
    margin: 0;
    font-size: clamp(1.9rem, 8.6vw, 2.25rem);
    line-height: 1;
  }

  body.northline .demo-modal .northline-booking-progress li {
    justify-items: stretch;
  }

  body.northline .demo-modal .northline-booking-actions {
    min-height: 57px;
    padding-top: 5px;
    padding-bottom: calc(5px + env(safe-area-inset-bottom));
  }

  body.northline .demo-modal .northline-booking-actions .demo-button,
  body.northline .demo-modal .northline-booking-actions .northline-booking-back-action {
    min-height: 44px;
  }

  body.northline .demo-modal .northline-choice-main .northline-service-price {
    font-size: 0.86rem;
  }
}

@media (min-width: 681px) and (max-width: 820px) {
  body.northline .demo-modal .northline-booking-actions {
    min-height: 61px;
    padding-top: 6px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
  }
}
body.northline .demo-modal .demo-modal-close {
  display: grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent !important;
  color: #627074;
  font-size: 0;
  line-height: 1;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.northline .demo-modal .demo-modal-close::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(27, 50, 57, 0.065);
  transition: background 150ms ease, transform 150ms ease;
}

body.northline .demo-modal .demo-modal-close span {
  display: block;
  margin-top: -1px;
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .demo-modal .demo-modal-close:hover::before {
    background: rgba(27, 50, 57, 0.115);
  }
}

body.northline .demo-modal .demo-modal-close:focus-visible {
  outline: 2px solid rgba(155, 104, 72, 0.76);
  outline-offset: 1px;
}
@media (max-width: 820px) {
  body.northline .demo-modal .northline-booking-modal-topbar,
  body.northline .demo-modal .northline-booking-modal-card[data-booking-step] .northline-booking-modal-topbar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    min-height: 82px;
    margin: 0;
    padding: 17px 54px 14px;
    border-bottom: 1px solid rgba(38, 51, 55, 0.08);
    background: rgba(250, 248, 242, 0.96);
  }

  body.northline .demo-modal .northline-booking-modal-heading,
  body.northline .demo-modal .northline-booking-modal-card[data-booking-step] .northline-booking-modal-heading {
    width: 100%;
    max-width: none;
    padding-right: 0;
    text-align: center;
  }

  body.northline .demo-modal .northline-booking-modal-heading h2,
  body.northline .demo-modal .northline-booking-modal-card[data-booking-step] .northline-booking-modal-heading h2 {
    margin: 0;
    font-size: clamp(1.9rem, 8.6vw, 2.25rem);
    letter-spacing: -0.072em;
    line-height: 1;
  }

  body.northline .demo-modal .demo-modal-close {
    top: 9px;
    right: 9px;
  }
  body.northline .demo-modal .northline-booking-progress {
    flex: 0 0 auto;
    min-height: 54px;
    margin: 0;
    padding-block: 10px 9px;
    border-bottom: 1px solid rgba(38, 51, 55, 0.08);
    background: rgba(250, 248, 242, 0.96);
  }

  body.northline .demo-modal .northline-booking-actions {
    flex: 0 0 auto;
    min-height: 57px;
    margin: 0;
    padding-top: 5px;
    padding-bottom: calc(5px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(38, 51, 55, 0.075);
    background: rgba(250, 248, 242, 0.985);
    box-shadow: 0 -10px 24px rgba(23, 36, 42, 0.055);
  }

  body.northline .demo-modal .northline-booking-actions .demo-button,
  body.northline .demo-modal .northline-booking-actions .northline-booking-back-action {
    min-height: 44px;
  }
}

@media (max-width: 390px) {
  body.northline .demo-modal .northline-booking-modal-topbar,
  body.northline .demo-modal .northline-booking-modal-card[data-booking-step] .northline-booking-modal-topbar {
    min-height: 82px;
    padding-inline: 50px;
  }
}
body.northline .demo-modal .demo-modal-close,
body.northline .demo-modal .northline-booking-actions button,
body.northline .demo-modal .northline-booking-stage button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (hover: none) and (pointer: coarse) {
  body.northline .demo-modal .demo-modal-close:hover,
  body.northline .demo-modal .northline-booking-actions .demo-button:hover,
  body.northline .demo-modal .northline-booking-back-action:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  body.northline .demo-modal .demo-modal-close:active::before {
    background: rgba(155, 104, 72, 0.10);
    transform: scale(0.96);
  }

  body.northline .demo-modal .northline-booking-actions .demo-button:active:not([disabled]) {
    transform: scale(0.99) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.northline .demo-modal .northline-booking-progress li > i > b,
  body.northline .demo-modal .demo-modal-close::before {
    transition: none;
  }
}

@media (max-width: 820px) {
  body.northline .demo-modal .northline-booking-modal-card[data-booking-step="confirmation"] .northline-booking-modal-heading h2 {
    font-size: clamp(1.62rem, 7.2vw, 2rem);
    white-space: nowrap;
  }
}
body.northline .demo-modal .northline-booking-choice.northline-editorial-barber {
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 13px;
  min-height: 82px;
  padding: 13px 2px;
}

body.northline .demo-modal .northline-barber-avatar {
  width: 48px;
  height: 48px;
  border-color: rgba(43, 57, 61, 0.11);
  box-shadow: none;
}

body.northline .demo-modal .northline-barber-avatar--first b {
  font-size: 0.98rem;
  letter-spacing: -0.045em;
}

body.northline .demo-modal .northline-barber-choice-copy {
  gap: 4px;
  align-content: center;
}

body.northline .demo-modal .northline-barber-choice-copy em {
  font-size: 0.53rem;
  letter-spacing: 0.125em;
}

body.northline .demo-modal .northline-barber-choice-copy strong {
  font-size: 1rem;
  line-height: 1.05;
}

body.northline .demo-modal .northline-barber-choice-copy small {
  max-width: 32rem;
  font-size: 0.66rem;
  line-height: 1.42;
}
body.northline .demo-modal .northline-date-picker {
  gap: 0;
}

body.northline .demo-modal .northline-date-intro {
  gap: 5px;
  padding: 2px 2px 14px;
  border-bottom: 1px solid rgba(45, 58, 62, 0.13);
  text-align: left;
}

body.northline .demo-modal .northline-date-intro > span {
  font-size: 0.54rem;
  letter-spacing: 0.13em;
}

body.northline .demo-modal .northline-date-intro strong {
  color: #657276;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
}

body.northline .demo-modal .northline-date-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(64px, 1fr);
  grid-template-columns: none;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(45, 58, 62, 0.13);
  scroll-padding-inline: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 93, 62, 0.3) transparent;
}

body.northline .demo-modal .northline-quick-date {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 18px;
  gap: 2px;
  place-items: center;
  min-height: 94px;
  padding: 11px 8px 8px;
  border: 0;
  border-right: 1px solid rgba(45, 58, 62, 0.1);
  border-radius: 0;
  background: transparent;
  color: #26373b;
  box-shadow: none;
  transform: none;
  scroll-snap-align: start;
}

body.northline .demo-modal .northline-quick-date:last-child {
  border-right: 0;
}

body.northline .demo-modal .northline-quick-date::before {
  content: "";
  position: absolute;
  inset: 5px 4px;
  z-index: -1;
  border-radius: 10px;
  background: rgba(155, 104, 72, 0);
  transition: background 160ms ease;
}

body.northline .demo-modal .northline-quick-date small,
body.northline .demo-modal .northline-quick-date span {
  color: #7c8789;
  font-size: 0.49rem;
  letter-spacing: 0.115em;
}

body.northline .demo-modal .northline-quick-date strong {
  color: #25363a;
  font-size: 1.28rem;
  font-weight: 760;
  letter-spacing: -0.055em;
}

body.northline .demo-modal .northline-quick-date i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(43, 57, 61, 0.14);
  border-radius: 50%;
  color: transparent;
  font-size: 0.49rem;
  font-style: normal;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

body.northline .demo-modal .northline-quick-date.is-selected {
  border-color: rgba(45, 58, 62, 0.1);
  background: transparent;
  color: #26373b;
}

body.northline .demo-modal .northline-quick-date.is-selected::before {
  background: rgba(155, 104, 72, 0.07);
}

body.northline .demo-modal .northline-quick-date.is-selected small,
body.northline .demo-modal .northline-quick-date.is-selected span {
  color: #8e5d3e;
}

body.northline .demo-modal .northline-quick-date.is-selected i {
  border-color: #9b6848;
  background: #9b6848;
  color: #fff;
}

body.northline .demo-modal .northline-calendar-toggle {
  justify-self: start;
  min-height: 42px;
  margin-top: 6px;
  color: #7f5238;
  font-size: 0.56rem;
  letter-spacing: 0.115em;
}

body.northline .demo-modal .northline-calendar {
  margin-top: 2px;
  padding: 15px 0 2px;
  border: 0;
  border-top: 1px solid rgba(45, 58, 62, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.northline .demo-modal .northline-calendar-toolbar {
  padding-inline: 2px;
}

body.northline .demo-modal .northline-calendar-toolbar button {
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  border: 1px solid rgba(43, 57, 61, 0.11);
  border-radius: 50%;
  background: transparent;
}

body.northline .demo-modal .northline-calendar-day {
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

body.northline .demo-modal .northline-calendar-day:disabled {
  background: transparent;
  opacity: 0.27;
}

body.northline .demo-modal .northline-calendar-day.is-selected {
  border-color: #9b6848;
  background: #9b6848;
  color: #fff;
}

body.northline .demo-modal .northline-calendar > p {
  padding-inline: 2px;
  text-align: left;
}
body.northline .demo-modal .northline-time-intro {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 2px 2px 14px;
  text-align: left;
}

body.northline .demo-modal .northline-time-intro > span {
  font-size: 0.54rem;
  letter-spacing: 0.13em;
}

body.northline .demo-modal .northline-time-intro > strong {
  color: #25363a;
  font-size: 1rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

body.northline .demo-modal .northline-time-intro > small {
  color: #6d797c;
  font-size: 0.65rem;
  line-height: 1.4;
}

body.northline .demo-modal .northline-time-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(45, 58, 62, 0.13);
}

body.northline .demo-modal .northline-time-button.northline-editorial-time {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  align-content: center;
  min-height: 88px;
  padding: 14px 42px 14px 2px;
  border: 0;
  border-bottom: 1px solid rgba(45, 58, 62, 0.13);
  border-radius: 0;
  background: transparent;
  color: #25363a;
  box-shadow: none;
  text-align: left;
  transform: none;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time::before {
  content: "";
  position: absolute;
  inset: 0 -10px;
  z-index: -1;
  border-radius: 12px;
  background: rgba(155, 104, 72, 0);
  transition: background 160ms ease;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-time-availability {
  color: #8e5d3e;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.125em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-time-value {
  color: #25363a;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-time-detail {
  overflow: visible;
  color: #6d797c;
  font-size: 0.66rem;
  font-style: normal;
  line-height: 1.4;
  text-overflow: clip;
  white-space: normal;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-choice-check {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}

body.northline .demo-modal .northline-time-button.northline-editorial-time.is-selected {
  border-color: rgba(45, 58, 62, 0.13);
  background: transparent;
  color: #25363a;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time.is-selected::before {
  background: rgba(155, 104, 72, 0.07);
}

body.northline .demo-modal .northline-time-button.northline-editorial-time.is-selected .northline-time-availability,
body.northline .demo-modal .northline-time-button.northline-editorial-time.is-selected .northline-time-detail {
  color: inherit;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time.is-selected .northline-time-availability {
  color: #8e5d3e;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time.is-selected .northline-choice-check {
  border-color: #9b6848;
  background: #9b6848;
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  body.northline .demo-modal .northline-quick-date:hover:not(.is-selected)::before,
  body.northline .demo-modal .northline-time-button.northline-editorial-time:hover:not(.is-selected)::before,
  body.northline .demo-modal .northline-booking-choice.northline-editorial-barber:hover:not(.is-selected)::before {
    background: rgba(155, 104, 72, 0.045);
  }
}

@media (max-width: 820px) {
  body.northline .demo-modal .northline-booking-choice.northline-editorial-barber {
    grid-template-columns: 45px minmax(0, 1fr) 23px;
    gap: 12px;
    min-height: 78px;
    padding-block: 12px;
  }

  body.northline .demo-modal .northline-barber-avatar {
    width: 45px;
    height: 45px;
  }

  body.northline .demo-modal .northline-barber-choice-copy strong {
    font-size: 0.96rem;
  }

  body.northline .demo-modal .northline-barber-choice-copy small {
    font-size: 0.63rem;
  }

  body.northline .demo-modal .northline-date-rail {
    grid-auto-columns: 64px;
    margin-right: -18px;
    padding-right: 18px;
  }

  body.northline .demo-modal .northline-quick-date {
    min-height: 90px;
    padding-inline: 6px;
  }

  body.northline .demo-modal .northline-time-grid,
  body.northline .demo-modal .northline-time-grid:first-child {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.northline .demo-modal .northline-time-button.northline-editorial-time {
    min-height: 82px;
    padding-block: 13px;
    padding-inline: 1px 38px;
  }
}

@media (max-width: 390px) {
  body.northline .demo-modal .northline-date-rail {
    margin-right: -15px;
    padding-right: 15px;
  }

  body.northline .demo-modal .northline-time-button.northline-editorial-time {
    padding-left: 1px;
    padding-right: 36px;
  }
}
body.northline .demo-modal .northline-time-button.northline-editorial-time {
  justify-items: start;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-time-availability,
body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-time-value,
body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-time-detail {
  width: 100%;
  text-align: left;
}

body.northline .demo-modal .northline-time-button.northline-editorial-time .northline-time-detail {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
body.northline .demo-modal .northline-review-ledger {
  width: 100%;
}

body.northline .demo-modal .northline-review-ledger dl {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(45, 58, 62, 0.13);
}

body.northline .demo-modal .northline-review-ledger dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(45, 58, 62, 0.13);
}

body.northline .demo-modal .northline-review-ledger dt {
  color: #8e5d3e;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.125em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.northline .demo-modal .northline-review-ledger dd {
  display: grid;
  gap: 4px;
  min-width: 0;
  margin: 0;
}

body.northline .demo-modal .northline-review-ledger dd strong {
  color: #25363a;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

body.northline .demo-modal .northline-review-ledger dd small {
  color: #6d797c;
  font-size: 0.65rem;
  line-height: 1.42;
}

body.northline .demo-modal .northline-review-disclaimer {
  max-width: 34rem;
  margin: 14px 2px 0;
  color: #818b8d;
  font-size: 0.58rem;
  line-height: 1.48;
}
body.northline .demo-modal .northline-confirmation-summary {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 34px 14px 44px;
  text-align: center;
}

body.northline .demo-modal .northline-confirmation-summary .northline-confirmation-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(155, 104, 72, 0.34);
  border-radius: 50%;
  background: rgba(155, 104, 72, 0.075);
  color: #8e5d3e;
  font-size: 0.9rem;
  line-height: 1;
  box-shadow: none;
}

body.northline .demo-modal .northline-confirmation-summary h3 {
  margin: 2px 0 0;
  color: #25363a;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: clamp(1.45rem, 4vw, 1.78rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

body.northline .demo-modal .northline-confirmation-details {
  display: grid;
  justify-items: center;
  gap: 5px;
  width: min(100%, 430px);
  margin-top: 8px;
  padding: 18px 12px;
  border-top: 1px solid rgba(45, 58, 62, 0.13);
  border-bottom: 1px solid rgba(45, 58, 62, 0.13);
}

body.northline .demo-modal .northline-confirmation-details strong {
  color: #25363a;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

body.northline .demo-modal .northline-confirmation-details span,
body.northline .demo-modal .northline-confirmation-details time {
  color: #667477;
  font-size: 0.66rem;
  font-style: normal;
  line-height: 1.42;
}

body.northline .demo-modal .northline-confirmation-details time {
  color: #8e5d3e;
  font-weight: 800;
  letter-spacing: 0.035em;
}

body.northline .demo-modal .northline-confirmation-summary > p {
  max-width: 420px;
  margin: 4px 0 0;
  color: #788386;
  font-size: 0.61rem;
  line-height: 1.52;
}
@media (hover: none) and (pointer: coarse) {
  body.northline .demo-modal .northline-booking-choice:hover,
  body.northline .demo-modal .northline-booking-choice.is-selected:hover,
  body.northline .demo-modal .northline-quick-date:hover,
  body.northline .demo-modal .northline-time-button:hover,
  body.northline .demo-modal .northline-time-button.is-selected:hover {
    transform: none !important;
    border-color: rgba(45, 58, 62, 0.13) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.northline .demo-modal .northline-booking-choice.northline-editorial-choice.is-selected:hover::before,
  body.northline .demo-modal .northline-booking-choice.northline-editorial-barber.is-selected:hover::before,
  body.northline .demo-modal .northline-quick-date.is-selected:hover::before,
  body.northline .demo-modal .northline-time-button.northline-editorial-time.is-selected:hover::before {
    background: rgba(155, 104, 72, 0.07) !important;
  }

  body.northline .demo-modal .northline-booking-choice.northline-editorial-choice:not(.is-selected):hover::before,
  body.northline .demo-modal .northline-booking-choice.northline-editorial-barber:not(.is-selected):hover::before,
  body.northline .demo-modal .northline-quick-date:not(.is-selected):hover::before,
  body.northline .demo-modal .northline-time-button.northline-editorial-time:not(.is-selected):hover::before {
    background: transparent !important;
  }

  body.northline .demo-modal .northline-calendar-day:hover:not(:disabled):not(.is-selected) {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}

@media (max-width: 820px) {
  body.northline .demo-modal .northline-review-ledger dl > div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    min-height: 72px;
    padding-block: 13px;
  }

  body.northline .demo-modal .northline-review-ledger dd strong {
    font-size: 0.96rem;
  }

  body.northline .demo-modal .northline-review-ledger dd small {
    font-size: 0.62rem;
  }

  body.northline .demo-modal .northline-confirmation-summary {
    padding: 26px 8px 38px;
  }
}

@media (max-width: 390px) {
  body.northline .demo-modal .northline-review-ledger dl > div {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 11px;
  }

  body.northline .demo-modal .northline-review-ledger dt {
    font-size: 0.52rem;
  }

  body.northline .demo-modal .northline-review-disclaimer {
    font-size: 0.55rem;
  }

  body.northline .demo-modal .northline-confirmation-summary {
    gap: 11px;
    padding-inline: 4px;
  }
}
body.northline .demo-modal .northline-review-ledger dd {
  text-align: left;
}

@media (max-width: 680px) {
  body.northline .demo-modal {
    inset: 0 0 auto;
    place-items: start center;
    width: 100%;
    height: var(--northline-booking-viewport-height, 100dvh);
    min-height: 0;
    max-height: none;
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.northline .demo-modal .northline-booking-modal-card {
    width: 100%;
    height: calc(var(--northline-booking-viewport-height, 100dvh) - 14px);
    max-height: calc(var(--northline-booking-viewport-height, 100dvh) - 14px);
  }
}

@media (min-width: 681px) and (max-width: 820px) {
  body.northline .demo-modal {
    inset: 0 0 auto;
    place-items: start center;
    width: 100%;
    height: var(--northline-booking-viewport-height, 100dvh);
    min-height: 0;
    max-height: none;
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.northline .demo-modal .northline-booking-modal-card {
    height: calc(var(--northline-booking-viewport-height, 100dvh) - 20px);
    max-height: calc(var(--northline-booking-viewport-height, 100dvh) - 20px);
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 820px) {
    body.northline .demo-modal {
      height: var(--northline-booking-viewport-height, 100vh);
    }
  }

  @media (max-width: 680px) {
    body.northline .demo-modal .northline-booking-modal-card {
      height: calc(var(--northline-booking-viewport-height, 100vh) - 14px);
      max-height: calc(var(--northline-booking-viewport-height, 100vh) - 14px);
    }
  }

  @media (min-width: 681px) and (max-width: 820px) {
    body.northline .demo-modal .northline-booking-modal-card {
      height: calc(var(--northline-booking-viewport-height, 100vh) - 20px);
      max-height: calc(var(--northline-booking-viewport-height, 100vh) - 20px);
    }
  }
}

@media (max-width: 680px) {
  body.northline .demo-modal .northline-booking-actions {
    flex: 0 0 auto;
    min-height: 58px;
    margin: 0;
    padding: 6px 18px 7px;
    align-items: center;
  }
}

@media (min-width: 681px) and (max-width: 820px) {
  body.northline .demo-modal .northline-booking-actions {
    flex: 0 0 auto;
    min-height: 64px;
    margin: 0;
    padding: 8px 24px 10px;
    align-items: center;
  }
}

@media (max-width: 390px) {
  body.northline .demo-modal .northline-booking-actions {
    padding-inline: 15px;
  }
}
@supports (-webkit-touch-callout: none) {
  @media (max-width: 680px) {
    body.northline .demo-modal .northline-booking-actions {
      padding-bottom: max(7px, env(safe-area-inset-bottom));
    }
  }

  @media (min-width: 681px) and (max-width: 820px) {
    body.northline .demo-modal .northline-booking-actions {
      padding-bottom: max(10px, env(safe-area-inset-bottom));
    }
  }
}
@media (display-mode: standalone) and (max-width: 680px) {
  body.northline .demo-modal .northline-booking-actions {
    padding-bottom: max(7px, env(safe-area-inset-bottom));
  }
}

@media (display-mode: standalone) and (min-width: 681px) and (max-width: 820px) {
  body.northline .demo-modal .northline-booking-actions {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}
@media (min-width:761px) and (max-width:900px) and (min-height:900px){
  body.northline .northline-hero{padding:20px 0 54px}
  body.northline .northline-hero > .container{width:min(calc(100% - 28px),880px)}
  body.northline .northline-hero-grid{
    grid-template-columns:minmax(272px,.78fr) minmax(0,1.22fr);
    gap:22px;
    transform:translateY(-2.2svh);
  }
  body.northline .northline-hero-copy{max-width:330px}
  body.northline .northline-hero h1{font-size:clamp(3.35rem,6.8vw,3.75rem)}
  body.northline .northline-hero-copy > .actions{margin-top:25px}
  body.northline .northline-hero-image{aspect-ratio:.95 / 1;min-height:440px}
}

@media(max-width:760px){
  body.northline .barber-nav-toggle,
  body.northline .demo-button,
  body.northline .northline-footer-book,
  body.northline .northline-call-action,
  body.northline .northline-directions-action,
  body.northline .northline-text-button,
  body.northline .northline-service-menu-close,
  body.northline .demo-modal-close{min-height:44px;min-width:44px}
  body.northline .northline-footer-credit a{display:inline-flex;min-height:44px;align-items:center}
  body.northline .northline-disclosure{
    display:block!important;
    max-width:320px;
    margin:0 auto;
    padding:12px 18px 0!important;
    color:rgba(255,250,244,.42);
    font-size:.61rem;
    line-height:1.5;
    text-align:center;
  }
}

@media(min-width:2200px) and (min-height:1100px){
  body.northline .northline-hero > .container{max-width:1480px;width:min(calc(100% - 112px),1480px)}
  body.northline .northline-hero-grid{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:92px}
  body.northline .northline-hero h1{font-size:6.35rem}
  body.northline .northline-hero-image{max-height:820px}
  body.northline .container{max-width:1420px}
}

/* Final tablet-portrait correction: use the extra vertical canvas instead of
   forcing desktop columns into a narrow portrait viewport. */
@media (min-width:761px) and (max-width:900px) and (min-height:900px){
  body.northline .northline-hero{padding:38px 0 44px}
  body.northline .northline-hero > .container{width:min(calc(100% - 40px),780px)}
  body.northline .northline-hero-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto auto;
    align-content:center;
    justify-items:center;
    gap:34px;
    transform:translateY(-1.5svh);
  }
  body.northline .northline-hero-copy{
    max-width:620px;
    align-items:center;
    justify-self:center;
    text-align:center;
  }
  body.northline .northline-hero h1{
    width:auto;
    max-width:100%;
    font-size:clamp(3.65rem,8vw,4.15rem);
    text-align:center;
  }
  body.northline .northline-hero h1 span,
  body.northline .northline-hero h1 span:last-child{width:auto}
  body.northline .northline-hero-copy > .actions{justify-content:center;margin-top:24px}
  body.northline .northline-hero-image{
    width:min(100%,650px);
    min-height:0;
    aspect-ratio:1.2 / 1;
    justify-self:center;
  }
}

/* Production touch-target floor. */
@media(max-width:760px){
  body.northline .barber-nav-toggle,
  body.northline .northline-service-menu-close,
  body.northline .demo-modal-close{width:46px!important;height:46px!important;min-width:46px!important;min-height:46px!important}
  body.northline .demo-button,
  body.northline .northline-booking-actions button,
  body.northline .northline-service-menu-footer .demo-button,
  body.northline .northline-footer-book,
  body.northline .northline-call-action,
  body.northline .northline-directions-action,
  body.northline .northline-text-button{min-height:46px!important}
}
@media(max-width:760px){
  body.northline .northline-full-menu-item > button{min-height:46px!important}
}
