:root {
  --bg: #ffffff;
  --surface: #343934;
  --surface-soft: #f6f3f0;
  --ink: #0d0d0d;
  --ink-soft: #2f2b28;
  --muted: #6d665f;
  --line: rgba(13, 13, 13, 0.14);
  --line-strong: rgba(13, 13, 13, 0.24);
  --accent: #1a4f93;
  --container: 1200px;
  --container-wide: 1360px;
  --shadow: 0 24px 50px rgba(13, 13, 13, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body::before {
  content: none;
}

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

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

h1,
h2,
h3,
h4,
.display,
.brand-name,
.button,
.menu-toggle,
.site-nav a,
.stat-number,
.price,
.gallery-caption span {
  font-family: Garamond, "Times New Roman", serif;
}

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

h1,
h2,
h3,
h4 {
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--bg);
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container,
.wide-container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.wide-container {
  width: min(calc(100% - 2rem), var(--container-wide));
}

.narrow {
  width: min(calc(100% - 2rem), 840px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #000;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo-header {
  width: clamp(64px, 8vw, 92px);
}

.brand-logo-footer {
  width: min(220px, 100%);
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.menu-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.85rem 1rem;
  font: inherit;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.8rem;
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 0.85rem 0.9rem;
  letter-spacing: 0.06em;
  color: var(--bg);
}

.site-nav a[aria-current="page"] {
  color: #d8c2a2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.94rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 0;
}

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

.button-accent {
  background: var(--accent);
  border-color: var(--accent);
}

.button-small {
  min-height: 42px;
  padding-inline: 1rem;
}

.booking-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.92;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--accent);
}

.section {
  position: relative;
  padding: 5rem 0;
}

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

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

.section-paper {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), var(--surface);
}

.section-brush-top::before,
.section-brush-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 96px;
  background:
    linear-gradient(180deg, currentColor 0 68%, transparent 68% 100%),
    linear-gradient(90deg,
      transparent 0 6%,
      rgba(0, 0, 0, 0.14) 6% 12%,
      transparent 12% 19%,
      rgba(0, 0, 0, 0.12) 19% 27%,
      transparent 27% 34%,
      rgba(0, 0, 0, 0.16) 34% 43%,
      transparent 43% 50%,
      rgba(0, 0, 0, 0.1) 50% 58%,
      transparent 58% 66%,
      rgba(0, 0, 0, 0.15) 66% 76%,
      transparent 76% 84%,
      rgba(0, 0, 0, 0.12) 84% 92%,
      transparent 92% 100%);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 66%,
    94% 71%,
    88% 67%,
    82% 74%,
    76% 70%,
    70% 77%,
    64% 72%,
    58% 79%,
    52% 73%,
    46% 81%,
    40% 75%,
    34% 83%,
    28% 76%,
    22% 82%,
    16% 74%,
    10% 79%,
    4% 73%,
    0 76%
  );
  opacity: 0.98;
  pointer-events: none;
}

.section-brush-top::before {
  top: -1px;
  transform: scaleY(-1);
}

.section-brush-bottom::after {
  bottom: -1px;
}

.section-dark.section-brush-top::before,
.section-dark.section-brush-bottom::after {
  color: var(--ink);
}

.section-soft.section-brush-top::before,
.section-soft.section-brush-bottom::after,
.section-paper.section-brush-top::before,
.section-paper.section-brush-bottom::after {
  color: var(--surface);
}

.hero {
  padding: 3rem 0 0;
}

.hero-home {
  position: relative;
  display: flex;
  align-items: start;
  min-height: calc(100svh - 88px);
  padding: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.46) 22%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.16) 54%, rgba(0, 0, 0, 0.46) 100%),
    url("../images/barbershop-hero.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--bg);
}

.hero-shell {
  display: flex;
  align-items: start;
  min-height: inherit;
  padding-left: 0;
}

.hero-copy {
  max-width: 46rem;
  padding: clamp(4rem, 10vw, 6.5rem) 0 0;
}

.hero-kicker {
  margin: 0 0 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-home .display {
  max-width: 16ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.hero-summary {
  max-width: 26rem;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.3);
}

.hero-grid,
.intro-grid,
.story-grid,
.services-overview,
.contact-band,
.footer-inner,
.portfolio-showcase,
.booking-grid,
.service-cards,
.testimonial-grid,
.process-grid,
.gallery-grid,
.detail-grid,
.values-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  align-items: end;
}

.display {
  font-size: clamp(3.2rem, 8vw, 7rem);
  max-width: 10ch;
  margin-bottom: 1.2rem;
}

.lede {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.hero-meta li,
.tag,
.service-note,
.timeline-year,
.quote-mark {
  border: 1px solid var(--line);
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.82);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  align-content: end;
  padding: 1.5rem;
}

.hero-frame,
.editorial-card,
.service-card,
.quote-panel,
.gallery-card,
.detail-panel,
.pricing-panel,
.process-card,
.value-card,
.contact-card,
.page-intro-card {
  position: relative;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.hero-frame {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.12), rgba(13, 13, 13, 0.02)),
    linear-gradient(135deg, rgba(240, 237, 234, 0.8), rgba(255, 255, 255, 0.98));
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(13, 13, 13, 0.16);
}

.hero-object {
  position: absolute;
  right: 7%;
  bottom: 10%;
  width: min(34vw, 280px);
  aspect-ratio: 0.9;
  border-radius: 58% 42% 46% 54% / 48% 36% 64% 52%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(3, 74, 20, 0.1), transparent 56%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.95), rgba(13, 13, 13, 0.75));
  box-shadow: 0 26px 34px rgba(13, 13, 13, 0.16);
}

.hero-object::before {
  content: "";
  position: absolute;
  inset: 14% 16%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-object::after {
  content: "";
  position: absolute;
  left: -22%;
  bottom: -8%;
  width: 52%;
  height: 28%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.16), rgba(13, 13, 13, 0.02));
  transform: rotate(-18deg);
}

.hero-placard {
  position: absolute;
  left: 0;
  top: 9%;
  width: min(68%, 410px);
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--accent);
}

.hero-placard p:last-child {
  margin-bottom: 0;
}

.intro-grid,
.story-grid,
.services-overview,
.contact-band,
.portfolio-showcase,
.booking-grid,
.detail-grid,
.values-grid {
  align-items: start;
}

.panel-heading {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.panel-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 12ch;
  margin-bottom: 0.8rem;
}

.editorial-card,
.page-intro-card,
.quote-panel,
.detail-panel,
.pricing-panel,
.contact-card {
  padding: 2rem;
}

.editorial-card::before,
.service-card::before,
.gallery-card::before,
.detail-panel::before,
.pricing-panel::before,
.process-card::before,
.value-card::before,
.contact-card::before,
.page-intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 3px;
  background: var(--accent);
}

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

.stat {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.quote-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(240, 237, 234, 0.92), rgba(255, 255, 255, 0.92));
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.16;
  font-family: Garamond, "Times New Roman", serif;
}

.quote-mark {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-card {
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.96);
}

.service-card h3,
.pricing-panel h2,
.contact-card h3,
.process-card h3,
.value-card h3,
.gallery-caption span {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
}

.service-card p:last-child,
.detail-panel p:last-child,
.process-card p:last-child,
.value-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.service-topline,
.gallery-caption,
.timeline-item,
.detail-line,
.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.price {
  font-size: 1.8rem;
  color: var(--accent);
}

.service-note {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

.gallery-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.05), rgba(13, 13, 13, 0.44)),
    linear-gradient(145deg, #d8d1ca, #fbfaf8);
}

.gallery-card.alt {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.04), rgba(13, 13, 13, 0.52)),
    linear-gradient(135deg, #f4f0ec, #d6cfc8 54%, #f9f7f4);
}

.gallery-card.dark {
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.16), rgba(13, 13, 13, 0.78)),
    linear-gradient(130deg, #6d6a67, #201f1d 70%);
  color: var(--bg);
}

.gallery-card.product-shot {
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 237, 234, 0.9));
}

.product-shot::before,
.product-shot::after {
  content: "";
  position: absolute;
  bottom: 3.4rem;
  box-shadow: 0 22px 28px rgba(13, 13, 13, 0.14);
}

.product-shot::before {
  left: 18%;
  width: 78px;
  height: 170px;
  border-radius: 34px 34px 16px 16px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.96), transparent 24%),
    linear-gradient(180deg, #464340, #111);
}

.product-shot::after {
  right: 16%;
  width: 170px;
  height: 112px;
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 54% 28%, rgba(255, 255, 255, 0.98), transparent 18%),
    linear-gradient(180deg, #615954, #26211d);
}

.product-razor {
  position: absolute;
  left: 10%;
  bottom: 3.8rem;
  width: 120px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a8a5a0, #efefef 42%, #7f7b76 78%, #32302e);
  transform: rotate(-12deg);
  box-shadow: 0 14px 22px rgba(13, 13, 13, 0.12);
}

.gallery-caption {
  position: relative;
  z-index: 2;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 13, 13, 0.14);
}

.dark .gallery-caption {
  background: rgba(13, 13, 13, 0.6);
  border-color: rgba(255, 255, 255, 0.16);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-year {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
}

.process-card,
.value-card {
  padding: 1.7rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
}

.portfolio-showcase .gallery-card:nth-child(2) {
  transform: translateY(2.5rem);
}

.page-hero {
  padding: 4rem 0 2.5rem;
}

.page-hero .display {
  max-width: 12ch;
}

.page-intro-card {
  max-width: 540px;
  margin-top: 2rem;
}

.pricing-panel {
  background: rgba(255, 255, 255, 0.95);
}

.pricing-list {
  display: grid;
  gap: 1rem;
}

.pricing-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.pricing-line:last-child {
  border-bottom: 0;
}

.pricing-line strong {
  font-size: 1.15rem;
}

.contact-card {
  min-height: 100%;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-line {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.site-footer {
  padding: 3rem 0;
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  align-items: start;
}

.footer-brand p {
  margin: 0;
}

.footer-nav,
.footer-meta {
  display: grid;
  gap: 0.6rem;
}

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

.subtle {
  color: var(--muted);
}

body[data-page="home"] .hero-home {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.54) 24%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.58) 100%),
    url("../images/barbershop-hero.png");
  background-position: center center;
}

body[data-page="home"] .hero-shell {
  padding-left: 0;
}

body[data-page="home"] .hero-copy {
  max-width: 52rem;
  padding: clamp(8rem, 14vw, 14rem) 0 5rem;
}

body[data-page="home"] .hero-home .display {
  max-width: 16ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3.6rem, 6.5vw, 5.8rem);
  line-height: 0.94;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.34);
}

body[data-page="home"] .hero-summary {
  max-width: 36rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.8rem;
}

.hero-primary,
.homepage-light-button {
  background: #f6f3ef;
  border-color: #f6f3ef;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
}

.homepage-light-button {
  padding-inline: 1.7rem;
}

.homepage-services {
  padding: 5.5rem 0 6rem;
  background: #3a3f39;
  color: #fff;
}

.homepage-section-heading {
  max-width: 72rem;
  margin: 0 auto 3.8rem;
  text-align: center;
}

.homepage-section-heading h2,
.homepage-service-area-copy h2,
.homepage-cta h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
  line-height: 1.06;
  font-weight: 500;
}

.homepage-section-heading p {
  max-width: 58rem;
  margin: 0 auto;
  font-family: Garamond, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

.homepage-service-grid {
  display: grid;
  gap: 2rem;
}

.homepage-service-card img {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
}

.homepage-service-card h3 {
  margin: 1.8rem 0 1rem;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  text-align: center;
}

.homepage-service-card p {
  max-width: 22rem;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.9;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.homepage-services-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 4.1rem;
}

.homepage-outline-button {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  padding-inline: 1.6rem;
}

.homepage-service-area {
  padding: 5.5rem 0 4.8rem;
  background: #fff;
}

.homepage-service-area-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.homepage-tool-image-wrap {
  position: relative;
  min-height: 320px;
  padding: 2rem;
}

.homepage-tool-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 760px;
  margin: 0 auto;
}

.homepage-service-area-copy {
  max-width: 40rem;
}

.service-area-eyebrow {
  margin: 0 0 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.homepage-service-area-copy h2 {
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(13, 13, 13, 0.4);
}

.homepage-service-area-copy p:last-child {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: #171717;
}

.homepage-cta {
  padding: 4.5rem 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 55%, rgba(0, 0, 0, 0.54) 100%),
    url("../images/cta-background.png");
  background-position: center center;
  background-size: cover;
  color: #fff;
}

.homepage-cta-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.homepage-cta h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.9rem, 5.4vw, 4.8rem);
  line-height: 1.08;
  text-wrap: balance;
}

.portfolio-hero {
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.44) 44%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52)),
    url("../images/barbershop-interior.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.portfolio-hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.portfolio-hero-copy {
  max-width: 42rem;
}

.portfolio-hero-copy h1 {
  margin-bottom: 2.1rem;
  font-size: clamp(4rem, 6.4vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.4);
}

.portfolio-hero-copy p {
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.48);
}

.portfolio-light-button {
  min-height: 54px;
  padding: 0.8rem 1.5rem;
  background: #fff;
  border-color: #fff;
  color: #171717;
  font-size: clamp(1.25rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.portfolio-hero-logo {
  width: min(100%, 580px);
  height: auto;
  justify-self: center;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.42));
}

.portfolio-gallery-section {
  padding: clamp(5.5rem, 8vw, 7.25rem) 0 clamp(5rem, 8vw, 7rem);
  background: #000;
  color: #fff;
}

.portfolio-section-heading {
  max-width: 82rem;
  margin: 0 auto clamp(5rem, 8vw, 7.25rem);
  text-align: center;
}

.portfolio-section-heading h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.portfolio-section-heading p {
  margin: 0 auto;
  max-width: 58rem;
  font-family: Garamond, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.1vw, 2rem);
}

.portfolio-photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: 50% 55%;
  border-radius: 0.35rem;
}

.portfolio-cta {
  padding: clamp(4rem, 6vw, 5rem) 0;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .hero-home {
    min-height: calc(100vh - 88px);
    background-position: center center;
  }

  .homepage-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.8rem;
  }

  .homepage-service-area-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 4rem;
  }

  .homepage-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .portfolio-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

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

  .hero-grid,
  .services-overview,
  .story-grid,
  .booking-grid,
  .contact-band {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

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

  .service-cards,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .portfolio-showcase {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }
}

@media (max-width: 759px) {
  .brand-logo-header {
    width: clamp(72px, 24vw, 96px);
  }

  .hero-home {
    min-height: calc(100svh - 88px);
    background-position: 60% center;
  }

  .hero-copy {
    max-width: 21rem;
    padding-top: 4.5rem;
  }

  .hero-kicker {
    margin-bottom: 1.1rem;
    font-size: 0.84rem;
  }

  .hero-home .display {
    font-size: clamp(2.8rem, 10vw, 4.2rem);
    max-width: 9.2ch;
  }

  .hero-summary {
    max-width: 18rem;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  body[data-page="home"] .hero-shell {
    padding-left: 0;
    padding-right: 0;
  }

  body[data-page="home"] .hero-copy {
    max-width: 21rem;
    padding: 4.5rem 0 3rem;
  }

  body[data-page="home"] .hero-summary {
    max-width: 19rem;
  }

  .homepage-services {
    padding: 4.25rem 0;
  }

  .homepage-section-heading {
    margin-bottom: 3rem;
  }

  .homepage-service-card p {
    max-width: none;
  }

  .homepage-service-area {
    padding: 4.25rem 0;
  }

  .homepage-tool-image-wrap {
    min-height: auto;
    padding: 1.25rem;
  }

  .homepage-tool-image-wrap::before,
  .homepage-tool-image-wrap::after {
    width: calc(100% - 1.25rem);
    height: 72px;
  }

  .homepage-cta {
    padding: 4rem 0;
    background-position: 56% center;
  }

  .homepage-cta h2 {
    max-width: 10ch;
  }

  .portfolio-hero {
    min-height: auto;
    padding: 4.25rem 0;
    background-position: 58% center;
  }

  .portfolio-hero-inner {
    gap: 2.5rem;
  }

  .portfolio-hero-copy {
    max-width: 22rem;
  }

  .portfolio-hero-copy h1 {
    margin-bottom: 1.35rem;
    font-size: clamp(3.25rem, 14vw, 4.6rem);
  }

  .portfolio-hero-copy p {
    margin-bottom: 1.6rem;
  }

  .portfolio-hero-logo {
    width: min(88vw, 360px);
  }

  .portfolio-gallery-section {
    padding: 4.25rem 0 4.75rem;
  }

  .portfolio-section-heading {
    margin-bottom: 3.25rem;
  }

  .portfolio-section-heading p {
    max-width: 32rem;
  }

  .portfolio-photo-grid {
    gap: 1rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-placard {
    width: auto;
    right: 1rem;
  }

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

  .gallery-card.product-shot {
    min-height: 380px;
  }

  .portfolio-showcase .gallery-card:nth-child(2) {
    transform: none;
  }

  .service-topline,
  .gallery-caption,
  .timeline-item,
  .detail-line,
  .contact-line,
  .pricing-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
