/*
Theme Name: Peters Conversion
Theme URI: https://neocode.se/
Author: Neocode
Author URI: https://neocode.se/
Description: A conversion-focused custom theme for Peter’s Barbershop in Älvsjö.
Version: 1.1.6
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: peters-conversion
*/

:root {
  --ink: #10100f;
  --ink-soft: #1a1917;
  --paper: #f2eee5;
  --paper-bright: #faf8f3;
  --muted: #aaa294;
  --gold: #c59a4b;
  --gold-pale: #e8cd93;
  --white: #fff;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(16, 16, 15, 0.15);
  --display: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shell: min(1280px, calc(100vw - 64px));
  --section-space: clamp(92px, 10vw, 156px);
  --radius: 2px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-pale);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 840px;
  margin-bottom: 32px;
  font-size: clamp(2.8rem, 5.6vw, 6.2rem);
}

h1 em {
  color: var(--gold-pale);
  font-weight: 400;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.65rem, 5vw, 5.5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.default-content {
  padding-top: 86px;
}

.default-content > article > .section:first-child {
  padding-top: clamp(72px, 8vw, 112px);
}

.default-content h1 {
  max-width: 960px;
  overflow-wrap: break-word;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.default-content .service-list {
  width: 100%;
}

@media (max-width: 700px) {
  html,
  body {
    max-width: 100%;
  }

  .default-content {
    padding-top: 74px;
  }

  .default-content > article > .section:first-child {
    padding-top: 54px;
  }

  .default-content h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 1.02;
  }

  .peters-om-oss-page [style*="grid-template-columns"] {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }
}

.section--gold {
  background: var(--gold);
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: '';
}

.section--paper .eyebrow,
.section--gold .eyebrow {
  color: #73551d;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: var(--paper-bright);
  background: var(--paper-bright);
}

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

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover {
  border-color: #342f27;
  background: #342f27;
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link--dark {
  color: var(--ink);
}

/* Text CTAs need a visible state change without losing contrast. */
.text-link a,
.proof-bar__inner > p:last-child a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease, text-underline-offset 180ms ease, transform 180ms ease;
}

.proof-bar__inner > p:last-child a:hover,
.proof-bar__inner > p:last-child a:focus-visible {
  color: var(--gold-pale);
  text-decoration-color: var(--gold);
  text-underline-offset: 8px;
}

.text-link--dark a:hover,
.text-link--dark a:focus-visible {
  color: #6f4d12;
  text-decoration-color: var(--gold);
  text-underline-offset: 8px;
}

.text-link a:focus-visible,
.proof-bar__inner > p:last-child a:focus-visible {
  border-radius: 2px;
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background-color 200ms ease, padding 200ms ease, backdrop-filter 200ms ease;
}

body:not(.home) .site-header,
.site-header.is-scrolled {
  background: rgba(16, 16, 15, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled {
  position: fixed;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 42px);
}

.primary-navigation > a:not(.button) {
  position: relative;
  color: #d7d1c7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-navigation > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: '';
  transition: transform 160ms ease;
}

.primary-navigation > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
}

.menu-toggle span {
  width: 19px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background: var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 48%;
  background: radial-gradient(circle at 15% 20%, rgba(197, 154, 75, 0.1), transparent 42%);
  content: '';
  pointer-events: none;
}

.hero__content {
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 780px;
  justify-content: center;
  flex-direction: column;
  padding: 166px 70px 104px 0;
}

.hero__lead {
  max-width: 600px;
  margin-bottom: 38px;
  color: #c6c0b5;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

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

.hero__facts {
  display: flex;
  margin-top: 58px;
  flex-wrap: wrap;
  gap: 14px 28px;
  color: #9d968a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero__facts span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: '';
}

.hero__visual {
  position: relative;
  margin: 0 calc((100vw - var(--shell)) / -2) 0 0;
  overflow: hidden;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 20%), linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 42%);
  content: '';
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - var(--shell)) / 2));
  bottom: 34px;
  padding-left: 42px;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__visual figcaption::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: '';
}

.proof-bar {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.proof-bar__inner {
  display: grid;
  min-height: 104px;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.15fr;
  align-items: center;
}

.proof-bar__inner > * {
  margin: 0;
  padding: 20px 28px;
  border-left: 1px solid var(--line-dark);
  color: #c8c1b6;
  font-size: 0.84rem;
}

.proof-bar__inner > *:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-bar__inner > a {
  color: var(--paper);
  font-weight: 750;
  letter-spacing: 0.05em;
  text-align: right;
  text-decoration: none;
}

.proof-bar__inner strong {
  display: block;
  margin-top: 2px;
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 700;
}

.rating-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-mark strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.stars {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.peters-services .services__layout {
  display: block;
}

.peters-services .services__layout > .wp-block-group__inner-container {
  display: block;
}

.peters-services .services__intro {
  position: static;
  max-width: 760px;
  margin-bottom: clamp(52px, 6vw, 84px);
}

.peters-services .services__intro h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.025em;
}

.peters-services .services__intro > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 18px;
  color: #aaa397;
}

.service-carousel-nav,
.service-progress {
  display: none;
}

.peters-services .service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  border-top: 0;
}

.peters-services .service-list > .wp-block-group__inner-container {
  display: contents;
}

.peters-services .service-item {
  position: relative;
  display: grid;
  grid-template-rows: 360px auto;
  min-height: 600px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #22211f;
}

.peters-services .service-item > .wp-block-group__inner-container {
  display: contents;
}

.peters-services .service-item__image {
  position: relative;
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
}

.peters-services .service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 450ms ease;
}

.peters-services .service-item__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34, 33, 31, 0.02) 35%, rgba(34, 33, 31, 0.52) 72%, #22211f 100%);
  pointer-events: none;
}

.peters-services .service-item__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  margin-top: -52px;
  padding: 0 clamp(30px, 4vw, 50px) clamp(34px, 4vw, 44px);
}

.peters-services .service-item__content > .wp-block-group__inner-container {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.peters-services .service-item__content h3 {
  margin: 0 0 18px;
  color: #f4f1ea;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.peters-services .service-item__content p {
  flex-grow: 0;
  max-width: 560px;
  margin: 0 0 30px;
  color: #b9b6b0;
  font-size: 1rem;
  line-height: 1.65;
}

.peters-services .service-item__content .wp-block-buttons {
  margin-top: 0;
}

.peters-services .service-item__content .wp-block-button__link {
  min-width: 118px;
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.peters-services .service-item__content .wp-block-button__link:hover,
.peters-services .service-item__content .wp-block-button__link:focus-visible {
  background: #ddbb64;
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.peters-services .service-item .service-number {
  position: absolute;
  top: 40px;
  right: 30px;
  left: auto;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: rgba(232, 227, 217, 0.48);
  font-family: var(--display);
  font-size: clamp(3.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.peters-services .service-item:hover .service-item__image img {
  transform: scale(1.025);
}

.service-progress__track {
  width: 100%;
  height: 2px;
  background: rgba(16, 16, 15, 0.1);
  position: relative;
}

.service-progress__knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(0, -50%);
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-soft);
  border-radius: 8px;
  overflow: hidden;
  border-bottom: none;
  min-height: auto;
  align-items: stretch;
  padding-block: 0;
  gap: 0;
}

.service-item__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #111;
}

.service-item__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 32px 28px;
}

.service-item .service-number {
  position: absolute;
  top: 16px;
  left: 16px;
  margin: 0;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--gold);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 2;
}

.service-item h3 {
  margin-bottom: 12px;
  color: var(--paper-bright);
}

.service-item p {
  color: #aaa397;
  flex-grow: 1;
  margin-bottom: 32px;
}

.service-item .wp-block-buttons {
  margin-top: auto;
}

.craft__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(64px, 10vw, 150px);
}

.craft__grid > .wp-block-group__inner-container {
  display: contents;
}

.craft__image {
  position: relative;
  margin: 0;
}

.craft__image::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  width: 38%;
  height: 38%;
  border-top: 1px solid #9c762d;
  border-right: 1px solid #9c762d;
  content: '';
}

.craft__image img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04);
}

.craft__image figcaption {
  position: absolute;
  right: -24px;
  bottom: 36px;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.05rem;
}

.craft.section {
  background: var(--paper);
  color: var(--ink);
}

.craft__copy h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  letter-spacing: -0.01em;
}

.craft__lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #4f4a42;
  font-size: 1.15rem;
}

.check-list {
  display: grid;
  margin: 0 0 40px;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--line-light);
  color: #464139;
}

.check-list li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 12px;
  height: 6px;
  border-bottom: 1px solid #7c5c20;
  border-left: 1px solid #7c5c20;
  transform: rotate(-45deg);
  content: '';
}

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

.section-heading--row h2 {
  margin-bottom: 0;
}

.section-heading--row > p {
  max-width: 360px;
  margin-bottom: 8px;
  color: #9f988d;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.review-grid blockquote {
  position: relative;
  margin-bottom: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.review-grid blockquote p {
  margin: 18px 0 24px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.review-grid blockquote cite {
  color: #aaa397;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location__grid > .wp-block-group__inner-container,
.faq__grid > .wp-block-group__inner-container {
  display: contents;
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: start;
}

.location h2 {
  max-width: 700px;
}

.location > .shell > div:first-child > p:not(.eyebrow) {
  max-width: 610px;
  color: #392c17;
  font-size: 1.08rem;
}

.location__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.location__details {
  border-top: 1px solid rgba(16, 16, 15, 0.35);
  margin-top: 32px;
}

.location__details > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.35);
}

.location__details > div > p {
  margin: 0;
}

.location__details span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location__details strong {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.35;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 11vw, 170px);
}

.faq__items > .wp-block-group__inner-container {
  display: contents;
}

.faq__items {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 1px;
  background: #6d5220;
  content: '';
  transition: transform 160ms ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0deg);
}

.faq details p {
  max-width: 720px;
  padding: 0 48px 25px 0;
  color: #b4aba0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(110px, 14vw, 220px);
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68)), url('assets/images/salon.jpg') center / cover;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(197, 154, 75, 0.24);
  border-radius: 50%;
  content: '';
}

.final-cta::before {
  top: -155px;
  left: -100px;
}

.final-cta::after {
  right: -100px;
  bottom: -155px;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta h2 {
  margin-bottom: 44px;
  font-size: clamp(3rem, 7vw, 7.5rem);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta__inner > p:last-child {
  margin: 26px 0 0;
  color: #aaa397;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 76px 0 24px;
  border-top: 1px solid var(--line-dark);
  background: #0a0a09;
  color: #aaa397;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.9fr;
  gap: 56px;
  padding-bottom: 64px;
}

.brand--footer {
  margin-bottom: 24px;
  color: var(--paper);
}

.site-footer__grid > div:first-child > p {
  max-width: 400px;
  margin-bottom: 0;
}

.site-footer h2 {
  margin: 8px 0 20px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer__grid > div:not(:first-child) a {
  display: block;
  margin-bottom: 7px;
  text-decoration: none;
}

.site-footer__grid > div:not(:first-child) a:hover {
  color: var(--paper);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #746e65;
  font-size: 0.68rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  color: #aaa397;
  transition: color 160ms ease;
}

.social-icon:hover {
  color: var(--paper);
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--gold-pale);
}

.site-footer__bottom a {
  text-decoration: none;
}

.mobile-booking-bar {
  display: none;
}

.default-content {
  min-height: 60vh;
  padding-top: 150px;
}

@media (max-width: 800px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .peters-services .services__intro {
    margin-bottom: 46px;
  }

  .peters-services .services__intro h2 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .peters-services .service-list {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .peters-services .service-item {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    min-height: 0;
    gap: 0;
    padding-block: 0;
  }

  .peters-services .service-item__image {
    min-height: 270px;
  }

  .peters-services .service-item__content {
    min-height: 0;
    margin-top: -46px;
    padding: 0 28px 32px;
  }

  .peters-services .service-item__content h3 {
    font-size: 2.15rem;
  }

  .peters-services .service-item .service-number {
    top: 26px;
    right: 24px;
    font-size: 4rem;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 44px, 1080px);
  }

  .hero,
  .hero__content {
    min-height: 780px;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  }

  .hero__copy {
    padding-right: 38px;
  }

  .proof-bar__inner {
    grid-template-columns: 1.4fr 0.75fr 0.75fr;
  }

  .proof-bar__inner > a {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-footer__grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 800px) {
  :root {
    --shell: calc(100% - 36px);
    --section-space: 86px;
  }

  body {
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.7rem, 11.5vw, 4.5rem);
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    background: rgba(16, 16, 15, 0.96);
    backdrop-filter: blur(12px);
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-navigation {
    position: fixed;
    z-index: 90;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 32px 18px 110px;
    transform: translateY(-16px);
    opacity: 0;
    background: var(--ink);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .primary-navigation.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .primary-navigation > a:not(.button) {
    padding: 20px 4px;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-navigation > .button {
    margin-top: 28px;
  }

  .hero {
    min-height: 0;
    padding-top: 74px;
  }

  .hero__content {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    width: var(--shell);
    margin-inline: auto;
    padding: 74px 0 56px;
  }

  .hero__lead {
    margin-bottom: 30px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__facts {
    margin-top: 38px;
    gap: 10px 18px;
  }

  .hero__facts span:not(:last-child)::after {
    display: none;
  }

  .hero__visual {
    width: 100%;
    height: min(112vw, 540px);
    margin: 0;
  }

  .hero__visual::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 44%);
  }

  .hero__visual figcaption {
    right: 18px;
    bottom: 22px;
  }

  .proof-bar__inner {
    display: block;
    padding: 30px 0;
  }

  .proof-bar__inner > * {
    padding: 0;
    border: 0;
  }

  .proof-bar__inner > p {
    display: none;
  }

  .rating-mark {
    flex-wrap: wrap;
  }

  .rating-mark span:last-child {
    width: 100%;
  }

  .services__layout,
  .craft__grid,
  .location__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .location__details > .wp-block-group__inner-container {
    display: contents;
  }

  .location__details > .wp-block-group__inner-container {
    display: contents;
  }

  .services__layout {
    gap: 64px;
  }

  .services__intro {
    position: static;
  }

  .services__intro img {
    width: 72%;
  }

  .service-item {
    min-height: 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 15px;
    padding-block: 28px;
  }

  .service-item > a {
    grid-column: 2;
    justify-content: flex-start;
  }

  .craft__grid {
    gap: 70px;
  }

  .craft__image figcaption {
    right: -8px;
    bottom: 18px;
    font-size: 0.9rem;
  }

  .section-heading--row {
    display: block;
    margin-bottom: 58px;
  }

  .section-heading--row > p {
    margin-top: 22px;
  }

  .review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .review-grid > .wp-block-group__inner-container {
    display: contents;
  }

  .review-grid blockquote {
    min-width: 0;
  }

  .review-grid blockquote,
  .review-grid blockquote:nth-child(n) {
    margin-top: 0;
    margin-bottom: 48px;
    padding-top: 24px;
  }

  .review-grid blockquote:last-child {
    margin-bottom: 0;
  }

  .review-grid blockquote p {
    font-size: 1.5rem;
  }

  .location__grid,
  .faq__grid {
    gap: 68px;
  }

  .location__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location__actions .text-link {
    justify-content: center;
  }

  .site-footer {
    padding-top: 64px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 28px;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid > div:last-child {
    grid-column: auto;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    grid-template-columns: 0.7fr 1.3fr;
    border-top: 1px solid var(--line-dark);
    background: var(--ink);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  }

  .mobile-booking-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-booking-bar__phone {
    color: var(--paper);
  }

  .mobile-booking-bar__book {
    background: var(--gold);
    color: var(--ink);
  }
}

@media (max-width: 480px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand small {
    display: none;
  }

  .hero__copy {
    padding-top: 58px;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__facts span:first-child {
    grid-column: 1 / -1;
  }

  .services__intro img {
    width: 88%;
  }



  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid > div:first-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Gutenberg compatibility: preserve the visual system while page copy stays editable. */
.site-main .wp-block-group > .wp-block-group__inner-container {
  display: contents;
}

.review-grid > .wp-block-group__inner-container {
  display: contents;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.review-grid blockquote cite {
  color: #aaa397;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wp-block-button__link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.wp-block-button__link:hover {
  border-color: var(--paper-bright);
  background: var(--paper-bright);
  transform: translateY(-2px);
}

.phone-button .wp-block-button__link,
.phone-button-dark .wp-block-button__link {
  min-height: auto;
  padding: 10px 0;
  border-color: transparent;
  background: transparent;
  color: var(--paper);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease, text-decoration-color 180ms ease, text-underline-offset 180ms ease;
}

.phone-button .wp-block-button__link:hover,
.phone-button .wp-block-button__link:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--gold-pale);
  text-decoration-color: var(--gold);
  text-underline-offset: 8px;
  transform: none;
}

.phone-button-dark .wp-block-button__link {
  color: var(--ink);
}

.phone-button-dark .wp-block-button__link:hover,
.phone-button-dark .wp-block-button__link:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  text-decoration-color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  transform: translateX(4px);
}

.phone-button .wp-block-button__link:focus-visible,
.phone-button-dark .wp-block-button__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.button--dark .wp-block-button__link {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--dark .wp-block-button__link:hover {
  background: var(--paper-bright);
  border-color: var(--paper-bright);
  color: var(--ink);
}

.location__actions .button--dark .wp-block-button__link:hover,
.location__actions .button--dark .wp-block-button__link:focus-visible {
  box-shadow: 0 8px 24px rgba(16, 16, 15, 0.18);
  transform: translateY(-2px);
}

.location__actions .phone-button-dark .wp-block-button__link:hover,
.location__actions .phone-button-dark .wp-block-button__link:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  text-decoration-color: var(--ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  transform: none;
}

body.page-id-196 .text-link:hover,
body.page-id-196 .text-link:focus-visible {
  color: var(--gold-pale);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  transform: none;
}

body.page-id-196 .text-link:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--gold-pale);
  outline-offset: 6px;
}

.hero__facts p,
.rating-mark p {
  margin: 0;
}

.hero__facts p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero__facts p:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  content: '';
}

.proof-bar__inner > p:last-child a {
  color: var(--paper);
  font-weight: 750;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.proof-bar a:hover,
.proof-bar a:focus-visible {
  color: var(--gold-pale);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

.service-item > .service-number {
  align-self: start;
  padding-top: 7px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.88rem;
}

.service-item > .wp-block-buttons {
  display: inline-flex;
  min-width: 72px;
  justify-content: flex-end;
}

.service-item > .wp-block-buttons .wp-block-button__link {
  min-height: auto;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--gold-pale);
}

.review-grid blockquote cite {
  color: #aaa397;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.review-grid blockquote p.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.location__details > div > p {
  margin: 0;
}

.location__details > div > p:first-child {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .hero__actions .phone-button,
  .location__actions .phone-button-dark {
    justify-content: center;
  }

  .hero__facts p:not(:last-child)::after {
    display: none;
  }

  .rating-mark p:last-child {
    width: 100%;
  }

  .service-item > .wp-block-buttons {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__facts p:first-child {
    grid-column: 1 / -1;
  }
}

/* Peter's Barbershop — location and inner-page redesigns. */
.location__map {
  display: flex;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(16, 16, 15, 0.28);
  background: #d7b45e;
}

.location__map iframe {
  width: 100%;
  min-height: 470px;
  flex: 1;
  border: 0;
  filter: grayscale(1) contrast(0.88) sepia(0.2);
}

.location__map > a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-top: 1px solid rgba(16, 16, 15, 0.28);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.default-content:has(.inner-page-hero),
.default-content:has(.about-hero) {
  padding-top: 0;
}

.inner-page-hero {
  padding: 168px 0 92px;
  background: var(--ink);
  color: var(--paper);
}

.inner-page-hero__grid,
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
}

.inner-page-hero__grid > .wp-block-group__inner-container,
.about-hero__grid > .wp-block-group__inner-container {
  display: contents;
}

.inner-page-hero__copy h1,
.about-hero__copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.2vw, 5.7rem);
}

.inner-page-hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c4bdb1;
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.inner-page-hero__media,
.about-hero__media {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
}

.inner-page-hero__media img,
.about-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-showcase__heading > p {
  max-width: 480px;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 32px;
  width: 100%;
}

.service-visual-grid > .wp-block-group__inner-container {
  display: contents;
}

.service-visual-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.service-visual-card > figure,
.service-visual-card > figure > img,
.service-visual-card figure img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  margin: 0;
}

.service-visual-card__body {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  width: 100%;
}

.service-visual-card__body > p:first-child {
  color: #8a6e2c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.service-visual-card__body h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 12px;
}

.service-visual-card__body p {
  max-width: 620px;
  margin: 0 0 16px;
  color: #554f46;
  line-height: 1.72;
}

.service-visual-card__body a {
  width: max-content;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-transform: uppercase;
  transition: all 250ms ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-visual-card__body a:hover {
  color: #8a6e2c;
  text-decoration-color: #8a6e2c;
  opacity: 0.8;
  transform: translateX(4px);
}

.service-guide {
  background: var(--ink);
  color: var(--paper);
}

.service-guide__grid,
.about-story__grid,
.about-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(64px, 10vw, 160px);
}

.service-guide__grid > .wp-block-group__inner-container,
.about-story__grid > .wp-block-group__inner-container,
.about-proof__grid > .wp-block-group__inner-container,
.inner-page-cta__inner > .wp-block-group__inner-container {
  display: contents;
}

.service-guide h2,
.about-story h2,
.about-proof h2 {
  max-width: 750px;
}

.service-guide__grid > div:last-child,
.about-story__copy,
.about-proof__grid > div:last-child {
  padding-top: 32px;
  color: #bbb3a7;
  font-size: 1.05rem;
  line-height: 1.75;
}

.inner-page-cta {
  padding: 88px 0;
}

.inner-page-cta__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.inner-page-cta__inner h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.about-hero {
  padding: 168px 0 96px;
}

.about-hero__copy h1 {
  color: var(--ink);
}

.about-hero__copy .inner-page-hero__lead {
  color: #554f46;
}

.about-hero__media figcaption,
.about-craft-image figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  background: rgba(16, 16, 15, 0.88);
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story {
  background: var(--ink);
  color: var(--paper);
}

.about-story__copy p + p {
  margin-top: 24px;
}

.barber-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid rgba(16, 16, 15, 0.18);
}

.barber-profiles > .wp-block-group__inner-container {
  display: contents;
}

.barber-profiles article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 18px;
  padding: 42px 7vw 42px 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.18);
}

.barber-profiles article > .wp-block-group__inner-container {
  display: contents;
}

.barber-profiles article + article {
  padding-right: 0;
  padding-left: 7vw;
  border-left: 1px solid rgba(16, 16, 15, 0.18);
}

.barber-profiles article > span,
.barber-profiles article > .wp-block-group__inner-container > p:first-child {
  grid-row: 1 / 4;
  padding-top: 9px;
  color: #8a6e2c;
  font-size: 0.72rem;
  font-weight: 800;
}

.barber-profiles article h2,
.barber-profiles article > .wp-block-group__inner-container > h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  grid-column: 2;
}

.barber-profiles article p:not(:first-child),
.barber-profiles article > .wp-block-group__inner-container > p:not(:first-child) {
  margin: 0;
  color: #554f46;
  grid-column: 2;
}

.barber-profiles article strong,
.barber-profiles article > .wp-block-group__inner-container strong {
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-craft-image {
  position: relative;
  height: min(68vw, 760px);
  margin: 80px 0 0;
  overflow: hidden;
}

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

.about-proof {
  padding: 104px 0;
}

.about-proof__grid > div:last-child {
  color: rgba(16, 16, 15, 0.78);
}

@media (max-width: 800px) {
  h1 {
    font-size: clamp(2.65rem, 12vw, 4.4rem);
  }

  .location__map {
    min-height: 440px;
  }

  .location__map iframe {
    min-height: 390px;
  }

  .inner-page-hero,
  .about-hero {
    padding: 126px 0 72px;
  }

  .inner-page-hero__grid,
  .about-hero__grid,
  .service-guide__grid,
  .about-story__grid,
  .about-proof__grid,
  .inner-page-cta__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .inner-page-hero__copy h1,
  .about-hero__copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.5rem);
  }

  .inner-page-hero__media,
  .about-hero__media {
    min-height: min(116vw, 560px);
  }

  .service-visual-grid,
  .barber-profiles {
    grid-template-columns: 1fr;
  }

  .service-visual-grid {
    gap: 58px;
  }

  .service-visual-card > figure,
  .service-visual-card > figure > img,
  .service-visual-card figure img {
    aspect-ratio: 1.2;
  }

  .service-guide__grid > div:last-child,
  .about-story__copy,
  .about-proof__grid > div:last-child {
    padding-top: 0;
  }

  .inner-page-cta__inner {
    align-items: start;
  }

  .barber-profiles article,
  .barber-profiles article + article {
    padding: 34px 0;
    border-left: 0;
  }

  .about-craft-image {
    height: min(120vw, 620px);
    margin-top: 58px;
  }
}

/* Reliable location visual and scoped CTA cleanup. */
.location__visual {
  position: relative;
  display: block;
  margin: 0;
}

.location__visual > img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
}

.location__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(16, 16, 15, 0.78));
  content: '';
  pointer-events: none;
}

.location__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: var(--paper);
}

.location__visual figcaption span {
  max-width: 270px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.12;
}

.location__visual figcaption a {
  color: var(--paper);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.inner-page-cta .wp-block-buttons,
.about-proof .wp-block-buttons,
.inner-page-cta .wp-block-button,
.about-proof .wp-block-button {
  width: max-content;
  background: transparent;
}

@media (max-width: 800px) {
  .craft__image {
    overflow: hidden;
  }

  .craft__image::before {
    right: 0;
  }

  .craft__image figcaption {
    right: 0;
  }

  .final-cta::before {
    left: -70px;
  }

  .final-cta::after {
    right: -70px;
  }

  .location__visual > img {
    min-height: 440px;
  }

  .location__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
}
