:root {
  --ink: #1d1d1b;
  --ink-soft: #32322f;
  --paper: #f4f0e8;
  --paper-deep: #e9e1d5;
  --white: #fffdf8;
  --lime: #91cb3b;
  --lime-dark: #72a927;
  --orange: #f4511e;
  --gray: #6f6d66;
  --line: rgba(29, 29, 27, 0.16);
  --shadow: 0 24px 70px rgba(29, 29, 27, 0.14);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h1 em,
h2 em {
  color: var(--orange);
  font-weight: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--lime-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--white);
  background: var(--ink);
  box-shadow: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.button:disabled,
.button.is-disabled {
  color: rgba(255, 255, 255, 0.55);
  background: var(--gray);
  border-color: var(--gray);
  cursor: not-allowed;
  transform: none;
}

.button.is-disabled {
  pointer-events: none;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.72rem;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link.is-disabled {
  color: var(--gray);
  border-bottom-color: transparent;
  cursor: not-allowed;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 81, 30, 0.12);
}

.status-pill.is-open .status-dot {
  background: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(114, 169, 39, 0.13);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.section-heading > p {
  max-width: 440px;
  margin-bottom: 4px;
  color: var(--gray);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  height: 84px;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 202px;
  line-height: 0;
}

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

.nav-links > a:not(.button) {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links > a:not(.button):hover {
  color: var(--lime);
}

.nav-links .button {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.nav-links .button:hover,
.nav-links .button.is-active {
  color: var(--white);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
}

/* Footer */
.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 64px;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
}

.footer-brand strong {
  display: block;
  text-transform: lowercase;
}

.footer-brand p {
  margin: 2px 0 0;
  color: var(--lime);
  font-size: 0.76rem;
}

.footer-label {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Interior pages */
.page-hero {
  padding-top: 108px;
  padding-bottom: 86px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 38px;
  font-size: clamp(4rem, 9.4vw, 8.2rem);
}

.page-hero > p:last-child {
  max-width: 580px;
  margin: 0 0 0 auto;
  color: var(--gray);
  font-size: 1.16rem;
}

.page-section {
  padding-bottom: 120px;
}

.content-note {
  max-width: 720px;
  margin: 38px auto 0;
  color: var(--gray);
  font-size: 0.78rem;
  text-align: center;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card.is-featured {
  color: var(--white);
  background: var(--ink);
}

.card-kicker {
  width: fit-content;
  margin: -16px 0 28px auto;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-heading {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.service-card-heading > strong {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.service-card > p {
  max-width: 430px;
  color: var(--gray);
}

.service-card.is-featured > p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 34px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 10px;
  border: 1px solid var(--line);
  font-size: 0.72rem;
}

.service-card.is-featured li {
  border-color: rgba(255, 255, 255, 0.25);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-card.is-featured .service-card-footer {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card-footer > span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-footer .button {
  min-height: 44px;
}

.service-card.is-featured .button {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.service-card.is-featured .button.is-disabled {
  color: rgba(255, 255, 255, 0.55);
  background: var(--gray);
  border-color: var(--gray);
}

/* Team */
.team-list {
  display: grid;
  gap: 110px;
}

.team-profile {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
  align-items: center;
}

.team-profile.is-reversed .team-photo {
  order: 2;
}

.team-photo {
  position: relative;
  min-height: 590px;
  box-shadow: 22px 22px 0 var(--lime);
}

.team-profile.is-reversed .team-photo {
  box-shadow: -22px 22px 0 var(--orange);
}

.team-photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46% 54%, transparent 54%),
    var(--ink-soft);
}

.team-photo-placeholder span {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-style: italic;
  line-height: 1;
}

.team-photo-placeholder small {
  margin-top: 18px;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-index {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.team-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
}

.team-bio {
  max-width: 540px;
  color: var(--gray);
  font-size: 1.1rem;
}

.team-schedule {
  display: grid;
  gap: 5px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.team-schedule strong {
  margin-bottom: 7px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-cta {
  padding: 100px 0;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.team-cta h2 {
  margin: 0 auto 44px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.team-cta .button {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

/* Booking */
.booking-hero {
  padding: 92px 0 78px;
  color: var(--white);
  background: var(--ink);
}

.booking-hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: flex-end;
}

.booking-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 7.6rem);
}

.prototype-note {
  padding: 26px;
  color: var(--ink);
  background: var(--lime);
}

.prototype-note span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prototype-note p {
  margin: 0;
  font-size: 0.86rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 56px;
  align-items: start;
  padding-top: 76px;
  padding-bottom: 120px;
}

.booking-main {
  min-width: 0;
}

.booking-section {
  min-width: 0;
  margin: 0;
  padding: 0 0 54px;
  border: 0;
}

.booking-section + .booking-section {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.booking-section:disabled {
  opacity: 0.4;
}

.booking-section legend {
  width: 100%;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.booking-section legend span {
  margin-right: 15px;
  color: var(--orange);
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: border-color 150ms ease, transform 150ms ease, background 150ms ease;
}

.choice-row:hover,
.choice-row.is-selected {
  background: #eff9df;
  border-color: var(--lime-dark);
  transform: translateX(3px);
}

.choice-radio {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--white);
}

.is-selected .choice-radio {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
}

.choice-copy {
  display: grid;
  gap: 3px;
}

.choice-copy small,
.barber-choice small {
  color: var(--gray);
  font-size: 0.76rem;
}

.choice-row b {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.barber-choices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.barber-choice {
  display: grid;
  min-height: 150px;
  align-content: end;
  justify-items: start;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.barber-choice .choice-radio {
  margin-bottom: 24px;
}

.barber-choice.is-selected,
.barber-choice:not(:disabled):hover {
  background: #eff9df;
  border-color: var(--lime-dark);
}

.barber-choice.is-unavailable {
  color: var(--gray);
  background: rgba(29, 29, 27, 0.04);
  cursor: not-allowed;
}

.barber-choice.is-unavailable .choice-radio {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.date-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.date-strip button {
  display: grid;
  min-width: 0;
  min-height: 102px;
  place-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.date-strip button:hover,
.date-strip button.is-selected {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.date-strip small,
.date-strip span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-strip strong {
  margin: 1px 0;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.time-grid button {
  min-height: 48px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.time-grid button:hover,
.time-grid button.is-selected {
  background: var(--lime);
  border-color: var(--lime-dark);
}

.time-grid button:disabled {
  color: #aaa69e;
  background: rgba(29, 29, 27, 0.04);
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-hint {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 0.8rem;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-grid label > span {
  color: var(--gray);
  font-size: 0.62rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--lime-dark);
}

.form-wide {
  grid-column: 1 / -1;
}

.booking-summary {
  position: sticky;
  top: 24px;
  padding: 30px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.booking-summary h2 {
  margin-bottom: 30px;
  font-size: 2.25rem;
}

.summary-lines {
  display: grid;
}

.summary-lines > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.summary-lines span,
.summary-total span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-lines strong {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

.summary-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 10px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.summary-total strong {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.booking-submit {
  width: 100%;
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.summary-fine-print {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.5;
}

.booking-complete {
  min-height: 760px;
  padding-top: 100px;
  padding-bottom: 120px;
  text-align: center;
}

.booking-check {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 34px;
  background: var(--lime);
  border-radius: 50%;
  font-size: 1.8rem;
}

.booking-complete h1 {
  margin-bottom: 34px;
  font-size: clamp(4rem, 9vw, 7.5rem);
}

.booking-complete-lead {
  max-width: 630px;
  margin: 0 auto 46px;
  color: var(--gray);
  font-size: 1.08rem;
}

.booking-receipt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
  margin: 0 auto 42px;
  background: var(--white);
  border: 1px solid var(--line);
}

.booking-receipt > div {
  display: grid;
  gap: 8px;
  padding: 26px;
}

.booking-receipt > div + div {
  border-left: 1px solid var(--line);
}

.booking-receipt span {
  color: var(--gray);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Privacy */
.policy {
  max-width: 850px;
  padding-top: 92px;
  padding-bottom: 120px;
}

.policy-header {
  margin-bottom: 70px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.policy-header h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 7rem);
}

.policy-header > p:not(.eyebrow) {
  color: var(--gray);
}

.policy-notice {
  margin-top: 32px;
  padding: 20px 22px;
  background: #fff2c7;
  border-left: 4px solid var(--orange);
  font-size: 0.86rem;
}

.policy section {
  margin: 48px 0;
}

.policy h2 {
  margin-bottom: 18px;
  font-size: 2.25rem;
}

.policy p,
.policy li {
  color: var(--ink-soft);
}

.policy li + li {
  margin-top: 8px;
}

.policy a {
  border-bottom: 1px solid currentColor;
}

@media (max-width: 900px) {
  .section-heading,
  .booking-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .team-profile,
  .team-profile.is-reversed {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .team-profile.is-reversed .team-photo {
    order: 0;
  }

  .team-photo {
    min-height: 480px;
  }

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

  .booking-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .site-header {
    height: 74px;
  }

  .brand {
    width: 174px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 22px 16px 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links .button {
    width: 100%;
  }

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

  .section-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

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

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }

  .page-hero {
    padding-top: 72px;
    padding-bottom: 62px;
  }

  .page-hero h1 {
    font-size: clamp(3.6rem, 18vw, 6rem);
  }

  .page-hero > p:last-child {
    margin-left: 0;
  }

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

  .service-card {
    min-height: 390px;
    padding: 28px;
  }

  .team-profile,
  .team-profile.is-reversed {
    grid-template-columns: 1fr;
  }

  .team-photo {
    min-height: 430px;
    box-shadow: 12px 12px 0 var(--lime);
  }

  .team-profile.is-reversed .team-photo {
    box-shadow: 12px 12px 0 var(--orange);
  }

  .booking-hero {
    padding: 68px 0;
  }

  .booking-layout {
    gap: 20px;
    padding-top: 54px;
    padding-bottom: 84px;
  }

  .choice-row {
    grid-template-columns: auto 1fr auto;
    padding: 16px;
  }

  .choice-copy small {
    display: none;
  }

  .barber-choices {
    grid-template-columns: 1fr;
  }

  .barber-choice {
    min-height: 110px;
  }

  .barber-choice .choice-radio {
    margin-bottom: 14px;
  }

  .date-strip {
    grid-template-columns: repeat(5, minmax(70px, 1fr));
    padding-bottom: 8px;
    overflow-x: auto;
  }

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

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

  .form-wide {
    grid-column: auto;
  }

  .booking-summary {
    padding: 26px 22px;
  }

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

  .booking-receipt > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .policy {
    padding-top: 60px;
    padding-bottom: 84px;
  }
}

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

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