/* ============================================================
   HALE & CROW — PAGE SECTIONS
   Ordered by page: home, services, house, work, contact.
   Mobile-first; layered up at 640 / 1024 / 1440.
   ============================================================ */

/* ============================================================
   HOME
   ============================================================ */

/* ---- 7.1.2 Hero: the zoom ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media {
  /* starts inset ~86%, GSAP scales it to full-bleed */
  width: 86%;
  height: 78%;
  overflow: hidden;
  border-radius: var(--radius-frame);
  outline: var(--hairline) solid var(--clr-brass-dim);
  outline-offset: -1px;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-ink-40);
}
.hero__title {
  position: relative;
  z-index: 2;
  font-style: italic;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  text-align: center;
  padding-inline: var(--sp-gutter);
}
.hero__title .line {
  display: block;
  overflow: hidden; /* line mask */
}
.hero__title .line > span {
  display: block;
}
.hero__strip {
  position: absolute;
  left: var(--sp-gutter);
  right: var(--sp-gutter);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__cue {
  width: var(--hairline);
  height: 3rem;
  background: var(--clr-brass);
  transform-origin: top center;
}

/* ---- 7.1.3 Intro statement ---- */
.intro {
  position: relative;
}
.intro__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.intro__copy .lede {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-h3);
  line-height: 1.3;
  max-width: 24ch;
}
.intro__img {
  aspect-ratio: 4 / 5;
  max-width: 22rem;
  margin-top: var(--sp-4);
}
@media (min-width: 1024px) {
  .intro__copy {
    grid-column: 7 / 12;
  }
  .intro__img {
    grid-column: 1 / 5;
    grid-row: 1;
    margin-top: 6rem;
    margin-left: calc(var(--sp-gutter) * -0.5);
  }
}

/* ---- 7.1.4 Scatter gallery ---- */
.scatter {
  position: relative;
  padding-block: var(--sp-section);
}
.scatter__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.scatter__item {
  overflow: hidden;
  border-radius: var(--radius-frame);
  width: min(78%, 20rem);
}
/* mobile: staggered single column */
.scatter__item:nth-child(odd)  { align-self: flex-start; }
.scatter__item:nth-child(even) { align-self: flex-end; }
@media (min-width: 1024px) {
  .scatter__stage {
    display: block;
    height: 120dvh;
  }
  .scatter__item {
    position: absolute;
    margin: 0;
  }
  /* loose overlap, no grid, slight rotations */
  .scatter__item--1 { width: 24vw; top: 4%;   left: 6%;  rotate: -3deg; z-index: 3; }
  .scatter__item--2 { width: 30vw; top: 18%;  left: 36%; rotate: 2deg;  z-index: 2; }
  .scatter__item--3 { width: 18vw; top: 2%;   left: 72%; rotate: -1.5deg; z-index: 4; }
  .scatter__item--4 { width: 21vw; top: 48%;  left: 16%; rotate: 1.5deg; z-index: 5; }
  .scatter__item--5 { width: 27vw; top: 55%;  left: 55%; rotate: -2deg; z-index: 1; }
}
.scatter__heading {
  font-style: italic;
  font-size: var(--fs-h2);
  max-width: 14ch;
  margin-bottom: var(--sp-3);
}
.scatter__sub {
  color: var(--clr-muted);
  max-width: 42ch;
  margin-bottom: var(--sp-5);
}

/* ---- 7.1.5 Services teaser: the stack ---- */
.svc-stack {
  position: relative;
}
.svc-stack__head {
  margin-bottom: var(--sp-5);
}
.svc-stack__head h2 {
  font-style: italic;
  font-size: var(--fs-h2);
}
.svc-stack__rows {
  position: relative;
}
.svc-row {
  position: relative; /* required so the stack's z-index order applies */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: var(--sp-4) 0;
  border-top: var(--hairline) solid var(--clr-brass-dim);
  background: var(--clr-bg);
}
.svc-row__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-h3);
}
.svc-row__desc {
  color: var(--clr-muted);
  max-width: 44ch;
}
.svc-row__meta {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  color: var(--clr-brass);
}
@media (min-width: 1024px) {
  .svc-row {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) auto;
    align-items: baseline;
    gap: var(--sp-3);
    padding: var(--sp-5) 0;
  }
  .svc-stack__rows {
    /* room for the fixed image reveal frame */
    padding-right: 26vw;
  }
}
/* fixed image frame revealed on row hover (desktop) */
.svc-stack__peek {
  display: none;
}
@media (min-width: 1024px) and (pointer: fine) {
  .svc-stack__peek {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 22vw;
    aspect-ratio: 4 / 5;
    transform: translateY(-50%);
    overflow: hidden;
    border-radius: var(--radius-frame);
    pointer-events: none;
  }
  .svc-stack__peek img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0 0 100% 0);
    transition: clip-path var(--dur-mid) var(--ease-inout);
  }
  .svc-stack__peek img.is-shown {
    clip-path: inset(0 0 0 0);
  }
}

/* ---- 7.1.6 House teaser ---- */
.house-teaser__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.house-teaser__media {
  aspect-ratio: 4 / 5;
}
.house-teaser__media img {
  transform: scale(1); /* GSAP scrubs to 1.08 */
}
.house-teaser__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.house-teaser__copy h2 {
  font-style: italic;
  font-size: var(--fs-h2);
  max-width: 12ch;
}
@media (min-width: 1024px) {
  .house-teaser__grid {
    display: grid;
    grid-template-columns: 5fr 1fr 5fr;
    align-items: start;
  }
  .house-teaser__media {
    position: sticky;
    top: 12dvh;
    grid-column: 1;
  }
  .house-teaser__copy {
    grid-column: 3;
    padding-block: 8rem 20rem;
  }
}

/* ---- 7.1.7 Barbers ---- */
.barbers__head {
  font-style: italic;
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-5);
}
.barbers__pair {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--sp-5);
}
.barbers__pair .frame {
  aspect-ratio: 4 / 5;
  max-width: 20rem;
}
.barbers__pair:nth-child(even) {
  align-items: flex-end;
  text-align: right;
}
.barbers__name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-h3);
}
.barbers__role {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  color: var(--clr-muted);
}
.barbers__list { display: none; }
.barbers__portrait { display: none; }
@media (min-width: 1024px) {
  .barbers__pairs { display: none; }
  .barbers__grid {
    display: grid;
    grid-template-columns: 7fr 1fr 4fr;
    align-items: center;
  }
  .barbers__list {
    display: flex;
    flex-direction: column;
  }
  .barbers__list button {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: var(--hairline) solid var(--clr-brass-dim);
    text-align: left;
    font-family: var(--ff-display);
    font-weight: 300;
    font-size: var(--fs-h3);
    color: var(--clr-muted);
    transition: color var(--dur-fast) var(--ease-out),
                translate var(--dur-fast) var(--ease-out);
  }
  .barbers__list button:hover,
  .barbers__list button.is-active {
    color: var(--clr-text);
    translate: 10px 0;
  }
  .barbers__list .barbers__role {
    font-size: var(--fs-label);
  }
  .barbers__portrait {
    display: block;
    grid-column: 3;
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-frame);
  }
  .barbers__portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity var(--dur-mid) var(--ease-out),
                transform var(--dur-mid) var(--ease-out);
  }
  .barbers__portrait img.is-active {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---- 7.1.8 Review rotator ---- */
.review {
  text-align: left;
}
.review__stage {
  position: relative;
  min-height: 14rem;
}
.review__quote {
  position: absolute;
  inset: 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-quote);
  line-height: 1.25;
  max-width: 22ch;
  opacity: 0;
  filter: blur(8px);
  transition: opacity var(--dur-slow) var(--ease-out),
              filter var(--dur-slow) var(--ease-out);
}
.review__quote.is-active {
  opacity: 1;
  filter: blur(0);
}
.review__attr {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: var(--fs-mono);
  letter-spacing: 0.1em;
  color: var(--clr-brass);
}
@media (min-width: 1024px) {
  .review__stage { min-height: 18rem; }
  .review .wrap > .review__stage { margin-left: 8vw; }
}

/* ---- 7.1.9 Pre-footer CTA — the closing number ---- */
.prefoot {
  position: relative;
  overflow: hidden;
  min-height: 78dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--clr-surface);
  border-top: var(--hairline) solid var(--clr-brass-dim);
  padding-block: var(--sp-section);
}
.prefoot::before {
  /* grain lives inside the band */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/ui/grain.svg');
  background-size: 180px 180px;
  opacity: 0.05;
  pointer-events: none;
}
.prefoot__mono {
  /* enormous watermark monogram behind the headline */
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vmin, 34rem);
  height: auto;
  transform: translate(-50%, -50%) rotate(-4deg);
  opacity: 0.07;
  pointer-events: none;
}
.prefoot__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.prefoot__meta,
.prefoot__foot {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.14em;
  color: var(--clr-brass);
}
.prefoot__foot {
  color: var(--clr-muted);
}
.prefoot__title {
  font-size: clamp(3rem, 9.5vw, 8.5rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  max-width: 12ch;
}
.prefoot__title em {
  font-style: italic;
  color: var(--clr-brass);
}

/* ============================================================
   SERVICES
   ============================================================ */
.page-hero {
  padding-top: clamp(8rem, 18vw, 13rem);
}
.page-hero h1 {
  font-style: italic;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}
.page-hero h1 .line {
  display: block;
  overflow: hidden;
}
.page-hero h1 .line > span {
  display: block;
}
.page-hero__note {
  margin-top: var(--sp-3);
  color: var(--clr-muted);
  max-width: 46ch;
}
.page-hero__media {
  margin-top: var(--sp-5);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius-frame);
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12); /* GSAP scrubs toward 1 */
}

/* Brass scroll progress line (desktop) */
.progress-line {
  display: none;
}
@media (min-width: 1024px) {
  .progress-line {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--hairline);
    height: 100dvh;
    background: var(--clr-brass);
    transform: scaleY(0);
    transform-origin: top center;
    z-index: var(--z-nav);
  }
}

/* The menu — tasting-menu accordions */
.menu-group {
  padding-block: var(--sp-5);
}
.menu-group__label {
  margin-bottom: var(--sp-4);
}
.acc {
  border-top: var(--hairline) solid var(--clr-brass-dim);
}
.acc:last-child {
  border-bottom: var(--hairline) solid var(--clr-brass-dim);
}
.acc__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
  padding: 1.6rem 0;
  text-align: left;
}
.acc__idx {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  color: var(--clr-brass);
  flex-shrink: 0;
}
.acc__name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  flex-shrink: 0;
}
.acc__leader {
  flex: 1;
  border-bottom: var(--hairline) dotted var(--clr-brass-dim);
  transform: translateY(-0.4em);
  min-width: 2rem;
}
.acc__price {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.06em;
  color: var(--clr-text);
  flex-shrink: 0;
}
.acc__plus {
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  color: var(--clr-brass);
  flex-shrink: 0;
  transition: rotate var(--dur-fast) var(--ease-inout);
}
.acc.is-open .acc__plus {
  rotate: 135deg; /* + becomes × */
}
.acc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-mid) var(--ease-inout);
}
.acc.is-open .acc__body {
  grid-template-rows: 1fr;
}
.acc__body-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.acc__body-inner > * {
  margin-bottom: 0;
}
.acc__body-inner p {
  color: var(--clr-muted);
  max-width: 52ch;
}
.acc__body-inner .acc__pad {
  height: 1.75rem;
}
.acc__dur {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  color: var(--clr-brass);
}
.acc__book {
  align-self: flex-start;
  color: var(--clr-text);
  font-weight: 500;
  font-size: var(--fs-small);
}

/* Membership band */
.membership {
  background: var(--clr-surface);
  padding-block: var(--sp-section);
  margin-top: var(--sp-section);
}
.membership__head {
  font-style: italic;
  font-size: var(--fs-h2);
  max-width: 14ch;
  margin-bottom: var(--sp-5);
}
.membership__tiers {
  display: flex;
  flex-direction: column;
}
.tier {
  padding: var(--sp-4) 0;
  border-top: var(--hairline) solid var(--clr-brass-dim);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tier__name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-h3);
}
.tier__price {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  color: var(--clr-brass);
}
.tier p {
  color: var(--clr-muted);
  max-width: 40ch;
}
@media (min-width: 1024px) {
  .membership__inner {
    display: grid;
    grid-template-columns: 4fr 1fr 7fr;
  }
  .membership__head { grid-column: 1; }
  .membership__tiers { grid-column: 3; }
}

/* ============================================================
   HOUSE
   ============================================================ */

/* Opening: full-bleed shrinking into a frame (mirror of home) */
.house-open {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.house-open__media {
  position: absolute;
  inset: 0;
}
.house-open__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.house-open__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-ink-40);
}
.house-open__title {
  position: relative;
  z-index: 2;
  padding: 0 var(--sp-gutter) var(--sp-5);
}
.house-open__title h1 {
  font-style: italic;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}
.house-open__title .line {
  display: block;
  overflow: hidden;
}
.house-open__title .line > span {
  display: block;
}

/* Story bands — alternating asymmetric text/image */
.story-band {
  padding-block: var(--sp-section);
}
.story-band__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.story-band__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-band__copy h2 {
  font-style: italic;
  font-size: var(--fs-h2);
  max-width: 15ch;
}
.story-band__copy p {
  color: var(--clr-muted);
}
.story-band .frame {
  max-width: 26rem;
}
.story-band--a .frame { aspect-ratio: 3 / 2; align-self: flex-end; }
.story-band--b .frame { aspect-ratio: 4 / 5; align-self: flex-start; }
@media (min-width: 1024px) {
  .story-band__inner {
    display: grid;
    align-items: center;
  }
  .story-band--a .story-band__inner {
    grid-template-columns: 5fr 2fr 5fr;
  }
  .story-band--a .story-band__copy { grid-column: 1; }
  .story-band--a .frame { grid-column: 3; max-width: none; }
  .story-band--b .story-band__inner {
    grid-template-columns: 4fr 2fr 6fr;
  }
  .story-band--b .frame { grid-column: 1; grid-row: 1; max-width: 24rem; }
  .story-band--b .story-band__copy { grid-column: 3; grid-row: 1; }
}

/* Timeline 2019 → 2026 */
.timeline {
  position: relative;
  padding-block: var(--sp-section);
}
.timeline__head {
  font-style: italic;
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-5);
}
.timeline__track {
  position: relative;
  padding-left: 2.5rem;
}
.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  width: var(--hairline);
  background: var(--clr-brass);
  transform: scaleY(0);
  transform-origin: top center; /* GSAP scrubs scaleY */
}
.timeline__line-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  width: var(--hairline);
  background: var(--clr-brass-dim);
  opacity: 0.35;
}
.milestone {
  position: relative;
  padding-bottom: var(--sp-5);
}
.milestone::before {
  content: '';
  position: absolute;
  left: -2.22rem;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-brass);
}
.milestone__year {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.12em;
  color: var(--clr-brass);
}
.milestone h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0.5rem 0;
}
.milestone p {
  color: var(--clr-muted);
  max-width: 48ch;
}
@media (min-width: 1024px) {
  .timeline__track {
    padding-left: 0;
  }
  .timeline__line,
  .timeline__line-bg {
    left: 50%;
  }
  .milestone {
    width: 42%;
  }
  .milestone:nth-child(odd) {
    margin-left: 0;
    text-align: right;
  }
  .milestone:nth-child(odd)::before {
    left: auto;
    right: calc(-8% - 3.5px);
  }
  .milestone:nth-child(even) {
    margin-left: 58%;
  }
  .milestone:nth-child(even)::before {
    left: calc(-19% - 3.5px);
  }
  .milestone:nth-child(odd) p { margin-left: auto; }
}

/* Chair-by-chair 3D flip panels */
.chairs {
  padding-block: var(--sp-section);
}
.chairs__head {
  font-style: italic;
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-5);
}
.chairs__row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
@media (min-width: 1024px) {
  .chairs__row {
    flex-direction: row;
    gap: var(--sp-4);
  }
  .chairs__row .flip-scene:nth-child(2) {
    margin-top: 6rem;
  }
}
.flip-scene {
  perspective: 1200px;
  width: min(100%, 24rem);
}
.flip-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
}
.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: var(--radius-frame);
}
.flip-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-face--back {
  transform: rotateY(180deg);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  padding: 2rem;
}
.flip-face--back p {
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--clr-muted);
}
/* static caption fallback (mobile / reduced motion) */
.flip-caption {
  display: none;
  margin-top: 0.75rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.06em;
  color: var(--clr-muted);
}
.no-flip .flip-face--back { display: none; }
.no-flip .flip-caption { display: block; }

/* Values */
.values {
  padding-block: var(--sp-section);
}
.value {
  padding-block: var(--sp-5);
}
.value + .value {
  border-top: var(--hairline) solid var(--clr-brass-dim);
}
.value h3 {
  font-style: italic;
  font-size: var(--fs-h3);
  margin-bottom: 1rem;
}
.value p {
  color: var(--clr-muted);
  max-width: 48ch;
}
@media (min-width: 1024px) {
  .value:nth-child(1) { padding-left: 0; }
  .value:nth-child(2) { padding-left: 16%; }
  .value:nth-child(3) { padding-left: 32%; }
}

/* ============================================================
   WORK / LOOKBOOK
   ============================================================ */
.lookbook__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-block: var(--sp-5) var(--sp-4);
  font-size: var(--fs-small);
  font-weight: 500;
}
.lookbook__filters button {
  color: var(--clr-muted);
  transition: color var(--dur-fast) var(--ease-out);
}
.lookbook__filters button:hover {
  color: var(--clr-text);
}
.lookbook__filters button.is-active {
  color: var(--clr-text);
}
.lookbook__filters button.is-active::after {
  transform: scaleX(1);
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.look {
  overflow: hidden;
  border-radius: var(--radius-frame);
  position: relative;
  cursor: pointer;
}
.look img {
  width: 100%;
  height: auto;
}
.look.is-filtered-out {
  display: none;
}
/* intentional asymmetry — offsets and spans, never equal columns */
.look:nth-child(4n+1) { margin-top: 0; }
.look:nth-child(4n+2) { margin-top: 2.5rem; }
.look:nth-child(4n+3) { margin-top: -1rem; }
.look:nth-child(4n)   { margin-top: 1.5rem; }
@media (min-width: 1024px) {
  .lookbook__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: var(--sp-4) var(--sp-3);
    align-items: start;
  }
  .look:nth-child(6n+1) { grid-column: 1 / 5;   margin-top: 0; }
  .look:nth-child(6n+2) { grid-column: 6 / 10;  margin-top: 7rem; }
  .look:nth-child(6n+3) { grid-column: 10 / 13; margin-top: 2rem; }
  .look:nth-child(6n+4) { grid-column: 2 / 6;   margin-top: 4rem; }
  .look:nth-child(6n+5) { grid-column: 7 / 12;  margin-top: -2rem; }
  .look:nth-child(6n)   { grid-column: 3 / 7;   margin-top: 5rem; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero {
  padding-top: clamp(8rem, 18vw, 13rem);
  padding-bottom: var(--sp-5);
}
.contact-hero h1 {
  font-style: italic;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
}
.contact-hero h1 .line { display: block; overflow: hidden; }
.contact-hero h1 .line > span { display: block; }
.contact-hero p {
  margin-top: var(--sp-3);
  color: var(--clr-muted);
}

.contact-split {
  display: flex;
  flex-direction: column;
  gap: var(--sp-section);
}
@media (min-width: 1024px) {
  .contact-split {
    display: grid;
    grid-template-columns: 6fr 1fr 5fr;
    align-items: start;
  }
  .contact-split__form {
    grid-column: 1;
    position: sticky;
    top: 8rem;
  }
  .contact-split__aside {
    grid-column: 3;
  }
}
.contact-split__aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact-split__aside .frame--map {
  aspect-ratio: 3 / 2;
}
.frame--map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* dark-room map: invert + hue-rotate returns the pin to warm red */
  filter: invert(0.9) hue-rotate(180deg) saturate(0.4) brightness(0.85) contrast(0.95);
}
.frame--map__link {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.45rem 0.9rem;
  background: var(--clr-ink-85);
  border: var(--hairline) solid var(--clr-brass-dim);
  border-radius: var(--radius-frame);
  color: var(--clr-brass);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.frame--map__link:hover {
  border-color: var(--clr-brass);
}
.contact-split__aside .frame--shopfront {
  aspect-ratio: 4 / 5;
  max-width: 22rem;
  align-self: flex-end;
}
.hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.06em;
  color: var(--clr-muted);
}
.hours dt { color: var(--clr-brass); margin-top: 0.6rem; }
.hours div { display: flex; justify-content: space-between; gap: 2rem; max-width: 22rem; }

.call-band {
  padding-block: var(--sp-section);
  text-align: center;
}
.call-band p {
  margin: 0 auto var(--sp-3);
  color: var(--clr-muted);
}
.call-band__tel {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 1.1;
  color: var(--clr-text);
  transition: color var(--dur-fast) var(--ease-out);
}
.call-band__tel:hover {
  color: var(--clr-brass);
}
