/* Sandstorm V5 — Exact Bearclaw nav replication + hero */

:root {
  /* Logo copper — metallic, not flat brown */
  --bc-copper: #96692d;
  --bc-copper-deep: #7a5423;
  --bc-copper-bright: #c9a05a;
  --bc-copper-mid: #a67835;
  --bc-copper-metal: linear-gradient(
    165deg,
    #d4ae6a 0%,
    #c49a4a 12%,
    #a67835 32%,
    #8f642c 52%,
    #7a5423 72%,
    #9a6d30 88%,
    #b88945 100%
  );
  --bc-copper-metal-hover: linear-gradient(
    165deg,
    #e0bc78 0%,
    #c49a4a 18%,
    #96692d 45%,
    #6e4a1e 72%,
    #a67835 100%
  );
  --bc-copper-bar: linear-gradient(
    180deg,
    #c49a4a 0%,
    #a67835 18%,
    #8f642c 42%,
    #7a5423 68%,
    #8a5f28 86%,
    #a07038 100%
  );
  --bc-copper-shine: inset 0 1px 0 rgba(255, 230, 180, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
  --bc-yellow: #f8e109;
  --bc-black: #030303;
  --bc-white: #ffffff;
  --bc-gray: #979797;
  --bc-muted: #757575;

  /* Bearclaw fonts */
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Lato", Helvetica, Arial, sans-serif;

  /* Bearclaw-style content gutters */
  --bc-gutter: clamp(1.25rem, 4vw, 3.75rem);
  --bc-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.v5 {
  margin: 0;
  font-family: var(--body);
  color: var(--bc-black);
  background: var(--bc-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 300;
  padding: 0.7rem 1rem;
  background: var(--bc-copper-metal);
  box-shadow: var(--bc-copper-shine);
  color: var(--bc-white);
}

.skip-link:focus {
  top: 1rem;
}

/* =========================================
   BEARCLAW HEADER — Sandstorm copper bar
   Desktop: white logo panel (~24%) + copper bar (~76%)
   ========================================= */

.bc-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--bc-copper-bar);
  box-shadow: var(--bc-copper-shine);
}

.bc-header__row {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70px;
}

/* —— Left brand panel —— */

.bc-header__brand {
  background: var(--bc-white);
  position: relative;
  z-index: 2;
}

.bc-header__brand-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 0.5rem;
  padding: 0 12px;
  position: relative;
}

/* Angled white→copper transition */
.bc-header__brand::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  right: -28px;
  width: 56px;
  height: 100%;
  background: var(--bc-white);
  clip-path: polygon(0 0, 55% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.bc-burger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

.bc-logo {
  display: block;
  justify-self: center;
  width: min(220px, 58vw);
  height: 52px;
  overflow: hidden;
  line-height: 0;
}

.bc-logo img {
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-2%);
}

.bc-phone-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  justify-self: end;
}

/* —— Right copper bar (desktop) —— */

.bc-header__bar {
  display: none;
  align-items: stretch;
  min-height: 94px;
  background: var(--bc-black);
  box-shadow: none;
}

.bc-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem 0 1.5rem;
}

.bc-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.bc-menu > li {
  position: relative;
}

.bc-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 18px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  fill: #ffffff;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.bc-menu > li > a:hover,
.bc-menu > li > a:focus-visible,
.bc-menu > li > a.is-active {
  color: var(--bc-copper);
  fill: var(--bc-copper);
}

/* Call strip — white panel, icon bridges copper nav */
.bc-call {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 220px;
  padding: 0 22px 0 0;
  background: #ffffff;
  position: relative;
}

/* Angled white edge into copper */
.bc-call::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 0;
  width: 42px;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.bc-call__icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-left: -28px;
  border-radius: 50%;
  background: var(--bc-white);
  border: 6px solid rgba(150, 105, 45, 0.18);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.bc-call__icon:hover {
  transform: scale(1.08);
}

.bc-call__text {
  position: relative;
  z-index: 1;
  line-height: 1;
  padding-left: 0.85rem;
}

.bc-call__label {
  margin: 0 0 -0.15em;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bc-copper);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bc-call__number {
  margin: 0;
  padding-top: 4px;
}

.bc-call__number a {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #000000;
  line-height: 1;
  text-transform: none;
}

.bc-call__number a:hover {
  color: #000000;
}

/* —— Mobile nav panel —— */

.bc-mobile {
  background: var(--bc-white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.bc-mobile[hidden] {
  display: none;
}

.bc-mobile > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-mobile > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bc-black);
  text-align: left;
}

.bc-mobile > ul > li > a:hover {
  color: var(--bc-copper-deep);
  background: rgba(150, 105, 45, 0.1);
}

/* =========================================
   HERO (Bearclaw-style)
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: min(830px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--bc-white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(97deg, #000 42%, rgba(0, 0, 0, 0.15) 72%, transparent 100%);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--bc-gutter) * 2), var(--bc-max));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.hero-creed {
  margin: 0 0 1rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bc-yellow);
}

.hero h1 {
  margin: 0;
  max-width: 9ch;
  font-family: var(--display);
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-trust {
  margin: 1.15rem 0 0;
  max-width: 26rem;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: var(--bc-copper-metal);
  box-shadow: var(--bc-copper-shine), 0 4px 14px rgba(90, 60, 20, 0.28);
  color: var(--bc-white);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-pill:hover,
.btn-pill:focus-visible {
  background: var(--bc-copper-metal-hover);
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: var(--bc-copper-shine), 0 6px 18px rgba(90, 60, 20, 0.35);
}

/* —— Hero awards: cascading magazine streak —— */

.hero-awards {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--bc-gutter) * 2), var(--bc-max));
  margin: -1.5rem auto 2.5rem;
  padding: 0;
}

.hero-awards__copy {
  margin-bottom: 1rem;
}

.hero-awards__eyebrow {
  margin: 0;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-yellow);
}

.hero-awards__title {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-awards__note {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-awards__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.hero-awards__rail {
  display: none;
}

.hero-awards__stack {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-height: 210px;
  padding-bottom: 1.75rem;
  perspective: 900px;
}

.award-card {
  position: absolute;
  margin: 0;
  width: clamp(108px, 28vw, 148px);
  transform-origin: 50% 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease,
    opacity 0.55s ease;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  opacity: 0;
}

.hero-awards.is-in .award-card {
  opacity: 1;
}

.hero-awards.is-in .award-card--2024 {
  transition-delay: 0.05s;
}

.hero-awards.is-in .award-card--2025 {
  transition-delay: 0.16s;
}

.hero-awards.is-in .award-card--2026 {
  transition-delay: 0.28s;
}

.award-card img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  background: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.35);
}

.award-card figcaption {
  position: absolute;
  left: 50%;
  bottom: -1.55rem;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.award-card figcaption span {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-bottom: 2px solid transparent;
}

.award-card--2024 {
  left: 0;
  z-index: 1;
  transform: translate3d(0, 10px, 0) rotate(-9deg);
}

.award-card--2025 {
  left: 22%;
  z-index: 2;
  transform: translate3d(0, 4px, 0) rotate(-2deg);
}

.award-card--2026 {
  left: 44%;
  z-index: 3;
  width: clamp(122px, 31vw, 168px);
  transform: translate3d(0, 0, 0) rotate(4deg);
}

.award-card--2026 figcaption span {
  color: var(--bc-yellow);
  border-bottom-color: var(--bc-yellow);
}

.award-card:hover,
.award-card:focus-within {
  z-index: 5;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
}

.award-card--2024:hover,
.award-card--2024:focus-within {
  transform: translate3d(0, -6px, 0) rotate(-11deg) scale(1.04);
}

.award-card--2025:hover,
.award-card--2025:focus-within {
  transform: translate3d(0, -8px, 0) rotate(-1deg) scale(1.05);
}

.award-card--2026:hover,
.award-card--2026:focus-within {
  transform: translate3d(0, -10px, 0) rotate(3deg) scale(1.06);
}

/* Mobile: center Ranking Arizona magazine stack */
@media (max-width: 899px) {
  .hero-awards__copy {
    text-align: center;
  }

  .hero-awards__stage {
    justify-content: center;
  }

  .hero-awards__stack {
    width: min(100%, 22rem);
    margin-inline: auto;
    justify-content: center;
  }

  .award-card--2024 {
    left: 50%;
    transform: translate3d(calc(-50% - 4.75rem), 10px, 0) rotate(-9deg);
  }

  .award-card--2025 {
    left: 50%;
    transform: translate3d(-50%, 4px, 0) rotate(-2deg);
  }

  .award-card--2026 {
    left: 50%;
    transform: translate3d(calc(-50% + 4.85rem), 0, 0) rotate(4deg);
  }

  .award-card--2024:hover,
  .award-card--2024:focus-within {
    transform: translate3d(calc(-50% - 4.75rem), -6px, 0) rotate(-11deg) scale(1.04);
  }

  .award-card--2025:hover,
  .award-card--2025:focus-within {
    transform: translate3d(-50%, -8px, 0) rotate(-1deg) scale(1.05);
  }

  .award-card--2026:hover,
  .award-card--2026:focus-within {
    transform: translate3d(calc(-50% + 4.85rem), -10px, 0) rotate(3deg) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .award-card {
    transition: none;
    opacity: 1;
  }
}

@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-content {
    width: min(100% - (var(--bc-gutter) * 2), var(--bc-max));
    padding: 5rem 0 5.5rem;
  }

  .hero-awards {
    position: absolute;
    right: max(var(--bc-gutter), calc((100% - var(--bc-max)) / 2));
    bottom: 12%;
    width: min(420px, 42vw);
    margin: 0;
  }

  .hero-awards__copy {
    text-align: right;
    margin-bottom: 1.15rem;
  }

  .hero-awards__stage {
    justify-content: flex-end;
  }

  .hero-awards__rail {
    display: block;
    position: absolute;
    left: 0.35rem;
    top: 0.5rem;
    bottom: 2.1rem;
    width: 2px;
    background: linear-gradient(
      180deg,
      rgba(248, 225, 9, 0.15),
      var(--bc-yellow) 55%,
      var(--bc-copper)
    );
    border-radius: 2px;
  }

  .hero-awards__rail::before,
  .hero-awards__rail::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bc-yellow);
    transform: translateX(-50%);
    box-shadow: 0 0 0 3px rgba(248, 225, 9, 0.25);
  }

  .hero-awards__rail::before {
    top: 0;
  }

  .hero-awards__rail::after {
    bottom: 0;
  }

  .hero-awards__stack {
    min-height: 280px;
    width: 100%;
    padding-left: 1.25rem;
  }

  .award-card {
    width: 148px;
  }

  .award-card--2024 {
    left: 8%;
    transform: translate3d(0, 18px, 0) rotate(-11deg);
  }

  .award-card--2025 {
    left: 28%;
    transform: translate3d(0, 8px, 0) rotate(-3deg);
  }

  .award-card--2026 {
    left: 48%;
    width: 172px;
    transform: translate3d(0, 0, 0) rotate(5deg);
  }

  .award-card--2024:hover,
  .award-card--2024:focus-within {
    transform: translate3d(0, 4px, 0) rotate(-13deg) scale(1.05);
  }

  .award-card--2025:hover,
  .award-card--2025:focus-within {
    transform: translate3d(0, -4px, 0) rotate(-2deg) scale(1.06);
  }

  .award-card--2026:hover,
  .award-card--2026:focus-within {
    transform: translate3d(0, -12px, 0) rotate(3deg) scale(1.07);
  }
}

@media (min-width: 1200px) {
  .hero-awards {
    width: 460px;
    bottom: 14%;
  }

  .award-card {
    width: 158px;
  }

  .award-card--2026 {
    width: 186px;
  }
}

/* —— 4-category strip (Bearclaw-style, stationary) —— */

.categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  padding: 0.625rem var(--bc-gutter);
  background: var(--bc-white);
}

.category {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  color: var(--bc-white);
}

.category img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-width: none;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.category__label {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.category:hover img {
  transform: scale(1.05);
}

@media (min-width: 720px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .category,
  .category img {
    min-height: 320px;
  }
}

@media (min-width: 1025px) {
  .categories {
    grid-template-columns: repeat(4, 1fr);
  }

  .category,
  .category img {
    min-height: 380px;
  }
}

/* —— Pour proof: interactive before / after —— */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pour-proof {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--bc-gutter) clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #0c0b0a 0%, #161412 100%);
  color: var(--bc-white);
  overflow: hidden;
}

.pour-proof::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--bc-yellow), var(--bc-copper));
}

.pour-proof__block + .pour-proof__block {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pour-proof__rail {
  width: min(100%, var(--bc-max));
  margin: 0 auto 1.75rem;
}

.pour-proof__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-yellow);
}

.pour-proof h2 {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}

.pour-proof__lede {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
}

.compare {
  width: min(100%, var(--bc-max));
  margin: 0 auto;
  --pos: 52%;
}

.compare__stage {
  position: relative;
  overflow: hidden;
  min-height: min(62vh, 560px);
  background: #1a1a1a;
  touch-action: none;
  cursor: ew-resize;
  user-select: none;
}

.compare__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(62vh, 560px);
  max-width: none;
  object-fit: cover;
  object-position: 40% center;
  pointer-events: none;
}

.compare__img--after {
  position: relative;
  z-index: 0;
}

.compare__before {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare__before .compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 0;
  pointer-events: none;
}

.compare__stake {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: var(--bc-yellow);
  box-shadow: 0 0 0 1px rgba(3, 3, 3, 0.35);
}

.compare__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border: 2px solid var(--bc-yellow);
  border-radius: 50%;
  background: rgba(3, 3, 3, 0.72);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.compare__grip::before,
.compare__grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--bc-yellow);
  border-right: 2px solid var(--bc-yellow);
  transform: translateY(-50%) rotate(45deg);
}

.compare__grip::before {
  left: 14px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare__grip::after {
  right: 14px;
}

.compare__tag {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.compare__tag--before {
  left: 1rem;
  color: #030303;
  background: var(--bc-yellow);
}

.compare__tag--after {
  right: 1rem;
  color: var(--bc-white);
  background: rgba(3, 3, 3, 0.65);
  outline: 1px solid rgba(255, 255, 255, 0.25);
}

.compare__control {
  display: block;
  margin-top: 0.85rem;
}

.compare__control input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: var(--bc-copper);
  cursor: ew-resize;
}

.pour-proof__note {
  width: min(100%, var(--bc-max));
  margin: 1rem auto 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

.pour-strip {
  width: min(100%, var(--bc-max));
  margin: 2.25rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.pour-strip__shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 220px;
  background: #1a1a1a;
  cursor: zoom-in;
}

.pour-strip__shot img,
.pour-strip__shot video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.pour-strip__shot video {
  display: block;
  background: #050505;
}

.pour-strip__shot--video video {
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(1.28);
  transform-origin: center 42%;
}

.pour-strip__shot--video:hover video,
.pour-strip__shot--video.is-zoom video {
  transform: scale(1.55);
}

.pour-strip__shot figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.85rem;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.pour-strip__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}

.pour-strip__shot:hover img,
.pour-strip__shot.is-zoom img {
  transform: scale(1.45);
}

@media (min-width: 720px) {
  .pour-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .pour-strip__shot,
  .pour-strip__shot img,
  .pour-strip__shot video {
    min-height: 260px;
  }
}

@media (min-width: 1025px) {
  .pour-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .pour-strip__shot,
  .pour-strip__shot img,
  .pour-strip__shot video {
    min-height: 300px;
  }
}

@media (min-width: 900px) {
  .pour-proof__rail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1rem 2rem;
    align-items: end;
    margin-bottom: 2rem;
  }

  .pour-proof__eyebrow,
  .pour-proof h2 {
    grid-column: 1;
  }

  .pour-proof__lede {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    align-self: end;
    font-size: 1.12rem;
  }

  .compare__stage,
  .compare__img {
    min-height: min(68vh, 640px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pour-strip__shot img,
  .pour-strip__shot video {
    transition: none;
  }

  .pour-strip__shot:hover img,
  .pour-strip__shot.is-zoom img,
  .pour-strip__shot--video video,
  .pour-strip__shot--video:hover video,
  .pour-strip__shot--video.is-zoom video {
    transform: none;
  }
}

/* —— Projects —— */

.projects {
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--bc-gutter);
  background: #f4f4f4;
}

.projects__intro {
  width: min(100%, var(--bc-max));
  margin: 0 auto 2rem;
}

.projects__eyebrow {
  margin: 0;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-copper);
}

.projects h2 {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--bc-black);
}

.projects__lede {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  font-size: 1.05rem;
  color: var(--bc-muted);
}

.projects__grid {
  width: min(100%, var(--bc-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.project {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #1a1a1a;
  color: var(--bc-white);
}

.project img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-width: none;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.project__meta {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  z-index: 2;
}

.project__meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.project__meta p {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.project:hover img {
  transform: scale(1.04);
}

@media (min-width: 720px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project--feature {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .project--feature img {
    min-height: 420px;
    object-position: center 40%;
  }

  .project--wide {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .project--wide img {
    min-height: 320px;
    object-position: center 55%;
  }
}

@media (min-width: 1025px) {
  .projects__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .project--feature {
    grid-column: span 6;
    min-height: 480px;
  }

  .project--feature img {
    min-height: 480px;
  }

  .project:not(.project--feature):not(.project--wide) {
    grid-column: span 2;
    min-height: 300px;
  }

  .project:not(.project--feature):not(.project--wide) img {
    min-height: 300px;
  }

  .project--wide {
    grid-column: span 6;
    min-height: 360px;
  }

  .project--wide img {
    min-height: 360px;
  }
}

/* —— Site footer (Bearclaw-matched structure) —— */

.site-footer {
  position: relative;
  overflow: hidden;
  background: #030303;
  color: rgba(255, 255, 255, 0.9);
  padding: 70px 0 60px;
  margin-top: -4.5rem;
  padding-top: calc(70px + 4.5rem);
}

.site-footer__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-footer__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 40% 55%;
  opacity: 0.48;
  filter: saturate(0.88) contrast(1.06) brightness(0.85);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    #000 42%,
    #000 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 18%,
    #000 42%,
    #000 100%
  );
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(9rem, 28%);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #030303 0%,
    rgba(3, 3, 3, 0.92) 42%,
    transparent 100%
  );
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      #030303 0%,
      rgba(3, 3, 3, 0.88) 14%,
      rgba(3, 3, 3, 0.42) 40%,
      rgba(3, 3, 3, 0.55) 68%,
      rgba(3, 3, 3, 0.82) 100%
    ),
    linear-gradient(
      115deg,
      rgba(150, 105, 45, 0.22) 0%,
      transparent 42%,
      rgba(90, 60, 25, 0.18) 100%
    );
}

.site-footer__wrap {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1210px);
  margin: 0 auto;
}

.site-footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.site-footer__cta h2 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.footer-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 13px 35px;
  border-radius: 50px;
  background: var(--bc-copper-metal);
  box-shadow: var(--bc-copper-shine);
  color: #fff;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.footer-enquire:hover,
.footer-enquire:focus-visible {
  background: var(--bc-copper-metal-hover);
  filter: brightness(1.06);
  color: #fff;
}

.footer-contact-strip {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.22);
  min-height: 82px;
  margin: 1.85rem 0 0;
}

.footer-contact-strip__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.footer-contact-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.4;
  text-align: left;
  transition: color 0.2s ease;
}

.footer-contact-strip__item:last-child {
  border-bottom: 0;
}

.footer-contact-strip__item svg {
  flex: 0 0 auto;
  color: var(--bc-copper);
}

.footer-contact-strip__item:hover,
.footer-contact-strip__item:focus-visible {
  color: var(--bc-copper-bright);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.75rem 0 2.25rem;
}

.site-footer__logo {
  display: inline-block;
  max-width: 190px;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 2;
  transition: color 0.2s ease;
}

.site-footer__col a:hover,
.site-footer__col a:focus-visible {
  color: var(--bc-copper);
}

.footer-hours {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.85;
}

.footer-hours p {
  margin: 0;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__bar p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__bar a {
  color: var(--bc-copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__bar a:hover,
.site-footer__bar a:focus-visible {
  color: var(--bc-copper-bright);
}

.site-footer__mail {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.site-footer__mail:hover,
.site-footer__mail:focus-visible {
  color: var(--bc-copper);
}

.footer-call-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  bottom: 0;
  z-index: 180;
  width: 100%;
  padding: 0.9rem 1rem;
  padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
  background: var(--bc-copper-metal);
  color: #fff;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.footer-call-mobile:hover,
.footer-call-mobile:focus-visible {
  background: var(--bc-copper-metal);
  box-shadow: var(--bc-copper-shine);
  color: #fff;
}

@media (min-width: 768px) {
  .footer-contact-strip {
    grid-template-columns: 0.7fr 1fr 1.4fr;
  }

  .footer-contact-strip__label,
  .footer-contact-strip__item {
    border-bottom: 0;
    justify-content: center;
  }

  .footer-contact-strip__label,
  .footer-contact-strip__item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 2rem;
    padding: 3.5rem 0 2.75rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1025px) {
  .site-footer {
    padding: 70px 0 60px;
  }

  .site-footer__cta {
    margin-bottom: 1.25rem;
  }

  .site-footer__cols {
    grid-template-columns: 1.05fr 0.9fr 0.95fr 1fr 1.25fr;
    gap: 0;
    padding: 3.75rem 0 3rem;
  }

  .site-footer__brand {
    grid-column: auto;
    padding-right: 1.5rem;
  }

  .site-footer__col {
    padding: 0 1.5rem;
  }

  .site-footer__col:last-child {
    padding-right: 0;
  }

  .footer-call-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 50px 0 45px;
  }

  .site-footer__cta {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer__cta h2 {
    max-width: none;
  }

  .footer-enquire {
    width: 100%;
  }

  .footer-contact-strip__label {
    justify-content: flex-start;
  }

  .footer-contact-strip__item {
    justify-content: flex-start;
  }
}

/* —— Desktop exact Bearclaw split —— */

@media (min-width: 1025px) {
  .bc-header__row {
    grid-template-columns: 24% 76%;
    min-height: 94px;
  }

  .bc-header__brand-inner {
    min-height: 94px;
    grid-template-columns: 1fr;
    padding: 0 20px 0 25px;
  }

  .bc-header__brand::after {
    display: block;
  }

  .bc-burger,
  .bc-phone-icon {
    display: none;
  }

  .bc-logo {
    width: 300px;
    height: 68px;
  }

  .bc-logo img {
    transform: translateY(-1%);
  }

  .bc-header__bar {
    display: flex;
  }

  .bc-mobile {
    display: none !important;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .bc-call {
    min-width: 190px;
    padding-right: 14px;
  }

  .bc-call__icon {
    width: 50px;
    height: 50px;
    margin-left: -24px;
  }

  .bc-call__number a {
    font-size: 22px;
  }

  .bc-call__label {
    font-size: 18px;
  }

  .bc-menu > li > a {
    font-size: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
