:root {
  --black: #0d0b09;
  --black-2: #15110e;
  --black-3: #211b16;
  --cream: #f3ead9;
  --cream-2: #fff8eb;
  --muted: #b9aa94;
  --line: rgba(243, 234, 217, 0.18);
  --red: #b4232a;
  --red-dark: #84171d;
  --brass: #c89a55;
  --blue: #214e59;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius: 6px;
  --max: 1220px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--black);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 8%, rgba(180, 35, 42, 0.18), transparent 28rem),
    linear-gradient(90deg, rgba(243, 234, 217, 0.035) 1px, transparent 1px),
    var(--black);
  background-size: auto, 34px 34px, auto;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}


img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

address {
  font-style: normal;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--cream-2);
  border: 2px solid var(--brass);
  border-radius: var(--radius);
  color: var(--black);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 6px;
  overflow: hidden;
  background: rgba(13, 11, 9, 0.92);
}

.scroll-progress-fill {
  width: 0%;
  height: 100%;
  background-image: url("../images/stripes.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  box-shadow: 0 0 18px rgba(180, 35, 42, 0.5);
  will-change: width;
}

.site-header {
  position: sticky;
  top: 6px;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--cream);
  text-decoration: none;
}

.brand strong,
.brand span span {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.brand span span {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links a,
.text-link {
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.footer-links a:hover {
  color: var(--brass);
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(200, 154, 85, 0.72);
  border-radius: var(--radius);
  background: transparent;
  color: var(--cream);
  font-weight: 900;
  text-decoration: none;
}

.header-call:hover {
  background: var(--brass);
  color: var(--black);
}


@keyframes hero-ken-burns {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "BARBERSHOP";
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  bottom: -0.13em;
  z-index: 1;
  color: rgba(243, 234, 217, 0.075);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 17rem);
  font-weight: 800;
  line-height: 0.8;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 9, 0.96), rgba(13, 11, 9, 0.62) 46%, rgba(13, 11, 9, 0.18)),
    linear-gradient(0deg, rgba(13, 11, 9, 0.82), rgba(13, 11, 9, 0.02) 55%);
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12);
  animation: hero-ken-burns 9s ease-out forwards;
  transform-origin: center center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 5vw, 48px);
  padding: clamp(76px, 11vw, 140px) clamp(20px, 5vw, 56px) clamp(40px, 5vw, 56px);
}

.hero-copy-block {
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 0.96;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(4.3rem, 10.5vw, 10.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.75vw, 1.34rem);
}

.hero-copy-block .eyebrow { animation: hero-fade-up 0.65s ease-out 0.15s both; }
.hero-copy-block h1 { animation: hero-fade-up 0.7s ease-out 0.32s both; }
.hero-copy { animation: hero-fade-up 0.65s ease-out 0.48s both; }
.hero .hero-actions { animation: hero-fade-up 0.65s ease-out 0.62s both; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-copy-block .eyebrow,
  .hero-copy-block h1,
  .hero-copy,
  .hero .hero-actions { animation: none; }
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgba(243, 234, 217, 0.68);
  color: var(--cream);
}

.button.secondary:hover {
  background: rgba(243, 234, 217, 0.12);
}

.button.secondary.dark {
  border-color: rgba(243, 234, 217, 0.72);
  color: var(--cream);
}

.button.light {
  background: var(--cream-2);
  color: var(--black);
}

.quick-info {
  width: min(var(--max), calc(100% - 40px));
  margin: -46px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(200, 154, 85, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(33, 27, 22, 0.98), rgba(13, 11, 9, 0.98));
  box-shadow: var(--shadow);
}

.quick-info div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span,
.contact-list dt {
  display: block;
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-info strong,
.quick-info a {
  color: var(--cream);
  font-size: 1.03rem;
  text-decoration: none;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 124px) 0;
}

.intro-grid,
.section-heading,
.history,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 12px;
  padding: 18px 0 18px 22px;
  border-left: 2px solid rgba(200, 154, 85, 0.72);
  background: linear-gradient(90deg, rgba(200, 154, 85, 0.08), transparent 68%);
}

.section-heading > .text-link {
  align-self: end;
  justify-self: end;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid rgba(200, 154, 85, 0.42);
  border-radius: var(--radius);
  background: rgba(21, 17, 14, 0.98);
}

.section-heading > .text-link::after {
  content: "->";
  color: var(--brass);
  font-size: 1rem;
}

.intro-grid p,
.section-heading p,
.history p,
.visit-panel,
blockquote p {
  color: var(--muted);
}

.intro-grid p,
.section-heading p {
  font-size: 1.1rem;
}

.intro {
  min-height: min(720px, 78vh);
  display: grid;
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.76fr);
  align-items: center;
}

.intro-copy {
  max-width: 760px;
}

.intro-copy p {
  max-width: 720px;
}

.tool-graphic {
  position: relative;
  justify-self: center;
  width: min(620px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
}

.tool-graphic img {
  width: 100%;
  height: auto;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(13, 11, 9, 0.92), rgba(13, 11, 9, 0.58)),
    url("../images/shop-atmosphere.jpg");
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-band blockquote {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.quote-band blockquote::before {
  content: "\"";
  display: block;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.6;
}

.quote-band p {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 6.4rem);
  line-height: 0.98;
}

.quote-band cite {
  color: var(--brass);
}

.services {
  position: relative;
  padding-top: clamp(76px, 9vw, 124px);
}

.services-board {
  position: relative;
  padding: clamp(56px, 7vw, 84px) clamp(48px, 5.5vw, 65px);
}

/* Frame lines */
.svc-frame {
  position: absolute;
  pointer-events: none;
}
.svc-frame--top    { top: 0;    left: 40px;  right: 40px;  height: 1px; background: rgba(255, 255, 255, 0.12); }
.svc-frame--bottom { bottom: 0; left: 40px;  right: 40px;  height: 1px; background: rgba(255, 255, 255, 0.12); }
.svc-frame--left   { left: 0;   top: 40px;   bottom: 40px; width: 1px;  background: rgba(255, 255, 255, 0.12); }
.svc-frame--right  { right: 0;  top: 40px;   bottom: 40px; width: 1px;  background: rgba(255, 255, 255, 0.12); }

/* Corner notches — curved quarter-circle inward at the inner corner */
.svc-frame--tl,
.svc-frame--tr,
.svc-frame--bl,
.svc-frame--br {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.svc-frame--tl { top: 0;    left: 0;   border-width: 0 1px 1px 0; border-radius: 0 0 100% 0; }
.svc-frame--tr { top: 0;    right: 0;  border-width: 0 0 1px 1px; border-radius: 0 0 0 100%; }
.svc-frame--bl { bottom: 0; left: 0;   border-width: 1px 1px 0 0; border-radius: 0 100% 0 0; }
.svc-frame--br { bottom: 0; right: 0;  border-width: 1px 0 0 1px; border-radius: 100% 0 0 0; }

.services-board-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.services-board-tagline {
  margin: 0;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-board-title {
  margin: 0;
  color: var(--brass);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
}

.services-hr {
  margin: 0 0 clamp(24px, 3vw, 40px);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 3;
  column-gap: clamp(24px, 4vw, 56px);
}

.services-menu li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 0;
  break-inside: avoid;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.6;
}

.services-menu li::after {
  content: "";
  flex: 1;
  min-width: 16px;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

blockquote {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  border: 0;
  border-radius: 0;
  background: rgba(21, 17, 14, 0.98);
}

.feature-band {
  padding: clamp(42px, 5vw, 68px) clamp(20px, 5vw, 56px);
  background: var(--black-2);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
  color: var(--cream);
}

.feature-band__wrapper {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.feature-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.feature-band p {
  margin-bottom: 0;
  color: rgba(243, 234, 217, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 10px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-3);
}

.gallery-grid figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 280ms ease, filter 280ms ease;
}

.gallery-grid figure:hover img {
  filter: saturate(0.95) contrast(1.12);
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(243, 234, 217, 0.22);
  border-radius: var(--radius);
  background: rgba(13, 11, 9, 0.78);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.reviews .section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.2fr);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.review-rating-stars {
  color: var(--brass);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-rating-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-stars {
  display: block;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 1rem;
  letter-spacing: 2px;
}

blockquote {
  margin: 0;
}

blockquote p {
  font-size: 1.14rem;
}

.review-quote {
  margin: 0;
}

cite {
  color: var(--brass);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history {
  align-items: center;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
}

.history-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 85, 0.24);
  border-radius: var(--radius);
  background: var(--black-2);
  box-shadow: var(--shadow);
}

.history-media img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(0.18) saturate(0.82) contrast(1.08);
}

.history-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 11, 9, 0.72), transparent 45%);
  pointer-events: none;
}

.history-media span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(200, 154, 85, 0.42);
  border-radius: var(--radius);
  background: rgba(13, 11, 9, 0.78);
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(56px, 8vw, 96px);
  align-items: stretch;
}

.visit-panel {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(200, 154, 85, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--black-3), var(--black));
  color: var(--cream);
}

.visit-panel .section-kicker,
.visit-panel p,
.visit-panel dt,
.visit-panel dd {
  color: var(--muted);
}

.visit-panel h2,
.visit-panel address,
.visit-panel a {
  color: var(--cream);
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 18px;
  margin: 30px 0;
}

.contact-list div {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-list dd {
  margin: 4px 0 0;
}

.map-link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(13, 11, 9, 0.28), rgba(13, 11, 9, 0.28)),
    url("../images/staticmap.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
  text-decoration: none;
}

.map-link::before {
  content: "86 Archibald Street";
  position: absolute;
  top: 26px;
  left: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 234, 217, 0.2);
  border-radius: var(--radius);
  background: rgba(13, 11, 9, 0.74);
  color: var(--cream);
  font-weight: 950;
}

.map-link span {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--black);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 38px clamp(20px, 5vw, 56px);
  background: #080706;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer small {
  grid-column: 1 / -1;
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }


  .quick-info,
  .review-grid,
  .intro-grid,
  .section-heading,
  .services-board-header,
  .history,
  .visit,
  .feature-band__wrapper,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .services-board-title {
    text-align: center;
  }

  .services-board-tagline {
    text-align: center;
  }

  .services-menu {
    columns: 2;
    text-align: center;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .feature-band__wrapper {
    align-items: start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }

  .section-heading > p {
    max-width: 640px;
    margin-bottom: 0;
  }

  .reviews .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > .text-link {
    justify-self: start;
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:nth-child(4) {
    grid-column: span 2;
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .intro {
    min-height: auto;
  }

  .tool-graphic {
    width: min(360px, 78vw);
    justify-self: start;
  }

}


@media (max-width: 620px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 12px 16px;
  }

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

  .brand span span {
    font-size: 0.74rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    font-size: 4.8rem;
    left: 18px;
    bottom: 10px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(13, 11, 9, 0.94), rgba(13, 11, 9, 0.42)),
      linear-gradient(90deg, rgba(13, 11, 9, 0.84), rgba(13, 11, 9, 0.12));
  }

  .hero-content {
    padding: 54px 20px 40px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section,
  .visit {
    width: min(100% - 32px, var(--max));
  }

  .services-board {
    padding: 40px 28px;
  }

  .svc-frame--tl,
  .svc-frame--tr,
  .svc-frame--bl,
  .svc-frame--br {
    width: 28px;
    height: 28px;
  }

  .svc-frame--top,
  .svc-frame--bottom {
    left: 28px;
    right: 28px;
  }

  .svc-frame--left,
  .svc-frame--right {
    top: 28px;
    bottom: 28px;
  }

  .services-menu {
    columns: 1;
    text-align: center;
  }

  .services-menu li {
    justify-content: center;
  }

  .gallery-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 8px;
  }

  .gallery-grid figure {
    flex: 0 0 78vw;
    height: 260px;
    scroll-snap-align: start;
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:nth-child(4) {
    grid-column: auto;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .map-link {
    min-height: 320px;
  }

  .tool-graphic {
    width: min(360px, 88vw);
  }

}

/* ── Scissors float ─────────────────────────────────────────── */

@keyframes scissors-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-20px) rotate(4deg); }
}

.tool-graphic img {
  animation: scissors-float 7s ease-in-out infinite;
  will-change: transform;
}

/* ── Scroll reveal ──────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* Stagger: review cards */
.review-grid blockquote.reveal:nth-child(2) { transition-delay: 0.10s; }
.review-grid blockquote.reveal:nth-child(3) { transition-delay: 0.20s; }

/* Stagger: gallery figures */
.gallery-grid figure.reveal:nth-child(2) { transition-delay: 0.07s; }
.gallery-grid figure.reveal:nth-child(3) { transition-delay: 0.14s; }
.gallery-grid figure.reveal:nth-child(4) { transition-delay: 0.21s; }
.gallery-grid figure.reveal:nth-child(5) { transition-delay: 0.28s; }
.gallery-grid figure.reveal:nth-child(6) { transition-delay: 0.35s; }
.gallery-grid figure.reveal:nth-child(7) { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
  .tool-graphic img { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
