/* ============================================================
   INDUSTRIAL BARBERS UK — Dark Industrial Theme
   ============================================================ */

:root {
  --bg: #0c0c0e;
  --bg-soft: #131316;
  --bg-card: #17171b;
  --line: #26262c;
  --text: #f4f1ea;
  --text-dim: #a8a39a;
  --text-faint: #6b665e;
  --accent: #d98b3f;        /* warm copper/amber */
  --accent-bright: #f0a955;
  --accent-deep: #b06a26;
  --maxw: 1280px;
  --pad: clamp(1.25rem, 5vw, 6rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #1a1208; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-follow {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor { width: 8px; height: 8px; background: var(--accent-bright); }
.cursor-follow {
  width: 40px; height: 40px; border: 1px solid var(--accent);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
}
.cursor-follow.is-hover { width: 64px; height: 64px; background: rgba(217,139,63,.12); }
@media (hover: none), (max-width: 768px) {
  .cursor, .cursor-follow { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center;
}
.preloader__inner { text-align: center; }
.preloader__pole {
  width: 16px; height: 90px; margin: 0 auto 1.5rem; border-radius: 20px;
  overflow: hidden; position: relative; border: 2px solid var(--line);
  background: repeating-linear-gradient(45deg,
    var(--accent) 0 8px, #f4f1ea 8px 16px, var(--accent-deep) 16px 24px);
  background-size: 100% 200%; animation: poleSpin 1s linear infinite;
}
@keyframes poleSpin { to { background-position: 0 -200%; } }
.preloader__text {
  font-family: "Bebas Neue", sans-serif; letter-spacing: .35em;
  font-size: clamp(1rem, 4vw, 1.6rem); color: var(--text-dim); padding-left: .35em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: "Oswald", sans-serif; font-weight: 500; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; padding: 1rem 1.9rem;
  border-radius: 2px; border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), background .4s var(--ease),
              color .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn--full { width: 100%; }
.btn--primary { background: var(--accent); color: #1a1208; }
.btn--primary:hover { background: var(--accent-bright); transform: translateY(-3px); }
.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-bright); transform: translateY(-3px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: background .5s var(--ease), padding .5s var(--ease),
              border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12,12,14,.82); backdrop-filter: blur(14px);
  border-bottom-color: var(--line); padding-top: .8rem; padding-bottom: .8rem;
}
.nav__logo { display: flex; align-items: center; gap: .65rem; }
.nav__logo-mark {
  font-family: "Bebas Neue", sans-serif; font-size: 1.5rem; letter-spacing: .05em;
  background: var(--accent); color: #1a1208; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 3px;
}
.nav__logo-text {
  font-family: "Oswald", sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; line-height: 1.05;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-family: "Oswald", sans-serif; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-dim);
  transition: color .3s var(--ease); position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--accent); color: var(--accent-bright);
  padding: .65rem 1.2rem; border-radius: 2px;
}
.nav__cta:hover { background: var(--accent); color: #1a1208 !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 6px; z-index: 101; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text);
  transition: transform .4s var(--ease), opacity .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: 7rem var(--pad) 0; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(217,139,63,.18), transparent 60%);
  filter: blur(40px);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}
.hero__content { position: relative; z-index: 2; max-width: var(--maxw);
  margin: 0 auto; width: 100%; }
.hero__eyebrow {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .28em;
  font-size: .8rem; color: var(--accent-bright); margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero__eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--accent); }
.hero__title {
  font-family: "Bebas Neue", sans-serif; font-weight: 400;
  font-size: clamp(3.5rem, 13vw, 12rem); line-height: .88; letter-spacing: .01em;
  text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { color: var(--accent); font-style: normal; }
.hero__sub {
  max-width: 46ch; color: var(--text-dim); font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__marquee {
  position: absolute; bottom: 4.5rem; left: 0; width: 100%; z-index: 1;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: .8rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 2rem; will-change: transform;
  font-family: "Bebas Neue", sans-serif; font-size: 1.5rem; letter-spacing: .1em;
  color: var(--text-faint);
}
.marquee__track .dot { color: var(--accent); }

.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: "Oswald", sans-serif; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--text-faint);
}
.hero__scroll-line { width: 1px; height: 34px; background: var(--accent);
  animation: scrollPulse 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100%{ transform: scaleY(.4); opacity:.4;}
  50%{ transform: scaleY(1); opacity:1;} }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.stats__item {
  padding: 2.5rem var(--pad); text-align: center; border-right: 1px solid var(--line);
}
.stats__item:last-child { border-right: none; }
.stats__num, .stats__plus {
  font-family: "Bebas Neue", sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--text); line-height: 1;
}
.stats__plus { color: var(--accent); }
.stats__label {
  display: block; margin-top: .5rem; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-faint);
  font-family: "Oswald", sans-serif;
}

/* ---------- Section scaffolding ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 12vh, 9rem) var(--pad); }
.section__head {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem;
}
.section__index {
  font-family: "Bebas Neue", sans-serif; font-size: 1.1rem; color: var(--accent);
  letter-spacing: .1em;
}
.section__kicker {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .24em;
  font-size: .78rem; color: var(--text-dim);
}
.section__head::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

h2 {
  font-family: "Bebas Neue", sans-serif; font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem); line-height: 1; letter-spacing: .01em;
  text-transform: uppercase;
}

/* ---------- About ---------- */
.about__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about__lead h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.about__body p { color: var(--text-dim); margin-bottom: 1.2rem; }
.about__list { list-style: none; margin-top: 2rem; display: grid; gap: 1rem; }
.about__list li {
  padding-left: 1.5rem; position: relative; color: var(--text-dim);
}
.about__list li::before {
  content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px;
  background: var(--accent); border-radius: 1px; transform: rotate(45deg);
}
.about__list strong { color: var(--text); }

/* ---------- Services ---------- */
.services__title { max-width: 18ch; margin-bottom: 3.5rem; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 4px;
  padding: 2.4rem 2rem; transition: transform .5s var(--ease),
    border-color .5s var(--ease), background .5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--accent);
  background: #1b1a1d; }
.service-card__num {
  font-family: "Bebas Neue", sans-serif; font-size: 2.6rem; color: var(--accent);
  display: block; margin-bottom: 1rem; opacity: .85;
}
.service-card h3 {
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.35rem; margin-bottom: .8rem;
}
.service-card p { color: var(--text-dim); font-size: .96rem; }

/* ---------- Clients ---------- */
.clients__intro { display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: end; margin-bottom: 3rem; }
.clients__intro p { color: var(--text-dim); }
.clients__logos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden;
}
.client-logo {
  background: var(--bg-soft); padding: 2.2rem 1rem; text-align: center;
  font-family: "Oswald", sans-serif; font-weight: 500; letter-spacing: .06em;
  color: var(--text-faint); font-size: 1rem; text-transform: uppercase;
  transition: color .4s var(--ease), background .4s var(--ease);
}
.client-logo:hover { color: var(--accent-bright); background: var(--bg-card); }
.clients__note { margin-top: 2rem; color: var(--text-dim); }
.clients__note a { color: var(--accent-bright); }

/* ---------- Pricing ---------- */
.pricing__title { margin-bottom: 1rem; }
.pricing__sub { color: var(--text-dim); max-width: 52ch; margin-bottom: 3.5rem; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: start; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 6px;
  padding: 2.5rem 2rem; position: relative;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.price-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.price-card--featured {
  border-color: var(--accent); background: linear-gradient(180deg, #1c1813, var(--bg-card));
}
.price-card__badge {
  position: absolute; top: -12px; left: 2rem; background: var(--accent);
  color: #1a1208; font-family: "Oswald", sans-serif; font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase; padding: .35rem .8rem;
  border-radius: 2px;
}
.price-card__name {
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.4rem; margin-bottom: .6rem;
}
.price-card__desc { color: var(--text-dim); font-size: .92rem; min-height: 3em;
  margin-bottom: 1.2rem; }
.price-card__price {
  font-family: "Bebas Neue", sans-serif; font-size: 3.4rem; line-height: 1;
  margin-bottom: 1.6rem; color: var(--text);
}
.price-card__from {
  font-family: "Oswald", sans-serif; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: .2rem;
}
.price-card__features { list-style: none; display: grid; gap: .75rem;
  margin-bottom: 2rem; }
.price-card__features li {
  color: var(--text-dim); font-size: .92rem; padding-left: 1.6rem; position: relative;
}
.price-card__features li::before {
  content: "✦"; position: absolute; left: 0; color: var(--accent); font-size: .8rem;
}

/* ---------- Reviews ---------- */
.reviews__title { margin-bottom: 3rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 6px;
  padding: 2.2rem; transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.review-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.review-card__stars { color: var(--accent); letter-spacing: .25em; margin-bottom: 1.2rem; }
.review-card blockquote {
  font-size: 1.08rem; line-height: 1.6; color: var(--text); margin-bottom: 1.6rem;
}
.review-card figcaption { display: flex; flex-direction: column; gap: .15rem; }
.review-card figcaption strong { font-family: "Oswald", sans-serif; letter-spacing: .04em; }
.review-card figcaption span { color: var(--text-faint); font-size: .85rem; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact__intro p { color: var(--text-dim); max-width: 44ch; margin: 1.4rem 0 2.4rem; }
.contact__details { list-style: none; display: grid; gap: 1.5rem; }
.contact__details li { display: flex; flex-direction: column; gap: .25rem; }
.contact__label {
  font-family: "Oswald", sans-serif; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-faint);
}
.contact__details a { color: var(--accent-bright); transition: color .3s var(--ease);
  font-size: 1.05rem; }
.contact__details a:hover { color: var(--accent); }

.contact__form { display: grid; gap: 1.4rem; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 4px; padding: 1.3rem 1rem .7rem; color: var(--text);
  font-family: inherit; font-size: 1rem; resize: vertical;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { padding-top: 1.5rem; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--bg-card);
}
.field label {
  position: absolute; left: 1rem; top: 1rem; color: var(--text-faint);
  font-size: 1rem; pointer-events: none; transition: all .25s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .4rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-bright);
}
.field.is-invalid input, .field.is-invalid textarea { border-color: #c0563f; }
.form__status { font-size: .92rem; color: var(--text-dim); min-height: 1.2em; }
.form__status.is-success { color: var(--accent-bright); }
.form__status.is-error { color: #e0795f; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft);
  padding: clamp(3rem, 8vh, 5rem) var(--pad) 2rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: .7rem;
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; }
.footer__mark {
  font-family: "Bebas Neue", sans-serif; background: var(--accent); color: #1a1208;
  width: 36px; height: 36px; display: grid; place-items: center; border-radius: 3px;
}
.footer__social { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__social a {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .12em;
  font-size: .82rem; color: var(--text-dim); transition: color .3s var(--ease);
  position: relative;
}
.footer__social a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--accent); transition: width .35s var(--ease);
}
.footer__social a:hover { color: var(--text); }
.footer__social a:hover::after { width: 100%; }
.footer__bottom {
  max-width: var(--maxw); margin: 1.8rem auto 0; display: flex;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--text-faint); font-size: .82rem;
}

/* ---------- Animation initial states ---------- */
[data-anim] { will-change: transform, opacity; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about__grid, .clients__intro, .contact__grid { grid-template-columns: 1fr; }
  .services__grid, .pricing__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .clients__logos { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; background: rgba(12,12,14,.97);
    backdrop-filter: blur(16px); flex-direction: column; justify-content: center;
    gap: 2rem; transform: translateX(100%); transition: transform .55s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.3rem; color: var(--text); }
  .nav__cta { padding: .9rem 2rem; }
  .hero__marquee { bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .clients__logos { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important;
    animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS — images, banners, galleries
   ============================================================ */

/* Active nav link */
.nav__links a.is-active { color: var(--accent-bright); }
.nav__links a.is-active:not(.nav__cta)::after { width: 100%; }

/* ---------- Hero image layer (home) ---------- */
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,.78) 0%, rgba(12,12,14,.62) 40%, rgba(12,12,14,.92) 100%);
}
.hero--image .hero__glow { opacity: .7; }
.hero__figure {
  position: absolute; right: var(--pad); bottom: 8.5rem; z-index: 2;
  width: clamp(220px, 24vw, 340px); aspect-ratio: 3/4; border-radius: 6px;
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.55); display: none;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 1100px) { .hero__figure { display: block; } }

/* ---------- Page banner (subpages) ---------- */
.page-hero {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  padding: 8rem var(--pad) 3.5rem; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05);
}
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,.72), rgba(12,12,14,.88));
}
.page-hero__inner { position: relative; z-index: 2; max-width: var(--maxw);
  margin: 0 auto; width: 100%; }
.page-hero__crumb {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .24em;
  font-size: .76rem; color: var(--accent-bright); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
}
.page-hero__crumb::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.page-hero h1 {
  font-family: "Bebas Neue", sans-serif; font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 6.5rem); line-height: .9; text-transform: uppercase;
}
.page-hero p { color: var(--text-dim); max-width: 52ch; margin-top: 1rem; }

/* ---------- Image frame helper ---------- */
.media-frame {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line);
}
.media-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.media-frame:hover img { transform: scale(1.05); }
.media-frame--tall { aspect-ratio: 3/4; }
.media-frame--wide { aspect-ratio: 16/10; }
.media-frame--square { aspect-ratio: 1/1; }

/* ---------- Home: about split ---------- */
.home-about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.home-about__copy p { color: var(--text-dim); margin-bottom: 1.2rem; }
.home-about__media { aspect-ratio: 4/5; }

/* ---------- Service cards with image ---------- */
.service-card__media { aspect-ratio: 16/11; margin: -2.4rem -2rem 1.6rem;
  border-bottom: 1px solid var(--line); overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 1rem; }
.gallery__item { overflow: hidden; border-radius: 6px; border: 1px solid var(--line);
  position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Feature rows (alternating) ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center; margin-bottom: clamp(3rem, 7vw, 6rem);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media { aspect-ratio: 4/3; }
.feature-row__copy h3 {
  font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem;
}
.feature-row__copy p { color: var(--text-dim); margin-bottom: 1rem; }

/* ---------- Space / location cards ---------- */
.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.space-card { border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  background: var(--bg-card); transition: transform .5s var(--ease), border-color .5s var(--ease); }
.space-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.space-card__media { aspect-ratio: 16/10; overflow: hidden; }
.space-card__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); }
.space-card:hover .space-card__media img { transform: scale(1.06); }
.space-card__body { padding: 1.4rem 1.5rem 1.7rem; }
.space-card__body h3 { font-family: "Oswald", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; font-size: 1.15rem; margin-bottom: .4rem; }
.space-card__body p { color: var(--text-dim); font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; padding: clamp(4rem, 10vw, 7rem) var(--pad);
  text-align: center; }
.cta-band__bg { position: absolute; inset: 0; background-size: cover;
  background-position: center; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,.82), rgba(12,12,14,.9)); }
.cta-band__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--text-dim); margin-bottom: 2rem; }

/* ---------- Section intro helper ---------- */
.section__intro { max-width: 56ch; color: var(--text-dim); margin-bottom: 3rem; }

/* ---------- Reviews page strip ---------- */
.review-photos { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  margin-top: 3rem; }
.review-photos .media-frame { aspect-ratio: 1/1; }

/* ---------- Responsive (multi-page) ---------- */
@media (max-width: 980px) {
  .home-about__grid, .feature-row, .feature-row--reverse { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__media { order: 0; }
  .space-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--big { grid-column: span 2; grid-row: span 1; }
  .review-photos { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 44vh; }
}
